From 6a15394abca9af819c36829ec2d6d06822b148bf Mon Sep 17 00:00:00 2001
From: Peptide90 <78795277+Peptide90@users.noreply.github.com>
Date: Wed, 8 May 2024 01:06:11 +0100
Subject: [PATCH 01/45] Languages (#6)
---
Content.Client/Input/ContentContexts.cs | 1 +
.../Language/LanguageMenuWindow.xaml | 18 +
.../Language/LanguageMenuWindow.xaml.cs | 121 +++++
.../Language/Systems/LanguageSystem.cs | 67 +++
.../Systems/TranslatorImplanterSystem.cs | 8 +
.../Options/UI/Tabs/KeyRebindTab.xaml.cs | 1 +
.../Systems/Chat/Controls/ChatInputBox.cs | 1 +
.../Language/LanguageMenuUIController.cs | 107 ++++
.../MenuBar/GameTopMenuBarUIController.cs | 4 +
.../MenuBar/Widgets/GameTopMenuBar.xaml | 10 +
Content.Server/Chat/Systems/ChatSystem.cs | 153 ++++--
.../Chemistry/ReagentEffects/MakeSentient.cs | 22 +-
.../Language/Commands/ListLanguagesCommand.cs | 39 ++
.../Language/Commands/SayLanguageCommand.cs | 53 ++
.../Commands/SelectLanguageCommand.cs | 48 ++
.../Language/DetermineEntityLanguagesEvent.cs | 29 ++
.../Language/LanguageSystem.Networking.cs | 56 ++
Content.Server/Language/LanguageSystem.cs | 280 ++++++++++
.../Language/TranslatorImplanterSystem.cs | 81 +++
Content.Server/Language/TranslatorSystem.cs | 236 +++++++++
.../Mind/Commands/MakeSentientCommand.cs | 9 +
.../Radio/EntitySystems/HeadsetSystem.cs | 16 +-
.../Radio/EntitySystems/RadioDeviceSystem.cs | 5 +-
.../Radio/EntitySystems/RadioSystem.cs | 68 ++-
Content.Server/Radio/RadioEvent.cs | 14 +-
.../Speech/EntitySystems/ListeningSystem.cs | 7 +-
Content.Shared/Input/ContentKeyFunctions.cs | 1 +
.../Components/LanguageSpeakerComponent.cs | 29 ++
.../TranslatorImplanterComponent.cs | 34 ++
.../Translators/BaseTranslatorComponent.cs | 46 ++
.../HandheldTranslatorComponent.cs | 15 +
.../Translators/HoldsTranslatorComponent.cs | 11 +
.../ImplantedTranslatorComponent.cs | 9 +
.../IntrinsicTranslatorComponent.cs | 10 +
.../UniversalLanguageSpeakerComponent.cs | 11 +
.../Language/Events/LanguagesUpdateEvent.cs | 8 +
.../Events/LanguagesUpdatedMessage.cs | 14 +
.../Events/RequestLanguagesMessage.cs | 10 +
Content.Shared/Language/LanguagePrototype.cs | 37 ++
.../Language/Systems/SharedLanguageSystem.cs | 38 ++
.../SharedTranslatorImplanterSystem.cs | 36 ++
.../Systems/SharedTranslatorSystem.cs | 34 ++
Resources/Locale/en-US/language/commands.ftl | 8 +
.../Locale/en-US/language/language-menu.ftl | 4 +
Resources/Locale/en-US/language/languages.ftl | 71 +++
.../Locale/en-US/language/technologies.ftl | 2 +
.../Locale/en-US/language/translator.ftl | 8 +
.../DeltaV/Entities/Mobs/NPCs/animals.yml | 13 +-
.../DeltaV/Entities/Mobs/NPCs/familiars.yml | 5 +
.../DeltaV/Entities/Mobs/NPCs/nukiemouse.yml | 10 +-
.../DeltaV/Entities/Mobs/Species/harpy.yml | 13 +-
.../Entities/Mobs/Species/vulpkanin.yml | 7 +
.../Mobs/Cyborgs/base_borg_chassis.yml | 7 +
.../Prototypes/Entities/Mobs/NPCs/animals.yml | 126 +++--
.../Entities/Mobs/NPCs/argocyte.yml | 7 +-
.../Prototypes/Entities/Mobs/NPCs/pets.yml | 65 ++-
.../Entities/Mobs/NPCs/regalrat.yml | 13 +
.../Entities/Mobs/NPCs/revenant.yml | 1 +
.../Prototypes/Entities/Mobs/NPCs/shadows.yml | 11 +-
.../Prototypes/Entities/Mobs/NPCs/silicon.yml | 7 +
.../Prototypes/Entities/Mobs/NPCs/slimes.yml | 7 +-
.../Prototypes/Entities/Mobs/NPCs/space.yml | 23 +-
.../Prototypes/Entities/Mobs/NPCs/xeno.yml | 12 +
.../Entities/Mobs/Player/observer.yml | 1 +
.../Entities/Mobs/Player/replay_observer.yml | 1 +
.../Prototypes/Entities/Mobs/Species/base.yml | 9 +-
.../Entities/Mobs/Species/diona.yml | 7 +
.../Entities/Mobs/Species/dwarf.yml | 7 +
.../Entities/Mobs/Species/human.yml | 7 +
.../Prototypes/Entities/Mobs/Species/moth.yml | 7 +
.../Entities/Mobs/Species/reptilian.yml | 7 +
.../Entities/Mobs/Species/slime.yml | 7 +
.../Objects/Devices/translator_implants.yml | 132 +++++
.../Entities/Objects/Devices/translators.yml | 220 ++++++++
.../Entities/Structures/Machines/lathe.yml | 18 +
.../Structures/Machines/vending_machines.yml | 7 +
Resources/Prototypes/Language/languages.yml | 493 ++++++++++++++++++
.../Nyanotrasen/Entities/Mobs/Species/Oni.yml | 7 +
.../Entities/Mobs/Species/felinid.yml | 9 +
.../Prototypes/Recipes/Lathes/language.yml | 190 +++++++
.../Prototypes/Research/civilianservices.yml | 40 ++
Resources/Textures/Interface/language.png | Bin 0 -> 739 bytes
.../Objects/Devices/translator.rsi/icon.png | Bin 0 -> 278 bytes
.../Objects/Devices/translator.rsi/meta.json | 17 +
.../Devices/translator.rsi/translator.png | Bin 0 -> 202 bytes
Resources/keybinds.yml | 3 +
86 files changed, 3270 insertions(+), 136 deletions(-)
create mode 100644 Content.Client/Language/LanguageMenuWindow.xaml
create mode 100644 Content.Client/Language/LanguageMenuWindow.xaml.cs
create mode 100644 Content.Client/Language/Systems/LanguageSystem.cs
create mode 100644 Content.Client/Language/Systems/TranslatorImplanterSystem.cs
create mode 100644 Content.Client/UserInterface/Systems/Language/LanguageMenuUIController.cs
create mode 100644 Content.Server/Language/Commands/ListLanguagesCommand.cs
create mode 100644 Content.Server/Language/Commands/SayLanguageCommand.cs
create mode 100644 Content.Server/Language/Commands/SelectLanguageCommand.cs
create mode 100644 Content.Server/Language/DetermineEntityLanguagesEvent.cs
create mode 100644 Content.Server/Language/LanguageSystem.Networking.cs
create mode 100644 Content.Server/Language/LanguageSystem.cs
create mode 100644 Content.Server/Language/TranslatorImplanterSystem.cs
create mode 100644 Content.Server/Language/TranslatorSystem.cs
create mode 100644 Content.Shared/Language/Components/LanguageSpeakerComponent.cs
create mode 100644 Content.Shared/Language/Components/TranslatorImplanterComponent.cs
create mode 100644 Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs
create mode 100644 Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs
create mode 100644 Content.Shared/Language/Components/Translators/HoldsTranslatorComponent.cs
create mode 100644 Content.Shared/Language/Components/Translators/ImplantedTranslatorComponent.cs
create mode 100644 Content.Shared/Language/Components/Translators/IntrinsicTranslatorComponent.cs
create mode 100644 Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs
create mode 100644 Content.Shared/Language/Events/LanguagesUpdateEvent.cs
create mode 100644 Content.Shared/Language/Events/LanguagesUpdatedMessage.cs
create mode 100644 Content.Shared/Language/Events/RequestLanguagesMessage.cs
create mode 100644 Content.Shared/Language/LanguagePrototype.cs
create mode 100644 Content.Shared/Language/Systems/SharedLanguageSystem.cs
create mode 100644 Content.Shared/Language/Systems/SharedTranslatorImplanterSystem.cs
create mode 100644 Content.Shared/Language/Systems/SharedTranslatorSystem.cs
create mode 100644 Resources/Locale/en-US/language/commands.ftl
create mode 100644 Resources/Locale/en-US/language/language-menu.ftl
create mode 100644 Resources/Locale/en-US/language/languages.ftl
create mode 100644 Resources/Locale/en-US/language/technologies.ftl
create mode 100644 Resources/Locale/en-US/language/translator.ftl
create mode 100644 Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml
create mode 100644 Resources/Prototypes/Entities/Objects/Devices/translators.yml
create mode 100644 Resources/Prototypes/Language/languages.yml
create mode 100644 Resources/Prototypes/Recipes/Lathes/language.yml
create mode 100644 Resources/Textures/Interface/language.png
create mode 100644 Resources/Textures/Objects/Devices/translator.rsi/icon.png
create mode 100644 Resources/Textures/Objects/Devices/translator.rsi/meta.json
create mode 100644 Resources/Textures/Objects/Devices/translator.rsi/translator.png
diff --git a/Content.Client/Input/ContentContexts.cs b/Content.Client/Input/ContentContexts.cs
index 03f4f3f38b..fa63193810 100644
--- a/Content.Client/Input/ContentContexts.cs
+++ b/Content.Client/Input/ContentContexts.cs
@@ -55,6 +55,7 @@ public static void SetupContexts(IInputContextContainer contexts)
human.AddFunction(ContentKeyFunctions.UseItemInHand);
human.AddFunction(ContentKeyFunctions.AltUseItemInHand);
human.AddFunction(ContentKeyFunctions.OpenCharacterMenu);
+ human.AddFunction(ContentKeyFunctions.OpenLanguageMenu);
human.AddFunction(ContentKeyFunctions.ActivateItemInWorld);
human.AddFunction(ContentKeyFunctions.ThrowItemInHand);
human.AddFunction(ContentKeyFunctions.AltActivateItemInWorld);
diff --git a/Content.Client/Language/LanguageMenuWindow.xaml b/Content.Client/Language/LanguageMenuWindow.xaml
new file mode 100644
index 0000000000..ff33a6ddf5
--- /dev/null
+++ b/Content.Client/Language/LanguageMenuWindow.xaml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Language/LanguageMenuWindow.xaml.cs b/Content.Client/Language/LanguageMenuWindow.xaml.cs
new file mode 100644
index 0000000000..e6744b5770
--- /dev/null
+++ b/Content.Client/Language/LanguageMenuWindow.xaml.cs
@@ -0,0 +1,121 @@
+using Content.Client.Language.Systems;
+using Content.Shared.Language;
+using Content.Shared.Language.Systems;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.CustomControls;
+using Robust.Client.UserInterface.XAML;
+using Robust.Shared.Console;
+using Robust.Shared.Utility;
+using static Content.Shared.Language.Systems.SharedLanguageSystem;
+
+namespace Content.Client.Language;
+
+[GenerateTypedNameReferences]
+public sealed partial class LanguageMenuWindow : DefaultWindow
+{
+ private readonly LanguageSystem _clientLanguageSystem;
+ private readonly List _entries = new();
+
+ public LanguageMenuWindow()
+ {
+ RobustXamlLoader.Load(this);
+ _clientLanguageSystem = IoCManager.Resolve().GetEntitySystem();
+ }
+
+ public void UpdateState(string currentLanguage, List spokenLanguages)
+ {
+ var langName = Loc.GetString($"language-{currentLanguage}-name");
+ CurrentLanguageLabel.Text = Loc.GetString("language-menu-current-language", ("language", langName));
+
+ OptionsList.RemoveAllChildren();
+ _entries.Clear();
+
+ foreach (var language in spokenLanguages)
+ {
+ AddLanguageEntry(language);
+ }
+
+ // Disable the button for the currently chosen language
+ foreach (var entry in _entries)
+ {
+ if (entry.button != null)
+ entry.button.Disabled = entry.language == currentLanguage;
+ }
+ }
+
+ private void AddLanguageEntry(string language)
+ {
+ var proto = _clientLanguageSystem.GetLanguage(language);
+ var state = new EntryState { language = language };
+
+ var container = new BoxContainer();
+ container.Orientation = BoxContainer.LayoutOrientation.Vertical;
+
+ // Create and add a header with the name and the button to select the language
+ {
+ var header = new BoxContainer();
+ header.Orientation = BoxContainer.LayoutOrientation.Horizontal;
+
+ header.Orientation = BoxContainer.LayoutOrientation.Horizontal;
+ header.HorizontalExpand = true;
+ header.SeparationOverride = 2;
+
+ var name = new Label();
+ name.Text = proto?.Name ?? "";
+ name.MinWidth = 50;
+ name.HorizontalExpand = true;
+
+ var button = new Button();
+ button.Text = "Choose";
+ button.OnPressed += _ => OnLanguageChosen(language);
+ state.button = button;
+
+ header.AddChild(name);
+ header.AddChild(button);
+
+ container.AddChild(header);
+ }
+
+ // Create and add a collapsible description
+ {
+ var body = new CollapsibleBody();
+ body.HorizontalExpand = true;
+ body.Margin = new Thickness(4f, 4f);
+
+ var description = new RichTextLabel();
+ description.SetMessage(proto?.Description ?? "");
+ description.HorizontalExpand = true;
+
+ body.AddChild(description);
+
+ var collapser = new Collapsible(Loc.GetString("language-menu-description-header"), body);
+ collapser.Orientation = BoxContainer.LayoutOrientation.Vertical;
+ collapser.HorizontalExpand = true;
+
+ container.AddChild(collapser);
+ }
+
+ // Before adding, wrap the new container in a PanelContainer to give it a distinct look
+ var wrapper = new PanelContainer();
+ wrapper.StyleClasses.Add("PdaBorderRect");
+
+ wrapper.AddChild(container);
+ OptionsList.AddChild(wrapper);
+
+ _entries.Add(state);
+ }
+
+ private void OnLanguageChosen(string id)
+ {
+ var proto = _clientLanguageSystem.GetLanguage(id);
+ if (proto != null)
+ _clientLanguageSystem.RequestSetLanguage(proto);
+ }
+
+ private struct EntryState
+ {
+ public string language;
+ public Button? button;
+ }
+}
diff --git a/Content.Client/Language/Systems/LanguageSystem.cs b/Content.Client/Language/Systems/LanguageSystem.cs
new file mode 100644
index 0000000000..3254297b0c
--- /dev/null
+++ b/Content.Client/Language/Systems/LanguageSystem.cs
@@ -0,0 +1,67 @@
+using Content.Shared.Language;
+using Content.Shared.Language.Events;
+using Content.Shared.Language.Systems;
+using Robust.Shared.Console;
+
+namespace Content.Client.Language.Systems;
+
+///
+/// Client-side language system.
+///
+///
+/// Unlike the server, the client is not aware of other entities' languages; it's only notified about the entity that it posesses.
+/// Due to that, this system stores such information in a static manner.
+///
+public sealed class LanguageSystem : SharedLanguageSystem
+{
+ ///
+ /// The current language of the entity currently possessed by the player.
+ ///
+ public string CurrentLanguage { get; private set; } = default!;
+ ///
+ /// The list of languages the currently possessed entity can speak.
+ ///
+ public List SpokenLanguages { get; private set; } = new();
+ ///
+ /// The list of languages the currently possessed entity can understand.
+ ///
+ public List UnderstoodLanguages { get; private set; } = new();
+
+ [Dependency] private readonly IConsoleHost _consoleHost = default!;
+
+ public override void Initialize()
+ {
+ SubscribeNetworkEvent(OnLanguagesUpdated);
+ }
+
+ ///
+ /// Sends a network request to the server to update this system's state.
+ /// The server may ignore the said request if the player is not possessing an entity.
+ ///
+ public void RequestStateUpdate()
+ {
+ RaiseNetworkEvent(new RequestLanguagesMessage());
+ }
+
+ public void RequestSetLanguage(LanguagePrototype language)
+ {
+ // May cause some minor desync...
+ if (language.ID == CurrentLanguage)
+ return;
+
+ // (This is dumb. This is very dumb. It should be a message instead.)
+ // TODO Change this, soonish
+ _consoleHost.ExecuteCommand("languageselect " + language.ID);
+
+ // So to reduce the probability of desync, we replicate the change locally too
+ if (SpokenLanguages.Contains(language.ID))
+ CurrentLanguage = language.ID;
+ }
+
+ private void OnLanguagesUpdated(LanguagesUpdatedMessage message)
+ {
+ CurrentLanguage = message.CurrentLanguage;
+ SpokenLanguages = message.Spoken;
+ UnderstoodLanguages = message.Understood;
+ }
+}
diff --git a/Content.Client/Language/Systems/TranslatorImplanterSystem.cs b/Content.Client/Language/Systems/TranslatorImplanterSystem.cs
new file mode 100644
index 0000000000..da19b3decf
--- /dev/null
+++ b/Content.Client/Language/Systems/TranslatorImplanterSystem.cs
@@ -0,0 +1,8 @@
+using Content.Shared.Language.Systems;
+
+namespace Content.Client.Language.Systems;
+
+public sealed class TranslatorImplanterSystem : SharedTranslatorImplanterSystem
+{
+
+}
diff --git a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs
index ce5cf421ae..43a1e72a17 100644
--- a/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs
+++ b/Content.Client/Options/UI/Tabs/KeyRebindTab.xaml.cs
@@ -212,6 +212,7 @@ void AddCheckBox(string checkBoxName, bool currentState, Action, IOnStateExited
+{
+ public LanguageMenuWindow? _languageWindow;
+ private MenuButton? LanguageButton => UIManager.GetActiveUIWidgetOrNull()?.LanguageButton;
+
+ public override void Initialize()
+ {
+ SubscribeNetworkEvent((LanguagesUpdatedMessage message, EntitySessionEventArgs args) => _languageWindow?.UpdateState(message.CurrentLanguage, message.Spoken));
+ }
+
+ public void OnStateEntered(GameplayState state)
+ {
+ DebugTools.Assert(_languageWindow == null);
+
+ _languageWindow = UIManager.CreateWindow();
+ LayoutContainer.SetAnchorPreset(_languageWindow, LayoutContainer.LayoutPreset.CenterTop);
+
+ CommandBinds.Builder.Bind(ContentKeyFunctions.OpenLanguageMenu, InputCmdHandler.FromDelegate(_ => ToggleWindow())).Register();
+ }
+
+ public void OnStateExited(GameplayState state)
+ {
+ if (_languageWindow != null)
+ {
+ _languageWindow.Dispose();
+ _languageWindow = null;
+ }
+
+ CommandBinds.Unregister();
+ }
+
+ public void UnloadButton()
+ {
+ if (LanguageButton == null)
+ {
+ return;
+ }
+
+ LanguageButton.OnPressed -= LanguageButtonPressed;
+ }
+
+ public void LoadButton()
+ {
+ if (LanguageButton == null)
+ {
+ return;
+ }
+
+ LanguageButton.OnPressed += LanguageButtonPressed;
+
+ if (_languageWindow == null)
+ {
+ return;
+ }
+
+ _languageWindow.OnClose += DeactivateButton;
+ _languageWindow.OnOpen += ActivateButton;
+ }
+
+ private void DeactivateButton() => LanguageButton!.Pressed = false;
+ private void ActivateButton() => LanguageButton!.Pressed = true;
+
+ private void LanguageButtonPressed(ButtonEventArgs args)
+ {
+ ToggleWindow();
+ }
+
+ private void CloseWindow()
+ {
+ _languageWindow?.Close();
+ }
+
+ private void ToggleWindow()
+ {
+ if (_languageWindow == null)
+ return;
+
+ if (LanguageButton != null)
+ {
+ LanguageButton.SetClickPressed(!_languageWindow.IsOpen);
+ }
+
+ if (_languageWindow.IsOpen)
+ {
+ CloseWindow();
+ }
+ else
+ {
+ _languageWindow.Open();
+ }
+ }
+}
diff --git a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs
index 1505db48a7..156fa63884 100644
--- a/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs
+++ b/Content.Client/UserInterface/Systems/MenuBar/GameTopMenuBarUIController.cs
@@ -9,6 +9,7 @@
using Content.Client.UserInterface.Systems.MenuBar.Widgets;
using Content.Client.UserInterface.Systems.Sandbox;
using Robust.Client.UserInterface.Controllers;
+using Content.Client.UserInterface.Systems.Language;
namespace Content.Client.UserInterface.Systems.MenuBar;
@@ -22,6 +23,7 @@ public sealed class GameTopMenuBarUIController : UIController
[Dependency] private readonly ActionUIController _action = default!;
[Dependency] private readonly SandboxUIController _sandbox = default!;
[Dependency] private readonly GuidebookUIController _guidebook = default!;
+ [Dependency] private readonly LanguageMenuUIController _language = default!;
private GameTopMenuBar? GameTopMenuBar => UIManager.GetActiveUIWidgetOrNull();
@@ -44,6 +46,7 @@ public void UnloadButtons()
_ahelp.UnloadButton();
_action.UnloadButton();
_sandbox.UnloadButton();
+ _language.UnloadButton();
}
public void LoadButtons()
@@ -56,5 +59,6 @@ public void LoadButtons()
_ahelp.LoadButton();
_action.LoadButton();
_sandbox.LoadButton();
+ _language.LoadButton();
}
}
diff --git a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml
index 3c8cd1d164..a76943ace8 100644
--- a/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml
+++ b/Content.Client/UserInterface/Systems/MenuBar/Widgets/GameTopMenuBar.xaml
@@ -63,6 +63,16 @@
HorizontalExpand="True"
AppendStyleClass="{x:Static style:StyleBase.ButtonSquare}"
/>
+
(source))
@@ -249,10 +255,10 @@ public void TrySendInGameICMessage(
switch (desiredType)
{
case InGameICChatType.Speak:
- SendEntitySpeak(source, message, range, nameOverride, hideLog, ignoreActionBlocker);
+ SendEntitySpeak(source, message, range, nameOverride, hideLog, ignoreActionBlocker, languageOverride: languageOverride);
break;
case InGameICChatType.Whisper:
- SendEntityWhisper(source, message, range, null, nameOverride, hideLog, ignoreActionBlocker);
+ SendEntityWhisper(source, message, range, null, nameOverride, hideLog, ignoreActionBlocker, languageOverride: languageOverride);
break;
case InGameICChatType.Emote:
SendEntityEmote(source, message, range, nameOverride, hideLog: hideLog, ignoreActionBlocker: ignoreActionBlocker);
@@ -382,12 +388,14 @@ private void SendEntitySpeak(
ChatTransmitRange range,
string? nameOverride,
bool hideLog = false,
- bool ignoreActionBlocker = false
+ bool ignoreActionBlocker = false,
+ LanguagePrototype? languageOverride = null
)
{
if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker)
return;
+ // The original message
var message = TransformSpeech(source, FormattedMessage.RemoveMarkup(originalMessage));
if (message.Length == 0)
@@ -411,18 +419,19 @@ private void SendEntitySpeak(
speech = proto;
}
- name = FormattedMessage.EscapeText(name);
+ var language = languageOverride ?? _language.GetLanguage(source);
- var wrappedMessage = Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message",
- ("entityName", name),
- ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))),
- ("fontType", speech.FontId),
- ("fontSize", speech.FontSize),
- ("message", FormattedMessage.EscapeText(message)));
+ name = FormattedMessage.EscapeText(name);
+ // The chat message wrapped in a "x says y" string
+ var wrappedMessage = WrapPublicMessage(source, name, message);
+ // The chat message obfuscated via language obfuscation
+ var obfuscated = _language.ObfuscateSpeech(message, language);
+ // The language-obfuscated message wrapped in a "x says y" string
+ var wrappedObfuscated = WrapPublicMessage(source, name, obfuscated);
- SendInVoiceRange(ChatChannel.Local, message, wrappedMessage, source, range);
+ SendInVoiceRange(ChatChannel.Local, name, message, wrappedMessage, obfuscated, wrappedObfuscated, source, range, languageOverride: language);
- var ev = new EntitySpokeEvent(source, message, null, null);
+ var ev = new EntitySpokeEvent(source, message, null, false, language);
RaiseLocalEvent(source, ev, true);
// To avoid logging any messages sent by entities that are not players, like vendors, cloning, etc.
@@ -455,7 +464,8 @@ private void SendEntityWhisper(
RadioChannelPrototype? channel,
string? nameOverride,
bool hideLog = false,
- bool ignoreActionBlocker = false
+ bool ignoreActionBlocker = false,
+ LanguagePrototype? languageOverride = null
)
{
if (!_actionBlocker.CanSpeak(source) && !ignoreActionBlocker)
@@ -465,8 +475,6 @@ private void SendEntityWhisper(
if (message.Length == 0)
return;
- var obfuscatedMessage = ObfuscateMessageReadability(message, 0.2f);
-
// get the entity's name by visual identity (if no override provided).
string nameIdentity = FormattedMessage.EscapeText(nameOverride ?? Identity.Name(source, EntityManager));
// get the entity's name by voice (if no override provided).
@@ -483,41 +491,57 @@ private void SendEntityWhisper(
}
name = FormattedMessage.EscapeText(name);
- var wrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
- ("entityName", name), ("message", FormattedMessage.EscapeText(message)));
-
- var wrappedobfuscatedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
- ("entityName", nameIdentity), ("message", FormattedMessage.EscapeText(obfuscatedMessage)));
-
- var wrappedUnknownMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message",
- ("message", FormattedMessage.EscapeText(obfuscatedMessage)));
-
+ var language = languageOverride ?? _language.GetLanguage(source);
+ var languageObfuscatedMessage = _language.ObfuscateSpeech(message, language);
foreach (var (session, data) in GetRecipients(source, WhisperMuffledRange))
{
- EntityUid listener;
-
- if (session.AttachedEntity is not { Valid: true } playerEntity)
+ if (session.AttachedEntity is not { Valid: true } listener)
continue;
- listener = session.AttachedEntity.Value;
if (MessageRangeCheck(session, data, range) != MessageRangeCheckResult.Full)
continue; // Won't get logged to chat, and ghosts are too far away to see the pop-up, so we just won't send it to them.
+ var canUnderstandLanguage = _language.CanUnderstand(listener, language);
+ // How the entity perceives the message depends on whether it can understand its language
+ var perceivedMessage = canUnderstandLanguage ? message : languageObfuscatedMessage;
+
+ // Result is the intermediate message derived from the perceived one via obfuscation
+ // Wrapped message is the result wrapped in an "x says y" string
+ string result, wrappedMessage;
if (data.Range <= WhisperClearRange)
- _chatManager.ChatMessageToOne(ChatChannel.Whisper, message, wrappedMessage, source, false, session.Channel);
- //If listener is too far, they only hear fragments of the message
- //Collisiongroup.Opaque is not ideal for this use. Preferably, there should be a check specifically with "Can Ent1 see Ent2" in mind
- else if (_interactionSystem.InRangeUnobstructed(source, listener, WhisperMuffledRange, Shared.Physics.CollisionGroup.Opaque)) //Shared.Physics.CollisionGroup.Opaque
- _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedobfuscatedMessage, source, false, session.Channel);
- //If listener is too far and has no line of sight, they can't identify the whisperer's identity
+ {
+ // Scenario 1: the listener can clearly understand the message
+ result = perceivedMessage;
+ wrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
+ ("entityName", name),
+ ("message", FormattedMessage.EscapeText(result)));
+ }
+ else if (_interactionSystem.InRangeUnobstructed(source, listener, WhisperMuffledRange, Shared.Physics.CollisionGroup.Opaque))
+ {
+ // Scenerio 2: if the listener is too far, they only hear fragments of the message
+ // Collisiongroup.Opaque is not ideal for this use. Preferably, there should be a check specifically with "Can Ent1 see Ent2" in mind
+ result = ObfuscateMessageReadability(perceivedMessage);
+ wrappedMessage = Loc.GetString("chat-manager-entity-whisper-wrap-message",
+ ("entityName", nameIdentity), ("message", FormattedMessage.EscapeText(result)));
+ }
else
- _chatManager.ChatMessageToOne(ChatChannel.Whisper, obfuscatedMessage, wrappedUnknownMessage, source, false, session.Channel);
+ {
+ // Scenario 3: If listener is too far and has no line of sight, they can't identify the whisperer's identity
+ result = ObfuscateMessageReadability(perceivedMessage);
+ wrappedMessage = Loc.GetString("chat-manager-entity-whisper-unknown-wrap-message",
+ ("message", FormattedMessage.EscapeText(result)));
+ }
+
+ _chatManager.ChatMessageToOne(ChatChannel.Whisper, result, wrappedMessage, source, false, session.Channel);
}
- _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range)));
+ var replayWrap = Loc.GetString("chat-manager-entity-whisper-wrap-message",
+ ("entityName", name),
+ ("message", FormattedMessage.EscapeText(message)));
+ _replay.RecordServerMessage(new ChatMessage(ChatChannel.Whisper, message, replayWrap, GetNetEntity(source), null, MessageRangeHideChatForReplay(range)));
- var ev = new EntitySpokeEvent(source, message, channel, obfuscatedMessage);
+ var ev = new EntitySpokeEvent(source, message, channel, true, language);
RaiseLocalEvent(source, ev, true);
if (!hideLog)
if (originalMessage == message)
@@ -564,7 +588,7 @@ private void SendEntityEmote(
if (checkEmote)
TryEmoteChatInput(source, action);
- SendInVoiceRange(ChatChannel.Emotes, action, wrappedMessage, source, range, author);
+ SendInVoiceRange(ChatChannel.Emotes, name, action, wrappedMessage, obfuscated: "", obfuscatedWrappedMessage: "", source, range, author);
if (!hideLog)
if (name != Name(source))
_adminLogger.Add(LogType.Chat, LogImpact.Low, $"Emote from {ToPrettyString(source):user} as {name}: {action}");
@@ -591,7 +615,13 @@ private void SendLOOC(EntityUid source, ICommonSession player, string message, b
("entityName", name),
("message", FormattedMessage.EscapeText(message)));
- SendInVoiceRange(ChatChannel.LOOC, message, wrappedMessage, source, hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal, player.UserId);
+ SendInVoiceRange(ChatChannel.LOOC, name, message, wrappedMessage,
+ obfuscated: string.Empty,
+ obfuscatedWrappedMessage: string.Empty, // will be skipped anyway
+ source,
+ hideChat ? ChatTransmitRange.HideChat : ChatTransmitRange.Normal,
+ player.UserId,
+ languageOverride: LanguageSystem.Universal);
_adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}");
}
@@ -672,15 +702,29 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat
///
/// Sends a chat message to the given players in range of the source entity.
///
- private void SendInVoiceRange(ChatChannel channel, string message, string wrappedMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null)
+ private void SendInVoiceRange(ChatChannel channel, string name, string message, string wrappedMessage, string obfuscated, string obfuscatedWrappedMessage, EntityUid source, ChatTransmitRange range, NetUserId? author = null, LanguagePrototype? languageOverride = null)
{
+ var language = languageOverride ?? _language.GetLanguage(source);
foreach (var (session, data) in GetRecipients(source, VoiceRange))
{
var entRange = MessageRangeCheck(session, data, range);
if (entRange == MessageRangeCheckResult.Disallowed)
continue;
var entHideChat = entRange == MessageRangeCheckResult.HideChat;
- _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.Channel, author: author);
+ if (session.AttachedEntity is not { Valid: true } playerEntity)
+ continue;
+ EntityUid listener = session.AttachedEntity.Value;
+
+
+ // If the channel does not support languages, or the entity can understand the message, send the original message, otherwise send the obfuscated version
+ if (channel == ChatChannel.LOOC || channel == ChatChannel.Emotes || _language.CanUnderstand(listener, language))
+ {
+ _chatManager.ChatMessageToOne(channel, message, wrappedMessage, source, entHideChat, session.Channel, author: author);
+ }
+ else
+ {
+ _chatManager.ChatMessageToOne(channel, obfuscated, obfuscatedWrappedMessage, source, entHideChat, session.Channel, author: author);
+ }
}
_replay.RecordServerMessage(new ChatMessage(channel, message, wrappedMessage, GetNetEntity(source), null, MessageRangeHideChatForReplay(range)));
@@ -790,6 +834,21 @@ public string SanitizeMessageReplaceWords(string message)
return msg;
}
+ ///
+ /// Wraps a message sent by the specified entity into an "x says y" string.
+ ///
+ public string WrapPublicMessage(EntityUid source, string name, string message)
+ {
+ var speech = GetSpeechVerb(source, message);
+ var verbName = Loc.GetString(_random.Pick(speech.SpeechVerbStrings));
+ return Loc.GetString(speech.Bold ? "chat-manager-entity-say-bold-wrap-message" : "chat-manager-entity-say-wrap-message",
+ ("entityName", name),
+ ("verb", verbName),
+ ("fontType", speech.FontId),
+ ("fontSize", speech.FontSize),
+ ("message", FormattedMessage.EscapeText(message)));
+ }
+
///
/// Returns list of players and ranges for all players withing some range. Also returns observers with a range of -1.
///
@@ -836,7 +895,7 @@ public readonly record struct ICChatRecipientData(float Range, bool Observer, bo
{
}
- private string ObfuscateMessageReadability(string message, float chance)
+ public string ObfuscateMessageReadability(string message, float chance = DefaultObfuscationFactor)
{
var modifiedMessage = new StringBuilder(message);
@@ -925,7 +984,8 @@ public sealed class EntitySpokeEvent : EntityEventArgs
{
public readonly EntityUid Source;
public readonly string Message;
- public readonly string? ObfuscatedMessage; // not null if this was a whisper
+ public readonly bool IsWhisper;
+ public readonly LanguagePrototype Language;
///
/// If the entity was trying to speak into a radio, this was the channel they were trying to access. If a radio
@@ -933,12 +993,13 @@ public sealed class EntitySpokeEvent : EntityEventArgs
///
public RadioChannelPrototype? Channel;
- public EntitySpokeEvent(EntityUid source, string message, RadioChannelPrototype? channel, string? obfuscatedMessage)
+ public EntitySpokeEvent(EntityUid source, string message, RadioChannelPrototype? channel, bool isWhisper, LanguagePrototype language)
{
Source = source;
Message = message;
Channel = channel;
- ObfuscatedMessage = obfuscatedMessage;
+ IsWhisper = isWhisper;
+ Language = language;
}
}
diff --git a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs
index bf7691fe37..faee26ffee 100644
--- a/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs
+++ b/Content.Server/Chemistry/ReagentEffects/MakeSentient.cs
@@ -1,10 +1,14 @@
+using System.Linq;
using Content.Server.Ghost.Roles.Components;
using Content.Server.Speech.Components;
using Content.Shared.Chemistry.Reagent;
+using Content.Shared.Language;
+using Content.Shared.Language.Systems;
using Content.Shared.Mind.Components;
using Robust.Shared.Prototypes;
using Content.Server.Psionics; //Nyano - Summary: pulls in the ability for the sentient creature to become psionic.
-using Content.Shared.Humanoid; //Delta-V - Banning humanoids from becoming ghost roles.
+using Content.Shared.Humanoid;
+using Content.Shared.Language.Events; //Delta-V - Banning humanoids from becoming ghost roles.
namespace Content.Server.Chemistry.ReagentEffects;
@@ -24,6 +28,20 @@ public override void Effect(ReagentEffectArgs args)
entityManager.RemoveComponent(uid);
entityManager.RemoveComponent(uid);
+ var speaker = entityManager.EnsureComponent(uid);
+ var fallback = SharedLanguageSystem.FallbackLanguagePrototype;
+
+ if (!speaker.UnderstoodLanguages.Contains(fallback))
+ speaker.UnderstoodLanguages.Add(fallback);
+
+ if (!speaker.SpokenLanguages.Contains(fallback))
+ {
+ speaker.CurrentLanguage = fallback;
+ speaker.SpokenLanguages.Add(fallback);
+
+ args.EntityManager.EventBus.RaiseLocalEvent(uid, new LanguagesUpdateEvent(), true);
+ }
+
// Stops from adding a ghost role to things like people who already have a mind
if (entityManager.TryGetComponent(uid, out var mindContainer) && mindContainer.HasMind)
{
@@ -47,7 +65,7 @@ public override void Effect(ReagentEffectArgs args)
ghostRole = entityManager.AddComponent(uid);
entityManager.EnsureComponent(uid);
- entityManager.EnsureComponent(uid); //Nyano - Summary:. Makes the animated body able to get psionics.
+ entityManager.EnsureComponent(uid); //Nyano - Summary:. Makes the animated body able to get psionics.
var entityData = entityManager.GetComponent(uid);
ghostRole.RoleName = entityData.EntityName;
diff --git a/Content.Server/Language/Commands/ListLanguagesCommand.cs b/Content.Server/Language/Commands/ListLanguagesCommand.cs
new file mode 100644
index 0000000000..2d55e3b36d
--- /dev/null
+++ b/Content.Server/Language/Commands/ListLanguagesCommand.cs
@@ -0,0 +1,39 @@
+using System.Linq;
+using Content.Shared.Administration;
+using Robust.Shared.Console;
+using Robust.Shared.Enums;
+
+namespace Content.Server.Language.Commands;
+
+[AnyCommand]
+public sealed class ListLanguagesCommand : IConsoleCommand
+{
+ public string Command => "languagelist";
+ public string Description => Loc.GetString("command-list-langs-desc");
+ public string Help => Loc.GetString("command-list-langs-help", ("command", Command));
+
+ public void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (shell.Player is not { } player)
+ {
+ shell.WriteError("This command cannot be run from the server.");
+ return;
+ }
+
+ if (player.Status != SessionStatus.InGame)
+ return;
+
+ if (player.AttachedEntity is not {} playerEntity)
+ {
+ shell.WriteError("You don't have an entity!");
+ return;
+ }
+
+ var languages = IoCManager.Resolve().GetEntitySystem();
+
+ var (spokenLangs, knownLangs) = languages.GetAllLanguages(playerEntity);
+
+ shell.WriteLine("Spoken:\n" + string.Join("\n", spokenLangs));
+ shell.WriteLine("Understood:\n" + string.Join("\n", knownLangs));
+ }
+}
diff --git a/Content.Server/Language/Commands/SayLanguageCommand.cs b/Content.Server/Language/Commands/SayLanguageCommand.cs
new file mode 100644
index 0000000000..ec321617f1
--- /dev/null
+++ b/Content.Server/Language/Commands/SayLanguageCommand.cs
@@ -0,0 +1,53 @@
+using Content.Server.Chat.Systems;
+using Content.Shared.Administration;
+using Robust.Shared.Console;
+using Robust.Shared.Enums;
+
+namespace Content.Server.Language.Commands;
+
+[AnyCommand]
+public sealed class SayLanguageCommand : IConsoleCommand
+{
+ public string Command => "saylang";
+ public string Description => Loc.GetString("command-saylang-desc");
+ public string Help => Loc.GetString("command-saylang-help", ("command", Command));
+
+ public void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (shell.Player is not { } player)
+ {
+ shell.WriteError("This command cannot be run from the server.");
+ return;
+ }
+
+ if (player.Status != SessionStatus.InGame)
+ return;
+
+ if (player.AttachedEntity is not {} playerEntity)
+ {
+ shell.WriteError("You don't have an entity!");
+ return;
+ }
+
+ if (args.Length < 2)
+ return;
+
+ var languageId = args[0];
+ var message = string.Join(" ", args, startIndex: 1, count: args.Length - 1).Trim();
+
+ if (string.IsNullOrEmpty(message))
+ return;
+
+ var languages = IoCManager.Resolve().GetEntitySystem();
+ var chats = IoCManager.Resolve().GetEntitySystem();
+
+ var language = languages.GetLanguage(languageId);
+ if (language == null || !languages.CanSpeak(playerEntity, language.ID))
+ {
+ shell.WriteError($"Language {languageId} is invalid or you cannot speak it!");
+ return;
+ }
+
+ chats.TrySendInGameICMessage(playerEntity, message, InGameICChatType.Speak, ChatTransmitRange.Normal, false, shell, player, languageOverride: language);
+ }
+}
diff --git a/Content.Server/Language/Commands/SelectLanguageCommand.cs b/Content.Server/Language/Commands/SelectLanguageCommand.cs
new file mode 100644
index 0000000000..a7f6751fe1
--- /dev/null
+++ b/Content.Server/Language/Commands/SelectLanguageCommand.cs
@@ -0,0 +1,48 @@
+using System.Linq;
+using Content.Shared.Administration;
+using Robust.Shared.Console;
+using Robust.Shared.Enums;
+
+namespace Content.Server.Language.Commands;
+
+[AnyCommand]
+public sealed class SelectLanguageCommand : IConsoleCommand
+{
+ public string Command => "languageselect";
+ public string Description => Loc.GetString("command-language-select-desc");
+ public string Help => Loc.GetString("command-language-select-help", ("command", Command));
+
+ public void Execute(IConsoleShell shell, string argStr, string[] args)
+ {
+ if (shell.Player is not { } player)
+ {
+ shell.WriteError("This command cannot be run from the server.");
+ return;
+ }
+
+ if (player.Status != SessionStatus.InGame)
+ return;
+
+ if (player.AttachedEntity is not { } playerEntity)
+ {
+ shell.WriteError("You don't have an entity!");
+ return;
+ }
+
+ if (args.Length < 1)
+ return;
+
+ var languageId = args[0];
+
+ var languages = IoCManager.Resolve().GetEntitySystem();
+
+ var language = languages.GetLanguage(languageId);
+ if (language == null || !languages.CanSpeak(playerEntity, language.ID))
+ {
+ shell.WriteError($"Language {languageId} is invalid or you cannot speak it!");
+ return;
+ }
+
+ languages.SetLanguage(playerEntity, language.ID);
+ }
+}
diff --git a/Content.Server/Language/DetermineEntityLanguagesEvent.cs b/Content.Server/Language/DetermineEntityLanguagesEvent.cs
new file mode 100644
index 0000000000..13ab2cac27
--- /dev/null
+++ b/Content.Server/Language/DetermineEntityLanguagesEvent.cs
@@ -0,0 +1,29 @@
+namespace Content.Server.Language;
+
+///
+/// Raised in order to determine the language an entity speaks at the current moment,
+/// as well as the list of all languages the entity may speak and understand.
+///
+public sealed class DetermineEntityLanguagesEvent : EntityEventArgs
+{
+ ///
+ /// The default language of this entity. If empty, remain unchanged.
+ /// This field has no effect if the entity decides to speak in a concrete language.
+ ///
+ public string CurrentLanguage;
+ ///
+ /// The list of all languages the entity may speak. Must NOT be held as a reference!
+ ///
+ public List SpokenLanguages;
+ ///
+ /// The list of all languages the entity may understand. Must NOT be held as a reference!
+ ///
+ public List UnderstoodLanguages;
+
+ public DetermineEntityLanguagesEvent(string currentLanguage, List spokenLanguages, List understoodLanguages)
+ {
+ CurrentLanguage = currentLanguage;
+ SpokenLanguages = spokenLanguages;
+ UnderstoodLanguages = understoodLanguages;
+ }
+}
diff --git a/Content.Server/Language/LanguageSystem.Networking.cs b/Content.Server/Language/LanguageSystem.Networking.cs
new file mode 100644
index 0000000000..94f7c19f50
--- /dev/null
+++ b/Content.Server/Language/LanguageSystem.Networking.cs
@@ -0,0 +1,56 @@
+using Content.Server.Mind;
+using Content.Shared.Language;
+using Content.Shared.Language.Events;
+using Content.Shared.Language.Systems;
+using Content.Shared.Mind;
+using Content.Shared.Mind.Components;
+using Robust.Shared.Player;
+
+namespace Content.Server.Language;
+
+public sealed partial class LanguageSystem
+{
+ [Dependency] private readonly MindSystem _mind = default!;
+
+ public void InitializeNet()
+ {
+ // Refresh the client's state when its mind hops to a different entity
+ SubscribeLocalEvent((uid, _, _) => SendLanguageStateToClient(uid));
+ SubscribeLocalEvent((_, _, args) =>
+ {
+ if (args.Mind.Comp.Session != null)
+ SendLanguageStateToClient(args.Mind.Comp.Session);
+ });
+
+ SubscribeLocalEvent((uid, comp, _) => SendLanguageStateToClient(uid, comp));
+ SubscribeNetworkEvent((_, session) => SendLanguageStateToClient(session.SenderSession));
+ }
+
+ private void SendLanguageStateToClient(EntityUid uid, LanguageSpeakerComponent? comp = null)
+ {
+ // Try to find a mind inside the entity and notify its session
+ if (!_mind.TryGetMind(uid, out var mind, out var mindComp) || mindComp.Session == null)
+ return;
+
+ SendLanguageStateToClient(uid, mindComp.Session, comp);
+ }
+
+ private void SendLanguageStateToClient(ICommonSession session, LanguageSpeakerComponent? comp = null)
+ {
+ // Try to find an entity associated with the session and resolve the languages from it
+ if (session.AttachedEntity is not { Valid: true } entity)
+ return;
+
+ SendLanguageStateToClient(entity, session, comp);
+ }
+
+ private void SendLanguageStateToClient(EntityUid uid, ICommonSession session, LanguageSpeakerComponent? component = null)
+ {
+ var langs = GetLanguages(uid, component);
+ if (langs == null)
+ return;
+
+ var message = new LanguagesUpdatedMessage(langs.CurrentLanguage, langs.SpokenLanguages, langs.UnderstoodLanguages);
+ RaiseNetworkEvent(message, session);
+ }
+}
diff --git a/Content.Server/Language/LanguageSystem.cs b/Content.Server/Language/LanguageSystem.cs
new file mode 100644
index 0000000000..26b46e63cd
--- /dev/null
+++ b/Content.Server/Language/LanguageSystem.cs
@@ -0,0 +1,280 @@
+using System.Linq;
+using System.Text;
+using Content.Server.GameTicking.Events;
+using Content.Shared.Language;
+using Content.Shared.Language.Events;
+using Content.Shared.Language.Systems;
+using Robust.Shared.Random;
+using UniversalLanguageSpeakerComponent = Content.Shared.Language.Components.UniversalLanguageSpeakerComponent;
+
+namespace Content.Server.Language;
+
+public sealed partial class LanguageSystem : SharedLanguageSystem
+{
+ // Static and re-used event instances used to minimize memory allocations during language processing, which can happen many times per tick.
+ // These are used in the method GetLanguages and returned from it. They should never be mutated outside of that method or returned outside this system.
+ private readonly DetermineEntityLanguagesEvent
+ _determineLanguagesEvent = new(string.Empty, new(), new()),
+ _universalLanguagesEvent = new(UniversalPrototype, [UniversalPrototype], [UniversalPrototype]); // Returned for universal speakers only
+
+ ///
+ /// A random number added to each pseudo-random number's seed. Changes every round.
+ ///
+ public int RandomRoundSeed { get; private set; }
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnInitLanguageSpeaker);
+ SubscribeLocalEvent(_ => RandomRoundSeed = _random.Next());
+
+ InitializeNet();
+ }
+
+ #region public api
+ ///
+ /// Obfuscate the speech of the given entity using its default language.
+ ///
+ public string ObfuscateSpeech(EntityUid source, string message)
+ {
+ var language = GetLanguage(source) ?? Universal;
+ return ObfuscateSpeech(message, language);
+ }
+
+ ///
+ /// Obfuscate a message using the given language.
+ ///
+ public string ObfuscateSpeech(string message, LanguagePrototype language)
+ {
+ var builder = new StringBuilder();
+ if (language.ObfuscateSyllables)
+ {
+ ObfuscateSyllables(builder, message, language);
+ }
+ else
+ {
+ ObfuscatePhrases(builder, message, language);
+ }
+
+ return builder.ToString();
+ }
+
+ public bool CanUnderstand(EntityUid listener, LanguagePrototype language, LanguageSpeakerComponent? listenerLanguageComp = null)
+ {
+ if (language.ID == UniversalPrototype || HasComp(listener))
+ return true;
+
+ var listenerLanguages = GetLanguages(listener, listenerLanguageComp)?.UnderstoodLanguages;
+
+ return listenerLanguages?.Contains(language.ID, StringComparer.Ordinal) ?? false;
+ }
+
+ public bool CanSpeak(EntityUid speaker, string language, LanguageSpeakerComponent? speakerComp = null)
+ {
+ if (HasComp(speaker))
+ return true;
+
+ var langs = GetLanguages(speaker, speakerComp)?.UnderstoodLanguages;
+ return langs?.Contains(language, StringComparer.Ordinal) ?? false;
+ }
+
+ //
+ // Returns the current language of the given entity. Assumes Universal if not specified.
+ //
+ public LanguagePrototype GetLanguage(EntityUid speaker, LanguageSpeakerComponent? languageComp = null)
+ {
+ var id = GetLanguages(speaker, languageComp)?.CurrentLanguage;
+ if (id == null)
+ return Universal; // Fallback
+
+ _prototype.TryIndex(id, out LanguagePrototype? proto);
+
+ return proto ?? Universal;
+ }
+
+ //
+ // Set the CurrentLanguage of the given entity.
+ //
+ public void SetLanguage(EntityUid speaker, string language, LanguageSpeakerComponent? languageComp = null)
+ {
+ if (!CanSpeak(speaker, language) || HasComp(speaker))
+ return;
+
+ if (languageComp == null && !TryComp(speaker, out languageComp))
+ return;
+
+ if (languageComp.CurrentLanguage == language)
+ return;
+
+ languageComp.CurrentLanguage = language;
+
+ RaiseLocalEvent(speaker, new LanguagesUpdateEvent(), true);
+ }
+
+ ///
+ /// Adds a new language to the lists of understood and/or spoken languages of the given component.
+ ///
+ public void AddLanguage(LanguageSpeakerComponent comp, string language, bool addSpoken = true, bool addUnderstood = true)
+ {
+ if (addSpoken && !comp.SpokenLanguages.Contains(language))
+ comp.SpokenLanguages.Add(language);
+
+ if (addUnderstood && !comp.UnderstoodLanguages.Contains(language))
+ comp.UnderstoodLanguages.Add(language);
+
+ RaiseLocalEvent(comp.Owner, new LanguagesUpdateEvent(), true);
+ }
+
+ ///
+ /// Returns a pair of (spoken, understood) languages of the given entity.
+ ///
+ public (List spoken, List understood) GetAllLanguages(EntityUid speaker)
+ {
+ var languages = GetLanguages(speaker);
+ // The lists need to be copied because the internal ones are re-used for performance reasons.
+ return (new List(languages.SpokenLanguages), new List(languages.UnderstoodLanguages));
+ }
+
+ ///
+ /// Ensures the given entity has a valid language as its current language.
+ /// If not, sets it to the first entry of its SpokenLanguages list, or universal if it's empty.
+ ///
+ public void EnsureValidLanguage(EntityUid entity, LanguageSpeakerComponent? comp = null)
+ {
+ if (comp == null && !TryComp(entity, out comp))
+ return;
+
+ var langs = GetLanguages(entity, comp);
+ if (!langs.SpokenLanguages.Contains(comp!.CurrentLanguage, StringComparer.Ordinal))
+ {
+ comp.CurrentLanguage = langs.SpokenLanguages.FirstOrDefault(UniversalPrototype);
+ RaiseLocalEvent(comp.Owner, new LanguagesUpdateEvent(), true);
+ }
+ }
+ #endregion
+
+ #region event handling
+ private void OnInitLanguageSpeaker(EntityUid uid, LanguageSpeakerComponent component, ComponentInit args)
+ {
+ if (string.IsNullOrEmpty(component.CurrentLanguage))
+ {
+ component.CurrentLanguage = component.SpokenLanguages.FirstOrDefault(UniversalPrototype);
+ }
+ }
+ #endregion
+
+ #region internal api - obfuscation
+ private void ObfuscateSyllables(StringBuilder builder, string message, LanguagePrototype language)
+ {
+ // Go through each word. Calculate its hash sum and count the number of letters.
+ // Replicate it with pseudo-random syllables of pseudo-random (but similar) length. Use the hash code as the seed.
+ // This means that identical words will be obfuscated identically. Simple words like "hello" or "yes" in different langs can be memorized.
+ var wordBeginIndex = 0;
+ var hashCode = 0;
+ for (var i = 0; i < message.Length; i++)
+ {
+ var ch = char.ToLower(message[i]);
+ // A word ends when one of the following is found: a space, a sentence end, or EOM
+ if (char.IsWhiteSpace(ch) || IsSentenceEnd(ch) || i == message.Length - 1)
+ {
+ var wordLength = i - wordBeginIndex;
+ if (wordLength > 0)
+ {
+ var newWordLength = PseudoRandomNumber(hashCode, 1, 4);
+
+ for (var j = 0; j < newWordLength; j++)
+ {
+ var index = PseudoRandomNumber(hashCode + j, 0, language.Replacement.Count);
+ builder.Append(language.Replacement[index]);
+ }
+ }
+
+ builder.Append(ch);
+ hashCode = 0;
+ wordBeginIndex = i + 1;
+ }
+ else
+ {
+ hashCode = hashCode * 31 + ch;
+ }
+ }
+ }
+
+ private void ObfuscatePhrases(StringBuilder builder, string message, LanguagePrototype language)
+ {
+ // In a similar manner, each phrase is obfuscated with a random number of conjoined obfuscation phrases.
+ // However, the number of phrases depends on the number of characters in the original phrase.
+ var sentenceBeginIndex = 0;
+ for (var i = 0; i < message.Length; i++)
+ {
+ var ch = char.ToLower(message[i]);
+ if (IsSentenceEnd(ch) || i == message.Length - 1)
+ {
+ var length = i - sentenceBeginIndex;
+ if (length > 0)
+ {
+ var newLength = (int) Math.Clamp(Math.Cbrt(length) - 1, 1, 4); // 27+ chars for 2 phrases, 64+ for 3, 125+ for 4.
+
+ for (var j = 0; j < newLength; j++)
+ {
+ var phrase = _random.Pick(language.Replacement);
+ builder.Append(phrase);
+ }
+ }
+ sentenceBeginIndex = i + 1;
+
+ if (IsSentenceEnd(ch))
+ builder.Append(ch).Append(" ");
+ }
+ }
+ }
+
+ private static bool IsSentenceEnd(char ch)
+ {
+ return ch is '.' or '!' or '?';
+ }
+ #endregion
+
+ #region internal api - misc
+ ///
+ /// Dynamically resolves the current language of the entity and the list of all languages it speaks.
+ /// The returned event is reused and thus must not be held as a reference anywhere but inside the caller function.
+ ///
+ /// If the entity is not a language speaker, or is a universal language speaker, then it's assumed to speak Universal,
+ /// aka all languages at once and none at the same time.
+ ///
+ private DetermineEntityLanguagesEvent GetLanguages(EntityUid speaker, LanguageSpeakerComponent? comp = null)
+ {
+ // This is a shortcut for ghosts and entities that should not speak normally (admemes)
+ if (HasComp(speaker) || !TryComp(speaker, out comp))
+ return _universalLanguagesEvent;
+
+ var ev = _determineLanguagesEvent;
+ ev.SpokenLanguages.Clear();
+ ev.UnderstoodLanguages.Clear();
+
+ ev.CurrentLanguage = comp.CurrentLanguage;
+ ev.SpokenLanguages.AddRange(comp.SpokenLanguages);
+ ev.UnderstoodLanguages.AddRange(comp.UnderstoodLanguages);
+
+ RaiseLocalEvent(speaker, ev, true);
+
+ if (ev.CurrentLanguage.Length == 0)
+ ev.CurrentLanguage = !string.IsNullOrEmpty(comp.CurrentLanguage) ? comp.CurrentLanguage : UniversalPrototype; // Fall back to account for admemes like admins possessing a bread
+ return ev;
+ }
+
+ ///
+ /// Generates a stable pseudo-random number in the range [min, max) for the given seed. Each input seed corresponds to exactly one random number.
+ ///
+ private int PseudoRandomNumber(int seed, int min, int max)
+ {
+ // This is not a uniform distribution, but it shouldn't matter: given there's 2^31 possible random numbers,
+ // The bias of this function should be so tiny it will never be noticed.
+ seed += RandomRoundSeed;
+ var random = ((seed * 1103515245) + 12345) & 0x7fffffff; // Source: http://cs.uccs.edu/~cs591/bufferOverflow/glibc-2.2.4/stdlib/random_r.c
+ return random % (max - min) + min;
+ }
+ #endregion
+}
diff --git a/Content.Server/Language/TranslatorImplanterSystem.cs b/Content.Server/Language/TranslatorImplanterSystem.cs
new file mode 100644
index 0000000000..cdc0cd7f8e
--- /dev/null
+++ b/Content.Server/Language/TranslatorImplanterSystem.cs
@@ -0,0 +1,81 @@
+using System.Linq;
+using Content.Server.Administration.Logs;
+using Content.Server.Popups;
+using Content.Shared.Database;
+using Content.Shared.Interaction;
+using Content.Shared.Language;
+using Content.Shared.Language.Components;
+using Content.Shared.Language.Events;
+using Content.Shared.Language.Systems;
+using Content.Shared.Mobs.Components;
+using Content.Shared.Language.Components.Translators;
+
+namespace Content.Server.Language;
+
+public sealed class TranslatorImplanterSystem : SharedTranslatorImplanterSystem
+{
+ [Dependency] private readonly PopupSystem _popup = default!;
+ [Dependency] private readonly IAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly LanguageSystem _language = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnImplant);
+ }
+
+ private void OnImplant(EntityUid implanter, TranslatorImplanterComponent component, AfterInteractEvent args)
+ {
+ if (component.Used || !args.CanReach || args.Target is not { Valid: true } target)
+ return;
+
+ if (!TryComp(target, out var speaker))
+ return;
+
+ if (component.MobsOnly && !HasComp(target))
+ {
+ _popup.PopupEntity("translator-implanter-refuse", component.Owner);
+ return;
+ }
+
+ var understood = _language.GetAllLanguages(target).understood;
+ if (component.RequiredLanguages.Count > 0 && !component.RequiredLanguages.Any(lang => understood.Contains(lang)))
+ {
+ RefusesPopup(implanter, target);
+ return;
+ }
+
+ var intrinsic = EnsureComp(target);
+ intrinsic.Enabled = true;
+
+ foreach (var lang in component.SpokenLanguages.Where(lang => !intrinsic.SpokenLanguages.Contains(lang)))
+ intrinsic.SpokenLanguages.Add(lang);
+
+ foreach (var lang in component.UnderstoodLanguages.Where(lang => !intrinsic.UnderstoodLanguages.Contains(lang)))
+ intrinsic.UnderstoodLanguages.Add(lang);
+
+ component.Used = true;
+ SuccessPopup(implanter, target);
+
+ _adminLogger.Add(LogType.Action, LogImpact.Medium,
+ $"{ToPrettyString(args.User):player} used {ToPrettyString(implanter):implanter} to give {ToPrettyString(target):target} the following languages:"
+ + $"\nSpoken: {string.Join(", ", component.SpokenLanguages)}; Understood: {string.Join(", ", component.UnderstoodLanguages)}");
+
+ OnAppearanceChange(implanter, component);
+ RaiseLocalEvent(target, new LanguagesUpdateEvent(), true);
+ }
+
+ private void RefusesPopup(EntityUid implanter, EntityUid target)
+ {
+ _popup.PopupEntity(
+ Loc.GetString("translator-implanter-refuse", ("implanter", implanter), ("target", target)),
+ implanter);
+ }
+
+ private void SuccessPopup(EntityUid implanter, EntityUid target)
+ {
+ _popup.PopupEntity(
+ Loc.GetString("translator-implanter-success", ("implanter", implanter), ("target", target)),
+ implanter);
+ }
+}
diff --git a/Content.Server/Language/TranslatorSystem.cs b/Content.Server/Language/TranslatorSystem.cs
new file mode 100644
index 0000000000..d918d02429
--- /dev/null
+++ b/Content.Server/Language/TranslatorSystem.cs
@@ -0,0 +1,236 @@
+using System.Linq;
+using Content.Server.Popups;
+using Content.Server.PowerCell;
+using Content.Shared.Interaction;
+using Content.Shared.Interaction.Events;
+using Content.Shared.Language;
+using Content.Shared.Language.Events;
+using Content.Shared.Language.Systems;
+using Content.Shared.PowerCell;
+using Content.Shared.Language.Components.Translators;
+
+namespace Content.Server.Language;
+
+// this does not support holding multiple translators at once yet.
+// that should not be an issue for now, but it better get fixed later.
+public sealed class TranslatorSystem : SharedTranslatorSystem
+{
+ [Dependency] private readonly PopupSystem _popup = default!;
+ [Dependency] private readonly LanguageSystem _language = default!;
+ [Dependency] private readonly PowerCellSystem _powerCell = default!;
+
+ private ISawmill _sawmill = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+ _sawmill = Logger.GetSawmill("translator");
+
+ // I wanna die. But my death won't help us discover polymorphism.
+ SubscribeLocalEvent(OnDetermineLanguages);
+ SubscribeLocalEvent(OnDetermineLanguages);
+ SubscribeLocalEvent(OnDetermineLanguages);
+
+ SubscribeLocalEvent(OnTranslatorToggle);
+ SubscribeLocalEvent(OnPowerCellSlotEmpty);
+
+ // TODO: why does this use InteractHandEvent??
+ SubscribeLocalEvent(OnTranslatorInteract);
+ SubscribeLocalEvent(OnTranslatorDropped);
+ }
+
+ private void OnDetermineLanguages(EntityUid uid, IntrinsicTranslatorComponent component,
+ DetermineEntityLanguagesEvent ev)
+ {
+ if (!component.Enabled)
+ return;
+
+ if (!_powerCell.HasActivatableCharge(uid))
+ return;
+
+ var addUnderstood = true;
+ var addSpoken = true;
+ if (component.RequiredLanguages.Count > 0)
+ {
+ if (component.RequiresAllLanguages)
+ {
+ // Add langs when the wielder has all of the required languages
+ foreach (var language in component.RequiredLanguages)
+ {
+ if (!ev.SpokenLanguages.Contains(language, StringComparer.Ordinal))
+ addSpoken = false;
+
+ if (!ev.UnderstoodLanguages.Contains(language, StringComparer.Ordinal))
+ addUnderstood = false;
+ }
+ }
+ else
+ {
+ // Add langs when the wielder has at least one of the required languages
+ addUnderstood = false;
+ addSpoken = false;
+ foreach (var language in component.RequiredLanguages)
+ {
+ if (ev.SpokenLanguages.Contains(language, StringComparer.Ordinal))
+ addSpoken = true;
+
+ if (ev.UnderstoodLanguages.Contains(language, StringComparer.Ordinal))
+ addUnderstood = true;
+ }
+ }
+ }
+
+ if (addSpoken)
+ {
+ foreach (var language in component.SpokenLanguages)
+ {
+ AddIfNotExists(ev.SpokenLanguages, language);
+ }
+
+ if (component.CurrentSpeechLanguage != null && ev.CurrentLanguage.Length == 0)
+ {
+ ev.CurrentLanguage = component.CurrentSpeechLanguage;
+ }
+ }
+
+ if (addUnderstood)
+ {
+ foreach (var language in component.UnderstoodLanguages)
+ {
+ AddIfNotExists(ev.UnderstoodLanguages, language);
+ }
+ }
+ }
+
+ private void OnTranslatorInteract( EntityUid translator, HandheldTranslatorComponent component, InteractHandEvent args)
+ {
+ var holder = args.User;
+ if (!EntityManager.HasComponent(holder))
+ return;
+
+ var intrinsic = EnsureComp(holder);
+ UpdateBoundIntrinsicComp(component, intrinsic, component.Enabled);
+
+ UpdatedLanguages(holder);
+ }
+
+ private void OnTranslatorDropped(EntityUid translator, HandheldTranslatorComponent component, DroppedEvent args)
+ {
+ var holder = args.User;
+ if (!EntityManager.TryGetComponent(holder, out var intrinsic))
+ return;
+
+ if (intrinsic.Issuer == component)
+ {
+
+ intrinsic.Enabled = false;
+ RemCompDeferred(holder, intrinsic);
+ }
+
+ _language.EnsureValidLanguage(holder);
+
+ UpdatedLanguages(holder);
+ }
+
+ private void OnTranslatorToggle(EntityUid translator, HandheldTranslatorComponent component, ActivateInWorldEvent args)
+ {
+ if (!component.ToggleOnInteract)
+ return;
+
+ var hasPower = _powerCell.HasDrawCharge(translator);
+
+ if (Transform(args.Target).ParentUid is { Valid: true } holder && EntityManager.HasComponent(holder))
+ {
+ // This translator is held by a language speaker and thus has an intrinsic counterpart bound to it. Make sure it's up-to-date.
+ var intrinsic = EnsureComp(holder);
+ var isEnabled = !component.Enabled;
+ if (intrinsic.Issuer != component)
+ {
+ // The intrinsic comp wasn't owned by this handheld component, so this comp wasn't the active translator.
+ // Thus it needs to be turned on regardless of its previous state.
+ intrinsic.Issuer = component;
+ isEnabled = true;
+ }
+
+ isEnabled &= hasPower;
+ UpdateBoundIntrinsicComp(component, intrinsic, isEnabled);
+ component.Enabled = isEnabled;
+ _powerCell.SetPowerCellDrawEnabled(translator, isEnabled);
+
+ _language.EnsureValidLanguage(holder);
+ UpdatedLanguages(holder);
+ }
+ else
+ {
+ // This is a standalone translator (e.g. lying on the ground). Simply toggle its state.
+ component.Enabled = !component.Enabled && hasPower;
+ _powerCell.SetPowerCellDrawEnabled(translator, !component.Enabled && hasPower);
+ }
+
+ OnAppearanceChange(translator, component);
+
+ // HasPower shows a popup when there's no power, so we do not proceed in that case
+ if (hasPower)
+ {
+ var message =
+ Loc.GetString(component.Enabled ? "translator-component-turnon" : "translator-component-shutoff", ("translator", component.Owner));
+ _popup.PopupEntity(message, component.Owner, args.User);
+ }
+ }
+
+ private void OnPowerCellSlotEmpty(EntityUid translator, HandheldTranslatorComponent component, PowerCellSlotEmptyEvent args)
+ {
+ component.Enabled = false;
+ _powerCell.SetPowerCellDrawEnabled(translator, false);
+ OnAppearanceChange(translator, component);
+
+ if (Transform(translator).ParentUid is { Valid: true } holder && EntityManager.HasComponent(holder))
+ {
+ if (!EntityManager.TryGetComponent(holder, out var intrinsic))
+ return;
+
+ if (intrinsic.Issuer == component)
+ {
+ intrinsic.Enabled = false;
+ EntityManager.RemoveComponent(holder, intrinsic);
+ }
+
+ _language.EnsureValidLanguage(holder);
+ UpdatedLanguages(holder);
+ }
+ }
+
+ ///
+ /// Copies the state from the handheld [comp] to the [intrinsic] comp, using [isEnabled] as the enabled state.
+ ///
+ private void UpdateBoundIntrinsicComp(HandheldTranslatorComponent comp, HoldsTranslatorComponent intrinsic, bool isEnabled)
+ {
+ if (isEnabled)
+ {
+ intrinsic.SpokenLanguages = new List(comp.SpokenLanguages);
+ intrinsic.UnderstoodLanguages = new List(comp.UnderstoodLanguages);
+ intrinsic.CurrentSpeechLanguage = comp.CurrentSpeechLanguage;
+ }
+ else
+ {
+ intrinsic.SpokenLanguages.Clear();
+ intrinsic.UnderstoodLanguages.Clear();
+ intrinsic.CurrentSpeechLanguage = null;
+ }
+
+ intrinsic.Enabled = isEnabled;
+ intrinsic.Issuer = comp;
+ }
+
+ private static void AddIfNotExists(List list, string item)
+ {
+ if (list.Contains(item))
+ return;
+ list.Add(item);
+ }
+
+ private void UpdatedLanguages(EntityUid uid)
+ {
+ RaiseLocalEvent(uid, new LanguagesUpdateEvent(), true);
+ }
+}
diff --git a/Content.Server/Mind/Commands/MakeSentientCommand.cs b/Content.Server/Mind/Commands/MakeSentientCommand.cs
index 5e19d135b6..ecd04b3b2b 100644
--- a/Content.Server/Mind/Commands/MakeSentientCommand.cs
+++ b/Content.Server/Mind/Commands/MakeSentientCommand.cs
@@ -1,7 +1,10 @@
using Content.Server.Administration;
+using Content.Server.Language;
using Content.Shared.Administration;
using Content.Shared.Emoting;
using Content.Shared.Examine;
+using Content.Shared.Language;
+using Content.Shared.Language.Systems;
using Content.Shared.Mind.Components;
using Content.Shared.Movement.Components;
using Content.Shared.Speech;
@@ -55,6 +58,12 @@ public static void MakeSentient(EntityUid uid, IEntityManager entityManager, boo
{
entityManager.EnsureComponent(uid);
entityManager.EnsureComponent(uid);
+
+ var language = IoCManager.Resolve().GetEntitySystem();
+ var speaker = entityManager.EnsureComponent(uid);
+ // The logic is simple, if the speaker knows any language (like monkey or robot), it should keep speaking that language
+ if (speaker.SpokenLanguages.Count == 0)
+ language.AddLanguage(speaker, SharedLanguageSystem.FallbackLanguagePrototype);
}
entityManager.EnsureComponent(uid);
diff --git a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
index d18b044205..53517da6cb 100644
--- a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
+++ b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs
@@ -1,6 +1,9 @@
using Content.Server.Chat.Systems;
using Content.Server.Emp;
+using Content.Server.Language;
using Content.Server.Radio.Components;
+using Content.Server.Speech;
+using Content.Shared.Chat;
using Content.Shared.Inventory.Events;
using Content.Shared.Radio;
using Content.Shared.Radio.Components;
@@ -14,6 +17,7 @@ public sealed class HeadsetSystem : SharedHeadsetSystem
{
[Dependency] private readonly INetManager _netMan = default!;
[Dependency] private readonly RadioSystem _radio = default!;
+ [Dependency] private readonly LanguageSystem _language = default!;
public override void Initialize()
{
@@ -99,8 +103,16 @@ public void SetEnabled(EntityUid uid, bool value, HeadsetComponent? component =
private void OnHeadsetReceive(EntityUid uid, HeadsetComponent component, ref RadioReceiveEvent args)
{
- if (TryComp(Transform(uid).ParentUid, out ActorComponent? actor))
- _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel);
+ var parent = Transform(uid).ParentUid;
+ if (TryComp(parent, out ActorComponent? actor))
+ {
+ var canUnderstand = _language.CanUnderstand(parent, args.Language);
+ var msg = new MsgChatMessage
+ {
+ Message = canUnderstand ? args.OriginalChatMsg : args.LanguageObfuscatedChatMsg
+ };
+ _netMan.ServerSendMessage(msg, actor.PlayerSession.Channel);
+ }
}
private void OnEmpPulse(EntityUid uid, HeadsetComponent component, ref EmpPulseEvent args)
diff --git a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
index ace7d8ae31..fc3f69a3ba 100644
--- a/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
+++ b/Content.Server/Radio/EntitySystems/RadioDeviceSystem.cs
@@ -1,5 +1,6 @@
using Content.Server.Chat.Systems;
using Content.Server.Interaction;
+using Content.Server.Language;
using Content.Server.Popups;
using Content.Server.Power.Components;
using Content.Server.Power.EntitySystems;
@@ -29,6 +30,7 @@ public sealed class RadioDeviceSystem : EntitySystem
[Dependency] private readonly InteractionSystem _interaction = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly UserInterfaceSystem _ui = default!;
+ [Dependency] private readonly LanguageSystem _language = default!;
// Used to prevent a shitter from using a bunch of radios to spam chat.
private HashSet<(string, EntityUid)> _recentlySent = new();
@@ -208,7 +210,8 @@ private void OnReceiveRadio(EntityUid uid, RadioSpeakerComponent component, ref
("originalName", nameEv.Name));
// log to chat so people can identity the speaker/source, but avoid clogging ghost chat if there are many radios
- _chat.TrySendInGameICMessage(uid, args.Message, InGameICChatType.Whisper, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false);
+ var message = args.OriginalChatMsg.Message; // The chat system will handle the rest and re-obfuscate if needed.
+ _chat.TrySendInGameICMessage(uid, message, InGameICChatType.Whisper, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false, languageOverride: args.Language);
}
private void OnBeforeIntercomUiOpen(EntityUid uid, IntercomComponent component, BeforeActivatableUIOpenEvent args)
diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs
index e2a61b5022..c3ab28b80a 100644
--- a/Content.Server/Radio/EntitySystems/RadioSystem.cs
+++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs
@@ -1,10 +1,13 @@
using Content.Server.Administration.Logs;
using Content.Server.Chat.Systems;
+using Content.Server.Language;
using Content.Server.Power.Components;
using Content.Server.Radio.Components;
+using Content.Server.Speech;
using Content.Server.VoiceMask;
using Content.Shared.Chat;
using Content.Shared.Database;
+using Content.Shared.Language;
using Content.Shared.Radio;
using Content.Shared.Radio.Components;
using Content.Shared.Speech;
@@ -29,6 +32,7 @@ public sealed class RadioSystem : EntitySystem
[Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] private readonly IRobustRandom _random = default!;
[Dependency] private readonly ChatSystem _chat = default!;
+ [Dependency] private readonly LanguageSystem _language = default!;
// set used to prevent radio feedback loops.
private readonly HashSet _messages = new();
@@ -44,7 +48,7 @@ private void OnIntrinsicSpeak(EntityUid uid, IntrinsicRadioTransmitterComponent
{
if (args.Channel != null && component.Channels.Contains(args.Channel.ID))
{
- SendRadioMessage(uid, args.Message, args.Channel, uid);
+ SendRadioMessage(uid, args.Message, args.Channel, uid, args.Language);
args.Channel = null; // prevent duplicate messages from other listeners.
}
}
@@ -52,15 +56,25 @@ private void OnIntrinsicSpeak(EntityUid uid, IntrinsicRadioTransmitterComponent
private void OnIntrinsicReceive(EntityUid uid, IntrinsicRadioReceiverComponent component, ref RadioReceiveEvent args)
{
if (TryComp(uid, out ActorComponent? actor))
- _netMan.ServerSendMessage(args.ChatMsg, actor.PlayerSession.Channel);
+ {
+ // Einstein-Engines - languages mechanic
+ var listener = component.Owner;
+ var msg = args.OriginalChatMsg;
+ if (listener != null && !_language.CanUnderstand(listener, args.Language))
+ {
+ msg = args.LanguageObfuscatedChatMsg;
+ }
+
+ _netMan.ServerSendMessage(new MsgChatMessage { Message = msg}, actor.PlayerSession.Channel);
+ }
}
///
/// Send radio message to all active radio listeners
///
- public void SendRadioMessage(EntityUid messageSource, string message, ProtoId channel, EntityUid radioSource, bool escapeMarkup = true)
+ public void SendRadioMessage(EntityUid messageSource, string message, ProtoId channel, EntityUid radioSource, LanguagePrototype? language = null, bool escapeMarkup = true)
{
- SendRadioMessage(messageSource, message, _prototype.Index(channel), radioSource, escapeMarkup: escapeMarkup);
+ SendRadioMessage(messageSource, message, _prototype.Index(channel), radioSource, escapeMarkup: escapeMarkup, language: language);
}
///
@@ -68,8 +82,11 @@ public void SendRadioMessage(EntityUid messageSource, string message, ProtoId
/// Entity that spoke the message
/// Entity that picked up the message and will send it, e.g. headset
- public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource, bool escapeMarkup = true)
+ public void SendRadioMessage(EntityUid messageSource, string message, RadioChannelPrototype channel, EntityUid radioSource, LanguagePrototype? language = null, bool escapeMarkup = true)
{
+ if (language == null)
+ language = _language.GetLanguage(messageSource);
+
// TODO if radios ever garble / modify messages, feedback-prevention needs to be handled better than this.
if (!_messages.Add(message))
return;
@@ -84,6 +101,7 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann
name = FormattedMessage.EscapeText(name);
+ // most radios are relayed to chat, so lets parse the chat message beforehand
SpeechVerbPrototype speech;
if (mask != null
&& mask.Enabled
@@ -99,24 +117,15 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann
? FormattedMessage.EscapeText(message)
: message;
- var wrappedMessage = Loc.GetString(speech.Bold ? "chat-radio-message-wrap-bold" : "chat-radio-message-wrap",
- ("color", channel.Color),
- ("fontType", speech.FontId),
- ("fontSize", speech.FontSize),
- ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))),
- ("channel", $"\\[{channel.LocalizedName}\\]"),
- ("name", name),
- ("message", content));
+ var wrappedMessage = WrapRadioMessage(messageSource, channel, name, content);
+ var msg = new ChatMessage(ChatChannel.Radio, content, wrappedMessage, NetEntity.Invalid, null);
- // most radios are relayed to chat, so lets parse the chat message beforehand
- var chat = new ChatMessage(
- ChatChannel.Radio,
- message,
- wrappedMessage,
- NetEntity.Invalid,
- null);
- var chatMsg = new MsgChatMessage { Message = chat };
- var ev = new RadioReceiveEvent(message, messageSource, channel, chatMsg);
+ // ... you guess it
+ var obfuscated = _language.ObfuscateSpeech(content, language);
+ var obfuscatedWrapped = WrapRadioMessage(messageSource, channel, name, obfuscated);
+ var notUdsMsg = new ChatMessage(ChatChannel.Radio, obfuscated, obfuscatedWrapped, NetEntity.Invalid, null);
+
+ var ev = new RadioReceiveEvent(messageSource, channel, msg, notUdsMsg, language);
var sendAttemptEv = new RadioSendAttemptEvent(channel, radioSource);
RaiseLocalEvent(ref sendAttemptEv);
@@ -162,10 +171,23 @@ public void SendRadioMessage(EntityUid messageSource, string message, RadioChann
else
_adminLogger.Add(LogType.Chat, LogImpact.Low, $"Radio message from {ToPrettyString(messageSource):user} on {channel.LocalizedName}: {message}");
- _replay.RecordServerMessage(chat);
+ _replay.RecordServerMessage(msg);
_messages.Remove(message);
}
+ private string WrapRadioMessage(EntityUid source, RadioChannelPrototype channel, string name, string message)
+ {
+ var speech = _chat.GetSpeechVerb(source, message);
+ return Loc.GetString(speech.Bold ? "chat-radio-message-wrap-bold" : "chat-radio-message-wrap",
+ ("color", channel.Color),
+ ("fontType", speech.FontId),
+ ("fontSize", speech.FontSize),
+ ("verb", Loc.GetString(_random.Pick(speech.SpeechVerbStrings))),
+ ("channel", $"\\[{channel.LocalizedName}\\]"),
+ ("name", name),
+ ("message", FormattedMessage.EscapeText(message)));
+ }
+
///
private bool HasActiveServer(MapId mapId, string channelId)
{
diff --git a/Content.Server/Radio/RadioEvent.cs b/Content.Server/Radio/RadioEvent.cs
index 69d764ffe6..35220d1d75 100644
--- a/Content.Server/Radio/RadioEvent.cs
+++ b/Content.Server/Radio/RadioEvent.cs
@@ -1,10 +1,22 @@
using Content.Shared.Chat;
+using Content.Shared.Language;
using Content.Shared.Radio;
namespace Content.Server.Radio;
+///
+/// The message to display when the speaker can understand "language"
+/// The message to display when the speaker cannot understand "language"
+///
[ByRefEvent]
-public readonly record struct RadioReceiveEvent(string Message, EntityUid MessageSource, RadioChannelPrototype Channel, MsgChatMessage ChatMsg);
+public readonly record struct RadioReceiveEvent(
+ // Einstein-Engines - languages mechanic
+ EntityUid MessageSource,
+ RadioChannelPrototype Channel,
+ ChatMessage OriginalChatMsg,
+ ChatMessage LanguageObfuscatedChatMsg,
+ LanguagePrototype Language
+);
///
/// Use this event to cancel sending message per receiver
diff --git a/Content.Server/Speech/EntitySystems/ListeningSystem.cs b/Content.Server/Speech/EntitySystems/ListeningSystem.cs
index ea3569e055..f2a625600c 100644
--- a/Content.Server/Speech/EntitySystems/ListeningSystem.cs
+++ b/Content.Server/Speech/EntitySystems/ListeningSystem.cs
@@ -8,6 +8,7 @@ namespace Content.Server.Speech.EntitySystems;
///
public sealed class ListeningSystem : EntitySystem
{
+ [Dependency] private readonly ChatSystem _chat = default!;
[Dependency] private readonly SharedTransformSystem _xforms = default!;
public override void Initialize()
@@ -18,10 +19,10 @@ public override void Initialize()
private void OnSpeak(EntitySpokeEvent ev)
{
- PingListeners(ev.Source, ev.Message, ev.ObfuscatedMessage);
+ PingListeners(ev.Source, ev.Message, ev.IsWhisper);
}
- public void PingListeners(EntityUid source, string message, string? obfuscatedMessage)
+ public void PingListeners(EntityUid source, string message, bool isWhisper)
{
// TODO whispering / audio volume? Microphone sensitivity?
// for now, whispering just arbitrarily reduces the listener's max range.
@@ -32,7 +33,7 @@ public void PingListeners(EntityUid source, string message, string? obfuscatedMe
var attemptEv = new ListenAttemptEvent(source);
var ev = new ListenEvent(message, source);
- var obfuscatedEv = obfuscatedMessage == null ? null : new ListenEvent(obfuscatedMessage, source);
+ var obfuscatedEv = !isWhisper ? null : new ListenEvent(_chat.ObfuscateMessageReadability(message), source);
var query = EntityQueryEnumerator();
while(query.MoveNext(out var listenerUid, out var listener, out var xform))
diff --git a/Content.Shared/Input/ContentKeyFunctions.cs b/Content.Shared/Input/ContentKeyFunctions.cs
index ee4a4e9023..0b72ac5ee7 100644
--- a/Content.Shared/Input/ContentKeyFunctions.cs
+++ b/Content.Shared/Input/ContentKeyFunctions.cs
@@ -25,6 +25,7 @@ public static class ContentKeyFunctions
public static readonly BoundKeyFunction CycleChatChannelBackward = "CycleChatChannelBackward";
public static readonly BoundKeyFunction EscapeContext = "EscapeContext";
public static readonly BoundKeyFunction OpenCharacterMenu = "OpenCharacterMenu";
+ public static readonly BoundKeyFunction OpenLanguageMenu = "OpenLanguageMenu";
public static readonly BoundKeyFunction OpenCraftingMenu = "OpenCraftingMenu";
public static readonly BoundKeyFunction OpenGuidebook = "OpenGuidebook";
public static readonly BoundKeyFunction OpenInventoryMenu = "OpenInventoryMenu";
diff --git a/Content.Shared/Language/Components/LanguageSpeakerComponent.cs b/Content.Shared/Language/Components/LanguageSpeakerComponent.cs
new file mode 100644
index 0000000000..c6610c69d9
--- /dev/null
+++ b/Content.Shared/Language/Components/LanguageSpeakerComponent.cs
@@ -0,0 +1,29 @@
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
+
+namespace Content.Shared.Language;
+
+[RegisterComponent, AutoGenerateComponentState]
+public sealed partial class LanguageSpeakerComponent : Component
+{
+ ///
+ /// The current language the entity may use to speak.
+ /// Other listeners will hear the entity speak in this language.
+ ///
+ [ViewVariables(VVAccess.ReadWrite)]
+ [AutoNetworkedField]
+ public string CurrentLanguage = default!;
+
+ ///
+ /// List of languages this entity can speak.
+ ///
+ [ViewVariables]
+ [DataField("speaks", customTypeSerializer: typeof(PrototypeIdListSerializer), required: true)]
+ public List SpokenLanguages = new();
+
+ ///
+ /// List of languages this entity can understand.
+ ///
+ [ViewVariables]
+ [DataField("understands", customTypeSerializer: typeof(PrototypeIdListSerializer), required: true)]
+ public List UnderstoodLanguages = new();
+}
diff --git a/Content.Shared/Language/Components/TranslatorImplanterComponent.cs b/Content.Shared/Language/Components/TranslatorImplanterComponent.cs
new file mode 100644
index 0000000000..a2bdc8eeba
--- /dev/null
+++ b/Content.Shared/Language/Components/TranslatorImplanterComponent.cs
@@ -0,0 +1,34 @@
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
+
+namespace Content.Shared.Language.Components;
+
+///
+/// An item that, when used on a mob, adds an intrinsic translator to it.
+///
+[RegisterComponent]
+public sealed partial class TranslatorImplanterComponent : Component
+{
+ [DataField("spoken", customTypeSerializer: typeof(PrototypeIdListSerializer)), ViewVariables]
+ public List SpokenLanguages = new();
+
+ [DataField("understood", customTypeSerializer: typeof(PrototypeIdListSerializer)), ViewVariables]
+ public List UnderstoodLanguages = new();
+
+ ///
+ /// The list of languages the mob must understand in order for this translator to have effect.
+ /// Knowing one language is enough.
+ ///
+ [DataField("requires", customTypeSerializer: typeof(PrototypeIdListSerializer)), ViewVariables]
+ public List RequiredLanguages = new();
+
+ ///
+ /// If true, only allows to use this implanter on mobs.
+ ///
+ [DataField("mobsOnly")]
+ public bool MobsOnly = true;
+
+ ///
+ /// Whether this implant has been used already.
+ ///
+ public bool Used = false;
+}
diff --git a/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs
new file mode 100644
index 0000000000..13a7c6ad63
--- /dev/null
+++ b/Content.Shared/Language/Components/Translators/BaseTranslatorComponent.cs
@@ -0,0 +1,46 @@
+using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List;
+
+namespace Content.Shared.Language.Components.Translators;
+
+public abstract partial class BaseTranslatorComponent : Component
+{
+ ///
+ /// The language this translator changes the speaker's language to when they don't specify one.
+ /// If null, does not modify the default language.
+ ///
+ [DataField("default-language")]
+ [ViewVariables(VVAccess.ReadWrite)]
+ public string? CurrentSpeechLanguage = null;
+
+ ///
+ /// The list of additional languages this translator allows the wielder to speak.
+ ///
+ [DataField("spoken", customTypeSerializer: typeof(PrototypeIdListSerializer))]
+ public List SpokenLanguages = new();
+
+ ///
+ /// The list of additional languages this translator allows the wielder to understand.
+ ///
+ [DataField("understood", customTypeSerializer: typeof(PrototypeIdListSerializer))]
+ public List UnderstoodLanguages = new();
+
+ ///
+ /// The languages the wielding MUST know in order for this translator to have effect.
+ /// The field [RequiresAllLanguages] indicates whether all of them are required, or just one.
+ ///
+ [DataField("requires", customTypeSerializer: typeof(PrototypeIdListSerializer))]
+ public List RequiredLanguages = new();
+
+ ///
+ /// If true, the wielder must understand all languages in [RequiredLanguages] to speak [SpokenLanguages],
+ /// and understand all languages in [RequiredLanguages] to understand [UnderstoodLanguages].
+ ///
+ /// Otherwise, at least one language must be known (or the list must be empty).
+ ///
+ [DataField("requires-all")]
+ [ViewVariables(VVAccess.ReadWrite)]
+ public bool RequiresAllLanguages = false;
+
+ [DataField("enabled"), ViewVariables(VVAccess.ReadWrite)]
+ public bool Enabled = true;
+}
diff --git a/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs
new file mode 100644
index 0000000000..f900603f01
--- /dev/null
+++ b/Content.Shared/Language/Components/Translators/HandheldTranslatorComponent.cs
@@ -0,0 +1,15 @@
+namespace Content.Shared.Language.Components.Translators;
+
+///
+/// A translator that must be held in a hand or a pocket of an entity in order ot have effect.
+///
+[RegisterComponent]
+public sealed partial class HandheldTranslatorComponent : Translators.BaseTranslatorComponent
+{
+ ///
+ /// Whether or not interacting with this translator
+ /// toggles it on or off.
+ ///
+ [DataField("toggleOnInteract")]
+ public bool ToggleOnInteract = true;
+}
diff --git a/Content.Shared/Language/Components/Translators/HoldsTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/HoldsTranslatorComponent.cs
new file mode 100644
index 0000000000..caea9b9a94
--- /dev/null
+++ b/Content.Shared/Language/Components/Translators/HoldsTranslatorComponent.cs
@@ -0,0 +1,11 @@
+namespace Content.Shared.Language.Components.Translators;
+
+///
+/// Applied internally to the holder of [HandheldTranslatorComponent].
+/// Do not use directly. Use [HandheldTranslatorComponent] instead.
+///
+[RegisterComponent]
+public sealed partial class HoldsTranslatorComponent : IntrinsicTranslatorComponent
+{
+ public Component? Issuer = null;
+}
diff --git a/Content.Shared/Language/Components/Translators/ImplantedTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/ImplantedTranslatorComponent.cs
new file mode 100644
index 0000000000..d1d72e83ed
--- /dev/null
+++ b/Content.Shared/Language/Components/Translators/ImplantedTranslatorComponent.cs
@@ -0,0 +1,9 @@
+namespace Content.Shared.Language.Components.Translators;
+
+///
+/// Applied to entities who were injected with a translator implant.
+///
+[RegisterComponent]
+public sealed partial class ImplantedTranslatorComponent : IntrinsicTranslatorComponent
+{
+}
diff --git a/Content.Shared/Language/Components/Translators/IntrinsicTranslatorComponent.cs b/Content.Shared/Language/Components/Translators/IntrinsicTranslatorComponent.cs
new file mode 100644
index 0000000000..d8def4ac1d
--- /dev/null
+++ b/Content.Shared/Language/Components/Translators/IntrinsicTranslatorComponent.cs
@@ -0,0 +1,10 @@
+namespace Content.Shared.Language.Components.Translators;
+
+///
+/// A translator attached to an entity that translates its speech.
+/// An example is a translator implant that allows the speaker to speak another language.
+///
+[RegisterComponent, Virtual]
+public partial class IntrinsicTranslatorComponent : Translators.BaseTranslatorComponent
+{
+}
diff --git a/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs b/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs
new file mode 100644
index 0000000000..6f5ad1178b
--- /dev/null
+++ b/Content.Shared/Language/Components/UniversalLanguageSpeakerComponent.cs
@@ -0,0 +1,11 @@
+namespace Content.Shared.Language.Components;
+
+//
+// Signifies that this entity can speak and understand any language.
+// Applies to such entities as ghosts.
+//
+[RegisterComponent]
+public sealed partial class UniversalLanguageSpeakerComponent : Component
+{
+
+}
diff --git a/Content.Shared/Language/Events/LanguagesUpdateEvent.cs b/Content.Shared/Language/Events/LanguagesUpdateEvent.cs
new file mode 100644
index 0000000000..90ce2f4446
--- /dev/null
+++ b/Content.Shared/Language/Events/LanguagesUpdateEvent.cs
@@ -0,0 +1,8 @@
+namespace Content.Shared.Language.Events;
+
+///
+/// Raised on an entity when its list of languages changes.
+///
+public sealed class LanguagesUpdateEvent : EntityEventArgs
+{
+}
diff --git a/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs b/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs
new file mode 100644
index 0000000000..273659b86d
--- /dev/null
+++ b/Content.Shared/Language/Events/LanguagesUpdatedMessage.cs
@@ -0,0 +1,14 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Language.Events;
+
+///
+/// Sent to the client when its list of languages changes. The client should in turn update its HUD and relevant systems.
+///
+[Serializable, NetSerializable]
+public sealed class LanguagesUpdatedMessage(string currentLanguage, List spoken, List understood) : EntityEventArgs
+{
+ public string CurrentLanguage = currentLanguage;
+ public List Spoken = spoken;
+ public List Understood = understood;
+}
diff --git a/Content.Shared/Language/Events/RequestLanguagesMessage.cs b/Content.Shared/Language/Events/RequestLanguagesMessage.cs
new file mode 100644
index 0000000000..aead1f4cd1
--- /dev/null
+++ b/Content.Shared/Language/Events/RequestLanguagesMessage.cs
@@ -0,0 +1,10 @@
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Language.Events;
+
+///
+/// Sent from the client to the server when it needs to learn the list of languages its entity knows.
+/// This event should always be followed by a , unless the client doesn't have an entity.
+///
+[Serializable, NetSerializable]
+public sealed class RequestLanguagesMessage : EntityEventArgs;
diff --git a/Content.Shared/Language/LanguagePrototype.cs b/Content.Shared/Language/LanguagePrototype.cs
new file mode 100644
index 0000000000..2dccf393cb
--- /dev/null
+++ b/Content.Shared/Language/LanguagePrototype.cs
@@ -0,0 +1,37 @@
+using System.Runtime.CompilerServices;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Language;
+
+[Prototype("language")]
+public sealed class LanguagePrototype : IPrototype
+{
+ [IdDataField]
+ public string ID { get; private set; } = default!;
+
+ //
+ // If true, obfuscated phrases of creatures speaking this language will have their syllables replaced with "replacement" syllables.
+ // Otherwise entire sentences will be replaced.
+ //
+ [DataField(required: true)]
+ public bool ObfuscateSyllables;
+
+ //
+ // Lists all syllables that are used to obfuscate a message a listener cannot understand if obfuscateSyllables is true,
+ // Otherwise uses all possible phrases the creature can make when trying to say anything.
+ //
+ [DataField(required: true)]
+ public List Replacement = [];
+
+ #region utility
+ ///
+ /// The in-world name of this language, localized.
+ ///
+ public string Name => Loc.GetString($"language-{ID}-name");
+
+ ///
+ /// The in-world description of this language, localized.
+ ///
+ public string Description => Loc.GetString($"language-{ID}-description");
+ #endregion utility
+}
diff --git a/Content.Shared/Language/Systems/SharedLanguageSystem.cs b/Content.Shared/Language/Systems/SharedLanguageSystem.cs
new file mode 100644
index 0000000000..55cf598046
--- /dev/null
+++ b/Content.Shared/Language/Systems/SharedLanguageSystem.cs
@@ -0,0 +1,38 @@
+using Content.Shared.Actions;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Random;
+
+namespace Content.Shared.Language.Systems;
+
+public abstract class SharedLanguageSystem : EntitySystem
+{
+ ///
+ /// The language used as a fallback in cases where an entity suddenly becomes a language speaker (e.g. the usage of make-sentient)
+ ///
+ [ValidatePrototypeId]
+ public static readonly string FallbackLanguagePrototype = "GalacticCommon";
+ ///
+ /// The language whose speakers are assumed to understand and speak every language. Should never be added directly.
+ ///
+ [ValidatePrototypeId]
+ public static readonly string UniversalPrototype = "Universal";
+
+ ///
+ /// A cached instance of
+ ///
+ public static LanguagePrototype Universal { get; private set; } = default!;
+
+ [Dependency] protected readonly IPrototypeManager _prototype = default!;
+ [Dependency] protected readonly IRobustRandom _random = default!;
+
+ public override void Initialize()
+ {
+ Universal = _prototype.Index("Universal");
+ }
+
+ public LanguagePrototype? GetLanguage(string id)
+ {
+ _prototype.TryIndex(id, out var proto);
+ return proto;
+ }
+}
diff --git a/Content.Shared/Language/Systems/SharedTranslatorImplanterSystem.cs b/Content.Shared/Language/Systems/SharedTranslatorImplanterSystem.cs
new file mode 100644
index 0000000000..a13225378c
--- /dev/null
+++ b/Content.Shared/Language/Systems/SharedTranslatorImplanterSystem.cs
@@ -0,0 +1,36 @@
+using Content.Shared.Examine;
+using Content.Shared.Implants.Components;
+using Content.Shared.Language.Components;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Language.Systems;
+
+public abstract class SharedTranslatorImplanterSystem : EntitySystem
+{
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnExamined);
+ }
+
+ private void OnExamined(EntityUid uid, TranslatorImplanterComponent component, ExaminedEvent args)
+ {
+ if (!args.IsInDetailsRange)
+ return;
+
+ var text = !component.Used
+ ? Loc.GetString("translator-implanter-ready")
+ : Loc.GetString("translator-implanter-used");
+
+ args.PushText(text);
+ }
+
+ protected void OnAppearanceChange(EntityUid implanter, TranslatorImplanterComponent component)
+ {
+ var used = component.Used;
+ _appearance.SetData(implanter, ImplanterVisuals.Full, !used);
+ }
+}
diff --git a/Content.Shared/Language/Systems/SharedTranslatorSystem.cs b/Content.Shared/Language/Systems/SharedTranslatorSystem.cs
new file mode 100644
index 0000000000..08a016efa9
--- /dev/null
+++ b/Content.Shared/Language/Systems/SharedTranslatorSystem.cs
@@ -0,0 +1,34 @@
+using Content.Shared.Examine;
+using Content.Shared.Toggleable;
+using Content.Shared.Language.Components.Translators;
+
+namespace Content.Shared.Language.Systems;
+
+public abstract class SharedTranslatorSystem : EntitySystem
+{
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnExamined);
+ }
+
+ private void OnExamined(EntityUid uid, HandheldTranslatorComponent component, ExaminedEvent args)
+ {
+ var state = Loc.GetString(component.Enabled
+ ? "translator-enabled"
+ : "translator-disabled");
+
+ args.PushMarkup(state);
+ }
+
+ protected void OnAppearanceChange(EntityUid translator, HandheldTranslatorComponent? comp = null)
+ {
+ if (comp == null && !TryComp(translator, out comp))
+ return;
+
+ _appearance.SetData(translator, ToggleVisuals.Toggled, comp.Enabled);
+ }
+}
diff --git a/Resources/Locale/en-US/language/commands.ftl b/Resources/Locale/en-US/language/commands.ftl
new file mode 100644
index 0000000000..32fa5415b8
--- /dev/null
+++ b/Resources/Locale/en-US/language/commands.ftl
@@ -0,0 +1,8 @@
+command-list-langs-desc = List languages your current entity can speak at the current moment.
+command-list-langs-help = Usage: {$command}
+
+command-saylang-desc = Send a message in a specific language.
+command-saylang-help = Usage: {$command} . Example: {$command} GalacticCommon "Hello World!"
+
+command-language-select-desc = Select the currently spoken language of your entity.
+command-language-select-help = Usage: {$command} . Example: {$command} GalacticCommon
diff --git a/Resources/Locale/en-US/language/language-menu.ftl b/Resources/Locale/en-US/language/language-menu.ftl
new file mode 100644
index 0000000000..83687d0f1a
--- /dev/null
+++ b/Resources/Locale/en-US/language/language-menu.ftl
@@ -0,0 +1,4 @@
+language-menu-window-title = Language Menu
+language-menu-current-language = Current Language: {$language}
+language-menu-description-header = Description
+ui-options-function-open-language-menu = Open language Menu
diff --git a/Resources/Locale/en-US/language/languages.ftl b/Resources/Locale/en-US/language/languages.ftl
new file mode 100644
index 0000000000..8b8fb8ac66
--- /dev/null
+++ b/Resources/Locale/en-US/language/languages.ftl
@@ -0,0 +1,71 @@
+language-Universal-name = Universal
+language-Universal-description = What are you?
+
+language-GalacticCommon-name = Galactic common
+language-GalacticCommon-description = The standard Galatic language, most commonly used for inter-species communications and legal work.
+
+language-Bubblish-name = Bubblish
+language-Bubblish-description = The language of Slimes. Being a mixture of bubbling noises and pops it's very difficult to speak for huamns without the use of mechanical aids.
+
+language-RootSpeak-name = Rootspeak
+language-RootSpeak-description = The strange whistling-style language spoken by the Diona.
+
+language-Nekomimetic-name = Nekomimetic
+language-Nekomimetic-description = To the casual observer, this langauge is an incomprehensible mess of broken Japanese. To the felinids, it's somehow comprehensible.
+
+language-Draconic-name = Draconic
+language-Draconic-description = The common language of lizard-people, composed of sibilant hisses and rattles.
+
+language-SolCommon-name = Sol common
+language-SolCommon-description = The language common to species from the Sol System.
+
+language-Canilunzt-name = Canilunzt
+language-Canilunzt-description = The guttural language spoken and utilized by the inhabitants of the Vazzend system, composed of growls, barks, yaps, and heavy utilization of ears and tail movements. Vulpkanin speak this language with ease.
+
+language-Moffic-name = Moffic
+language-Moffic-description = The language of the mothpeople borders on complete unintelligibility.
+
+language-RobotTalk-name = RobotTalk
+language-RobotTalk-description = A language consisting of harsh binary chirps, whistles, hisses, and whines. Organic tongues cannot speak it without aid from special translators.
+
+language-Cat-name = Cat
+language-Cat-description = Meow
+
+language-Dog-name = Dog
+language-Dog-description = Bark!
+
+language-Fox-name = Fox
+language-Fox-description = Yeeps!
+
+language-Xeno-name = Xeno
+language-Xeno-description = Sssss!
+
+language-Monkey-name = Monkey
+language-Monkey-description = oooook!
+
+language-Mouse-name = Mouse
+language-Mouse-description = Squeeek!
+
+language-Chicken-name = Chicken
+language-Chicken-description = Coot!
+
+language-Duck-name = Duck
+language-Duck-description = Quack!
+
+language-Cow-name = Cow
+language-Cow-description = Moooo!
+
+language-Sheep-name = Sheep
+language-Sheep-description = Baaah!
+
+language-Kangaroo-name = Kangaroo
+language-Kangaroo-description = Chuu!
+
+language-Pig-name = Pig
+language-Pig-description = Oink!
+
+language-Crab-name = Crab
+language-Crab-description = Click!
+
+language-Kobold-name = Kobold
+language-Kobold-description = Hiss!
diff --git a/Resources/Locale/en-US/language/technologies.ftl b/Resources/Locale/en-US/language/technologies.ftl
new file mode 100644
index 0000000000..901a48061c
--- /dev/null
+++ b/Resources/Locale/en-US/language/technologies.ftl
@@ -0,0 +1,2 @@
+research-technology-basic-translation = Basic Translation
+research-technology-advanced-translation = Advanced Translation
diff --git a/Resources/Locale/en-US/language/translator.ftl b/Resources/Locale/en-US/language/translator.ftl
new file mode 100644
index 0000000000..b2a1e9b2b8
--- /dev/null
+++ b/Resources/Locale/en-US/language/translator.ftl
@@ -0,0 +1,8 @@
+translator-component-shutoff = The {$translator} shuts off.
+translator-component-turnon = The {$translator} turns on.
+translator-enabled = It appears to be active.
+translator-disabled = It appears to be disabled.
+translator-implanter-refuse = The {$implanter} has no effect on {$target}.
+translator-implanter-success = The {$implanter} successfully injected {$target}.
+translator-implanter-ready = This implanter appears to be ready to use.
+translator-implanter-used = This implanter seems empty.
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml
index 92615131f0..e932974a0f 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/animals.yml
@@ -66,6 +66,11 @@
- type: Tag
tags:
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Fox
+ understands:
+ - Fox
- type: entity
name: security dog
@@ -154,8 +159,6 @@
spawned:
- id: FoodMeat
amount: 2
- - type: ReplacementAccent
- accent: dog
- type: InteractionPopup
successChance: 0.5
interactSuccessString: petting-success-dog
@@ -176,3 +179,9 @@
tags:
- DoorBumpOpener
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Dog
+ understands:
+ - Dog
+ - GalacticCommon
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml
index 771da36719..fa51b99325 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/familiars.yml
@@ -95,6 +95,11 @@
factions:
- PsionicInterloper
- NanoTrasen
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ understands:
+ - GalacticCommon
- type: GhostTakeoverAvailable
- type: GhostRole
makeSentient: true
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml
index 96950317c1..c2ae33ec0b 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/NPCs/nukiemouse.yml
@@ -96,8 +96,12 @@
spawned:
- id: FoodMeat
amount: 1
- - type: ReplacementAccent
- accent: mouse
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - Mouse
+ - GalacticCommon
- type: Tag
tags:
- VimPilot
@@ -163,4 +167,4 @@
interactFailureString: petting-failure-nukie-mouse
interactSuccessSpawn: EffectHearts
interactSuccessSound:
- path: /Audio/Animals/mouse_squeak.ogg
\ No newline at end of file
+ path: /Audio/Animals/mouse_squeak.ogg
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml
index a4498299c9..18437e074d 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml
@@ -122,12 +122,19 @@
- type: MovementSpeedModifier
baseWalkSpeed: 2.5
baseSprintSpeed: 5.0
- - type: Inventory
+ - type: Inventory
speciesId: harpy
templateId: digitigrade
- type: HarpyVisuals
- type: UltraVision
-
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - SolCommon
+ understands:
+ - GalacticCommon
+ - SolCommon
+
- type: entity
save: false
name: Urist McHands
@@ -138,7 +145,7 @@
components:
- type: HumanoidAppearance
species: Harpy
- - type: Inventory
+ - type: Inventory
speciesId: harpy
- type: Sprite
scale: 0.9, 0.9
diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml
index 4a187d51b3..52853d696a 100644
--- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml
@@ -97,6 +97,13 @@
Female: FemaleVulpkanin
Unsexed: MaleVulpkanin
- type: DogVision
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Canilunzt
+ understands:
+ - GalacticCommon
+ - Canilunzt
- type: entity
save: false
diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
index dec46df0b5..0645e451af 100644
--- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
+++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml
@@ -213,6 +213,13 @@
visMask:
- PsionicInvisibility
- Normal
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - RobotTalk
+ understands:
+ - GalacticCommon
+ - RobotTalk
- type: entity
id: BaseBorgChassisNT
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
index 9de20d4474..e62e6333e6 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
@@ -48,8 +48,11 @@
flavorKind: station-event-random-sentience-flavor-organic
- type: Bloodstream
bloodMaxVolume: 50
- - type: ReplacementAccent
- accent: mouse
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - Mouse
- type: MeleeWeapon
soundHit:
path: /Audio/Effects/bite.ogg
@@ -229,8 +232,11 @@
- type: EggLayer
eggSpawn:
- id: FoodEgg
- - type: ReplacementAccent
- accent: chicken
+ - type: LanguageSpeaker
+ speaks:
+ - Chicken
+ understands:
+ - Chicken
- type: SentienceTarget
flavorKind: station-event-random-sentience-flavor-organic
- type: NpcFactionMember
@@ -504,8 +510,11 @@
prob: 0.5
- type: Extractable
grindableSolutionName: food
- - type: ReplacementAccent
- accent: mothroach
+ - type: LanguageSpeaker
+ speaks:
+ - Moffic
+ understands:
+ - Moffic
- type: ZombieAccentOverride
accent: zombieMoth
- type: Vocal
@@ -601,8 +610,11 @@
- type: EggLayer
eggSpawn:
- id: FoodEgg
- - type: ReplacementAccent
- accent: duck
+ - type: LanguageSpeaker
+ speaks:
+ - Duck
+ understands:
+ - Duck
- type: SentienceTarget
flavorKind: station-event-random-sentience-flavor-organic
- type: NpcFactionMember
@@ -839,8 +851,11 @@
interactSuccessSpawn: EffectHearts
interactSuccessSound:
path: /Audio/Voice/Arachnid/arachnid_chitter.ogg
- - type: ReplacementAccent
- accent: crab
+ - type: LanguageSpeaker
+ speaks:
+ - Crab
+ understands:
+ - Crab
- type: Bloodstream
bloodMaxVolume: 50
bloodReagent: CopperBlood
@@ -1074,8 +1089,11 @@
- type: Inventory
speciesId: kangaroo
templateId: kangaroo
- - type: ReplacementAccent
- accent: kangaroo
+ - type: LanguageSpeaker
+ speaks:
+ - Kangaroo
+ understands:
+ - Kangaroo
- type: InventorySlots
- type: Strippable
- type: Butcherable
@@ -1255,7 +1273,12 @@
- type: Speech
speechSounds: Monkey
speechVerb: Monkey
- - type: MonkeyAccent
+ - type: LanguageSpeaker
+ speaks:
+ - Monkey
+ understands:
+ - Monkey
+ - Kobold
- type: SentienceTarget
flavorKind: station-event-random-sentience-flavor-primate
- type: AlwaysRevolutionaryConvertible
@@ -1289,7 +1312,13 @@
- type: Speech
speechSounds: Monkey
speechVerb: Monkey
- - type: MonkeyAccent
+ - type: LanguageSpeaker
+ speaks:
+ - Monkey
+ understands:
+ - Monkey
+ - Kobold
+ - GalacticCommon
- type: NpcFactionMember
factions:
- Syndicate
@@ -1328,8 +1357,13 @@
- type: NameIdentifier
group: Kobold
- type: LizardAccent
- - type: ReplacementAccent
- accent: kobold
+ - type: LanguageSpeaker
+ speaks:
+ - Kobold
+ - Monkey
+ understands:
+ - Kobold
+ - Monkey
- type: Speech
speechSounds: Lizard
speechVerb: Reptilian
@@ -1556,8 +1590,11 @@
spawned:
- id: FoodMeatRat
amount: 1
- - type: ReplacementAccent
- accent: mouse
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - Mouse
- type: Tag
tags:
- Trash
@@ -2121,8 +2158,11 @@
- type: MeleeChemicalInjector
transferAmount: 0.75
solution: melee
- - type: ReplacementAccent
- accent: xeno
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
- type: InteractionPopup
successChance: 0.5
interactSuccessString: petting-success-tarantula
@@ -2437,6 +2477,11 @@
- type: Tag
tags:
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Fox
+ understands:
+ - Fox
- type: entity
name: corgi
@@ -2483,8 +2528,11 @@
spawned:
- id: FoodMeat
amount: 2
- - type: ReplacementAccent
- accent: dog
+ - type: LanguageSpeaker
+ speaks:
+ - Dog
+ understands:
+ - Dog
- type: InteractionPopup
interactSuccessString: petting-success-dog
interactFailureString: petting-failure-generic
@@ -2636,8 +2684,11 @@
spawned:
- id: FoodMeat
amount: 3
- - type: ReplacementAccent
- accent: cat
+ - type: LanguageSpeaker
+ speaks:
+ - Cat
+ understands:
+ - Cat
- type: InteractionPopup
successChance: 0.7
interactSuccessString: petting-success-cat
@@ -2704,6 +2755,12 @@
- type: NpcFactionMember
factions:
- Syndicate
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
+ - GalacticCommon
- type: entity
name: space cat
@@ -2999,8 +3056,11 @@
spawned:
- id: FoodMeat
amount: 1
- - type: ReplacementAccent
- accent: mouse
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - Mouse
- type: Tag
tags:
- VimPilot
@@ -3106,8 +3166,11 @@
interactSuccessSpawn: EffectHearts
interactSuccessSound:
path: /Audio/Animals/pig_oink.ogg
- - type: ReplacementAccent
- accent: pig
+ - type: LanguageSpeaker
+ speaks:
+ - Pig
+ understands:
+ - Pig
- type: SentienceTarget
flavorKind: station-event-random-sentience-flavor-organic
- type: NpcFactionMember
@@ -3193,6 +3256,12 @@
reformTime: 10
popupText: diona-reform-attempt
reformPrototype: MobDionaReformed
+ - type: LanguageSpeaker
+ speaks:
+ - RootSpeak
+ understands:
+ - GalacticCommon
+ - RootSpeak
- type: entity
parent: MobDionaNymph
@@ -3201,4 +3270,3 @@
components:
- type: ReplacementAccent
accent: nymph
-
\ No newline at end of file
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml
index 39e68b63a7..3bcf8e7a16 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/argocyte.yml
@@ -15,8 +15,11 @@
- type: Sprite
sprite: Mobs/Aliens/Argocyte/argocyte_common.rsi
- type: SolutionContainerManager
- - type: ReplacementAccent
- accent: xeno
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
- type: Bloodstream
bloodReagent: FerrochromicAcid
bloodMaxVolume: 75 #we don't want the map to become pools of blood
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
index 9981bb8bd9..8ca1b2d2f0 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml
@@ -36,6 +36,12 @@
- VimPilot
- type: StealTarget
stealGroup: AnimalIan
+ - type: LanguageSpeaker
+ speaks:
+ - Dog
+ understands:
+ - GalacticCommon
+ - Dog
- type: entity
name: Old Ian
@@ -121,6 +127,12 @@
tags:
- CannotSuicide
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Cat
+ understands:
+ - GalacticCommon
+ - Cat
- type: entity
name: Exception
@@ -139,6 +151,12 @@
tags:
- CannotSuicide
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Cat
+ understands:
+ - GalacticCommon
+ - Cat
- type: entity
name: Floppa
@@ -288,8 +306,12 @@
spawned:
- id: FoodMeat
amount: 2
- - type: ReplacementAccent
- accent: dog
+ - type: LanguageSpeaker
+ speaks:
+ - Dog
+ understands:
+ - GalacticCommon
+ - Dog
- type: InteractionPopup
successChance: 0.5
interactSuccessString: petting-success-dog
@@ -387,8 +409,12 @@
spawned:
- id: FoodMeat
amount: 3
- - type: ReplacementAccent
- accent: dog
+ - type: LanguageSpeaker
+ speaks:
+ - Dog
+ understands:
+ - GalacticCommon
+ - Dog
- type: InteractionPopup
successChance: 0.7
interactSuccessString: petting-success-dog
@@ -546,6 +572,12 @@
- VimPilot
- type: StealTarget
stealGroup: AnimalRenault
+ - type: LanguageSpeaker
+ speaks:
+ - Fox
+ understands:
+ - GalacticCommon
+ - Fox
- type: entity
name: Hamlet
@@ -593,6 +625,12 @@
- CannotSuicide
- Hamster
- VimPilot
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - GalacticCommon
+ - Mouse
- type: entity
name: Shiva
@@ -765,6 +803,12 @@
attributes:
proper: true
gender: female
+ - type: LanguageSpeaker
+ speaks:
+ - Bubblish
+ understands:
+ - GalacticCommon
+ - Bubblish
- type: entity
name: Pun Pun
@@ -799,6 +843,13 @@
attributes:
proper: true
gender: male
+ - type: LanguageSpeaker
+ speaks:
+ - Monkey
+ understands:
+ - GalacticCommon
+ - Monkey
+ - Kobold
- type: entity
name: Tropico
@@ -826,3 +877,9 @@
# - type: AlwaysRevolutionaryConvertible
- type: StealTarget
stealGroup: AnimalTropico
+ - type: LanguageSpeaker
+ speaks:
+ - Crab
+ understands:
+ - GalacticCommon
+ - Crab
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
index 396094eeaf..06d6bcbc70 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
@@ -115,6 +115,13 @@
attributes:
gender: male
- type: PotentialPsionic # Nyano
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Mouse
+ understands:
+ - GalacticCommon
+ - Mouse
- type: entity
id: MobRatKingBuff
@@ -277,6 +284,12 @@
- type: Food
- type: Item
size: Tiny # Delta V - Make them eatable and pickable.
+ - type: LanguageSpeaker
+ speaks:
+ - Mouse
+ understands:
+ - GalacticCommon
+ - Mouse
- type: weightedRandomEntity
id: RatKingLoot
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml
index 28355bb459..1c6bda6fd3 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/revenant.yml
@@ -97,3 +97,4 @@
- RevenantTheme
- type: Speech
speechVerb: Ghost
+ - type: UniversalLanguageSpeaker
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/shadows.yml b/Resources/Prototypes/Entities/Mobs/NPCs/shadows.yml
index f08fe36544..9559ae3a0c 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/shadows.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/shadows.yml
@@ -36,7 +36,7 @@
speedModifierThresholds:
60: 0.7
80: 0.5
-
+
- type: entity
name: shadow cat
parent: BaseShadowMob
@@ -50,8 +50,11 @@
- map: ["enum.DamageStateVisualLayers.Base"]
state: cat
- type: Physics
- - type: ReplacementAccent
- accent: cat
+ - type: LanguageSpeaker
+ speaks:
+ - Cat
+ understands:
+ - Cat
- type: InteractionPopup
successChance: 0.01 # you cant pet shadow cat... almost
interactSuccessString: petting-success-cat
@@ -64,4 +67,4 @@
gender: epicene
- type: Tag
tags:
- - VimPilot
\ No newline at end of file
+ - VimPilot
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
index 42b7ff9e21..e3166c15f6 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/silicon.yml
@@ -107,6 +107,13 @@
- type: TypingIndicator
proto: robot
- type: ZombieImmune
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - RobotTalk
+ understands:
+ - GalacticCommon
+ - RobotTalk
- type: entity
parent: MobSiliconBase
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
index c64479369a..901bf149cb 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml
@@ -111,8 +111,11 @@
successChance: 0.5
interactSuccessString: petting-success-slimes
interactFailureString: petting-failure-generic
- - type: ReplacementAccent
- accent: slimes
+ - type: LanguageSpeaker
+ speaks:
+ - Bubblish
+ understands:
+ - Bubblish
- type: GhostTakeoverAvailable
- type: GhostRole
makeSentient: true
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml
index 39460be3f3..67ca969be6 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml
@@ -165,8 +165,11 @@
- type: FootstepModifier
footstepSoundCollection:
collection: FootstepBounce
- - type: ReplacementAccent
- accent: kangaroo
+ - type: LanguageSpeaker
+ speaks:
+ - Kangaroo
+ understands:
+ - Kangaroo
- type: InventorySlots
- type: Strippable
- type: UserInterface
@@ -248,8 +251,11 @@
- type: MeleeChemicalInjector
solution: melee
transferAmount: 4
- - type: ReplacementAccent
- accent: xeno
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
- type: InteractionPopup
successChance: 0.20
interactSuccessString: petting-success-tarantula
@@ -351,8 +357,11 @@
- type: MeleeChemicalInjector
solution: melee
transferAmount: 6
- - type: ReplacementAccent
- accent: xeno
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
- type: InteractionPopup
successChance: 0.2
interactSuccessString: petting-success-snake
@@ -373,4 +382,4 @@
parent: MobCobraSpace
suffix: "Salvage Ruleset"
components:
- - type: SalvageMobRestrictions
\ No newline at end of file
+ - type: SalvageMobRestrictions
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml
index d0ac6fc026..26553a2f1f 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml
@@ -125,6 +125,11 @@
chance: -2
- type: Psionic #Nyano - Summary: makes psionic by default.
removable: false
+ - type: LanguageSpeaker
+ speaks:
+ - Xeno
+ understands:
+ - Xeno
- type: entity
name: Praetorian
@@ -234,6 +239,13 @@
- type: Tag
tags:
- CannotSuicide
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Xeno
+ understands:
+ - GalacticCommon
+ - Xeno
- type: entity
name: Ravager
diff --git a/Resources/Prototypes/Entities/Mobs/Player/observer.yml b/Resources/Prototypes/Entities/Mobs/Player/observer.yml
index 8f3e6c1346..0086be81d9 100644
--- a/Resources/Prototypes/Entities/Mobs/Player/observer.yml
+++ b/Resources/Prototypes/Entities/Mobs/Player/observer.yml
@@ -53,6 +53,7 @@
- type: Tag
tags:
- BypassInteractionRangeChecks
+ - type: UniversalLanguageSpeaker # Ghosts should understand any language.
- type: entity
id: ActionGhostBoo
diff --git a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml
index ad9b37f63e..07deef857c 100644
--- a/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml
+++ b/Resources/Prototypes/Entities/Mobs/Player/replay_observer.yml
@@ -7,3 +7,4 @@
- type: MovementSpeedModifier
baseSprintSpeed: 24
baseWalkSpeed: 16
+ - type: UniversalLanguageSpeaker
diff --git a/Resources/Prototypes/Entities/Mobs/Species/base.yml b/Resources/Prototypes/Entities/Mobs/Species/base.yml
index a610e04d6d..5a9917d974 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/base.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/base.yml
@@ -141,7 +141,7 @@
- Pacified
- StaminaModifier
- PsionicsDisabled #Nyano - Summary: PCs can have psionics disabled.
- - PsionicallyInsulated #Nyano - Summary: PCs can be made insulated from psionic powers.
+ - PsionicallyInsulated #Nyano - Summary: PCs can be made insulated from psionic powers.
- type: Reflect
enabled: false
reflectProb: 0
@@ -218,7 +218,7 @@
- type: MobPrice
price: 1500 # Kidnapping a living person and selling them for cred is a good move.
deathPenalty: 0.01 # However they really ought to be living and intact, otherwise they're worth 100x less.
- - type: CanEscapeInventory # Carrying system from nyanotrasen.
+ - type: CanEscapeInventory # Carrying system from nyanotrasen.
- type: Tag
tags:
- CanPilot
@@ -304,6 +304,11 @@
Asphyxiation: -1.0
- type: FireVisuals
alternateState: Standing
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ understands:
+ - GalacticCommon
- type: entity
save: false
diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml
index 3d405c4dd9..5cb3de6f16 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml
@@ -102,6 +102,13 @@
actionPrototype: DionaGibAction
allowedStates:
- Dead
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - RootSpeak
+ understands:
+ - GalacticCommon
+ - RootSpeak
- type: entity
parent: BaseSpeciesDummy
diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml
index fe36754b9b..7afc5cddd7 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml
@@ -52,6 +52,13 @@
accent: dwarf
- type: Speech
speechSounds: Bass
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - SolCommon
+ understands:
+ - GalacticCommon
+ - SolCommon
- type: entity
parent: BaseSpeciesDummy
diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml
index 7bf96efe2c..7c3f857c00 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/human.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml
@@ -17,6 +17,13 @@
- id: FoodMeatHuman
amount: 5
- type: PotentialPsionic #Nyano - Summary: makes potentially psionic.
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - SolCommon
+ understands:
+ - GalacticCommon
+ - SolCommon
- type: entity
parent: BaseSpeciesDummy
diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml
index 1680dd6cda..39aa0ab8de 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml
@@ -23,6 +23,13 @@
accent: zombieMoth
- type: Speech
speechVerb: Moth
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Moffic
+ understands:
+ - GalacticCommon
+ - Moffic
- type: TypingIndicator
proto: moth
- type: Butcherable
diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
index c893fab449..d10d95d073 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml
@@ -59,6 +59,13 @@
types:
Heat : 1.5 #per second, scales with temperature & other constants
- type: Wagging
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Draconic
+ understands:
+ - GalacticCommon
+ - Draconic
- type: entity
parent: BaseSpeciesDummy
diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml
index 481afd06a3..a601010ef9 100644
--- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml
+++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml
@@ -74,6 +74,13 @@
types:
Asphyxiation: -1.0
maxSaturation: 15
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Bubblish
+ understands:
+ - GalacticCommon
+ - Bubblish
- type: entity
parent: MobHumanDummy
diff --git a/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml
new file mode 100644
index 0000000000..972c8f1234
--- /dev/null
+++ b/Resources/Prototypes/Entities/Objects/Devices/translator_implants.yml
@@ -0,0 +1,132 @@
+- type: entity
+ abstract: true
+ id: BaseTranslatorImplanter
+ parent: [ BaseItem ]
+ name: Basic translator implant
+ description: "Translates speech."
+ components:
+ - type: Sprite
+ sprite: Objects/Specific/Medical/implanter.rsi
+ state: implanter0
+ layers:
+ - state: implanter1
+ map: [ "implantFull" ]
+ visible: true
+ - state: implanter0
+ map: [ "implantBroken" ]
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.ImplanterVisuals.Full:
+ implantFull:
+ True: {visible: true}
+ False: {visible: false}
+ implantBroken:
+ True: {visible: false}
+ False: {visible: true}
+
+- type: entity
+ id: BasicGalaticCommonTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Basic Galatic Common translator implant
+ description: "An implant giving the ability to understand Galatic Common."
+ components:
+ - type: TranslatorImplanter
+ understood:
+ - GalacticCommon
+
+- type: entity
+ id: AdvancedGalaticCommonTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Advanced Galactic Common translator implant
+ description: "An implant giving the ability to understand and speak Galactic Common."
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - GalacticCommon
+ understood:
+ - GalacticCommon
+
+- type: entity
+ id: BubblishTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Bubblish translator implant
+ description: "An implant giving the ability to understand and speak Bubblish."
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - Bubblish
+ understood:
+ - Bubblish
+
+- type: entity
+ id: NekomimeticTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Nekomimetic translator implant
+ description: "An implant giving the ability to understand and speak Nekomimetic, Nya~!"
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - Nekomimetic
+ understood:
+ - Nekomimetic
+
+- type: entity
+ id: DraconicTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Draconic translator implant
+ description: "An implant giving the ability to understand and speak Draconic."
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - Draconic
+ understood:
+ - Draconic
+
+- type: entity
+ id: CanilunztTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Canilunzt translator implant
+ description: "An implant giving the ability to understand and speak Canilunzt, Yeeps!"
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - Canilunzt
+ understood:
+ - Canilunzt
+
+- type: entity
+ id: SolCommonTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: SolCommon translator implant
+ description: "An implant giving the ability to understand and speak SolCommon, raaagh!"
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - SolCommon
+ understood:
+ - SolCommon
+
+- type: entity
+ id: RootSpeakTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: RootSpeak translator implant
+ description: "An implant giving the ability to understand and speak RootSpeak."
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - RootSpeak
+ understood:
+ - RootSpeak
+
+- type: entity
+ id: MofficTranslatorImplanter
+ parent: [ BaseTranslatorImplanter ]
+ name: Moffic translator implant
+ description: "An implant giving the ability to understand and speak Moffic."
+ components:
+ - type: TranslatorImplanter
+ spoken:
+ - Moffic
+ understood:
+ - Moffic
diff --git a/Resources/Prototypes/Entities/Objects/Devices/translators.yml b/Resources/Prototypes/Entities/Objects/Devices/translators.yml
new file mode 100644
index 0000000000..7093acf77d
--- /dev/null
+++ b/Resources/Prototypes/Entities/Objects/Devices/translators.yml
@@ -0,0 +1,220 @@
+- type: entity
+ abstract: true
+ id: TranslatorUnpowered
+ parent: [ BaseItem ]
+ name: Translator
+ description: "Translates speech."
+ components:
+ - type: Sprite
+ sprite: Objects/Devices/translator.rsi
+ state: icon
+ layers:
+ - state: icon
+ - state: translator
+ shader: unshaded
+ visible: false
+ map: [ "enum.ToggleVisuals.Layer", "enum.PowerDeviceVisualLayers.Powered" ]
+ - type: Appearance
+ - type: GenericVisualizer
+ visuals:
+ enum.ToggleVisuals.Toggled:
+ enum.ToggleVisuals.Layer:
+ True: { visible: true }
+ False: { visible: false }
+ - type: HandheldTranslator
+ enabled: false
+
+- type: entity
+ abstract: true
+ id: Translator
+ parent: [ TranslatorUnpowered, PowerCellSlotMediumItem ]
+ suffix: Powered
+ components:
+ - type: PowerCellDraw
+ drawRate: 1
+
+- type: entity
+ abstract: true
+ id: TranslatorEmtpy
+ parent: [ Translator ]
+ suffix: Empty
+ components:
+ - type: ItemSlots
+ slots:
+ cell_slot:
+ name: power-cell-slot-component-slot-name-default
+
+- type: entity
+ id: CanilunztTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Canilunzt translator
+ description: "Translates speech between Canilunzt and Galactic Common."
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Canilunzt
+ understood:
+ - GalacticCommon
+ - Canilunzt
+ requires:
+ - GalacticCommon
+ - Canilunzt
+ requires-all: false
+
+- type: entity
+ id: BubblishTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Bubblish translator
+ description: "Translates speech between Bubblish and Galactic Common."
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Bubblish
+ understood:
+ - GalacticCommon
+ - Bubblish
+ requires:
+ - GalacticCommon
+ - Bubblish
+ requires-all: false
+
+- type: entity
+ id: NekomimeticTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Nekomimetic translator
+ description: "Translates speech between Nekomimetic and Galactic Common. Why would you want that?"
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Nekomimetic
+ understood:
+ - GalacticCommon
+ - Nekomimetic
+ requires:
+ - GalacticCommon
+ - Nekomimetic
+ requires-all: false
+
+- type: entity
+ id: DraconicTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Draconic translator
+ description: "Translates speech between Draconic and Galactic Common."
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Draconic
+ understood:
+ - GalacticCommon
+ - Draconic
+ requires:
+ - GalacticCommon
+ - Draconic
+ requires-all: false
+
+- type: entity
+ id: SolCommonTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Sol Common translator
+ description: "Translates speech between Sol Common and Galactic Common. Like a true Earthman!"
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - SolCommon
+ understood:
+ - GalacticCommon
+ - SolCommon
+ requires:
+ - GalacticCommon
+ - SolCommon
+ requires-all: false
+
+- type: entity
+ id: RootSpeakTranslator
+ parent: [ TranslatorEmtpy ]
+ name: RootSpeak translator
+ description: "Translates speech between RootSpeak and Galactic Common. Like a true plant?"
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - RootSpeak
+ understood:
+ - GalacticCommon
+ - RootSpeak
+ requires:
+ - GalacticCommon
+ - RootSpeak
+ requires-all: false
+
+- type: entity
+ id: MofficTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Moffic translator
+ description: "Translates speech between Moffic and Galactic Common. Like a true moth... or bug?"
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Moffic
+ understood:
+ - GalacticCommon
+ - Moffic
+ requires:
+ - GalacticCommon
+ - Moffic
+ requires-all: false
+
+- type: entity
+ id: XenoTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Xeno translator
+ description: "Translates speech between Xeno and Galactic Common. Not sure if that will help."
+ components:
+ - type: HandheldTranslator
+ default-language: GalacticCommon
+ spoken:
+ - GalacticCommon
+ - Xeno
+ understood:
+ - GalacticCommon
+ - Xeno
+ requires:
+ - GalacticCommon
+
+- type: entity
+ id: AnimalTranslator
+ parent: [ TranslatorEmtpy ]
+ name: Animal translator
+ description: "Translates all the cutes nosies that animals make into a more understandable form!"
+ components:
+ - type: HandheldTranslator
+ understood:
+ - Cat
+ - Dog
+ - Fox
+ - Monkey
+ - Mouse
+ - Chicken
+ - Duck
+ - Cow
+ - Sheep
+ - Kangaroo
+ - Pig
+ - Crab
+ - Kobold
+ requires:
+ - GalacticCommon
+ requires-all: false
diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
index af39b4c612..808252fb38 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml
@@ -338,6 +338,24 @@
- FauxTileAstroIce
- OreBagOfHolding
- DeviceQuantumSpinInverter
+ - CanilunztTranslator
+ - BubblishTranslator
+ - NekomimeticTranslator
+ - DraconicTranslator
+ - SolCommonTranslator
+ - RootSpeakTranslator
+ - XenoTranslator
+ - BasicGalaticCommonTranslatorImplanter
+ - AdvancedGalaticCommonTranslatorImplanter
+ - BubblishTranslatorImplanter
+ - NekomimeticTranslatorImplanter
+ - DraconicTranslatorImplanter
+ - CanilunztTranslatorImplanter
+ - SolCommonTranslatorImplanter
+ - RootSpeakTranslatorImplanter
+ - AnimalTranslator
+ - MofficTranslatorImplanter
+ - MofficTranslator
- type: EmagLatheRecipes
emagDynamicRecipes:
- ExplosivePayload
diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
index 4c2217e6ff..b258289537 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml
@@ -101,6 +101,13 @@
price: 100
- type: Appearance
- type: WiresVisuals
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - RobotTalk
+ understands:
+ - GalacticCommon
+ - RobotTalk
- type: entity
parent: VendingMachine
diff --git a/Resources/Prototypes/Language/languages.yml b/Resources/Prototypes/Language/languages.yml
new file mode 100644
index 0000000000..90bce1baed
--- /dev/null
+++ b/Resources/Prototypes/Language/languages.yml
@@ -0,0 +1,493 @@
+# The universal language, assumed if the entity has a UniversalLanguageSpeakerComponent.
+# Do not use otherwise. Try to use the respective component instead of this language.
+- type: language
+ id: Universal
+ obfuscateSyllables: false
+ replacement:
+ - "*incomprehensible*"
+
+# The common galactic tongue.
+- type: language
+ id: GalacticCommon
+ obfuscateSyllables: true
+ replacement:
+ - Blah
+ - Blah
+ - Blah
+ - dingle-doingle
+ - dingle
+ - dangle
+ - jibber-jabber
+ - jubber
+ - bleh
+ - zippity
+ - zoop
+ - wibble
+ - wobble
+ - wiggle
+ - yada
+ - meh
+ - neh
+ - nah
+ - wah
+
+# Spoken by slimes.
+- type: language
+ id: Bubblish
+ obfuscateSyllables: true
+ replacement:
+ - blob
+ - plop
+ - pop
+ - bop
+ - boop
+
+# Spoken by moths.
+- type: language
+ id: Moffic
+ obfuscateSyllables: true
+ replacement:
+ - år
+ - i
+ - går
+ - sek
+ - mo
+ - ff
+ - ok
+ - gj
+ - ø
+ - gå
+ - la
+ - le
+ - lit
+ - ygg
+ - van
+ - dår
+ - næ
+ - møt
+ - idd
+ - hvo
+ - ja
+ - på
+ - han
+ - så
+ - ån
+ - det
+ - att
+ - nå
+ - gö
+ - bra
+ - int
+ - tyc
+ - om
+ - när
+ - två
+ - må
+ - dag
+ - sjä
+ - vii
+ - vuo
+ - eil
+ - tun
+ - käyt
+ - teh
+ - vä
+ - hei
+ - huo
+ - suo
+ - ää
+ - ten
+ - ja
+ - heu
+ - stu
+ - uhr
+ - kön
+ - we
+ - hön
+
+ # Spoken by dionas.
+- type: language
+ id: RootSpeak
+ obfuscateSyllables: true
+ replacement:
+ - hs
+ - zt
+ - kr
+ - st
+ - sh
+
+# A mess of broken Japanese, spoken by Felinds and Oni
+- type: language
+ id: Nekomimetic
+ obfuscateSyllables: true
+ replacement:
+ - neko
+ - nyan
+ - mimi
+ - moe
+ - mofu
+ - fuwa
+ - kyaa
+ - kawaii
+ - poka
+ - munya
+ - puni
+ - munyu
+ - ufufu
+ - icha
+ - doki
+ - kyun
+ - kusu
+ - nya
+ - nyaa
+ - desu
+ - kis
+ - ama
+ - chuu
+ - baka
+ - hewo
+ - boop
+ - gato
+ - kit
+ - sune
+ - yori
+ - sou
+ - baka
+ - chan
+ - san
+ - kun
+ - mahou
+ - yatta
+ - suki
+ - usagi
+ - domo
+ - ori
+ - uwa
+ - zaazaa
+ - shiku
+ - puru
+ - ira
+ - heto
+ - etto
+
+# Spoken by the Lizard race.
+- type: language
+ id: Draconic
+ obfuscateSyllables: true
+ replacement:
+ - za
+ - az
+ - ze
+ - ez
+ - zi
+ - iz
+ - zo
+ - oz
+ - zu
+ - uz
+ - zs
+ - sz
+ - ha
+ - ah
+ - he
+ - eh
+ - hi
+ - ih
+ - ho
+ - oh
+ - hu
+ - uh
+ - hs
+ - sh
+ - la
+ - al
+ - le
+ - el
+ - li
+ - il
+ - lo
+ - ol
+ - lu
+ - ul
+ - ls
+ - sl
+ - ka
+ - ak
+ - ke
+ - ek
+ - ki
+ - ik
+ - ko
+ - ok
+ - ku
+ - uk
+ - ks
+ - sk
+ - sa
+ - as
+ - se
+ - es
+ - si
+ - is
+ - so
+ - os
+ - su
+ - us
+ - ss
+ - ss
+ - ra
+ - ar
+ - re
+ - er
+ - ri
+ - ir
+ - ro
+ - or
+ - ru
+ - ur
+ - rs
+ - sr
+ - a
+ - a
+ - e
+ - e
+ - i
+ - i
+ - o
+ - o
+ - u
+ - u
+ - s
+ - s
+
+# Spoken by the Vulpkanin race.
+- type: language
+ id: Canilunzt
+ obfuscateSyllables: true
+ replacement:
+ - rur
+ - ya
+ - cen
+ - rawr
+ - bar
+ - kuk
+ - tek
+ - qat
+ - uk
+ - wu
+ - vuh
+ - tah
+ - tch
+ - schz
+ - auch
+ - ist
+ - ein
+ - entch
+ - zwichs
+ - tut
+ - mir
+ - wo
+ - bis
+ - es
+ - vor
+ - nic
+ - gro
+ - lll
+ - enem
+ - zandt
+ - tzch
+ - noch
+ - hel
+ - ischt
+ - far
+ - wa
+ - baram
+ - iereng
+ - tech
+ - lach
+ - sam
+ - mak
+ - lich
+ - gen
+ - or
+ - ag
+ - eck
+ - gec
+ - stag
+ - onn
+ - bin
+ - ket
+ - jarl
+ - vulf
+ - einech
+ - cresthz
+ - azunein
+ - ghzth
+
+# The common language of the Sol system.
+- type: language
+ id: SolCommon
+ obfuscateSyllables: true
+ replacement:
+ - tao
+ - shi
+ - tzu
+ - yi
+ - com
+ - be
+ - is
+ - i
+ - op
+ - vi
+ - ed
+ - lec
+ - mo
+ - cle
+ - te
+ - dis
+ - e
+
+- type: language
+ id: RobotTalk
+ obfuscateSyllables: true
+ replacement:
+ - 0
+ - 1
+ - 01
+ - 10
+ - 001
+ - 100
+ - 011
+ - 110
+ - 101
+ - 010
+
+# Languages spoken by various critters.
+- type: language
+ id: Cat
+ obfuscateSyllables: true
+ replacement:
+ - murr
+ - meow
+ - purr
+ - mrow
+
+- type: language
+ id: Dog
+ obfuscateSyllables: true
+ replacement:
+ - woof
+ - bark
+ - ruff
+ - bork
+ - raff
+ - garr
+
+- type: language
+ id: Fox
+ obfuscateSyllables: true
+ replacement:
+ - bark
+ - gecker
+ - ruff
+ - raff
+ - garr
+
+- type: language
+ id: Xeno
+ obfuscateSyllables: true
+ replacement:
+ - sss
+ - sSs
+ - SSS
+
+- type: language
+ id: Monkey
+ obfuscateSyllables: true
+ replacement:
+ - ok
+ - ook
+ - oook
+ - ooook
+ - oooook
+
+- type: language
+ id: Mouse
+ obfuscateSyllables: true
+ replacement:
+ - Squeak
+ - Piep
+ - Chuu
+ - Eeee
+ - Pip
+ - Fwiep
+ - Heep
+
+- type: language
+ id: Chicken
+ obfuscateSyllables: true
+ replacement:
+ - Coo
+ - Coot
+ - Cooot
+
+- type: language
+ id: Duck
+ obfuscateSyllables: true
+ replacement:
+ - Quack
+ - Quack quack
+
+- type: language
+ id: Cow
+ obfuscateSyllables: true
+ replacement:
+ - Moo
+ - Mooo
+
+- type: language
+ id: Sheep
+ obfuscateSyllables: true
+ replacement:
+ - Ba
+ - Baa
+ - Baaa
+
+- type: language
+ id: Kangaroo
+ obfuscateSyllables: true
+ replacement:
+ - Shreak
+ - Chuu
+
+- type: language
+ id: Pig
+ obfuscateSyllables: true
+ replacement:
+ - Oink
+ - Oink oink
+
+- type: language
+ id: Crab
+ obfuscateSyllables: true
+ replacement:
+ - Click
+ - Click-clack
+ - Clack
+ - Tipi-tap
+ - Clik-tap
+ - Cliliick
+
+- type: language
+ id: Kobold
+ obfuscateSyllables: true
+ replacement:
+ - Yip
+ - Grrar.
+ - Yap
+ - Bip
+ - Screet
+ - Gronk
+ - Hiss
+ - Eeee
+ - Yip
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml
index e11f1c4165..8a0e750abd 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/Oni.yml
@@ -35,6 +35,13 @@
- MobLayer
- type: Stamina
critThreshold: 115
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - Nekomimetic
+ understands:
+ - GalacticCommon
+ - Nekomimetic
- type: entity
save: false
diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
index d9b25c5dd1..2184926b95 100644
--- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
+++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Species/felinid.yml
@@ -64,6 +64,15 @@
Unsexed: MaleFelinid
- type: Felinid
- type: NoShoesSilentFootsteps
+ - type: LanguageSpeaker
+ speaks:
+ - GalacticCommon
+ - SolCommon
+ - Nekomimetic
+ understands:
+ - GalacticCommon
+ - SolCommon
+ - Nekomimetic
- type: entity
save: false
diff --git a/Resources/Prototypes/Recipes/Lathes/language.yml b/Resources/Prototypes/Recipes/Lathes/language.yml
new file mode 100644
index 0000000000..6871ed5228
--- /dev/null
+++ b/Resources/Prototypes/Recipes/Lathes/language.yml
@@ -0,0 +1,190 @@
+- type: latheRecipe
+ id: CanilunztTranslator
+ result: CanilunztTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: BubblishTranslator
+ result: BubblishTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: NekomimeticTranslator
+ result: NekomimeticTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: DraconicTranslator
+ result: DraconicTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: SolCommonTranslator
+ result: SolCommonTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: RootSpeakTranslator
+ result: RootSpeakTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: MofficTranslator
+ result: MofficTranslator
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 100
+ Plastic: 50
+ Gold: 50
+
+- type: latheRecipe
+ id: BasicGalaticCommonTranslatorImplanter
+ result: BasicGalaticCommonTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: XenoTranslator
+ result: XenoTranslator
+ completetime: 2
+ materials:
+ Steel: 200
+ Plastic: 50
+ Gold: 50
+ Plasma: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: AdvancedGalaticCommonTranslatorImplanter
+ result: AdvancedGalaticCommonTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: BubblishTranslatorImplanter
+ result: BubblishTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: NekomimeticTranslatorImplanter
+ result: NekomimeticTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: DraconicTranslatorImplanter
+ result: DraconicTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: CanilunztTranslatorImplanter
+ result: CanilunztTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: SolCommonTranslatorImplanter
+ result: SolCommonTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: RootSpeakTranslatorImplanter
+ result: RootSpeakTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: MofficTranslatorImplanter
+ result: MofficTranslatorImplanter
+ completetime: 2
+ materials:
+ Steel: 500
+ Glass: 500
+ Plastic: 100
+ Gold: 50
+ Silver: 50
+
+- type: latheRecipe
+ id: AnimalTranslator
+ result: AnimalTranslator
+ completetime: 2
+ materials:
+ Steel: 200
+ Plastic: 50
+ Gold: 50
+ Plasma: 50
+ Silver: 5
diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml
index c3f83e0fc5..df34549751 100644
--- a/Resources/Prototypes/Research/civilianservices.yml
+++ b/Resources/Prototypes/Research/civilianservices.yml
@@ -224,3 +224,43 @@
recipeUnlocks:
- BluespaceBeaker
- SyringeBluespace
+
+- type: technology
+ id: BasicTranslation
+ name: research-technology-basic-translation
+ icon:
+ sprite: Objects/Devices/translator.rsi
+ state: icon
+ discipline: CivilianServices
+ tier: 2
+ cost: 10000
+ recipeUnlocks:
+ - CanilunztTranslator
+ - BubblishTranslator
+ - NekomimeticTranslator
+ - DraconicTranslator
+ - SolCommonTranslator
+ - RootSpeakTranslator
+ - BasicGalaticCommonTranslatorImplanter
+ - MofficTranslator
+
+- type: technology
+ id: AdvancedTranslation
+ name: research-technology-advanced-translation
+ icon:
+ sprite: Objects/Devices/translator.rsi
+ state: icon
+ discipline: CivilianServices
+ tier: 3
+ cost: 15000
+ recipeUnlocks:
+ - XenoTranslator
+ - AdvancedGalaticCommonTranslatorImplanter
+ - BubblishTranslatorImplanter
+ - NekomimeticTranslatorImplanter
+ - DraconicTranslatorImplanter
+ - CanilunztTranslatorImplanter
+ - SolCommonTranslatorImplanter
+ - RootSpeakTranslatorImplanter
+ - AnimalTranslator
+ - MofficTranslatorImplanter
diff --git a/Resources/Textures/Interface/language.png b/Resources/Textures/Interface/language.png
new file mode 100644
index 0000000000000000000000000000000000000000..2b39424d12d3d75421a5f48ab87ec0c4f852129f
GIT binary patch
literal 739
zcmV<90v!E`P)4Tx04UFukv&MmP!xqvQ>9WWf_4yb$WWc^q9TqZ6^me@v=v%)FnQ@8G-*gu
zTpR`0f`dPcRR<0iR+(n?#Q;sW
z&2&N%bNN*<@QM(ERKpNuW*N!MVirBu*FAiEzl-uL{BI4a1&aYbkvPT-(0(wkHR4&~h^pz7FXTK{
zId5^+s&&@xlfN)j&{r~Cry55BOGqLG5en+4pb8sN+I3Par0HDh;U9DTDRL>~s(_JW
z0X1llT|f9A{GP2--aXJgw?FT=^MmvQjVW@mx*a
zR9HvtliLo2APhtW#Q*Z7
zxueKOz!l>drAkVi37b}eoEaHck8hT`Y711a{BAiv=MV89^d&Flsg
z;w6
zQhU|Z-a6Cv%8BbI{bv4!1BA+Lo2}0W538WU#pihLZ&zz@(>PT+|s@$
z;f&CupQ;C=PPAHcUOTL%$X6+}V=}kyeUH}1?myQVa~Q{oXWeD^{6ysAU#rzwKqoMG
My85}Sb4q9e0CGNE+5i9m
literal 0
HcmV?d00001
diff --git a/Resources/Textures/Objects/Devices/translator.rsi/meta.json b/Resources/Textures/Objects/Devices/translator.rsi/meta.json
new file mode 100644
index 0000000000..0202c0c39c
--- /dev/null
+++ b/Resources/Textures/Objects/Devices/translator.rsi/meta.json
@@ -0,0 +1,17 @@
+{
+ "version": 2,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "baystation12",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "translator"
+ }
+ ]
+}
diff --git a/Resources/Textures/Objects/Devices/translator.rsi/translator.png b/Resources/Textures/Objects/Devices/translator.rsi/translator.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c54a0b86366cef370ee7e2575979bc054a826dd
GIT binary patch
literal 202
zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}Ea{HEjtmSN
z`?>!lvI6;>1s;*b3=DjSL74G){)!Z!V7#Y`V@QPi+bb724=C`kT-dCARMX0%{FPtn
zM7@b>Ggy`WPQ1h1>1a^Uq@bh}Rp#`xG0tlB_rgh+7A^Z3Ffrqd#I~w``;=d`)m1S?
uB}Iz&N5B8Xx#z0zhx6*&T(($0U_Q1^;pBD8!#jaiF?hQAxvX
Date: Wed, 8 May 2024 11:21:03 +0100
Subject: [PATCH 02/45] disable language accents for clothing
---
.../Prototypes/Entities/Clothing/Head/hats.yml | 18 +++++++++---------
.../Entities/Clothing/Masks/masks.yml | 6 +++---
.../Entities/Clothing/OuterClothing/misc.yml | 8 ++++----
3 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/Resources/Prototypes/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/Entities/Clothing/Head/hats.yml
index 43d6c7c9b7..9fb2793530 100644
--- a/Resources/Prototypes/Entities/Clothing/Head/hats.yml
+++ b/Resources/Prototypes/Entities/Clothing/Head/hats.yml
@@ -35,8 +35,8 @@
sprite: Clothing/Head/Hats/beret_french.rsi
- type: Clothing
sprite: Clothing/Head/Hats/beret_french.rsi
- - type: AddAccentClothing
- accent: FrenchAccent
+ # - type: AddAccentClothing
+ # accent: FrenchAccent
- type: Tag
tags:
- ClothMade
@@ -425,8 +425,8 @@
sprite: Clothing/Head/Hats/sombrero.rsi
- type: Clothing
sprite: Clothing/Head/Hats/sombrero.rsi
- - type: AddAccentClothing
- accent: SpanishAccent
+ # - type: AddAccentClothing
+ # accent: SpanishAccent
- type: entity
parent: ClothingHeadBase
@@ -492,8 +492,8 @@
sprite: Clothing/Head/Hats/ushanka.rsi
- type: Clothing
sprite: Clothing/Head/Hats/ushanka.rsi
- - type: AddAccentClothing
- accent: RussianAccent
+ # - type: AddAccentClothing
+ # accent: RussianAccent
- type: entity
parent: ClothingHeadBase
@@ -976,9 +976,9 @@
sprite: Clothing/Head/Hats/cowboyhatbrown.rsi
- type: Clothing
sprite: Clothing/Head/Hats/cowboyhatbrown.rsi
- - type: AddAccentClothing
- accent: ReplacementAccent
- replacement: cowboy
+ # - type: AddAccentClothing
+ # accent: ReplacementAccent
+ # replacement: cowboy
- type: entity
parent: ClothingHeadHatCowboyBrown
diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
index 1f70211caa..8f20e33d49 100644
--- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
+++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml
@@ -570,9 +570,9 @@
sprite: Clothing/Mask/italian_moustache.rsi
- type: Item
storedRotation: -90
- - type: AddAccentClothing
- accent: ReplacementAccent
- replacement: italian
+ # - type: AddAccentClothing
+ # accent: ReplacementAccent
+ # replacement: italian
- type: entity
parent: ClothingMaskBase
diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml
index bd82df57d4..81f690a8f2 100644
--- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml
+++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml
@@ -114,8 +114,8 @@
sprite: Clothing/OuterClothing/Misc/classicponcho.rsi
- type: Clothing
sprite: Clothing/OuterClothing/Misc/classicponcho.rsi
- - type: AddAccentClothing
- accent: SpanishAccent
+ # - type: AddAccentClothing
+ # accent: SpanishAccent
- type: entity
parent: ClothingOuterBase
@@ -149,8 +149,8 @@
sprite: Clothing/OuterClothing/Misc/poncho.rsi
- type: Clothing
sprite: Clothing/OuterClothing/Misc/poncho.rsi
- - type: AddAccentClothing
- accent: SpanishAccent
+ # - type: AddAccentClothing
+ # accent: SpanishAccent
- type: entity
parent: ClothingOuterBase
From 8a281bf90f0f86c26876467d4cb64c9d160ae071 Mon Sep 17 00:00:00 2001
From: stellar-novas
Date: Wed, 8 May 2024 17:43:23 -0400
Subject: [PATCH 03/45] Fix logo license and add source files (#397)
# Description
The EE logo was still attributed to me, and the source files weren't
included here.
---
# Changelog
none
---
Resources/Textures/Logo/icon-license.txt | 8 +-
Resources/Textures/Logo/icon.svg | 434 ------------------
Resources/Textures/Logo/logo.svg | 434 ------------------
Resources/Textures/Logo/source/EE_bannger.svg | 222 +++++++++
.../Textures/Logo/source/EE_logo-dark.svg | 57 +++
.../Textures/Logo/source/EE_logo-light.svg | 50 ++
6 files changed, 333 insertions(+), 872 deletions(-)
delete mode 100644 Resources/Textures/Logo/icon.svg
delete mode 100644 Resources/Textures/Logo/logo.svg
create mode 100644 Resources/Textures/Logo/source/EE_bannger.svg
create mode 100644 Resources/Textures/Logo/source/EE_logo-dark.svg
create mode 100644 Resources/Textures/Logo/source/EE_logo-light.svg
diff --git a/Resources/Textures/Logo/icon-license.txt b/Resources/Textures/Logo/icon-license.txt
index 585694e728..4541be178f 100644
--- a/Resources/Textures/Logo/icon-license.txt
+++ b/Resources/Textures/Logo/icon-license.txt
@@ -1,8 +1,6 @@
-The files below are licensed under CC-BY-SA 4.0 by the author, Nova, https://github.com/stellar-novas / @stellar_novas on Discord.
-Monaspace Krypton was used for text in the following files under the SIL Open Font License, Version 1.1. https://github.com/githubnext/monaspace.
+The files below are licensed under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International by the author, Jennifer Castillo, @ItJustAni or @justani.
icon.ico
-icon.svg
icon/icon-16x16.png
icon/icon-24x24.png
icon/icon-32x32.png
@@ -10,6 +8,8 @@ icon/icon-48x48.png
icon/icon-64x64.png
icon/icon-128x128.png
icon/icon-256x256.png
-logo.svg
logo.png
slashlogo.png
+source/EE_banner.svg
+source/EE_logo-dark.svg
+source/EE_logo-light.svg
diff --git a/Resources/Textures/Logo/icon.svg b/Resources/Textures/Logo/icon.svg
deleted file mode 100644
index 99315583c6..0000000000
--- a/Resources/Textures/Logo/icon.svg
+++ /dev/null
@@ -1,434 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Engines
- Einstein
-
-
-
diff --git a/Resources/Textures/Logo/logo.svg b/Resources/Textures/Logo/logo.svg
deleted file mode 100644
index 6885a736a6..0000000000
--- a/Resources/Textures/Logo/logo.svg
+++ /dev/null
@@ -1,434 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Engines
- Einstein
-
-
-
diff --git a/Resources/Textures/Logo/source/EE_bannger.svg b/Resources/Textures/Logo/source/EE_bannger.svg
new file mode 100644
index 0000000000..91fef68b73
--- /dev/null
+++ b/Resources/Textures/Logo/source/EE_bannger.svg
@@ -0,0 +1,222 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Resources/Textures/Logo/source/EE_logo-dark.svg b/Resources/Textures/Logo/source/EE_logo-dark.svg
new file mode 100644
index 0000000000..b22cf86cb9
--- /dev/null
+++ b/Resources/Textures/Logo/source/EE_logo-dark.svg
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Resources/Textures/Logo/source/EE_logo-light.svg b/Resources/Textures/Logo/source/EE_logo-light.svg
new file mode 100644
index 0000000000..236919fe2f
--- /dev/null
+++ b/Resources/Textures/Logo/source/EE_logo-light.svg
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
From 78e1541662aef63ead433f150f18bead99374f0f Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:25:48 -0700
Subject: [PATCH 04/45] Mirror: Contraband Storage Crate (#181)
## Mirror of PR #25974: [Contraband Storage
Crate](https://github.com/space-wizards/space-station-14/pull/25974)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `49c819373919d6ad2c7e1d802025782ecdce370b`
PR opened by
PursuitInAshes at 2024-03-10 18:12:13 UTC
---
PR changed 1 files with 12 additions and 0 deletions.
The PR had the following labels:
- No C#
---
Original Body
> ## About the PR
> Adds a Contraband Storage Crate for the armory. This can be used by
mappers to provide better and more suitable storage then an empty rack.
>
> ## Why / Balance
> Dumping items that were confiscated from the syndicate on the ground
or in exposed racks felt wrong and unfitting for more stations. This
provides an armory locked crate to fill that purpose.
>
> ## Media
> ![Content
Client_JYZIEQmEgm](https://github.com/space-wizards/space-station-14/assets/91865152/e458cda6-791c-4145-92c3-ae052482813a)
>
> **Changelog**
>
> No CL, not really player facing.
>
Co-authored-by: SimpleStation14
---
.../Entities/Structures/Storage/Crates/crates.yml | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml
index b854fb2fc6..4ebe8d04eb 100644
--- a/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml
+++ b/Resources/Prototypes/Entities/Structures/Storage/Crates/crates.yml
@@ -283,6 +283,18 @@
- type: AccessReader
access: [["Armory"]]
+- type: entity
+ parent: CrateBaseSecure
+ suffix: Armory, Secure
+ id: CrateContrabandStorageSecure
+ name: contraband storage crate
+ description: An armory access locked crate for storing contraband confiscated from suspects or prisoners.
+ components:
+ - type: Sprite
+ sprite: Structures/Storage/Crates/sec_gear.rsi
+ - type: AccessReader
+ access: [["Armory"]]
+
- type: entity
parent: CrateBaseSecure
id: CrateCommandSecure
From 883ded11546a1d9499e2565a5cba86126b11aabc Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:26:31 -0700
Subject: [PATCH 05/45] Mirror: Nuke Music start adjusted for duration (#163)
## Mirror of PR #25946: [Nuke Music start adjusted for
duration](https://github.com/space-wizards/space-station-14/pull/25946)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `680cf5fec13b92f09355acec9892f2db51f3e80e`
PR opened by Errant-4 at
2024-03-09 18:24:36 UTC
PR merged by web-flow at
2024-03-12 18:50:34 UTC
---
PR changed 2 files with 16 additions and 5 deletions.
The PR had the following labels:
---
Original Body
> ## About the PR
>
> Nuke Music now begins playing at the appropriate time to end
just-on-target regardless of the duration of the music (as long as it's
less than 290 seconds)
>
> fixes #25775
>
> ## Media
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
>
Co-authored-by: Errant <35878406+Errant-4@users.noreply.github.com>
---
Content.Server/Audio/ServerGlobalSoundSystem.cs | 10 ++++++++--
Content.Server/Nuke/NukeSystem.cs | 11 ++++++++---
2 files changed, 16 insertions(+), 5 deletions(-)
diff --git a/Content.Server/Audio/ServerGlobalSoundSystem.cs b/Content.Server/Audio/ServerGlobalSoundSystem.cs
index df8771df8d..3d30be8eea 100644
--- a/Content.Server/Audio/ServerGlobalSoundSystem.cs
+++ b/Content.Server/Audio/ServerGlobalSoundSystem.cs
@@ -1,6 +1,7 @@
using Content.Server.Station.Systems;
using Content.Shared.Audio;
using Robust.Shared.Audio;
+using Robust.Shared.Audio.Systems;
using Robust.Shared.Console;
using Robust.Shared.Player;
@@ -10,6 +11,7 @@ public sealed class ServerGlobalSoundSystem : SharedGlobalSoundSystem
{
[Dependency] private readonly IConsoleHost _conHost = default!;
[Dependency] private readonly StationSystem _stationSystem = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
public override void Shutdown()
{
@@ -49,10 +51,14 @@ public void StopStationEventMusic(EntityUid source, StationEventMusicType type)
}
public void DispatchStationEventMusic(EntityUid source, SoundSpecifier sound, StationEventMusicType type)
+ {
+ DispatchStationEventMusic(source, _audio.GetSound(sound), type);
+ }
+
+ public void DispatchStationEventMusic(EntityUid source, string sound, StationEventMusicType type)
{
var audio = AudioParams.Default.WithVolume(-8);
- var soundFile = sound.GetSound();
- var msg = new StationEventMusicEvent(soundFile, type, audio);
+ var msg = new StationEventMusicEvent(sound, type, audio);
var filter = GetStationAndPvs(source);
RaiseNetworkEvent(msg, filter);
diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs
index 652852ece2..d6767cd2de 100644
--- a/Content.Server/Nuke/NukeSystem.cs
+++ b/Content.Server/Nuke/NukeSystem.cs
@@ -46,7 +46,8 @@ public sealed class NukeSystem : EntitySystem
///
/// Used to calculate when the nuke song should start playing for maximum kino with the nuke sfx
///
- private const float NukeSongLength = 60f + 51.6f;
+ private float _nukeSongLength;
+ private string _selectedNukeSong = String.Empty;
///
/// Time to leave between the nuke song and the nuke alarm playing.
@@ -292,9 +293,9 @@ private void TickTimer(EntityUid uid, float frameTime, NukeComponent? nuke = nul
// Start playing the nuke event song so that it ends a couple seconds before the alert sound
// should play
- if (nuke.RemainingTime <= NukeSongLength + nuke.AlertSoundTime + NukeSongBuffer && !nuke.PlayedNukeSong)
+ if (nuke.RemainingTime <= _nukeSongLength + nuke.AlertSoundTime + NukeSongBuffer && !nuke.PlayedNukeSong && !string.IsNullOrEmpty(_selectedNukeSong))
{
- _sound.DispatchStationEventMusic(uid, nuke.ArmMusic, StationEventMusicType.Nuke);
+ _sound.DispatchStationEventMusic(uid, _selectedNukeSong, StationEventMusicType.Nuke);
nuke.PlayedNukeSong = true;
}
@@ -457,6 +458,9 @@ public void ArmBomb(EntityUid uid, NukeComponent? component = null)
var y = (int) pos.Y;
var posText = $"({x}, {y})";
+ // We are collapsing the randomness here, otherwise we would get separate random song picks for checking duration and when actually playing the song afterwards
+ _selectedNukeSong = _audio.GetSound(component.ArmMusic);
+
// warn a crew
var announcement = Loc.GetString("nuke-component-announcement-armed",
("time", (int) component.RemainingTime), ("position", posText));
@@ -464,6 +468,7 @@ public void ArmBomb(EntityUid uid, NukeComponent? component = null)
_chatSystem.DispatchStationAnnouncement(stationUid ?? uid, announcement, sender, false, null, Color.Red);
_sound.PlayGlobalOnStation(uid, _audio.GetSound(component.ArmSound));
+ _nukeSongLength = (float) _audio.GetAudioLength(_selectedNukeSong).TotalSeconds;
// turn on the spinny light
_pointLight.SetEnabled(uid, true);
From 07692c4e9d859652ac23c7c0f4fd077381556835 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:27:02 -0700
Subject: [PATCH 06/45] Mirror: Remove random Cyrillic characters from locale
files (#159)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## Mirror of PR #26043: [Remove random Cyrillic characters from locale
files](https://github.com/space-wizards/space-station-14/pull/26043)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `ffd52b24ff9bbe33eab30aec1b19d4c1fbb05245`
PR opened by arimah at
2024-03-12 15:52:06 UTC
PR merged by web-flow at
2024-03-12 15:58:04 UTC
---
PR changed 2 files with 2 additions and 2 deletions.
The PR had the following labels:
- No C#
---
Original Body
> ## About the PR
> While playing around with the game's data, I discovered 'cocoa powder'
got sorted after all the other reagents. I poked around for a minute,
and what do you know, that first letter isn't a c, it's actually the
[Cyrillic lowercase letter
с](https://en.wikipedia.org/wiki/Es_(Cyrillic))! I searched all .yml and
.ftl files for more Cyrillic, and found exactly one other occurrence.
This PR fixes both.
>
> ## Why / Balance
> Correctness. For one, you currently can't find cocoa powder or
anything that uses it in the guidebook by searching "cocoa powder". :D
>
> ## Technical details
> .ftl
>
> ## Media
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
> god I hope not
Co-authored-by: Alice "Arimah" Heurlin <30327355+arimah@users.noreply.github.com>
---
.../Locale/en-US/game-ticking/game-presets/preset-thief.ftl | 2 +-
Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-thief.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-thief.ftl
index db1404e09b..ab2b8f88d7 100644
--- a/Resources/Locale/en-US/game-ticking/game-presets/preset-thief.ftl
+++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-thief.ftl
@@ -6,7 +6,7 @@ thief-role-greeting-human =
but that can't stop you from getting your fix by any means necessary.
thief-role-greeting-animal =
- You are a kleptomaniaс animal.
+ You are a kleptomaniac animal.
Steal things that you like.
thief-role-greeting-equipment =
diff --git a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl
index 85d46ff6c8..5f89fea575 100644
--- a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl
+++ b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl
@@ -10,7 +10,7 @@ reagent-desc-vitamin = Found in healthy, complete meals.
reagent-name-protein = protein
reagent-desc-protein = Found in certain meals, good for bodily health.
-reagent-name-cocoapowder = сocoa powder
+reagent-name-cocoapowder = cocoa powder
reagent-desc-cocoapowder = From the best varieties of cocoa beans
reagent-name-butter = butter
From cfd943c04b331044aa84dba7bdfc56cd21f7f4dc Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:27:26 -0700
Subject: [PATCH 07/45] Mirror: Fix rounds restarting in the next round (#164)
## Mirror of PR #25856: [Fix rounds restarting in the next
round](https://github.com/space-wizards/space-station-14/pull/25856)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `02cc9c05ddf853b613361690b88ba893ce57bab3`
PR opened by
metalgearsloth at 2024-03-05 07:13:06 UTC
PR merged by web-flow at
2024-03-12 18:54:28 UTC
---
PR changed 2 files with 10 additions and 2 deletions.
The PR had the following labels:
---
Original Body
> Doesn't fix them restarting in lobby I think but should fix most of
it.
Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
---
.../Shuttles/Systems/EmergencyShuttleSystem.Console.cs | 3 ++-
.../Shuttles/Systems/EmergencyShuttleSystem.cs | 9 ++++++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
index 6d2c28edcf..aeb2ebdbba 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs
@@ -308,8 +308,9 @@ private void OnEmergencyAuthorize(EntityUid uid, EmergencyShuttleConsoleComponen
private void CleanupEmergencyConsole()
{
+ // Realistically most of this shit needs moving to a station component so each station has their own emergency shuttle
+ // and timer and all that jazz so I don't really care about debugging if it works on cleanup vs start.
_announced = false;
- _roundEndCancelToken = null;
ShuttlesLeft = false;
_launchedShuttles = false;
_consoleAccumulator = float.MinValue;
diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
index a7df41d887..47aad6a603 100644
--- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
+++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs
@@ -19,6 +19,7 @@
using Content.Shared.CCVar;
using Content.Shared.Database;
using Content.Shared.DeviceNetwork;
+using Content.Shared.GameTicking;
using Content.Shared.Shuttles.Components;
using Content.Shared.Shuttles.Events;
using Content.Shared.Tag;
@@ -80,6 +81,7 @@ public override void Initialize()
Subs.CVar(_configManager, CCVars.EmergencyShuttleEnabled, SetEmergencyShuttleEnabled);
SubscribeLocalEvent(OnRoundStart);
+ SubscribeLocalEvent(OnRoundCleanup);
SubscribeLocalEvent(OnStationStartup);
SubscribeLocalEvent(OnCentcommShutdown);
SubscribeLocalEvent(OnCentcommInit);
@@ -93,10 +95,15 @@ public override void Initialize()
private void OnRoundStart(RoundStartingEvent ev)
{
CleanupEmergencyConsole();
- _roundEndCancelToken?.Cancel();
_roundEndCancelToken = new CancellationTokenSource();
}
+ private void OnRoundCleanup(RoundRestartCleanupEvent ev)
+ {
+ _roundEndCancelToken?.Cancel();
+ _roundEndCancelToken = null;
+ }
+
private void OnCentcommShutdown(EntityUid uid, StationCentcommComponent component, ComponentShutdown args)
{
ClearCentcomm(component);
From dd3fd52a1f92ce74a1dda953f8f05fe24a165b10 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:46:24 -0700
Subject: [PATCH 08/45] Remove warp point comp from map beacons (#79)
## Mirror of PR #968: [Remove warp point comp from map
beacons](https://github.com/DeltaV-Station/Delta-v/pull/968) from
[DeltaV-Station](https://github.com/DeltaV-Station)/[Delta-v](https://github.com/DeltaV-Station/Delta-v)
`40eeef24e7685a2bb2b2b35396fb546a38e96216`
---
PR changed 0 files with 0 additions and 0 deletions.
The PR had the following labels:
- Changes: YML
- Status: Needs Review
---
Original Body
> ## About the PR
> Title
>
> ## Why / Balance
> Makes things much cleaner. Currently we have Warp Point markers,
Bombing Targets, and Map Beacons all with an overlapping function. (Also
Warp points+Beacons markers but I'm ignoring those for this.)
>
> **Why it's messy**
> Standard warp points and bombing targets can be used interchangeably.
You can use a WP where you don't want a target, use a BT where you do.
Beacons, on the other hand, don't have BT but double up as a WP. So, you
either end up having to choose between a BT/WP or a beacon, or double up
a location on the Ghost Warp menu. Additionally, just using beacons
bloats the Warp Menu.
>
> Beacons can be moved by players. So, attaching either WP or BT to
those is bad. Beacons are really nice, both for mappers and players but
as long as they have WP, it causes conflict for mappers and/or bloat in
the Ghost Warp menu.
>
> **Solution**
> For Delta V we will use WP and BT to fill the Ghost Warp menu and
Beacons for the Navmap. Problem solved/potential griefing, issues, etc.
avoided, and no more Warp Menu bloat.
>
> ## Technical details
> - Some maps will likely need to be adjusted for this change.
> - Attempted to upstream this was denied. Solution proposed causes more
work and less clear instructions for mappers.
Co-authored-by: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com>
Co-authored-by: VMSolidus
---
.../DeltaV/Entities/Objects/Devices/station_beacon.yml | 8 ++++----
.../Entities/Objects/Devices/station_beacon.yml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/station_beacon.yml
index 74993ae94a..d1e26bf27f 100644
--- a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/station_beacon.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/station_beacon.yml
@@ -27,7 +27,7 @@
- type: entity
parent: DefaultStationBeaconMedical
id: DefaultStationBeaconExam
- suffix: Exam Room
+ suffix: Exam
components:
- type: NavMapBeacon
text: station-beacon-exam
@@ -43,7 +43,7 @@
- type: entity
parent: DefaultStationBeaconMedical
id: DefaultStationBeaconPsychologist
- suffix: Psychologist
+ suffix: Psych
components:
- type: NavMapBeacon
text: station-beacon-psych
@@ -52,7 +52,7 @@
- type: entity
parent: DefaultStationBeaconScience
id: DefaultStationBeaconProber
- suffix: Glimmer Prober
+ suffix: Prober
components:
- type: NavMapBeacon
text: station-beacon-glimmer-prober
@@ -60,7 +60,7 @@
- type: entity
parent: DefaultStationBeaconScience
id: DefaultStationBeaconMantis
- suffix: Forensic Mantis
+ suffix: Mantis
components:
- type: NavMapBeacon
text: station-beacon-forensic-mantis
diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml
index b68257083c..e5a1d0412a 100644
--- a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml
+++ b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml
@@ -24,7 +24,7 @@
- type: NavMapBeacon
text: station-beacon-general
color: "#D4D4D496"
- - type: WarpPoint
+ #- type: WarpPoint # Delta V - Removes in favor of Warp Point Markers
- type: ActivatableUI
key: enum.NavMapBeaconUiKey.Key
singleUser: true
From e4b8f701e3d12e06a857029b15a323475312d562 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:47:48 -0700
Subject: [PATCH 09/45] Mirror: Add a toggle for colorblind friendly progress
bar colors (#130)
## Mirror of PR #25318: [Add a toggle for colorblind friendly progress
bar
colors](https://github.com/space-wizards/space-station-14/pull/25318)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `f3f4616c49317898aeeff304160b0b50df9ee851`
PR opened by
EmoGarbage404 at 2024-02-16 17:40:39 UTC
PR merged by web-flow at
2024-03-09 11:43:20 UTC
---
PR changed 8 files with 169 additions and 84 deletions.
The PR had the following labels:
- Changes: UI
- Status: Needs Review
---
Original Body
>
>
>
> ## About the PR
>
> Adds a toggle in the accessibility menu that lets 'progress bars'
(doafters, medhud) toggle between a standard rainbow palette and the
colorblind-friendly Viridis palette.
>
> also makes the medhud bar unshaded to match the icon and to improve
readability.
>
> ## Why / Balance
>
> Medical huds used a (frankly) bastardized version of Viridis without
proper smoothing. Doafters used the standard rainbow palette but with
actual smoothing. I personally don't really like the medhud colors, but
i figured if i wanted to get rid of them it was best to unify and make
it an option broadly so that people who needed it could get more use out
of it.
>
> ## Technical details
>
> Makes a new static method in ProgressColorSystem that handles the
CVAR. also adds a new checkbox to MiscTab.xaml
>
> ## Media
>
>
>
https://github.com/space-wizards/space-station-14/assets/98561806/743c2c31-6504-4693-ab6b-7f54e0d65e06
>
> - [x] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> **Changelog**
>
>
> :cl:
> - add: Added a new "colorblind friendly" toggle in the accessibility
menu. This allows you to toggle between a standard and
colorblind-friendly palette for things like progress bars and the
medical HUD.
> - tweak: The medical HUD is now bright, even in low light levels.
>
Co-authored-by: Nemanja <98561806+EmoGarbage404@users.noreply.github.com>
---
Content.Client/DoAfter/DoAfterOverlay.cs | 16 ++-
Content.Client/Options/UI/Tabs/MiscTab.xaml | 102 +++++++++---------
.../Options/UI/Tabs/MiscTab.xaml.cs | 5 +
.../Overlays/EntityHealthBarOverlay.cs | 39 +++----
.../Controls/ProgressTextureRect.cs | 6 +-
.../Systems/ProgressColorSystem.cs | 77 +++++++++++++
Content.Shared/CCVar/CCVars.cs | 7 ++
.../en-US/escape-menu/ui/options-menu.ftl | 1 +
8 files changed, 169 insertions(+), 84 deletions(-)
create mode 100644 Content.Client/UserInterface/Systems/ProgressColorSystem.cs
diff --git a/Content.Client/DoAfter/DoAfterOverlay.cs b/Content.Client/DoAfter/DoAfterOverlay.cs
index 2957dafdb7..2e23dd44ca 100644
--- a/Content.Client/DoAfter/DoAfterOverlay.cs
+++ b/Content.Client/DoAfter/DoAfterOverlay.cs
@@ -1,9 +1,9 @@
using System.Numerics;
using Content.Shared.DoAfter;
+using Content.Client.UserInterface.Systems;
using Robust.Client.GameObjects;
using Robust.Client.Graphics;
using Robust.Shared.Enums;
-using Robust.Shared.Graphics;
using Robust.Client.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Timing;
@@ -18,6 +18,7 @@ public sealed class DoAfterOverlay : Overlay
private readonly IPlayerManager _player;
private readonly SharedTransformSystem _transform;
private readonly MetaDataSystem _meta;
+ private readonly ProgressColorSystem _progressColor;
private readonly Texture _barTexture;
private readonly ShaderInstance _shader;
@@ -40,6 +41,7 @@ public DoAfterOverlay(IEntityManager entManager, IPrototypeManager protoManager,
_player = player;
_transform = _entManager.EntitySysManager.GetEntitySystem();
_meta = _entManager.EntitySysManager.GetEntitySystem();
+ _progressColor = _entManager.System();
var sprite = new SpriteSpecifier.Rsi(new("/Textures/Interface/Misc/progress_bar.rsi"), "icon");
_barTexture = _entManager.EntitySysManager.GetEntitySystem().Frame0(sprite);
@@ -125,7 +127,7 @@ protected override void Draw(in OverlayDrawArgs args)
elapsedRatio = (float) Math.Min(1, elapsed.TotalSeconds / doAfter.Args.Delay.TotalSeconds);
var cancelElapsed = (time - doAfter.CancelledTime.Value).TotalSeconds;
var flash = Math.Floor(cancelElapsed / FlashTime) % 2 == 0;
- color = new Color(1f, 0f, 0f, flash ? alpha : 0f);
+ color = GetProgressColor(0, flash ? alpha : 0);
}
else
{
@@ -146,14 +148,8 @@ protected override void Draw(in OverlayDrawArgs args)
handle.SetTransform(Matrix3.Identity);
}
- public static Color GetProgressColor(float progress, float alpha = 1f)
+ public Color GetProgressColor(float progress, float alpha = 1f)
{
- if (progress >= 1.0f)
- {
- return new Color(0f, 1f, 0f, alpha);
- }
- // lerp
- var hue = (5f / 18f) * progress;
- return Color.FromHsv((hue, 1f, 0.75f, alpha));
+ return _progressColor.GetProgressColor(progress).WithAlpha(alpha);
}
}
diff --git a/Content.Client/Options/UI/Tabs/MiscTab.xaml b/Content.Client/Options/UI/Tabs/MiscTab.xaml
index fc94ab7b0a..2ee59910f7 100644
--- a/Content.Client/Options/UI/Tabs/MiscTab.xaml
+++ b/Content.Client/Options/UI/Tabs/MiscTab.xaml
@@ -4,57 +4,59 @@
xmlns:xNamespace="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:s="clr-namespace:Content.Client.Stylesheets">
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
public sealed class EntityHealthBarOverlay : Overlay
{
+ [Dependency] private readonly IPrototypeManager _prototype = default!;
private readonly IEntityManager _entManager;
private readonly SharedTransformSystem _transform;
private readonly MobStateSystem _mobStateSystem;
private readonly MobThresholdSystem _mobThresholdSystem;
+ private readonly ProgressColorSystem _progressColor;
public override OverlaySpace Space => OverlaySpace.WorldSpaceBelowFOV;
public HashSet DamageContainers = new();
+ private readonly ShaderInstance _shader;
public EntityHealthBarOverlay(IEntityManager entManager)
{
+ IoCManager.InjectDependencies(this);
_entManager = entManager;
- _transform = _entManager.EntitySysManager.GetEntitySystem();
- _mobStateSystem = _entManager.EntitySysManager.GetEntitySystem();
- _mobThresholdSystem = _entManager.EntitySysManager.GetEntitySystem();
+ _transform = _entManager.System();
+ _mobStateSystem = _entManager.System();
+ _mobThresholdSystem = _entManager.System();
+ _progressColor = _entManager.System();
+ _shader = _prototype.Index("unshaded").Instance();
}
protected override void Draw(in OverlayDrawArgs args)
@@ -42,6 +50,8 @@ protected override void Draw(in OverlayDrawArgs args)
var scaleMatrix = Matrix3.CreateScale(new Vector2(scale, scale));
var rotationMatrix = Matrix3.CreateRotation(-rotation);
+ handle.UseShader(_shader);
+
var query = _entManager.AllEntityQueryEnumerator();
while (query.MoveNext(out var uid,
out var mobThresholdsComponent,
@@ -147,26 +157,11 @@ protected override void Draw(in OverlayDrawArgs args)
return (0, true);
}
- public static Color GetProgressColor(float progress, bool crit)
+ public Color GetProgressColor(float progress, bool crit)
{
- if (progress >= 1.0f)
- {
- return SeaBlue;
- }
-
- if (!crit)
- {
- switch (progress)
- {
- case > 0.90F:
- return SeaBlue;
- case > 0.50F:
- return Violet;
- case > 0.15F:
- return Ruber;
- }
- }
+ if (crit)
+ progress = 0;
- return VividGamboge;
+ return _progressColor.GetProgressColor(progress);
}
}
diff --git a/Content.Client/UserInterface/Controls/ProgressTextureRect.cs b/Content.Client/UserInterface/Controls/ProgressTextureRect.cs
index 3f422e371f..2b8d93a5d4 100644
--- a/Content.Client/UserInterface/Controls/ProgressTextureRect.cs
+++ b/Content.Client/UserInterface/Controls/ProgressTextureRect.cs
@@ -1,5 +1,5 @@
using System.Numerics;
-using Content.Client.DoAfter;
+using Content.Client.UserInterface.Systems;
using Robust.Client.Graphics;
using Robust.Client.UserInterface.Controls;
@@ -9,11 +9,13 @@ public sealed class ProgressTextureRect : TextureRect
{
public float Progress;
+ private readonly ProgressColorSystem _progressColor = IoCManager.Resolve().System();
+
protected override void Draw(DrawingHandleScreen handle)
{
var dims = Texture != null ? GetDrawDimensions(Texture) : UIBox2.FromDimensions(Vector2.Zero, PixelSize);
dims.Top = Math.Max(dims.Bottom - dims.Bottom * Progress,0);
- handle.DrawRect(dims, DoAfterOverlay.GetProgressColor(Progress));
+ handle.DrawRect(dims, _progressColor.GetProgressColor(Progress));
base.Draw(handle);
}
diff --git a/Content.Client/UserInterface/Systems/ProgressColorSystem.cs b/Content.Client/UserInterface/Systems/ProgressColorSystem.cs
new file mode 100644
index 0000000000..e5579801ec
--- /dev/null
+++ b/Content.Client/UserInterface/Systems/ProgressColorSystem.cs
@@ -0,0 +1,77 @@
+using Content.Shared.CCVar;
+using Robust.Shared.Configuration;
+
+namespace Content.Client.UserInterface.Systems;
+
+///
+/// This system handles getting an interpolated color based on the value of a cvar.
+///
+public sealed class ProgressColorSystem : EntitySystem
+{
+ [Dependency] private readonly IConfigurationManager _configuration = default!;
+
+ private bool _colorBlindFriendly;
+
+ private static readonly Color[] Plasma =
+ {
+ new(240, 249, 33),
+ new(248, 149, 64),
+ new(204, 71, 120),
+ new(126, 3, 168),
+ new(13, 8, 135)
+ };
+
+ ///
+ public override void Initialize()
+ {
+ Subs.CVar(_configuration, CCVars.AccessibilityColorblindFriendly, OnColorBlindFriendlyChanged, true);
+ }
+
+ private void OnColorBlindFriendlyChanged(bool value, in CVarChangeInfo info)
+ {
+ _colorBlindFriendly = value;
+ }
+
+ public Color GetProgressColor(float progress)
+ {
+ if (!_colorBlindFriendly)
+ {
+ if (progress >= 1.0f)
+ {
+ return new Color(0f, 1f, 0f);
+ }
+
+ // lerp
+ var hue = 5f / 18f * progress;
+ return Color.FromHsv((hue, 1f, 0.75f, 1f));
+ }
+
+ return InterpolateColorGaussian(Plasma, progress);
+ }
+
+ ///
+ /// Interpolates between multiple colors based on a gaussian distribution.
+ /// Taken from https://stackoverflow.com/a/26103117
+ ///
+ public static Color InterpolateColorGaussian(Color[] colors, double x)
+ {
+ double r = 0.0, g = 0.0, b = 0.0;
+ var total = 0f;
+ var step = 1.0 / (colors.Length - 1);
+ var mu = 0.0;
+ const double sigma2 = 0.035;
+
+ foreach(var color in colors)
+ {
+ var percent = Math.Exp(-(x - mu) * (x - mu) / (2.0 * sigma2)) / Math.Sqrt(2.0 * Math.PI * sigma2);
+ total += (float) percent;
+ mu += step;
+
+ r += color.R * percent;
+ g += color.G * percent;
+ b += color.B * percent;
+ }
+
+ return new Color((float) r / total, (float) g / total, (float) b / total);
+ }
+}
diff --git a/Content.Shared/CCVar/CCVars.cs b/Content.Shared/CCVar/CCVars.cs
index e2eebb4c20..383a863401 100644
--- a/Content.Shared/CCVar/CCVars.cs
+++ b/Content.Shared/CCVar/CCVars.cs
@@ -1584,6 +1584,13 @@ public static readonly CVarDef
public static readonly CVarDef ScreenShakeIntensity =
CVarDef.Create("accessibility.screen_shake_intensity", 1f, CVar.CLIENTONLY | CVar.ARCHIVE);
+ ///
+ /// A generic toggle for various visual effects that are color sensitive.
+ /// As of 2/16/24, only applies to progress bar colors.
+ ///
+ public static readonly CVarDef AccessibilityColorblindFriendly =
+ CVarDef.Create("accessibility.colorblind_friendly", false, CVar.CLIENTONLY | CVar.ARCHIVE);
+
/*
* CHAT
*/
diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
index 7d2f098b8c..46f5df48ad 100644
--- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
+++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
@@ -46,6 +46,7 @@ ui-options-show-looc-on-head = Show LOOC chat above characters head
ui-options-fancy-speech = Show names in speech bubbles
ui-options-fancy-name-background = Add background to speech bubble names
ui-options-enable-color-name = Add colors to character names
+ui-options-colorblind-friendly = Colorblind friendly mode
ui-options-reduced-motion = Reduce motion of visual effects
ui-options-screen-shake-intensity = Screen shake intensity
ui-options-screen-shake-percent = { TOSTRING($intensity, "P0") }
From 42ad9bc15e32afdb6bcd33669fc55420f5d04933 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:48:10 -0700
Subject: [PATCH 10/45] =?UTF-8?q?Mirror:=20foxes=20are=20now=20neutral?=
=?UTF-8?q?=F0=9F=A6=8A=20=20(#184)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## Mirror of PR #25992: [foxes are now neutral🦊
](https://github.com/space-wizards/space-station-14/pull/25992) from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `86ab7a10743bd98d1f187e7158cb316e106ea3b9`
PR opened by icekot8 at
2024-03-11 10:27:27 UTC
---
PR changed 1 files with 16 additions and 1 deletions.
The PR had the following labels:
- No C#
---
Original Body
>
>
>
> ## About the PR
>
> This PR adds 8 piercing damage to foxes and makes them neutral rather
than peaceful.
>
> ## Why / Balance
>
> this seems logical. At this point, the fox is not neutral, although it
is originally a predatory animal.
>
> I think 8 piercing for their bite is fair damage considering their
origin.
> `attackMemoryLength` = 10, because that's the average value for this
metric.
>
> I don't think we should discount animals from their relatives, Renault
will have exactly the same behavior. We have Shiva, after all.
> ## Media
>
>
> - [x] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
>
>
> :cl:
> - tweak: Foxes are now neutral and deal 8 piercing damage
Co-authored-by: SimpleStation14
---
.../Prototypes/Entities/Mobs/NPCs/animals.yml | 17 ++++++++++++++++-
1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
index 9de20d4474..d56bab1645 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml
@@ -2434,6 +2434,22 @@
gender: epicene
- type: Bloodstream
bloodMaxVolume: 100
+ - type: MeleeWeapon
+ angle: 0
+ animation: WeaponArcBite
+ soundHit:
+ path: /Audio/Effects/bite.ogg
+ damage:
+ types:
+ Piercing: 8
+ - type: NpcFactionMember
+ factions:
+ - Passive
+ - type: NPCRetaliation
+ attackMemoryLength: 10
+ - type: HTN
+ rootTask:
+ task: RuminantHostileCompound
- type: Tag
tags:
- VimPilot
@@ -3201,4 +3217,3 @@
components:
- type: ReplacementAccent
accent: nymph
-
\ No newline at end of file
From f24bca61ebf0cec30024e1fd09b71203cb58a902 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 20:49:16 -0700
Subject: [PATCH 11/45] Mirror: add more carp plushies (#206)
## Mirror of PR #26081: [add more carp
plushies](https://github.com/space-wizards/space-station-14/pull/26081)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `f8305a26a9bd1dc080daca8f45f7289829b91682`
PR opened by deltanedas at
2024-03-13 14:44:55 UTC
---
PR changed 8 files with 408 additions and 320 deletions.
The PR had the following labels:
- No C#
- Changes: Sprites
---
Original Body
> ## About the PR
> holocarp and magicarp getting their attention
>
> ## Why / Balance
> :fish:
>
> ## Technical details
> :fish:
>
> ## Media
> :fish:
>
![14:42:24](https://github.com/space-wizards/space-station-14/assets/39013340/d85d0c3f-579b-4e42-a8f9-be065cea02ae)
>
>
> :fish:
>
![14:43:32](https://github.com/space-wizards/space-station-14/assets/39013340/35bb09c9-e498-457b-b4f1-694a005e2ea0)
>
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
> :fish:
>
> **Changelog**
> :cl:
> - add: Holocarp and Magicarp plushies can now be found in maintenance.
>
Co-authored-by: SimpleStation14
---
.../Prototypes/Catalog/Fills/Lockers/misc.yml | 20 +
.../Entities/Objects/Decoration/present.yml | 6 +
.../Prototypes/Entities/Objects/Fun/toys.yml | 32 +
.../Structures/Machines/Computers/arcades.yml | 3 +
.../Objects/Fun/toys.rsi/holoplush.png | Bin 0 -> 1467 bytes
.../Objects/Fun/toys.rsi/magicplush.png | Bin 0 -> 565 bytes
.../Textures/Objects/Fun/toys.rsi/meta.json | 667 +++++++++---------
.../Objects/Fun/toys.rsi/rainbowcarpplush.png | Bin 0 -> 692 bytes
8 files changed, 408 insertions(+), 320 deletions(-)
create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/holoplush.png
create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/magicplush.png
create mode 100644 Resources/Textures/Objects/Fun/toys.rsi/rainbowcarpplush.png
diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
index 81ec76dae6..78a4ea3082 100644
--- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
+++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml
@@ -112,6 +112,16 @@
prob: 0.44
- id: PlushieCarp
prob: 0.2
+ orGroup: carp
+ - id: PlushieHolocarp
+ prob: 0.05
+ orGroup: carp
+ - id: PlushieMagicarp
+ prob: 0.05
+ orGroup: carp
+ - id: PlushieRainbowCarp
+ prob: 0.03
+ orGroup: carp
- id: PlushieSlime
prob: 0.2
- id: PlushieSnake
@@ -205,6 +215,16 @@
prob: 0.44
- id: PlushieCarp
prob: 0.2
+ orGroup: carp
+ - id: PlushieHolocarp
+ prob: 0.05
+ orGroup: carp
+ - id: PlushieMagicarp
+ prob: 0.05
+ orGroup: carp
+ - id: PlushieRainbowCarp
+ prob: 0.03
+ orGroup: carp
- id: PlushieSlime
prob: 0.2
- id: PlushieSnake
diff --git a/Resources/Prototypes/Entities/Objects/Decoration/present.yml b/Resources/Prototypes/Entities/Objects/Decoration/present.yml
index e5c1884d1c..75d9b071be 100644
--- a/Resources/Prototypes/Entities/Objects/Decoration/present.yml
+++ b/Resources/Prototypes/Entities/Objects/Decoration/present.yml
@@ -68,6 +68,12 @@
orGroup: GiftPool
- id: PlushieCarp
orGroup: GiftPool
+ - id: PlushieMagicarp
+ orGroup: GiftPool
+ - id: PlushieHolocarp
+ orGroup: GiftPool
+ - id: PlushieRainbowCarp
+ orGroup: GiftPool
- id: PlushieSlime
orGroup: GiftPool
- id: PlushieSnake
diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml
index e19cb23112..7d9de4ac3d 100644
--- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml
+++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml
@@ -506,6 +506,38 @@
tags:
- PlushieCarp # DeltaV - fish labeler craft
+- type: entity
+ parent: PlushieCarp
+ id: PlushieMagicarp
+ name: magicarp plushie
+ description: An adorable stuffed toy resembling the exceedingly rare magicarp.
+ components:
+ - type: Sprite
+ state: magicplush
+
+- type: entity
+ parent: PlushieCarp
+ id: PlushieRainbowCarp
+ name: rainbow carp plushie
+ description: An adorable stuffed toy resembling the legendary rainbow carp.
+ components:
+ - type: Sprite
+ state: rainbowcarpplush
+ - type: PointLight
+ radius: 1.5
+ energy: 2
+ - type: RgbLightController
+ layers: [ 0 ]
+
+- type: entity
+ parent: PlushieCarp
+ id: PlushieHolocarp
+ name: holocarp plushie
+ description: A holographic stuffed toy resembling science's nemesis - the holocarp.
+ components:
+ - type: Sprite
+ state: holoplush
+
- type: entity
parent: BasePlushie
id: PlushieSlime
diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml
index 37f22bbb62..b75893d164 100644
--- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml
+++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml
@@ -63,6 +63,9 @@
- PlushieSpaceLizard
- PlushieNuke
- PlushieCarp
+ - PlushieMagicarp
+ - PlushieHolocarp
+ - PlushieRainbowCarp
- PlushieRatvar
- PlushieNar
- PlushieSnake
diff --git a/Resources/Textures/Objects/Fun/toys.rsi/holoplush.png b/Resources/Textures/Objects/Fun/toys.rsi/holoplush.png
new file mode 100644
index 0000000000000000000000000000000000000000..811bf9e649f176ef4dbf847374d99acd9459769f
GIT binary patch
literal 1467
zcmZWne>l?#82`F;RIYZ1a(ZM7XGPih{TydY`I(sHiew`{N@A(a&$X@Lx(FRXS?`eZ0HCY)&b9jZR0se*kN0tR3rcylaI-7UjQll+
zMJTrC57jkSkwSV+#Pc3-6Zg5)^aqx03>t&Eo{{njzYad-7GUXJyD!3!60&Dti|eT{
zic9J-%etx>k8-~f`z~nhhEMU6=)QvmsXPiMpxEDbMdoVPKM@sJM)c5(@vntTZDLIz
zu{b-v5vms2WMH4`hZ9=lVLv40nyIIg%U=iIIj(eRgrGtiAiraGn4YbO87>KoBdUSFUni_0}
zbF|Ny4`iTZ1cIHtx>*AzU8%OVe8G~B#$DECJm4=E;R($nD
z#K&iaCGj{&gm7qrUR-N|A|ieJ;nUH|wKB;g>m!~da`KmXzmHcA>6VNm>p+`fOX|{!
zgKUOVaXqSG#W9BdrLGmT)}6{(cYNA|
zM1>QfIBqwK;C#+yZu1G+P1%TWJR#%lrFo~;FXl#kalCrF9r}?+@Tm&H+Hbm|{YDT>
ztYcE1o>SkF7}`DDF6kc38T7I?uozEWI1%S!Wo7jXRqwjHdaO|J^M%{ab8;A*5)i4(Hdp>B{8kKkRTEVc##D4s
zy_~Ca>P_PgsUH9epP~K0t8hAt0zfd8`TfJRw4mCNX_&b^0-3E(rvS_U(+aTR%UZUJ
zCad7-qFo0AU|`hwRc_O%H~mLTD(?k@Fpw
zI#en9F@Ow6Q1;y;OjRM?AK(KQ8~``v#4{z!`PGtwav}WXjDsT`e7I->n)l)`d(*+pNv8Qft72*?zNyyC
z;cT3#CD&vig?>*m%cCm`f;39mPd$HZ!D80Y#$@X*LK;oa`7D;0LJv^JzR>AN!?^t=
z15k2-Wb_(W=jzUR318hhz#5_ev2xt^h+dz$3;D}zR5kTK1>UG+fNarB?p?H1yes*5
L_`BEb3upWd!sp$r
literal 0
HcmV?d00001
diff --git a/Resources/Textures/Objects/Fun/toys.rsi/magicplush.png b/Resources/Textures/Objects/Fun/toys.rsi/magicplush.png
new file mode 100644
index 0000000000000000000000000000000000000000..950de931a0766b000e65e8a497db1c763e7da3f1
GIT binary patch
literal 565
zcmV-50?Pe~P)F
zbNMbovh__=kwiB3CiGyIDASret_TWj_lO!DA`AOBB!E09554jkQv?BjZR53l^@OR=N``=QIwLxj%Z
zTNX!L7A~=F;$R6BJxQM>aDl6M-l?3U8(}$qBM#cz>P%N>Z|O2{pnKdZ!)`;j;Ap`<
zYM)nmBBPw^FP~IYm<~86!Scc2GekvFO~;*Iheo0E&|N@mkSY&<%Z&l|Odyp?iIciH
z*t-lA5bz7lw~BBu4oy8Bgc+&9VZbivq^zKSfoYoZ!Z2tP>ouW(o~7#cGq^
zDVjg9Zs<8s(J_vNLzYv5(l0EGY{GNHa4geT)(vD2ediK%;4i?wLz}uWd&5AI*x~@WafDl~7OhqbMNv=`1pv?UI5{~c+=I3@XgH)jYfmR!$SZT7Z=eq4S+a~$!4-4jxx2e#Zf=f3
zq41$NB(xxt$z-II^62OYV3dHa>i{e*E%EU1KrZ*EJdR`f{XUAKP$(40<#PDGpQJnD
zM^XYiJ3Bl-KQlc&&C}Bp&1RGP`+G{I5~`}w>-8uWi)6D|y4^0CrqS#5&@_$P+gr-z
zG7Ad}c%Db8RQlQNc7J_3f$i;W04&SGvMhkVZqw;>2!a4z*U@zy&-3topE!NZKYC?uh%m(GgPZp6h-0q_;~af0bJJw7@2roJJut7k6NuJi^U@A
z>+4KTPI7g1h3mTbzE2PY0EA)q>7n$cNqBH@z}ngx%gf7@%jL0V|35(pAzx-iN=iz~
aclixi!b-s^m*JoQ0000
Date: Wed, 8 May 2024 21:00:48 -0700
Subject: [PATCH 12/45] Mirror: Initial Infected can see each other (#265)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## Mirror of PR #25934: [Initial Infected can see each
other](https://github.com/space-wizards/space-station-14/pull/25934)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `45d6c03407e41d92caa368e1db826efd6d828b66`
PR opened by Killerqu00 at
2024-03-08 19:28:04 UTC
---
PR changed 6 files with 40 additions and 1 deletions.
The PR had the following labels:
- Changes: Sprites
- Status: Needs Review
---
Original Body
>
>
>
> ## About the PR
> Initial Infected now have an icon that is visible to other initial
infected. This allows for better communication.
> Also, Initial Infected can now see other zombies(just a slight QoL).
>
> ## Why / Balance
> This is a slight zombie buff and also encourages teamwork between II.
Most of the zombie outbreaks are ruined because II turned alone/in a bad
situation. With this PR, they will be able to recognise themselves and
communicate.
>
> ## Technical details
>
>
> ## Media
>
>
![image](https://github.com/space-wizards/space-station-14/assets/47712032/d74926d6-97c9-4749-bcd5-7d42fe886c37)
>
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
> 🆑
> - add: Initial Infected now can see each other.
> - add: Initial Infected can now see zombified entities.
>
Co-authored-by: SimpleStation14
---
Content.Client/Antag/AntagStatusIconSystem.cs | 1 +
Content.Client/Zombies/ZombieSystem.cs | 14 +++++++++++++-
.../Zombies/InitialInfectedComponent.cs | 16 ++++++++++++++++
Resources/Prototypes/StatusIcon/antag.yml | 7 +++++++
.../Misc/job_icons.rsi/InitialInfected.png | Bin 0 -> 4268 bytes
.../Interface/Misc/job_icons.rsi/meta.json | 3 +++
6 files changed, 40 insertions(+), 1 deletion(-)
create mode 100644 Content.Shared/Zombies/InitialInfectedComponent.cs
create mode 100644 Resources/Textures/Interface/Misc/job_icons.rsi/InitialInfected.png
diff --git a/Content.Client/Antag/AntagStatusIconSystem.cs b/Content.Client/Antag/AntagStatusIconSystem.cs
index 5d87837893..804ae21ad4 100644
--- a/Content.Client/Antag/AntagStatusIconSystem.cs
+++ b/Content.Client/Antag/AntagStatusIconSystem.cs
@@ -22,6 +22,7 @@ public override void Initialize()
SubscribeLocalEvent(GetRevIcon);
SubscribeLocalEvent(GetIcon);
SubscribeLocalEvent(GetIcon);
+ SubscribeLocalEvent(GetIcon);
}
///
diff --git a/Content.Client/Zombies/ZombieSystem.cs b/Content.Client/Zombies/ZombieSystem.cs
index bd89e978c7..7c1fb38e74 100644
--- a/Content.Client/Zombies/ZombieSystem.cs
+++ b/Content.Client/Zombies/ZombieSystem.cs
@@ -15,6 +15,7 @@ public override void Initialize()
SubscribeLocalEvent(OnStartup);
SubscribeLocalEvent(OnCanDisplayStatusIcons);
+ SubscribeLocalEvent(OnCanDisplayStatusIcons);
}
private void OnStartup(EntityUid uid, ZombieComponent component, ComponentStartup args)
@@ -36,7 +37,18 @@ private void OnStartup(EntityUid uid, ZombieComponent component, ComponentStartu
///
private void OnCanDisplayStatusIcons(EntityUid uid, ZombieComponent component, ref CanDisplayStatusIconsEvent args)
{
- if (HasComp(args.User) || HasComp(args.User))
+ if (HasComp(args.User) || HasComp(args.User) || HasComp(args.User))
+ return;
+
+ if (component.IconVisibleToGhost && HasComp(args.User))
+ return;
+
+ args.Cancelled = true;
+ }
+
+ private void OnCanDisplayStatusIcons(EntityUid uid, InitialInfectedComponent component, CanDisplayStatusIconsEvent args)
+ {
+ if (HasComp(args.User) && !HasComp(args.User))
return;
if (component.IconVisibleToGhost && HasComp(args.User))
diff --git a/Content.Shared/Zombies/InitialInfectedComponent.cs b/Content.Shared/Zombies/InitialInfectedComponent.cs
new file mode 100644
index 0000000000..3200dd7f5e
--- /dev/null
+++ b/Content.Shared/Zombies/InitialInfectedComponent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Antag;
+using Content.Shared.StatusIcon;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Zombies;
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class InitialInfectedComponent : Component, IAntagStatusIconComponent
+{
+ [DataField("initialInfectedStatusIcon")]
+ public ProtoId StatusIcon { get; set; } = "InitialInfectedFaction";
+
+ [DataField]
+ public bool IconVisibleToGhost { get; set; } = true;
+}
diff --git a/Resources/Prototypes/StatusIcon/antag.yml b/Resources/Prototypes/StatusIcon/antag.yml
index 3b64517530..41bb095741 100644
--- a/Resources/Prototypes/StatusIcon/antag.yml
+++ b/Resources/Prototypes/StatusIcon/antag.yml
@@ -5,6 +5,13 @@
sprite: /Textures/Interface/Misc/job_icons.rsi
state: Zombie
+- type: statusIcon
+ id: InitialInfectedFaction
+ priority: 11
+ icon:
+ sprite: /Textures/Interface/Misc/job_icons.rsi
+ state: InitialInfected
+
- type: statusIcon
id: RevolutionaryFaction
priority: 11
diff --git a/Resources/Textures/Interface/Misc/job_icons.rsi/InitialInfected.png b/Resources/Textures/Interface/Misc/job_icons.rsi/InitialInfected.png
new file mode 100644
index 0000000000000000000000000000000000000000..3684fc448892d31bcbec4e9ed4eae0ae169c16e0
GIT binary patch
literal 4268
zcmeH~eQ*=#(X-y~v0l`}Ak}_7bn|;emcc-D$CbTI{jio{>V0p6pBwb0e>F%~k
zi!V%poAdMlWq7LJ>#+r093c73=m
z(mSE!^J^`8-o>`etL@shwA@y<<+bxS{e9ztoqw)q`YdbZrS5vzMtW
zr-|j2i&`>4x50C)?#L78Ccfs(eRTc3#@qwO8I#VReWO!y>^~6x-tdim+4Sy>*S=c$
zdCR7r>k~iDSRb4`BL}~l_?qp}(
z>5jSXhK3m{j8h)TUpi++dt+l{X6n(*se!aS*R1(pJnG)lMSGI?t;8sRB!8vO)IvqeB|N^rRM#e({i8QmA7%~FG-+u6!zx1E1n|){fUAOFeE4z5Y;xf|>)0j{8K4&n}_gkwf
zI;5h$4|1BW&R0%;*tPaaA;r3Pb9T{pIamAsm0#(3*}c2q^nmZ(oEH|ZnpJNN4h)?8
z>+-y{|GVYjKl$tTPv3EEUiXU-)x!hCF?(ybN=ns7D
zXU4;?Y#lISokvwA2`qy*MW
zWi1L^(o$J1w5%35(Nwg+P#EJ8AOtml$3nrd%Euh0IG0EFx|uZLaTjg1!&Kw(;w7>I
zaf{hvrU+L|YGOrCL28#RZ?gvRl~{6Z0rX9yowlPVxR$QX!_w3#A9
zA#&s!s^)4!kYqwX`G#7J7AaW;Rk=|SpsNXnwcL@2Qn$xDM9@nLNTEo)C?wvfV4^VO
z7im<2aUW42VGxE8R7LsGqx?0=KP=X$-1L!nIU^H6;fDC5ya#KKJ0mZThj+?CqaM`l
zbeQyfc~KT5k&oZn?LOK^iGUC($PyOO&JutYZG^x98^dxoWD!Q7++kG%VFBtW1UE~F
z!?Ki}5qyyFK^r724Db=0U7!ipXSLfIV6$6%wh@SX6bW@D2#(B3M~MhU2^I_FU;$yZ
z(;Q);0VE1IiYBa#jim&dvDs~09Hq|#U+i@|OpKWtws?a;^UF#IwYn4*<)}J5R4s+z
z5)J6G(RPaCXr_R*FcinKiR9wMrBG2(%jr~_GABnwfnS7}0JV-30s%-y!htwfpBNsM
zgQNv|ry_FPj;i5H6bLj~sg~uS!=$ru9XT}YK?_O*8gK#)qG%Lj;VG7<3aV)vZ?W?<
za~DPP)ChlBl>E&<=dCXvyf888Ws-{GH^)thHMImbB%TtFK`FkNa6G;&cpxN7P(c$E
z<9Q-hVo0b5;Q&PYN3vlD?b1&)g9QRB?dJr71EQ6%P>hcNtj|tx0_U^&DS=}||7f}@
z`?V-gU~vHHh_pft8rKTHBRPljNBc+Xp*}%KGJ;}>VaY5eGFdFC?-+yC7Lq^GqcH9;
zVv9lVC2VNxLOUTjv=t`x(l?!7@spf~Uoiqgj|Ul(zTmD*M626W7tlL#Pm#ZN;%2qAyci}SzJB)tqq(0l<_K+p8Dp0)}|c({aHoW-($NB
zQmcB(%Q_y~aQ%Y^W?-SLhxX=lKj%5V$F
Date: Wed, 8 May 2024 21:00:58 -0700
Subject: [PATCH 13/45] Submarine Patches 2/10 (#66)
## Mirror of PR #809: [Submarine Patches
2/10](https://github.com/DeltaV-Station/Delta-v/pull/809) from
[DeltaV-Station](https://github.com/DeltaV-Station)/[Delta-v](https://github.com/DeltaV-Station/Delta-v)
`bc19445e42cfd0b700ef9480a408c0c264a35dff`
---
PR changed 0 files with 0 additions and 0 deletions.
The PR had the following labels:
- Status: Needs Review
- Changes: Map
---
Original Body
>
![image](https://github.com/DeltaV-Station/Delta-v/assets/52761126/49e86021-d794-4038-b633-6135d4a820c3)
>
>
>
>
>
>
> - moved bar & arcade to food court
> - retooled west wing of hospital; its shorter now, has a borg charger
room, and a proper viro room
> - swapped reception and made it a little smaller
> - added a door between chems counter and hall between ICU & exam rooms
> - removed the north ICU door
> - ICU now has a windoor'd chem storage in the center
> - ICU now has directional windows preventing doctors from moving all
the beds into an unhygienic and unsafe pile in the center.
> - ICU & cryo room were combined into one
> - added central hospital substation to ease up on power issues
> - gave corpsman a little more gear, moved their office to sec,
previous office is now just a perma mini-med room
> - fixed atmos markers in gas area
> - fixed some misc emergency lights, lowered overall emergency light
amount in maints
> - removed barbershop, laundry made smaller and slid over a bit
> - epi no longer has terrible labyrinth maints
> - SIX SMES's. power problems better be fixed or im eating my hat
> - removed labyrinth because it was sucks. now there is a cave guy who
is much better; far easier to navigate, filled with crystal caves and a
handful of lakes. also has some more dilapidated stuff similar to the
zombie lab, such as a xeno lab, a rusty old prison, and an enhanced
black market
> - security checkpoint added near arrivals
> - engi outpost added near arrivals
> - binguswalter room added
> - ai core room added
> - made all maints lockers be wall mounted because i hate the regular
ones
> - removed the diagonals in any walk-into-able areas. i hate that those
can't handle atmos
> - made the robo room in epi more space-efficient
> - added more jani lights, named jani light buttons
> - fixed all buttons not being directional, so now medical is no longer
all-access for everyone who knows how to press a button through a wall
> - a number of substations are now very pretty
> - moved detective out of sec, next to the journalist
> - added martial artist, slightly tweaked job slots
> - added custom luxury submarine-y escape pods
> - added custom submarine-y evac shuttle, NTES Propeller
> - armory & warden's office swapped positions; sec now has direct
access into the south end of perma; armory now takes longer than 10
seconds to breach for nukies.
> - court was made a little smaller so now everyone can see everyone
else seated.
> - moved comms to the zoo so you can't 1-2-3 the armory, bridge, and
comms as a nukie just walking straight in from evac
> - moved the singulo to the east side, entrance from the park
> - disposals now leads to space; be careful! janitors have been given
some EVA suits to compensate.
> - everywhere that has suit storages now has them in cooler-looking
'secure' storage
> - second sec checkpoint added near evac, mirroring the arrivals one
> - psych ward now has a central panopticon
> - dilapidated flesh lab added where the previous singulo was as a fun
thing for salvage to do now that the labyrinth is gone
> - engineering now has a real counter like the other departments
> - camera routers were consolidated into one room
> - blue lights added to all external/docking areas to match evac
> - every area of space locked inside the station now has external
access, more external access points dotted around too
> - added more signage from my signage PR
> - added button frames everywhere
> - added lockable buttons wherever reasonable, mostly sec
> - church is now prettier
> - submarine station has a symbol; the yellow-orange plus!
> - added grey stalagmites (but got distracted halfway through and
didn't finish...)
> - used new fancy curtains and tables when appropriate
> - one billion other tiny changes & fixes
>
> **Changelog**
> :cl:
> - tweak: Submarine has received another batch of design tweaks and
revisions. The deepest recesses of the station are shifting...
>
Co-authored-by: rosieposie <52761126+rosieposieeee@users.noreply.github.com>
Co-authored-by: VMSolidus
Co-authored-by: Peptide90 <78795277+Peptide90@users.noreply.github.com>
---
.../Maps/Shuttles/DeltaV/NTES_Propeller.yml | 14893 +
.../Maps/Shuttles/DeltaV/sub_escape_pod.yml | 412 +
Resources/Maps/submarine.yml | 216511 ++++++++-------
.../Structures/Doors/Airlocks/access.yml | 8 +
Resources/Prototypes/Maps/submarine.yml | 13 +-
5 files changed, 136223 insertions(+), 95614 deletions(-)
create mode 100644 Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml
create mode 100644 Resources/Maps/Shuttles/DeltaV/sub_escape_pod.yml
diff --git a/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml
new file mode 100644
index 0000000000..929103c42a
--- /dev/null
+++ b/Resources/Maps/Shuttles/DeltaV/NTES_Propeller.yml
@@ -0,0 +1,14893 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 14: FloorBar
+ 30: FloorDark
+ 51: FloorGrassLight
+ 61: FloorKitchen
+ 77: FloorRGlass
+ 78: FloorReinforced
+ 92: FloorSteel
+ 111: FloorWhite
+ 123: Lattice
+ 124: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: NT Evac Propeller
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5625,0.671875
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAABMwAAAAADMwAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAABXAAAAAACPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAAAMwAAAAAAMwAAAAABTQAAAAAATQAAAAACXAAAAAADTQAAAAAAXAAAAAADPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAABTQAAAAABTQAAAAABTQAAAAACTQAAAAABXAAAAAACTQAAAAADXAAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAACTQAAAAABTQAAAAAATQAAAAAATQAAAAADXAAAAAACTQAAAAABTQAAAAACTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACXAAAAAAAXAAAAAADXAAAAAADTQAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAAATQAAAAACTQAAAAACTQAAAAADTQAAAAAAXAAAAAABTQAAAAACTQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAADTQAAAAAATQAAAAABTQAAAAAATQAAAAABXAAAAAAATQAAAAACXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAACMwAAAAACMwAAAAAATQAAAAACTQAAAAAAXAAAAAADTQAAAAACXAAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAMwAAAAACTQAAAAACTQAAAAADTQAAAAAATQAAAAADXAAAAAADHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAADTQAAAAACHgAAAAACHgAAAAADHgAAAAAAXAAAAAACHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAATQAAAAABHgAAAAADHgAAAAABHgAAAAABTQAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAABXAAAAAAAHgAAAAACHgAAAAADHgAAAAADXAAAAAAAHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAATQAAAAADHgAAAAADHgAAAAABHgAAAAAAXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAATQAAAAABHgAAAAAAHgAAAAACHgAAAAABTQAAAAAAHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAXAAAAAAD
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: TQAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAABXAAAAAADTQAAAAABXAAAAAADTQAAAAACTQAAAAADMwAAAAABewAAAAAAewAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAABXAAAAAABTQAAAAACTQAAAAACMwAAAAAAMwAAAAADMwAAAAABTQAAAAACTQAAAAADTQAAAAAATQAAAAACTQAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAADTQAAAAADXAAAAAABTQAAAAACTQAAAAABTQAAAAAATQAAAAABTQAAAAAATQAAAAABTQAAAAABTQAAAAABTQAAAAADTQAAAAAATQAAAAACTQAAAAAATQAAAAABTQAAAAADTQAAAAABXAAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAACTQAAAAABXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAAATQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADTQAAAAACTQAAAAABTQAAAAACTQAAAAABTQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAABTQAAAAABXAAAAAACTQAAAAABTQAAAAACTQAAAAACTQAAAAACTQAAAAAATQAAAAACXAAAAAABXAAAAAABXAAAAAADXAAAAAAAXAAAAAAATQAAAAACTQAAAAABXAAAAAACTQAAAAAAXAAAAAADTQAAAAADTQAAAAACTQAAAAAATQAAAAADTQAAAAADbwAAAAACbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAACbwAAAAABXAAAAAACTQAAAAABXAAAAAACTQAAAAABTQAAAAACMwAAAAAAMwAAAAACMwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAAAbwAAAAABbwAAAAADbwAAAAADbwAAAAAAXAAAAAACTQAAAAAATQAAAAABTQAAAAADTQAAAAABMwAAAAAAMwAAAAABMwAAAAABbwAAAAACbwAAAAAATgAAAAAATgAAAAAATgAAAAAAbwAAAAADbwAAAAAAbwAAAAADTQAAAAAATQAAAAACXAAAAAADTQAAAAABTQAAAAACMwAAAAAAMwAAAAABMwAAAAADbwAAAAADbwAAAAABTQAAAAAATQAAAAAATQAAAAADbwAAAAADbwAAAAABbwAAAAACTQAAAAAATQAAAAADXAAAAAABTQAAAAADTQAAAAACTQAAAAADTQAAAAADTQAAAAADbwAAAAAAbwAAAAADTQAAAAAATQAAAAAATQAAAAABbwAAAAADbwAAAAADbwAAAAABTQAAAAACTQAAAAADXAAAAAADTQAAAAADTQAAAAAATQAAAAADTQAAAAAATQAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAABTQAAAAADXAAAAAABTQAAAAABXAAAAAACXAAAAAABTQAAAAAAXAAAAAADXAAAAAADXAAAAAACDgAAAAACDgAAAAACDgAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAADTQAAAAACTQAAAAACXAAAAAADTQAAAAACTQAAAAACTQAAAAABTQAAAAABTQAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAADDgAAAAABTQAAAAAATQAAAAADXAAAAAACTQAAAAACTQAAAAACTQAAAAADTQAAAAACTQAAAAADPQAAAAAAPQAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAAADgAAAAACTQAAAAABTQAAAAADTQAAAAACXAAAAAAATQAAAAAATQAAAAADMwAAAAABMwAAAAACMwAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAATQAAAAAATQAAAAABXAAAAAACTQAAAAAAXAAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAACMwAAAAAAMwAAAAACTQAAAAAATQAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAADTQAAAAAATQAAAAACTQAAAAACTQAAAAAAXAAAAAADTQAAAAADTQAAAAADTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAABTQAAAAABTQAAAAACTQAAAAACTQAAAAABXAAAAAADTQAAAAAATQAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABXAAAAAAAXAAAAAAAXAAAAAABTQAAAAADXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAAATQAAAAABTQAAAAACTQAAAAADTQAAAAACXAAAAAADTQAAAAADTQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAATQAAAAACTQAAAAACTQAAAAAATQAAAAADTQAAAAAAXAAAAAADTQAAAAACXAAAAAADTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAAAMwAAAAAAMwAAAAADTQAAAAACTQAAAAADXAAAAAADTQAAAAAAXAAAAAABbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAACMwAAAAADMwAAAAADTQAAAAACTQAAAAACTQAAAAABTQAAAAABXAAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAADMwAAAAADMwAAAAABTQAAAAAATQAAAAACXAAAAAABTQAAAAABTQAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAXAAAAAABXAAAAAABXAAAAAADTQAAAAADTQAAAAAAXAAAAAADTQAAAAABTQAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAADTQAAAAACTQAAAAACXAAAAAABTQAAAAACTQAAAAABbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACXAAAAAABXAAAAAAAXAAAAAAATQAAAAACXAAAAAABXAAAAAADTQAAAAACTQAAAAABTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAACTQAAAAABTQAAAAADTQAAAAACTQAAAAAAXAAAAAABTQAAAAAATQAAAAADDgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAACTQAAAAACTQAAAAADTQAAAAADTQAAAAACXAAAAAAATQAAAAADTQAAAAABDgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAACMwAAAAABMwAAAAAATQAAAAAATQAAAAAAXAAAAAADTQAAAAAATQAAAAABTQAAAAAD
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: PQAAAAAAPQAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAADXAAAAAABTQAAAAADTQAAAAADTQAAAAABTQAAAAADMwAAAAACMwAAAAACMwAAAAAAPQAAAAAAPQAAAAAADgAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAADXAAAAAACTQAAAAADXAAAAAABTQAAAAABTQAAAAAAMwAAAAAAMwAAAAACMwAAAAABTQAAAAAATQAAAAACXAAAAAADXAAAAAABTQAAAAAATQAAAAABTQAAAAACTQAAAAABXAAAAAAATQAAAAABXAAAAAACTQAAAAACTQAAAAAATQAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAAATQAAAAABTQAAAAADTQAAAAACTQAAAAACTQAAAAAATQAAAAADTQAAAAADTQAAAAADXAAAAAAATQAAAAACTQAAAAACTQAAAAACTQAAAAABTQAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAADTQAAAAABXAAAAAADXAAAAAAAXAAAAAACTQAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAACTQAAAAAATQAAAAABTQAAAAACTQAAAAAAXAAAAAAATQAAAAACTQAAAAACTQAAAAADTQAAAAACTQAAAAACTQAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACXAAAAAABTQAAAAADXAAAAAACXAAAAAABTQAAAAACXAAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAABTQAAAAABHgAAAAACHgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAAAXAAAAAADTQAAAAADXAAAAAAATQAAAAABTQAAAAADMwAAAAADMwAAAAACMwAAAAACHgAAAAACHgAAAAABTgAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAACHgAAAAAAXAAAAAAATQAAAAABTQAAAAACTQAAAAACTQAAAAACMwAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAADTgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAADTQAAAAABHgAAAAACHgAAAAABHgAAAAADTQAAAAAAMwAAAAABewAAAAAAAAAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAADTQAAAAADHgAAAAAAHgAAAAAAHgAAAAACTQAAAAAAMwAAAAABewAAAAAAAAAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAATQAAAAABHgAAAAADHgAAAAABHgAAAAAAXAAAAAADMwAAAAACAAAAAAAAAAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAHgAAAAABHgAAAAAAHgAAAAAATQAAAAAAMwAAAAABewAAAAAAAAAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABTQAAAAADHgAAAAACHgAAAAABHgAAAAAATQAAAAADMwAAAAABAAAAAAAAAAAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAABXAAAAAACXAAAAAACXAAAAAABXAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAXAAAAAABHgAAAAABHgAAAAACHgAAAAADXAAAAAAAXAAAAAAAXAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,-1:
+ ind: 1,-1
+ tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 1,0:
+ ind: 1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAAAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAACHgAAAAABHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAADHgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHgAAAAABHgAAAAADHgAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAADTQAAAAABXAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAAATQAAAAABTQAAAAADHgAAAAAAHgAAAAABTQAAAAAAXAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAADfAAAAAAATQAAAAABHgAAAAAAHgAAAAAATQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMwAAAAADfAAAAAAATQAAAAABHgAAAAACHgAAAAADTQAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAABfAAAAAAATQAAAAABTQAAAAADTQAAAAAAHgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAACXAAAAAAATQAAAAACXAAAAAABTQAAAAAAXAAAAAABTQAAAAAC
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAABfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAABHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAABHgAAAAACHgAAAAACHgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAACfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAADTQAAAAADHgAAAAAAHgAAAAADfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAXAAAAAAATQAAAAACHgAAAAABHgAAAAAATQAAAAAAfAAAAAAAMwAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAADTQAAAAABHgAAAAADHgAAAAADTQAAAAACfAAAAAAAMwAAAAABewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAADTQAAAAACHgAAAAACHgAAAAAATQAAAAAAfAAAAAAAMwAAAAABAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAADTQAAAAABHgAAAAADTQAAAAACfAAAAAAAMwAAAAADAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAACTQAAAAABXAAAAAADTQAAAAACXAAAAAABTQAAAAADXAAAAAACMwAAAAAAewAAAAAAAAAAAAAA
+ version: 6
+ 0,1:
+ ind: 0,1
+ tiles: AAAAAAAAewAAAAAAXAAAAAABXAAAAAADXAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,1:
+ ind: -1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-3:
+ ind: 0,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ 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: '#B02E26FF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 0: 7,11
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 1: -1,11
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 2: 7,7
+ 3: 1,7
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 4: -1,7
+ 5: 5,7
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelInnerSe
+ decals:
+ 28: 1,10
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelInnerSw
+ decals:
+ 29: 5,10
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelLineE
+ decals:
+ 13: 7,10
+ 14: 7,9
+ 15: 7,8
+ 16: 1,8
+ 17: 1,9
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelLineN
+ decals:
+ 6: 0,11
+ 7: 1,11
+ 8: 2,11
+ 9: 3,11
+ 10: 4,11
+ 11: 5,11
+ 12: 6,11
+ 30: -1,5
+ 31: 0,5
+ 32: 1,5
+ 33: 2,5
+ 34: 3,5
+ 35: 4,5
+ 36: 5,5
+ 37: 6,5
+ 38: 7,5
+ 39: 8,5
+ 40: -2,5
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelLineS
+ decals:
+ 23: 0,7
+ 24: 6,7
+ 25: 2,10
+ 26: 3,10
+ 27: 4,10
+ - node:
+ color: '#B02E26FF'
+ id: BrickTileSteelLineW
+ decals:
+ 18: -1,10
+ 19: -1,9
+ 20: -1,8
+ 21: 5,9
+ 22: 5,8
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 45: 7,14
+ 46: 4,15
+ 47: -3,13
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 86: 7,-5
+ 103: 1,-5
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 116: -2,-19
+ 117: 11,-19
+ 118: 9,-24
+ 122: 6,-19
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 48: -5,13
+ 49: -1,14
+ 50: 2,15
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 87: -1,-5
+ 104: 5,-5
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 119: -5,-19
+ 120: -3,-24
+ 121: 0,-19
+ 123: 8,-19
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 43: 7,13
+ 44: -3,9
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 88: 7,-9
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 124: 11,-21
+ 125: 10,-22
+ 126: 9,-25
+ 127: 8,-27
+ 128: -2,-22
+ 129: 6,-20
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 41: -5,9
+ 42: -1,13
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 96: -1,-9
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 130: -5,-21
+ 131: -4,-22
+ 132: 0,-20
+ 133: -3,-25
+ 134: -2,-27
+ 135: 8,-22
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteInnerNe
+ decals:
+ 71: 4,14
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteInnerNw
+ decals:
+ 72: 2,14
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 182: 8,-25
+ 183: 10,-21
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 175: -4,-21
+ 176: -2,-25
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 57: -3,10
+ 58: -3,11
+ 59: -3,12
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteLineE
+ decals:
+ 100: 7,-8
+ 101: 7,-7
+ 102: 7,-6
+ 107: 1,-6
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteLineE
+ decals:
+ 167: -2,-20
+ 168: -2,-21
+ 169: 11,-20
+ 174: 8,-26
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 51: -4,13
+ 52: 0,14
+ 53: 1,14
+ 54: 3,15
+ 55: 6,14
+ 56: 5,14
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteLineN
+ decals:
+ 105: 0,-5
+ 106: 6,-5
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteLineN
+ decals:
+ 146: -2,-24
+ 147: -1,-24
+ 148: 0,-24
+ 149: 1,-24
+ 150: 2,-24
+ 151: 3,-24
+ 152: 4,-24
+ 153: 5,-24
+ 154: 6,-24
+ 155: 7,-24
+ 156: 8,-24
+ 157: 1,-19
+ 158: 2,-19
+ 159: 3,-19
+ 160: 4,-19
+ 161: 5,-19
+ 162: 9,-19
+ 163: 10,-19
+ 164: -3,-19
+ 165: -4,-19
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 63: -4,9
+ 64: 0,13
+ 65: 1,13
+ 66: 2,13
+ 67: 3,13
+ 68: 4,13
+ 69: 5,13
+ 70: 6,13
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteLineS
+ decals:
+ 89: 6,-9
+ 90: 5,-9
+ 91: 4,-9
+ 92: 3,-9
+ 93: 2,-9
+ 94: 1,-9
+ 95: 0,-9
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteLineS
+ decals:
+ 136: 9,-22
+ 137: 7,-27
+ 138: 6,-27
+ 139: 5,-27
+ 140: 4,-27
+ 141: 3,-27
+ 142: 2,-27
+ 143: 1,-27
+ 144: 0,-27
+ 145: -1,-27
+ 166: -3,-22
+ 177: 1,-20
+ 178: 2,-20
+ 179: 3,-20
+ 180: 4,-20
+ 181: 5,-20
+ - node:
+ color: '#334E6DFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 60: -5,10
+ 61: -5,11
+ 62: -5,12
+ - node:
+ color: '#91D4FFFF'
+ id: BrickTileWhiteLineW
+ decals:
+ 97: -1,-8
+ 98: -1,-7
+ 99: -1,-6
+ 108: 5,-6
+ - node:
+ color: '#BA9241FF'
+ id: BrickTileWhiteLineW
+ decals:
+ 170: -5,-20
+ 171: 8,-20
+ 172: 8,-21
+ 173: -2,-26
+ - node:
+ color: '#FFFFFFFF'
+ id: BushAThree
+ decals:
+ 307: 12.804497,9.619086
+ 308: 14.764846,1.1706746
+ 309: 13.889846,-8.990104
+ 310: 12.811721,-16.335752
+ 311: -6.4601245,-16.429502
+ 312: -7.0538745,-8.738005
+ - node:
+ color: '#FFFFFFFF'
+ id: BushDThree
+ decals:
+ 313: -8.553875,-7.3005047
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb2
+ decals:
+ 304: -7.0770183,-6.7465653
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushb3
+ decals:
+ 306: -6.865152,6.800915
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc2
+ decals:
+ 305: -7.6707683,1.165602
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushj1
+ decals:
+ 345: 14.490994,-0.75366926
+ 346: 12.704702,-8.237985
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushj3
+ decals:
+ 344: 13.115994,0.027580738
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk2
+ decals:
+ 314: -6.971112,-18.265469
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushm1
+ decals:
+ 342: 13.139432,7.2979603
+ 343: 14.076932,0.95726824
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushn1
+ decals:
+ 315: 12.984519,-18.829172
+ 316: -6.987802,11.466034
+ 339: -7.911175,0.71791697
+ 340: -7.1689873,-0.48520803
+ 341: -8.509342,0.071397305
+ - node:
+ color: '#B02E26FF'
+ id: Delivery
+ decals:
+ 79: 2,11
+ 80: 3,11
+ 81: 4,11
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 73: 9,12
+ 74: 9,11
+ 75: 9,10
+ 76: 11,10
+ 77: 11,11
+ 78: 11,12
+ 184: -2,-26
+ 185: -2,-27
+ 186: 8,-26
+ 187: 8,-27
+ 188: 1,-24
+ 189: 2,-24
+ 190: 4,-24
+ 191: 5,-24
+ 192: 0,-20
+ 193: 6,-20
+ 194: 0,-22
+ 195: 1,-22
+ 196: 2,-22
+ 197: 4,-22
+ 198: 5,-22
+ 199: 6,-22
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 347: -2,-15
+ 348: 5,-12
+ 349: 6,-12
+ 350: 10,-10
+ 351: 5,-8
+ 352: 0,-7
+ 353: -1,-8
+ 354: -1,-2
+ 355: 4,-3
+ 356: 4,0
+ 357: 4,4
+ 358: 0,3
+ 359: -3,4
+ 360: -5,6
+ 361: -5,3
+ 362: -7,3
+ 363: -9,5
+ 364: 10,5
+ 365: 10,2
+ 366: 9,1
+ 367: 11,-4
+ 368: 10,-6
+ 369: 9,-10
+ 370: 11,-16
+ 371: 9,-20
+ 372: 8,-21
+ 373: 4,-20
+ 374: 1,-19
+ 375: -3,-20
+ 376: -4,-21
+ 377: -3,-22
+ 378: -1,-25
+ 379: 1,-27
+ 380: 6,-26
+ 381: 6,-25
+ 382: 8,-25
+ 383: 6,-30
+ 384: 3,-34
+ 385: 1,-32
+ 386: 5,-33
+ 387: 3,-30
+ 388: 2,-36
+ 389: 4,-38
+ 390: 7,-38
+ 391: -3,-15
+ 392: -5,-10
+ 393: -4,-10
+ 394: -4,-3
+ 395: -5,10
+ 396: -3,13
+ 397: 1,13
+ 398: 5,14
+ 399: 7,13
+ 400: 0,9
+ 401: 0,8
+ 402: 6,8
+ 403: 5,10
+ 404: 10,12
+ 405: 11,9
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 406: 0,10
+ 407: 1,9
+ 408: 6,9
+ 409: 10,6
+ 410: 6,4
+ 411: 9,2
+ 412: 11,3
+ 413: 14,3
+ 414: 13,5
+ 415: 10,-3
+ 416: 5,-3
+ 417: 1,0
+ 418: -1,1
+ 419: 5,0
+ 420: 2,-2
+ 421: 6,-2
+ 422: -4,-4
+ 423: -5,-3
+ 424: -5,-1
+ 425: -3,-6
+ 426: -1,-6
+ 427: 7,-6
+ 428: 7,-9
+ 429: -3,-12
+ 430: -5,-17
+ 431: 1,-16
+ 432: 6,-17
+ 433: 9,-16
+ 434: 11,-17
+ 435: 11,-19
+ 436: 9,-24
+ 437: 3,-27
+ 438: 6,-31
+ 439: -3,-25
+ 440: -5,-20
+ 441: -5,-16
+ 442: 3,-14
+ 443: 1,-6
+ 444: 4,-6
+ 445: 2,-7
+ 446: 2,-1
+ 447: -4,5
+ 448: 6,10
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 449: -4,13
+ 450: -3,5
+ 451: -2,4
+ 452: 4,4
+ 453: 1,4
+ 454: 10,3
+ 455: 10,-4
+ 456: 7,-7
+ 457: 9,-12
+ 458: 0,-15
+ 459: 6,-15
+ 460: 5,-15
+ 461: 9,-19
+ 462: 10,-21
+ 463: 8,-24
+ 464: 4,-27
+ 465: 0,-25
+ 466: 0,-30
+ 467: -4,-20
+ 468: -8,-12
+ 469: -4,-9
+ 470: -9,-4
+ 471: -8,4
+ 472: 14,4
+ 473: 13,-4
+ 474: 13,-12
+ 475: 11,-12
+ 476: 15,-12
+ 477: 10,-15
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 478: 4,-15
+ 479: 7,-12
+ 480: 0,-8
+ 481: -5,-4
+ 482: -8,-4
+ 483: -7,4
+ 484: -4,4
+ 485: -3,9
+ 486: 1,14
+ 487: -1,10
+ 488: 8,4
+ 489: 15,4
+ 490: 10,-5
+ 491: 14,-12
+ 492: 10,-20
+ 493: 1,-25
+ 494: 0,-31
+ 495: -3,-24
+ 496: 6,-27
+ 497: -5,-20
+ 498: -5,-15
+ 499: 8,-20
+ 500: 8,-24
+ 501: -1,-5
+ 502: -1,7
+ 503: -5,10
+ 504: -3,9
+ 505: 5,14
+ 506: 7,13
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 325: 14.072122,-8.212612
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRTwo
+ decals:
+ 326: 14.618997,-6.8532376
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 296: 13.060454,-8.141483
+ 297: 13.162017,8.219303
+ 298: 12.677642,11.842984
+ 299: -6.678396,11.749234
+ 300: -8.842644,-0.6058136
+ 301: -7.3348308,-14.903952
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr2
+ decals:
+ 327: 13.384622,-8.790737
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 302: -6.8426433,-19.2149
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 318: -6.972177,1.0421443
+ 331: -7.5654354,7.0316067
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 317: -8.2534275,-1.0437932
+ 332: -6.7685604,7.5812607
+ 333: 12.863869,8.440636
+ 334: 13.754494,0.3390727
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 319: -8.370615,-9.02503
+ 335: 12.795735,-6.759691
+ 336: 13.733235,-8.475926
+ 337: 13.035806,-15.623274
+ 338: 12.699868,-20.64732
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy1
+ decals:
+ 321: -8.037345,-7.713258
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 303: -7.3660808,-8.01219
+ 320: -8.6440525,-8.470343
+ 322: -7.6042743,-6.9569654
+ 323: -6.8792906,-19.848684
+ 324: 13.736184,-7.8532376
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 328: 13.290872,0.6521311
+ 329: 12.751809,9.01808
+ 330: -6.7216854,9.305044
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassa1
+ decals:
+ 265: -6.957039,10.046124
+ 266: -6.4602795,9.045384
+ 267: -8.514967,6.615697
+ 268: -6.718092,-0.23826182
+ 269: -8.913404,-9.378304
+ 270: -6.671217,-14.888496
+ 271: -6.577467,-20.558512
+ 272: 12.467425,-19.285074
+ 273: 12.62706,-9.163324
+ 274: 14.25206,-0.016394615
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb1
+ decals:
+ 257: -8.611971,1.0849676
+ 258: -7.127596,-0.9150324
+ 259: -7.0199404,-7.71227
+ 260: -6.662537,-19.883926
+ 261: 12.889915,-14.801397
+ 262: 14.944603,-0.8122648
+ 263: 12.694603,7.2785254
+ 264: -6.503914,12.132062
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassb4
+ decals:
+ 275: 12.858477,-0.015170097
+ 276: 13.866289,6.6957674
+ 277: 12.655352,12.5601425
+ 278: -6.6879063,12.8878975
+ 279: -6.6158834,0.38787055
+ 280: -8.873695,-7.8524575
+ 281: -6.9127584,-17.44151
+ 282: 13.157625,-20.261635
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 283: 14.563875,-14.755343
+ 284: 13.337313,-7.514801
+ 285: 14.7045,6.9149504
+ 286: -8.3399315,0.36978865
+ 287: -6.746181,-15.854146
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 288: -8.3399315,-8.373338
+ 289: -7.8164935,-0.4678113
+ 290: -6.699306,8.1197605
+ 291: 12.788823,10.2291355
+ 292: 13.406011,-0.6160376
+ 293: 12.843511,-17.471735
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock04
+ decals:
+ 295: 14.921458,-7.971257
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 294: 14.477363,-8.660469
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 203: 4,-29
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 200: 2,-29
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 201: 4,-30
+ 235: 4,-40
+ 236: 5,-34
+ 237: 6,-32
+ 238: 7,-31
+ 239: 8,-29
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 202: 2,-30
+ 240: -2,-29
+ 241: -1,-31
+ 242: 0,-32
+ 243: 1,-34
+ 244: 2,-40
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 115: 1,-8
+ 231: 4,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 114: 5,-8
+ 230: 2,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSE
+ decals:
+ 220: 4,-38
+ 221: 4,-34
+ 222: 5,-32
+ 223: 6,-31
+ 224: 7,-29
+ 234: 3,-40
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 225: -1,-29
+ 226: 0,-31
+ 227: 1,-32
+ 228: 2,-34
+ 229: 2,-38
+ 233: 3,-40
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndE
+ decals:
+ 83: 4,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndE
+ decals:
+ 207: 8,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndS
+ decals:
+ 232: 3,-41
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndW
+ decals:
+ 82: 2,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndW
+ decals:
+ 206: -2,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 112: 1,-7
+ 251: 5,-33
+ 252: 7,-30
+ 253: 4,-35
+ 254: 4,-36
+ 255: 4,-37
+ 256: 4,-39
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineN
+ decals:
+ 84: 3,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 204: 3,-30
+ 208: -1,-38
+ 209: 0,-38
+ 210: 1,-38
+ 211: 5,-38
+ 212: 6,-38
+ 213: 7,-38
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 113: 5,-7
+ 245: 2,-39
+ 246: 2,-36
+ 247: 2,-37
+ 248: 2,-35
+ 249: 1,-33
+ 250: -1,-30
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineW
+ decals:
+ 85: 3,9
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 109: 2,-8
+ 110: 3,-8
+ 111: 4,-8
+ 205: 3,-29
+ 214: -1,-38
+ 215: 0,-38
+ 216: 1,-38
+ 217: 5,-38
+ 218: 6,-38
+ 219: 7,-38
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 65535
+ -1,0:
+ 0: 65535
+ -1,-1:
+ 0: 65535
+ 0,-1:
+ 0: 65535
+ 0,1:
+ 0: 65535
+ -4,0:
+ 0: 61166
+ -4,1:
+ 0: 14
+ -3,0:
+ 0: 65535
+ -3,1:
+ 0: 61167
+ -3,2:
+ 0: 238
+ -2,0:
+ 0: 65535
+ -2,1:
+ 0: 65535
+ -2,2:
+ 0: 61183
+ -1,1:
+ 0: 65535
+ -1,2:
+ 0: 65535
+ -4,-4:
+ 0: 61166
+ -4,-3:
+ 0: 61166
+ -4,-2:
+ 0: 61166
+ -4,-1:
+ 0: 61166
+ -3,-4:
+ 0: 65535
+ -3,-3:
+ 0: 65535
+ -3,-2:
+ 0: 65535
+ -3,-1:
+ 0: 65535
+ -2,-4:
+ 0: 65535
+ -2,-3:
+ 0: 65535
+ -2,-2:
+ 0: 65535
+ -2,-1:
+ 0: 65535
+ -1,-4:
+ 0: 65535
+ -1,-3:
+ 0: 65535
+ -1,-2:
+ 0: 65535
+ 0,-4:
+ 0: 65535
+ 0,-3:
+ 0: 65535
+ 0,-2:
+ 0: 65535
+ -4,-5:
+ 0: 61152
+ -3,-5:
+ 0: 65520
+ -2,-6:
+ 0: 65535
+ -2,-5:
+ 0: 65535
+ -1,-6:
+ 0: 65535
+ -1,-5:
+ 0: 65535
+ 0,-6:
+ 0: 63743
+ 1: 1792
+ 0,-5:
+ 0: 65535
+ -3,-7:
+ 0: 34816
+ -3,-6:
+ 0: 2184
+ -2,-7:
+ 0: 65420
+ -1,-7:
+ 0: 65535
+ 0,-7:
+ 0: 65535
+ 1,-4:
+ 0: 65535
+ 1,-3:
+ 0: 65535
+ 1,-2:
+ 0: 65535
+ 1,-1:
+ 0: 65535
+ 2,-4:
+ 0: 65535
+ 2,-3:
+ 0: 65535
+ 2,-2:
+ 0: 65535
+ 2,-1:
+ 0: 65535
+ 3,-4:
+ 0: 65535
+ 3,-3:
+ 0: 65535
+ 3,-2:
+ 0: 65535
+ 3,-1:
+ 0: 65535
+ 0,2:
+ 0: 65535
+ 1,0:
+ 0: 65535
+ 1,1:
+ 0: 65535
+ 1,2:
+ 0: 65535
+ 2,0:
+ 0: 65535
+ 2,1:
+ 0: 65535
+ 2,2:
+ 0: 65535
+ 3,0:
+ 0: 65535
+ 3,1:
+ 0: 65535
+ 3,2:
+ 0: 14195
+ 4,-4:
+ 0: 4369
+ 4,-3:
+ 0: 4369
+ 4,-2:
+ 0: 4368
+ 4,-1:
+ 0: 4369
+ 4,0:
+ 0: 4368
+ 4,1:
+ 0: 4369
+ -2,3:
+ 0: 3310
+ -1,3:
+ 0: 65535
+ 0,3:
+ 0: 65535
+ 1,3:
+ 0: 65535
+ 2,3:
+ 0: 16383
+ 3,3:
+ 0: 311
+ 1,-6:
+ 0: 63743
+ 2: 1792
+ 1,-5:
+ 0: 65535
+ 1,-7:
+ 0: 65535
+ 2,-7:
+ 0: 30719
+ 2,-6:
+ 0: 65535
+ 2,-5:
+ 0: 65535
+ 3,-7:
+ 0: 1
+ 3,-6:
+ 0: 12560
+ 3,-5:
+ 0: 29495
+ 0,4:
+ 0: 14
+ 1,4:
+ 0: 15
+ -1,4:
+ 0: 8
+ -1,-8:
+ 0: 51328
+ 0,-8:
+ 0: 65535
+ 1,-8:
+ 0: 65527
+ 2,-8:
+ 0: 4096
+ 0,-10:
+ 0: 65532
+ 0,-9:
+ 0: 61132
+ 0,-11:
+ 0: 32768
+ 1,-10:
+ 0: 65521
+ 1,-9:
+ 0: 13073
+ 2,-10:
+ 0: 4880
+ -1,-10:
+ 0: 52928
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+- proto: AirAlarm
+ entities:
+ - uid: 1885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 79
+ - 78
+ - 23
+ - 246
+ - 90
+ - 262
+ - 263
+ - 91
+ - 1595
+ - 1902
+ - 1594
+ - 1347
+ - 1350
+ - 1593
+ - 1348
+ - 1349
+ - 1901
+ - 1596
+ - 1598
+ - 1592
+ - 1591
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,8.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 682
+ - 23
+ - 246
+ - 1594
+ - 1593
+ - 1596
+ - 1598
+ - 1364
+ - 1363
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1596
+ - 1352
+ - 1126
+ - 1593
+ - 1594
+ - 1598
+ - 289
+ - 288
+ - 682
+ - 679
+ - 1597
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1594
+ - 1593
+ - 1353
+ - 1595
+ - 1351
+ - 263
+ - 91
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 1.5,15.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1597
+ - 1390
+ - 1383
+ - 1596
+ - 679
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1591
+ - 1401
+ - 1599
+ - 1400
+ - 1592
+ - 87
+ - 86
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1398
+ - 1600
+ - 1399
+ - 88
+ - 295
+ - 1592
+ - 1591
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-20.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 973
+ - 1562
+ - 85
+ - 1737
+ - 21
+ - 722
+ - 762
+ - 1589
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-15.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1339
+ - 1341
+ - 1589
+ - 1590
+ - 1342
+ - 1340
+ - 1738
+ - 1739
+ - 971
+ - 1737
+ - 21
+ - 973
+ - 1592
+ - 1591
+ - 1898
+ - 1899
+ - 89
+ - 93
+ - 80
+ - 286
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-20.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 681
+ - 689
+ - 1738
+ - 1739
+ - 971
+ - 1601
+ - 762
+ - 1755
+ - 1756
+ - 1590
+ - 1589
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-25.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 681
+ - 722
+ - 727
+ - 762
+ - 726
+ - 971
+ - 973
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-0.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1590
+ - 1589
+ - 1592
+ - 1345
+ - 1343
+ - 1900
+ - 1593
+ - 1600
+ - 80
+ - 286
+ - 295
+ - 78
+ - 79
+ - 86
+ - 1599
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-3.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 89
+ - 93
+ - 88
+ - 1600
+ - 1591
+ - 1346
+ - 1344
+ - 1903
+ - 262
+ - 90
+ - 87
+ - 1590
+ - 1589
+ - 1599
+ - 1594
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: AirlockAtmosphericsGlassLocked
+ entities:
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 1
+ - uid: 1570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-18.5
+ parent: 1
+ - uid: 1571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-17.5
+ parent: 1
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: 11.5,-17.5
+ parent: 1
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,8.5
+ parent: 1
+ - uid: 663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,13.5
+ parent: 1
+- proto: AirlockEngineeringGlassLocked
+ entities:
+ - uid: 967
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 1
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
+ parent: 1
+- proto: AirlockExternalEngineeringLocked
+ entities:
+ - uid: 1636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-27.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1635
+ - 1637
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1637:
+ - DoorStatus: DoorBolt
+ 1635:
+ - DoorStatus: DoorBolt
+ - uid: 1640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-27.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1635
+ - 1637
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1635:
+ - DoorStatus: DoorBolt
+ 1637:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassEasyPry
+ entities:
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 12.5,-2.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-10.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 12.5,-12.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 12.5,3.5
+ parent: 1
+ - uid: 119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-12.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 12.5,-4.5
+ parent: 1
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 12.5,-10.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 1
+ - uid: 339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 1
+ - uid: 354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 1
+- proto: AirlockExternalGlassLocked
+ entities:
+ - uid: 1635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-30.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1636
+ - 1640
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1636:
+ - DoorStatus: DoorBolt
+ 1640:
+ - DoorStatus: DoorBolt
+ - uid: 1637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-30.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 1636
+ - 1640
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1636:
+ - DoorStatus: DoorBolt
+ 1640:
+ - DoorStatus: DoorBolt
+- proto: AirlockGlass
+ entities:
+ - uid: 26
+ components:
+ - type: Transform
+ pos: -4.5,-7.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-1.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 11.5,-7.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,8.5
+ parent: 1
+ - uid: 224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 9.5,-7.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 1
+ - uid: 1409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ - uid: 1505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 1
+- proto: AirlockGlassShuttleEasyPry
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,5.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-4.5
+ parent: 1
+ - uid: 115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-10.5
+ parent: 1
+ - uid: 116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-12.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-4.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-10.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,3.5
+ parent: 1
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-12.5
+ parent: 1
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-2.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,5.5
+ parent: 1
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,3.5
+ parent: 1
+ - uid: 347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-2.5
+ parent: 1
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 1
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,10.5
+ parent: 1
+- proto: AirlockSecurityLawyerGlassLocked
+ entities:
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+- proto: AirSensor
+ entities:
+ - uid: 762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-26.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - 1895
+ - 1893
+ - uid: 971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - 1895
+ - 1894
+ - uid: 973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - 1893
+ - 1894
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - 1893
+ - 1894
+ - 1904
+ - 1905
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - 1894
+ - 1904
+ - 1905
+ - uid: 1591
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1892
+ - 1905
+ - 1891
+ - 1885
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1904
+ - 1892
+ - 1891
+ - 1885
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1885
+ - 1889
+ - 1888
+ - 1887
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - 1885
+ - 1889
+ - 1888
+ - 1887
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1889
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1888
+ - 1887
+ - 1890
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1890
+ - 1888
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1888
+ - 1887
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1905
+ - 1891
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1892
+ - 1905
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - uid: 1899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - uid: 1900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - uid: 1901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,4.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - uid: 1903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-3.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+- proto: APCBasic
+ entities:
+ - uid: 557
+ components:
+ - type: MetaData
+ name: Sitting Area APC
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 1
+ - uid: 1506
+ components:
+ - type: MetaData
+ name: Central APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 1507
+ components:
+ - type: MetaData
+ name: Bridge APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 1690
+ components:
+ - type: MetaData
+ name: Engineering APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-27.5
+ parent: 1
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 605
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 12.5,-11.5
+ parent: 1
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 16.5,3.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 16.5,-2.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-10.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-12.5
+ parent: 1
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 16.5,-12.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 16.5,5.5
+ parent: 1
+ - uid: 241
+ components:
+ - type: Transform
+ pos: 16.5,-10.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 16.5,-4.5
+ parent: 1
+ - uid: 355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,5.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,3.5
+ parent: 1
+ - uid: 357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-2.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-4.5
+ parent: 1
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 1
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 1
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 0.5,-21.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 2.5,-21.5
+ parent: 1
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 45
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-19.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-12.5
+ parent: 1
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 1
+ - uid: 676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 1
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ pos: 7.5,-10.5
+ parent: 1
+ - uid: 760
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 1
+ - uid: 831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-20.5
+ parent: 1
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-19.5
+ parent: 1
+ - uid: 1511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 1
+ - uid: 1512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,3.5
+ parent: 1
+ - uid: 1515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,3.5
+ parent: 1
+ - uid: 1522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-4.5
+ parent: 1
+ - uid: 1523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-2.5
+ parent: 1
+ - uid: 1543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,12.5
+ parent: 1
+ - uid: 1545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 1574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-12.5
+ parent: 1
+ - uid: 1575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-12.5
+ parent: 1
+ - uid: 1787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-16.5
+ parent: 1
+ - uid: 1788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-16.5
+ parent: 1
+- proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 3.5,-13.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-12.5
+ parent: 1
+ - uid: 752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 1
+ - uid: 1516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 1518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-3.5
+ parent: 1
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 2.5,-13.5
+ parent: 1
+ - uid: 261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-12.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 1
+ - uid: 690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-20.5
+ parent: 1
+ - uid: 733
+ components:
+ - type: Transform
+ pos: -0.5,-13.5
+ parent: 1
+ - uid: 751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-20.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 1
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 1
+ - uid: 842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-16.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 1
+ - uid: 970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-18.5
+ parent: 1
+ - uid: 1513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
+ parent: 1
+ - uid: 1514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1
+ - uid: 1517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,3.5
+ parent: 1
+ - uid: 1520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 1521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-4.5
+ parent: 1
+ - uid: 1525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-19.5
+ parent: 1
+ - uid: 1544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 1
+ - uid: 1546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,11.5
+ parent: 1
+ - uid: 1572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-12.5
+ parent: 1
+ - uid: 1573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-12.5
+ parent: 1
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-16.5
+ parent: 1
+- proto: BenchSteelLeft
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 1
+- proto: BenchSteelMiddle
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 1
+- proto: BenchSteelRight
+ entities:
+ - uid: 643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,7.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+- proto: BoozeDispenser
+ entities:
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 6.5,1.5
+ parent: 1
+- proto: BorgCharger
+ entities:
+ - uid: 1676
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 1
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 1
+- proto: BoxBodyBag
+ entities:
+ - uid: 1867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.3108487,-4.393447
+ parent: 1
+- proto: BriefcaseBrown
+ entities:
+ - uid: 834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.10444713,-10.646297
+ parent: 1
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 1994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.917647,-13.465573
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 3.5,-37.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 1
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 3.5,-35.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 1
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 10.5,-21.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 1
+ - uid: 466
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 1
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 1
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 1
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 1
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 1
+ - uid: 479
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 1
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 1
+ - uid: 514
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 1
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 2.5,-37.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 2.5,-25.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 3.5,-36.5
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 1
+ - uid: 715
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 10.5,-22.5
+ parent: 1
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ pos: -0.5,-37.5
+ parent: 1
+ - uid: 747
+ components:
+ - type: Transform
+ pos: 6.5,-37.5
+ parent: 1
+ - uid: 754
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 1
+ - uid: 756
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 1
+ - uid: 757
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 1
+ - uid: 758
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 765
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 766
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 767
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 768
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 769
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 770
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 771
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 772
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 773
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 774
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 1
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - uid: 782
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 1
+ - uid: 786
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 790
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - uid: 791
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 795
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 1
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 1
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 1
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 1
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 4.5,-26.5
+ parent: 1
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 4.5,-27.5
+ parent: 1
+ - uid: 839
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 1
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 1
+ - uid: 841
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 1
+ - uid: 845
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 1
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 1
+ - uid: 851
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 1
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 1
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 9.5,-11.5
+ parent: 1
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 1
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 1
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 1
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 1
+ - uid: 864
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 1
+ - uid: 865
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - uid: 866
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 1
+ - uid: 869
+ components:
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 1
+ - uid: 871
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 1
+ - uid: 872
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 1
+ - uid: 873
+ components:
+ - type: Transform
+ pos: -8.5,-11.5
+ parent: 1
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 11.5,-11.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 12.5,-11.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 13.5,-11.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 15.5,-11.5
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 14.5,-3.5
+ parent: 1
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 15.5,-3.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: -7.5,-3.5
+ parent: 1
+ - uid: 888
+ components:
+ - type: Transform
+ pos: -8.5,-3.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 891
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: -7.5,4.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 14.5,4.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 901
+ components:
+ - type: Transform
+ pos: 7.5,10.5
+ parent: 1
+ - uid: 902
+ components:
+ - type: Transform
+ pos: 6.5,10.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 5.5,10.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 1.5,10.5
+ parent: 1
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 0.5,10.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: -0.5,10.5
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ pos: -1.5,10.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ pos: -2.5,10.5
+ parent: 1
+ - uid: 912
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 1
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 5.5,4.5
+ parent: 1
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 1
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 7.5,4.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 9.5,4.5
+ parent: 1
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 1
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 1
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 7.5,-1.5
+ parent: 1
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 2.5,-1.5
+ parent: 1
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - uid: 935
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -2.5,-1.5
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ pos: -2.5,-5.5
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ pos: -1.5,-5.5
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 1
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 1.5,-5.5
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 5.5,-5.5
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ pos: 6.5,-5.5
+ parent: 1
+ - uid: 951
+ components:
+ - type: Transform
+ pos: 7.5,-5.5
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 8.5,-5.5
+ parent: 1
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 1
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 15.5,-12.5
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 15.5,-10.5
+ parent: 1
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 15.5,-4.5
+ parent: 1
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 1
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 15.5,3.5
+ parent: 1
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 15.5,5.5
+ parent: 1
+ - uid: 960
+ components:
+ - type: Transform
+ pos: -8.5,5.5
+ parent: 1
+ - uid: 961
+ components:
+ - type: Transform
+ pos: -8.5,3.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 1
+ - uid: 963
+ components:
+ - type: Transform
+ pos: -8.5,-4.5
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ pos: -8.5,-10.5
+ parent: 1
+ - uid: 965
+ components:
+ - type: Transform
+ pos: -8.5,-12.5
+ parent: 1
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 4.5,-30.5
+ parent: 1
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 13.5,5.5
+ parent: 1
+ - uid: 984
+ components:
+ - type: Transform
+ pos: -6.5,5.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 1.5,-37.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 7.5,-37.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 8.5,-37.5
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 0.5,-37.5
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: -1.5,-37.5
+ parent: 1
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 5.5,-37.5
+ parent: 1
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 1
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 1
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 1
+ - uid: 1191
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 1
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 4.5,-23.5
+ parent: 1
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 1
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 1
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 1
+ - uid: 1198
+ components:
+ - type: Transform
+ pos: -1.5,-23.5
+ parent: 1
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 1
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 1556
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 1
+ - uid: 1557
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 1
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 1
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 4.5,-28.5
+ parent: 1
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 1
+ - uid: 1588
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 1
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 1
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 2.5,-27.5
+ parent: 1
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 2.5,-26.5
+ parent: 1
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 3.5,-31.5
+ parent: 1
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 3.5,-32.5
+ parent: 1
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 3.5,-33.5
+ parent: 1
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: 3.5,-34.5
+ parent: 1
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 4.5,-37.5
+ parent: 1
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 1
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 2.5,-29.5
+ parent: 1
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 2.5,-31.5
+ parent: 1
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 2.5,-30.5
+ parent: 1
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 3.5,-27.5
+ parent: 1
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 1
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 1
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 1
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 1
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 1
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: 5.5,-14.5
+ parent: 1
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 1
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 1
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 1
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 1
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 4.5,-23.5
+ parent: 1
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 1
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 1
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 1
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 1
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 1
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 1
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 2.5,-25.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 1
+ - uid: 189
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 1
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 9.5,-11.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 1
+ - uid: 449
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 1
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 1
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 1
+ - uid: 480
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 1
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 1
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 1
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 1
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 1
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 1
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 1
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 1
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 1
+ - uid: 1421
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 1
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 1
+ - uid: 1423
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 1
+ - uid: 1424
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 1
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 1
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 1
+ - uid: 1427
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 1
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 1
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 1
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 1438
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: -3.5,2.5
+ parent: 1
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: -3.5,3.5
+ parent: 1
+ - uid: 1442
+ components:
+ - type: Transform
+ pos: -3.5,4.5
+ parent: 1
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: -3.5,5.5
+ parent: 1
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: -3.5,6.5
+ parent: 1
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: -3.5,10.5
+ parent: 1
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: -3.5,11.5
+ parent: 1
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: -3.5,12.5
+ parent: 1
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: -3.5,13.5
+ parent: 1
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: -2.5,13.5
+ parent: 1
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 1
+ - uid: 1454
+ components:
+ - type: Transform
+ pos: -0.5,13.5
+ parent: 1
+ - uid: 1455
+ components:
+ - type: Transform
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 1456
+ components:
+ - type: Transform
+ pos: 1.5,13.5
+ parent: 1
+ - uid: 1457
+ components:
+ - type: Transform
+ pos: 2.5,13.5
+ parent: 1
+ - uid: 1458
+ components:
+ - type: Transform
+ pos: 3.5,13.5
+ parent: 1
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - uid: 1460
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 1
+ - uid: 1461
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+ - uid: 1463
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 1465
+ components:
+ - type: Transform
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: 10.5,12.5
+ parent: 1
+ - uid: 1467
+ components:
+ - type: Transform
+ pos: 10.5,11.5
+ parent: 1
+ - uid: 1468
+ components:
+ - type: Transform
+ pos: 10.5,10.5
+ parent: 1
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 1472
+ components:
+ - type: Transform
+ pos: 10.5,6.5
+ parent: 1
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 10.5,5.5
+ parent: 1
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 10.5,4.5
+ parent: 1
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 10.5,3.5
+ parent: 1
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 10.5,2.5
+ parent: 1
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 1478
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 1
+ - uid: 1480
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 1
+ - uid: 1481
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+ - uid: 1482
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 1484
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 1
+ - uid: 1485
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 1486
+ components:
+ - type: Transform
+ pos: 10.5,-7.5
+ parent: 1
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 10.5,-9.5
+ parent: 1
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 1
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 1
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 1
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 1
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 1
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 10.5,-15.5
+ parent: 1
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 10.5,-16.5
+ parent: 1
+ - uid: 1496
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 1
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 1
+ - uid: 1498
+ components:
+ - type: Transform
+ pos: 7.5,-16.5
+ parent: 1
+ - uid: 1499
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 1
+ - uid: 1500
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 1
+ - uid: 1501
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 1
+ - uid: 1502
+ components:
+ - type: Transform
+ pos: 3.5,-16.5
+ parent: 1
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: -2.5,-3.5
+ parent: 1
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 1
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 3.5,-26.5
+ parent: 1
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 3.5,-27.5
+ parent: 1
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: 4.5,-25.5
+ parent: 1
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 1
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 1
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 1
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 1
+ - uid: 1710
+ components:
+ - type: Transform
+ pos: 2.5,-25.5
+ parent: 1
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 1.5,-25.5
+ parent: 1
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
+ parent: 1
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 1
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
+ parent: 1
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: -1.5,-24.5
+ parent: 1
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 8.5,-24.5
+ parent: 1
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 9.5,-17.5
+ parent: 1
+ - uid: 1718
+ components:
+ - type: Transform
+ pos: 9.5,-18.5
+ parent: 1
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 9.5,-19.5
+ parent: 1
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 1
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 1
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 1
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 1
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: 9.5,-24.5
+ parent: 1
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 1
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 1
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - uid: 1728
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 1
+ - uid: 1729
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 1
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 1
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 1
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 1874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-23.5
+ parent: 1
+ - uid: 1876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-23.5
+ parent: 1
+ - uid: 1877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-23.5
+ parent: 1
+ - uid: 1878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-23.5
+ parent: 1
+ - uid: 1879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-24.5
+ parent: 1
+ - uid: 1880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 1
+ - uid: 1881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-24.5
+ parent: 1
+ - uid: 1882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-25.5
+ parent: 1
+ - uid: 1883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-25.5
+ parent: 1
+ - uid: 1884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-25.5
+ parent: 1
+- proto: Chair
+ entities:
+ - uid: 2006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 2007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 1
+ - uid: 2010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - uid: 2014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 7.5,-4.5
+ parent: 1
+ - uid: 215
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 1
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 1
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-6.5
+ parent: 1
+ - uid: 425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-6.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-6.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
+ parent: 1
+ - uid: 485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,14.5
+ parent: 1
+ - uid: 650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,7.5
+ parent: 1
+ - uid: 651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,8.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,7.5
+ parent: 1
+ - uid: 655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,14.5
+ parent: 1
+ - uid: 687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,14.5
+ parent: 1
+ - uid: 701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,14.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,14.5
+ parent: 1
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: -0.5,5.5
+ parent: 1
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 1688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-25.5
+ parent: 1
+ - uid: 1689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-25.5
+ parent: 1
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-5.5
+ parent: 1
+ - uid: 2101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-14.5
+ parent: 1
+ - uid: 2102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-14.5
+ parent: 1
+ - uid: 2103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-5.5
+ parent: 1
+ - uid: 2104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,2.5
+ parent: 1
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,6.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-9.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 1
+ - uid: 2105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 2106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-1.5
+ parent: 1
+ - uid: 2107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-9.5
+ parent: 1
+- proto: ComputerAlert
+ entities:
+ - uid: 697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,14.5
+ parent: 1
+ - uid: 1687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-25.5
+ parent: 1
+- proto: ComputerCloningConsole
+ entities:
+ - uid: 214
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 330:
+ - MedicalScannerSender: MedicalScannerReceiver
+ - CloningPodSender: MedicalScannerReceiver
+ 370:
+ - MedicalScannerSender: CloningPodReceiver
+ - CloningPodSender: CloningPodReceiver
+- proto: ComputerComms
+ entities:
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 1
+- proto: ComputerEmergencyShuttle
+ entities:
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+- proto: ComputerId
+ entities:
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 2.5,15.5
+ parent: 1
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 1686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-25.5
+ parent: 1
+- proto: ComputerRadar
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,14.5
+ parent: 1
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 2.5,-34.5
+ parent: 1
+ - uid: 1928
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 1
+- proto: CrowbarRed
+ entities:
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 0.33350086,-23.568808
+ parent: 1
+ - uid: 2080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.07526481,-16.473337
+ parent: 1
+ - uid: 2081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.24713436,11.426374
+ parent: 1
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 1849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-14.5
+ parent: 1
+ - uid: 1854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-19.5
+ parent: 1
+ - uid: 1855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-19.5
+ parent: 1
+ - uid: 1856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-24.5
+ parent: 1
+ - uid: 1857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-24.5
+ parent: 1
+- proto: DisposalJunction
+ entities:
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 1
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 1
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 1807
+ components:
+ - type: Transform
+ pos: 10.5,-13.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 1
+ - uid: 1809
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 1
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 1
+ - uid: 1811
+ components:
+ - type: Transform
+ pos: 10.5,-9.5
+ parent: 1
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 10.5,-7.5
+ parent: 1
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 10.5,-5.5
+ parent: 1
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 1
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 1
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 10.5,-1.5
+ parent: 1
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 1
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: -3.5,-1.5
+ parent: 1
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: -3.5,-2.5
+ parent: 1
+ - uid: 1826
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 1
+ - uid: 1827
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 1
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 1
+ - uid: 1829
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 1830
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 1
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: -3.5,-9.5
+ parent: 1
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 1
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 1
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 1
+ - uid: 1836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
+ parent: 1
+ - uid: 1837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 1
+ - uid: 1838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-14.5
+ parent: 1
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 1
+ - uid: 1840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-14.5
+ parent: 1
+ - uid: 1841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 1
+ - uid: 1842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 1
+ - uid: 1843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 1
+ - uid: 1844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 1
+ - uid: 1845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-14.5
+ parent: 1
+ - uid: 1846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-14.5
+ parent: 1
+ - uid: 1847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-14.5
+ parent: 1
+ - uid: 1848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-14.5
+ parent: 1
+ - uid: 1850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-15.5
+ parent: 1
+ - uid: 1851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-16.5
+ parent: 1
+ - uid: 1852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-17.5
+ parent: 1
+ - uid: 1853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-18.5
+ parent: 1
+ - uid: 1858
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 1
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: 6.5,-26.5
+ parent: 1
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 1
+ - uid: 1861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-24.5
+ parent: 1
+ - uid: 1862
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-24.5
+ parent: 1
+ - uid: 1863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-23.5
+ parent: 1
+ - uid: 1864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-22.5
+ parent: 1
+ - uid: 1865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-21.5
+ parent: 1
+ - uid: 1866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-20.5
+ parent: 1
+- proto: DisposalTrunk
+ entities:
+ - uid: 29
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-28.5
+ parent: 1
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+ - uid: 1803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-13.5
+ parent: 1
+ - uid: 1804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-13.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 1797
+ components:
+ - type: Transform
+ pos: 11.5,-13.5
+ parent: 1
+ - uid: 1798
+ components:
+ - type: Transform
+ pos: -4.5,-13.5
+ parent: 1
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: -3.5,1.5
+ parent: 1
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: 10.5,1.5
+ parent: 1
+- proto: DrinkBeerglass
+ entities:
+ - uid: 2025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.3622198,-0.24730682
+ parent: 1
+- proto: DrinkMartiniGlass
+ entities:
+ - uid: 2024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.182532,1.3542557
+ parent: 1
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.409095,-2.3019943
+ parent: 1
+- proto: DrinkRootBeerGlass
+ entities:
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.14347,-2.5676193
+ parent: 1
+- proto: DrinkShotGlass
+ entities:
+ - uid: 1936
+ components:
+ - type: Transform
+ pos: 3.613544,-2.4263215
+ parent: 1
+ - uid: 2017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5340948,1.1433179
+ parent: 1
+ - uid: 2018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.3622198,0.8230057
+ parent: 1
+ - uid: 2019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.8778448,-0.5285568
+ parent: 1
+ - uid: 2020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.95597,-0.42699432
+ parent: 1
+ - uid: 2021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.1044073,-0.6223068
+ parent: 1
+ - uid: 2022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.346595,-0.38011932
+ parent: 1
+ - uid: 2023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.46629024,-2.3254237
+ parent: 1
+- proto: EmergencyLight
+ entities:
+ - uid: 2046
+ components:
+ - type: Transform
+ pos: 3.5,15.5
+ parent: 1
+ - uid: 2047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,11.5
+ parent: 1
+ - uid: 2048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+ - uid: 2051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,4.5
+ parent: 1
+ - uid: 2052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-3.5
+ parent: 1
+ - uid: 2053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-11.5
+ parent: 1
+ - uid: 2054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-11.5
+ parent: 1
+ - uid: 2055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-3.5
+ parent: 1
+ - uid: 2056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,4.5
+ parent: 1
+ - uid: 2057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-16.5
+ parent: 1
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 1
+ - uid: 2059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-29.5
+ parent: 1
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 3.5,-31.5
+ parent: 1
+ - uid: 2062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-20.5
+ parent: 1
+ - uid: 2063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-20.5
+ parent: 1
+- proto: EmergencyMedipen
+ entities:
+ - uid: 213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.459274,-8.414546
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.3577113,-4.391109
+ parent: 1
+- proto: EmergencyRollerBedSpawnFolded
+ entities:
+ - uid: 1868
+ components:
+ - type: Transform
+ pos: 2.729817,-5.306182
+ parent: 1
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: 3.136067,-5.337432
+ parent: 1
+- proto: EpinephrineChemistryBottle
+ entities:
+ - uid: 352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.3577118,-8.211421
+ parent: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1893
+ - 1894
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1887
+ - uid: 78
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1885
+ - uid: 79
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1885
+ - uid: 80
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1904
+ - uid: 86
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1891
+ - uid: 87
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - 1891
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1892
+ - 1905
+ - uid: 89
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1905
+ - uid: 90
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - 1885
+ - uid: 91
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,8.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1889
+ - uid: 93
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1905
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1887
+ - uid: 262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - 1885
+ - uid: 263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,8.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - 1889
+ - uid: 286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - 1904
+ - uid: 288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,8.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - uid: 289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,8.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - uid: 295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - 1892
+ - uid: 679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - 1890
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - 1895
+ - uid: 682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,10.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - 1887
+ - uid: 689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - 1893
+ - uid: 1737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1893
+ - 1894
+ - uid: 1738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - 1894
+ - uid: 1739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - 1894
+- proto: FloorDrain
+ entities:
+ - uid: 2085
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 2087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,9.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: FloraTree02
+ entities:
+ - uid: 1923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.753403,-7.232706
+ parent: 1
+ - uid: 1924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.6932545,7.499033
+ parent: 1
+- proto: FloraTree04
+ entities:
+ - uid: 1926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.759519,-6.5801034
+ parent: 1
+- proto: FloraTreeLarge04
+ entities:
+ - uid: 1927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.259198,1.1817689
+ parent: 1
+- proto: FoodBreadGarlicSlice
+ entities:
+ - uid: 1937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.27879024,-2.4894862
+ parent: 1
+- proto: FoodMothBakedCheesePlatter
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.2249378,1.5739474
+ parent: 1
+- proto: FoodPlateSmall
+ entities:
+ - uid: 423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.3421254,-0.48073995
+ parent: 1
+ - uid: 1950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.24754024,-2.6301112
+ parent: 1
+- proto: ForkPlastic
+ entities:
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 0.33226132,-0.42738038
+ parent: 1
+- proto: GasMixer
+ entities:
+ - uid: 728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-18.5
+ parent: 1
+ - type: GasMixer
+ inletTwoConcentration: 0.8
+ inletOneConcentration: 0.2
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasOutletInjector
+ entities:
+ - uid: 1014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 1021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#00CCFFFF'
+ - uid: 1022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-28.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeBend
+ entities:
+ - uid: 132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 1029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00CCFFFF'
+ - uid: 1185
+ components:
+ - type: Transform
+ pos: 9.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 3.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1761
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: -4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: -4.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1113
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 11.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 11.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 9.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 9.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 9.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 6.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 0.5,-26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 9.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 8.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 1
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00CCFFFF'
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,0.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,7.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,8.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1298
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1301
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1360
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1361
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1397
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 6.5,-2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,4.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 9.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1777
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1778
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 7.5,-24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1071
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,9.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,2.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-6.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,1.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,10.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,11.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,3.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,5.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 2.5,14.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: GasPressurePump
+ entities:
+ - uid: 1023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#00CCFFFF'
+ - uid: 1024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasVentPump
+ entities:
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1893
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-2.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,5.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,5.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-2.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-10.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,2.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,2.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,10.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1889
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1887
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1890
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1892
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1891
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1896
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-18.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,9.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1888
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-12.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,3.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-4.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-12.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-14.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1894
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1904
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-6.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1905
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1885
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1889
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,11.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1887
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1890
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-5.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1892
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1891
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1893
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1895
+ - type: AtmosDevice
+ joinedGrid: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: Gauze
+ entities:
+ - uid: 367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.4514618,-8.633296
+ parent: 1
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 1
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 1
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 4.5,-23.5
+ parent: 1
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 1
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-5.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 1
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 13.5,-1.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 14.5,-5.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -1.5,-27.5
+ parent: 1
+ - uid: 120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,6.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 13.5,-9.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 14.5,-9.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 15.5,-1.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 14.5,-1.5
+ parent: 1
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 14.5,2.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 16.5,-11.5
+ parent: 1
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 15.5,-13.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 1
+ - uid: 205
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 1
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 1
+ - uid: 208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ - uid: 210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 1
+ - uid: 222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-6.5
+ parent: 1
+ - uid: 231
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 16.5,4.5
+ parent: 1
+ - uid: 237
+ components:
+ - type: Transform
+ pos: 15.5,-9.5
+ parent: 1
+ - uid: 240
+ components:
+ - type: Transform
+ pos: 16.5,-3.5
+ parent: 1
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 13.5,-13.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 1
+ - uid: 250
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 13.5,6.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 15.5,-5.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 14.5,-13.5
+ parent: 1
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 14.5,6.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 297
+ components:
+ - type: Transform
+ pos: 15.5,2.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,2.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 10.5,-7.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,6.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-13.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-13.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-9.5
+ parent: 1
+ - uid: 343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-13.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-9.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 13.5,-5.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-9.5
+ parent: 1
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 1
+ - uid: 439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1
+ - uid: 455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-19.5
+ parent: 1
+ - uid: 468
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-19.5
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 484
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 1
+ - uid: 489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,14.5
+ parent: 1
+ - uid: 491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 1
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 1
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 2.5,-22.5
+ parent: 1
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 4.5,-22.5
+ parent: 1
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 6.5,-22.5
+ parent: 1
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 1
+ - uid: 533
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 1
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 1
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-18.5
+ parent: 1
+ - uid: 616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,12.5
+ parent: 1
+ - uid: 622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-18.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 4.5,-17.5
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 7.5,-9.5
+ parent: 1
+ - uid: 1529
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 1
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 1
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 1.5,-28.5
+ parent: 1
+ - uid: 1565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-19.5
+ parent: 1
+ - uid: 1566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
+ parent: 1
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 1
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 5.5,-29.5
+ parent: 1
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 1
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 1
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 5.5,-28.5
+ parent: 1
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 1
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 8.5,-27.5
+ parent: 1
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: -0.5,-27.5
+ parent: 1
+- proto: Gyroscope
+ entities:
+ - uid: 1661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-37.5
+ parent: 1
+ - uid: 1662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-36.5
+ parent: 1
+ - uid: 1663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-38.5
+ parent: 1
+- proto: HandheldGPSBasic
+ entities:
+ - uid: 2066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.0635476,13.659181
+ parent: 1
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 382
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 1
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 1
+- proto: IntercomCommon
+ entities:
+ - uid: 1009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-9.5
+ parent: 1
+ - uid: 1921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-9.5
+ parent: 1
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 2120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,1.5
+ parent: 1
+- proto: IntercomEngineering
+ entities:
+ - uid: 601
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 1
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 8.5,-22.5
+ parent: 1
+- proto: KitchenMicrowave
+ entities:
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 1
+- proto: KnifePlastic
+ entities:
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: 0.5041363,-0.44300538
+ parent: 1
+- proto: LockerElectricalSuppliesFilled
+ entities:
+ - uid: 1675
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
+ parent: 1
+- proto: LockerFreezer
+ entities:
+ - uid: 411
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 1
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 1
+- proto: LockerWallMedicalDoctorFilled
+ entities:
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 7.5,-3.5
+ parent: 1
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 1
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: -1.5,-26.5
+ parent: 1
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: -1.5,-37.5
+ parent: 1
+ - uid: 1933
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 1
+ - uid: 1934
+ components:
+ - type: Transform
+ pos: 11.5,9.5
+ parent: 1
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 1
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 7.5,-37.5
+ parent: 1
+- proto: MaterialBiomass
+ entities:
+ - uid: 1913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.4670987,-4.5731344
+ parent: 1
+- proto: MedicalBed
+ entities:
+ - uid: 283
+ components:
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 3.5,-8.5
+ parent: 1
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 1
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 7.5,-8.5
+ parent: 1
+- proto: MedicalScanner
+ entities:
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 214
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 2064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.899485,13.307618
+ parent: 1
+- proto: MedkitFilled
+ entities:
+ - uid: 366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.1233368,-8.3442335
+ parent: 1
+- proto: MetempsychoticMachine
+ entities:
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 1
+ - type: DeviceLinkSink
+ links:
+ - 214
+- proto: MopBucketFull
+ entities:
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 0.4385128,-15.087053
+ parent: 1
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 10.114859,13.062706
+ parent: 1
+- proto: MopItem
+ entities:
+ - uid: 2082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.90983415,-15.059323
+ parent: 1
+ - uid: 2088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.657582,13.329807
+ parent: 1
+- proto: Multitool
+ entities:
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.3690176,-4.2755756
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 6.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: OxygenCanister
+ entities:
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 1
+ - type: AtmosDevice
+ joinedGrid: 1
+- proto: PlaqueAtmos
+ entities:
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: 12.5,-20.5
+ parent: 1
+- proto: PlushieAtmosian
+ entities:
+ - uid: 2029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.525822,-19.42031
+ parent: 1
+- proto: PlushieCarp
+ entities:
+ - uid: 2032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.7379594,-13.590573
+ parent: 1
+- proto: PlushieHampter
+ entities:
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.21379477,-16.4499
+ parent: 1
+- proto: PlushieLizard
+ entities:
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 1.5054002,-4.5560694
+ parent: 1
+- proto: PlushieMoth
+ entities:
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: -0.5208669,5.553047
+ parent: 1
+- proto: PlushieMothBartender
+ entities:
+ - uid: 2043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.6825323,-0.33324432
+ parent: 1
+- proto: PlushieNuke
+ entities:
+ - uid: 2035
+ components:
+ - type: Transform
+ pos: 6.8242917,-37.207977
+ parent: 1
+- proto: PlushiePenguin
+ entities:
+ - uid: 2034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.4982705,-20.393938
+ parent: 1
+- proto: PlushieRGBee
+ entities:
+ - uid: 2028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.594397,12.596214
+ parent: 1
+- proto: PlushieRouny
+ entities:
+ - uid: 2036
+ components:
+ - type: Transform
+ pos: 0.6680417,-28.811207
+ parent: 1
+- proto: PlushieSharkBlue
+ entities:
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.478947,-20.240622
+ parent: 1
+ - uid: 2031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.6377406,-13.52911
+ parent: 1
+- proto: PlushieSharkGrey
+ entities:
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 7.5679,-8.548257
+ parent: 1
+- proto: PlushieSharkPink
+ entities:
+ - uid: 2040
+ components:
+ - type: Transform
+ pos: 4.3150706,8.43586
+ parent: 1
+- proto: PlushieSlime
+ entities:
+ - uid: 2041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.485022,11.572777
+ parent: 1
+- proto: PlushieSnake
+ entities:
+ - uid: 2042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.399769,-3.016137
+ parent: 1
+- proto: PlushieSpaceLizard
+ entities:
+ - uid: 2037
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.529521,-19.893938
+ parent: 1
+- proto: PlushieXeno
+ entities:
+ - uid: 2038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.08882213,-10.365047
+ parent: 1
+- proto: PosterContrabandAtmosiaDeclarationIndependence
+ entities:
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: 10.5,-22.5
+ parent: 1
+- proto: PosterLegitPieSlice
+ entities:
+ - uid: 2016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 1
+- proto: PosterLegitSafetyMothEpi
+ entities:
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 3.5,-3.5
+ parent: 1
+- proto: PottedPlantRandom
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 10.5,-21.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 5.5,-13.5
+ parent: 1
+ - uid: 661
+ components:
+ - type: Transform
+ pos: -3.5,7.5
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 1
+ - uid: 736
+ components:
+ - type: Transform
+ pos: -1.5,-13.5
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 1
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 1
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 8.5,-10.5
+ parent: 1
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: -3.5,-0.5
+ parent: 1
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 1
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 1
+ - uid: 1535
+ components:
+ - type: Transform
+ pos: 10.5,-0.5
+ parent: 1
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 5.5,3.5
+ parent: 1
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 1.5,3.5
+ parent: 1
+ - uid: 1539
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 1
+ - uid: 1540
+ components:
+ - type: Transform
+ pos: -3.5,9.5
+ parent: 1
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 1
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 1
+ - uid: 1577
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 1
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 1
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 1
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 1.5,5.5
+ parent: 1
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 5.5,5.5
+ parent: 1
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: -1.5,5.5
+ parent: 1
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 1
+ - uid: 1870
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 1
+ - uid: 1871
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: 10.5,-16.5
+ parent: 1
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,13.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 1794
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 6.5,-8.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-3.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,4.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-11.5
+ parent: 1
+ - uid: 107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-3.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-11.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-11.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,4.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-3.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-11.5
+ parent: 1
+ - uid: 345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-3.5
+ parent: 1
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,11.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,11.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,3.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,11.5
+ parent: 1
+ - uid: 828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-24.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,13.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,9.5
+ parent: 1
+ - uid: 844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-0.5
+ parent: 1
+ - uid: 1608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,11.5
+ parent: 1
+ - uid: 1609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,9.5
+ parent: 1
+ - uid: 1611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 1
+ - uid: 1612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-17.5
+ parent: 1
+ - uid: 1666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-26.5
+ parent: 1
+ - uid: 1742
+ components:
+ - type: Transform
+ pos: 10.5,-18.5
+ parent: 1
+ - uid: 1743
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 1
+ - uid: 1744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-16.5
+ parent: 1
+ - uid: 1745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-16.5
+ parent: 1
+ - uid: 1791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-15.5
+ parent: 1
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-15.5
+ parent: 1
+ - uid: 1793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-19.5
+ parent: 1
+ - uid: 1796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-24.5
+ parent: 1
+- proto: PoweredSmallLightMaintenance
+ entities:
+ - uid: 979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 1
+ - uid: 980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-21.5
+ parent: 1
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 1
+ - uid: 1672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-30.5
+ parent: 1
+ - uid: 2061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-30.5
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 3.5,-4.5
+ parent: 1
+ - uid: 282
+ components:
+ - type: Transform
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 1679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-23.5
+ parent: 1
+- proto: RadioHandheld
+ entities:
+ - uid: 2067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.0049468875,11.699812
+ parent: 1
+ - uid: 2068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.04011,13.377931
+ parent: 1
+- proto: Railing
+ entities:
+ - uid: 558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,8.5
+ parent: 1
+ - uid: 559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,7.5
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,10.5
+ parent: 1
+ - uid: 563
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 1
+ - uid: 565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-16.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-19.5
+ parent: 1
+ - uid: 568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-18.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-17.5
+ parent: 1
+ - uid: 570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-8.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-7.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-6.5
+ parent: 1
+ - uid: 573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-7.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-6.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-18.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-17.5
+ parent: 1
+ - uid: 577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,10.5
+ parent: 1
+ - uid: 578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,9.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,11.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,8.5
+ parent: 1
+ - uid: 981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,12.5
+ parent: 1
+ - uid: 982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,11.5
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-15.5
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-0.5
+ parent: 1
+ - uid: 988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,1.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,9.5
+ parent: 1
+ - uid: 995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-19.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-16.5
+ parent: 1
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 14.5,-14.5
+ parent: 1
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-15.5
+ parent: 1
+ - uid: 1001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-8.5
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,7.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,12.5
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,0.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-0.5
+ parent: 1
+ - uid: 1008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,1.5
+ parent: 1
+- proto: RailingCorner
+ entities:
+ - uid: 985
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-20.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,13.5
+ parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,7.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,13.5
+ parent: 1
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 15.5,-14.5
+ parent: 1
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 13.5,-20.5
+ parent: 1
+ - uid: 1004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,7.5
+ parent: 1
+ - uid: 1329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-14.5
+ parent: 1
+- proto: RailingCornerSmall
+ entities:
+ - uid: 560
+ components:
+ - type: Transform
+ pos: -6.5,7.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-14.5
+ parent: 1
+ - uid: 997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-14.5
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,7.5
+ parent: 1
+- proto: RandomBoards
+ entities:
+ - uid: 1952
+ components:
+ - type: Transform
+ pos: 9.5,-24.5
+ parent: 1
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: -1.5,-23.5
+ parent: 1
+ - uid: 1954
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 1
+- proto: RandomInstruments
+ entities:
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 1
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 1
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: -2.5,-2.5
+ parent: 1
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: -4.5,12.5
+ parent: 1
+- proto: RandomPainting
+ entities:
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 6.5,-17.5
+ parent: 1
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: 7.5,-17.5
+ parent: 1
+ - uid: 1957
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 1
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 1
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 1960
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 1961
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 1962
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: -5.5,11.5
+ parent: 1
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 1
+- proto: RandomPosterLegit
+ entities:
+ - uid: 1938
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 1
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 1
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: 12.5,-16.5
+ parent: 1
+ - uid: 1946
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 1
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: -5.5,-15.5
+ parent: 1
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 1
+ - uid: 1949
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+- proto: RandomSoap
+ entities:
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: -6.5,-8.5
+ parent: 1
+- proto: RandomSpawner
+ entities:
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 1
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: 5.5,-14.5
+ parent: 1
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 1
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 1.5,-19.5
+ parent: 1
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 1
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
+ parent: 1
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: 6.5,-25.5
+ parent: 1
+ - uid: 1978
+ components:
+ - type: Transform
+ pos: 7.5,-29.5
+ parent: 1
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: 6.5,-30.5
+ parent: 1
+ - uid: 1980
+ components:
+ - type: Transform
+ pos: 6.5,-29.5
+ parent: 1
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 6.5,-28.5
+ parent: 1
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 7.5,-28.5
+ parent: 1
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 8.5,-28.5
+ parent: 1
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 1
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: 2.5,-32.5
+ parent: 1
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 4.5,-35.5
+ parent: 1
+ - uid: 1987
+ components:
+ - type: Transform
+ pos: 4.5,-37.5
+ parent: 1
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: 8.5,-37.5
+ parent: 1
+ - uid: 1989
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 1
+ - uid: 1990
+ components:
+ - type: Transform
+ pos: 2.5,-29.5
+ parent: 1
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 1
+ - uid: 1992
+ components:
+ - type: Transform
+ pos: 3.5,-29.5
+ parent: 1
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: -0.5,-26.5
+ parent: 1
+ - uid: 1995
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 1
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: -4.5,-14.5
+ parent: 1
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 1
+ - uid: 1998
+ components:
+ - type: Transform
+ pos: -3.5,-13.5
+ parent: 1
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: 11.5,-11.5
+ parent: 1
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 9.5,-5.5
+ parent: 1
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 1
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 1
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: -4.5,4.5
+ parent: 1
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 1
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 4.5,0.5
+ parent: 1
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 1
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 2.5,5.5
+ parent: 1
+ - uid: 1783
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 1
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 4.5,5.5
+ parent: 1
+ - uid: 1782
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 1
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 1.5,-22.5
+ parent: 1
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 2.5,-22.5
+ parent: 1
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 4.5,-22.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 1
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 6.5,-22.5
+ parent: 1
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 1
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 1
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 4.5,-20.5
+ parent: 1
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 1
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 6.5,-20.5
+ parent: 1
+- proto: ShadowTree01
+ entities:
+ - uid: 1918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.273117,-15.984801
+ parent: 1
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: -6.6538024,7.966305
+ parent: 1
+- proto: ShadowTree03
+ entities:
+ - uid: 1914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.367117,13.323404
+ parent: 1
+ - uid: 1920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.080735,-6.4842486
+ parent: 1
+- proto: ShadowTree04
+ entities:
+ - uid: 1915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.303209,7.7148037
+ parent: 1
+- proto: ShadowTree05
+ entities:
+ - uid: 422
+ components:
+ - type: Transform
+ pos: 14.627447,-0.6118185
+ parent: 1
+ - uid: 1607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.382492,13.271562
+ parent: 1
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.640305,-19.63101
+ parent: 1
+ - uid: 1919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.7875977,-14.561567
+ parent: 1
+- proto: ShadowTree06
+ entities:
+ - uid: 1922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.233812,1.3556528
+ parent: 1
+- proto: SheetSteel
+ entities:
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 0.42527008,-23.257866
+ parent: 1
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 0.6355021,-23.256012
+ parent: 1
+- proto: ShuttleWindow
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 1
+ - uid: 3
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-5.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 1
+ - uid: 6
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,6.5
+ parent: 1
+ - uid: 10
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-9.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,2.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-1.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 4.5,-17.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -3.5,-7.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-13.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-13.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-1.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 10.5,0.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-13.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,6.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-11.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-3.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 1
+ - uid: 108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,2.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,6.5
+ parent: 1
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,2.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,6.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-5.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-9.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-1.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-1.5
+ parent: 1
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 10.5,-7.5
+ parent: 1
+ - uid: 188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-13.5
+ parent: 1
+ - uid: 192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-6.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,6.5
+ parent: 1
+ - uid: 202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-3.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 1
+ - uid: 219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-11.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-9.5
+ parent: 1
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-13.5
+ parent: 1
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 1
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,4.5
+ parent: 1
+ - uid: 273
+ components:
+ - type: Transform
+ pos: -3.5,0.5
+ parent: 1
+ - uid: 274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-5.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-5.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,6.5
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-9.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-13.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-9.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-5.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ pos: -9.5,4.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-5.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-9.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,2.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,2.5
+ parent: 1
+ - uid: 430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,2.5
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,2.5
+ parent: 1
+ - uid: 432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,2.5
+ parent: 1
+ - uid: 433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,2.5
+ parent: 1
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,2.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 2.5,2.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,14.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-18.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-18.5
+ parent: 1
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-19.5
+ parent: 1
+ - uid: 467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,14.5
+ parent: 1
+ - uid: 471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-19.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ pos: -5.5,9.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,14.5
+ parent: 1
+ - uid: 492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,14.5
+ parent: 1
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 3.5,16.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 2.5,16.5
+ parent: 1
+ - uid: 501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,15.5
+ parent: 1
+ - uid: 505
+ components:
+ - type: Transform
+ pos: 4.5,16.5
+ parent: 1
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,15.5
+ parent: 1
+ - uid: 511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,15.5
+ parent: 1
+ - uid: 512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,15.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 4.5,6.5
+ parent: 1
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,10.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,11.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,12.5
+ parent: 1
+ - uid: 666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,12.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 1
+ - uid: 683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 1
+ - uid: 684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,14.5
+ parent: 1
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 1
+ - uid: 694
+ components:
+ - type: Transform
+ pos: -5.5,13.5
+ parent: 1
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -5.5,10.5
+ parent: 1
+ - uid: 753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-18.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-19.5
+ parent: 1
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 1
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 1
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 12.5,13.5
+ parent: 1
+ - uid: 1587
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 1
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: -5.5,12.5
+ parent: 1
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 12.5,10.5
+ parent: 1
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 1.5,-28.5
+ parent: 1
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 1
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: -1.5,-27.5
+ parent: 1
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: -0.5,-27.5
+ parent: 1
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 1
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 1
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 8.5,-27.5
+ parent: 1
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 5.5,-28.5
+ parent: 1
+ - uid: 1650
+ components:
+ - type: Transform
+ pos: 5.5,-29.5
+ parent: 1
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 1
+ - uid: 1967
+ components:
+ - type: Transform
+ pos: 7.5,-9.5
+ parent: 1
+ - uid: 1968
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 1
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 1
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: -0.5,-9.5
+ parent: 1
+- proto: SignAtmos
+ entities:
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-17.5
+ parent: 1
+- proto: SignAtmosMinsky
+ entities:
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 7.5,-19.5
+ parent: 1
+- proto: SignBar
+ entities:
+ - uid: 99
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-2.5
+ parent: 1
+- proto: SignBridge
+ entities:
+ - uid: 121
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,8.5
+ parent: 1
+- proto: SignDisposalSpace
+ entities:
+ - uid: 1779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-27.5
+ parent: 1
+- proto: SignEngineering
+ entities:
+ - uid: 1740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-17.5
+ parent: 1
+- proto: SignEVA
+ entities:
+ - uid: 695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,8.5
+ parent: 1
+- proto: SignMedical
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-4.5
+ parent: 1
+- proto: SignSec
+ entities:
+ - uid: 652
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+- proto: SignSecureMed
+ entities:
+ - uid: 2116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 2117
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,6.5
+ parent: 1
+- proto: SignShipDock
+ entities:
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 1
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 1
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: -9.5,-9.5
+ parent: 1
+ - uid: 2111
+ components:
+ - type: Transform
+ pos: 16.5,-9.5
+ parent: 1
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 1
+ - uid: 2113
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 1
+- proto: SignSmoking
+ entities:
+ - uid: 2115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 2086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,9.5
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 4.5,1.5
+ parent: 1
+- proto: soda_dispenser
+ entities:
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 5.5,1.5
+ parent: 1
+- proto: SpaceMedipen
+ entities:
+ - uid: 328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5217738,-4.3676715
+ parent: 1
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 1
+- proto: StoolBar
+ entities:
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 1
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,0.5
+ parent: 1
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-0.5
+ parent: 1
+ - uid: 405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-1.5
+ parent: 1
+ - uid: 406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-1.5
+ parent: 1
+ - uid: 408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-1.5
+ parent: 1
+ - uid: 409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 1
+ - uid: 410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 1
+- proto: Stunbaton
+ entities:
+ - uid: 1886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.036196887,11.387312
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 1
+- proto: SuitStorageEngi
+ entities:
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 8.5,-26.5
+ parent: 1
+- proto: SuitStorageEVAEmergency
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 1
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 9.5,11.5
+ parent: 1
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 11.5,10.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 11.5,11.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 9.5,10.5
+ parent: 1
+ - uid: 1412
+ components:
+ - type: Transform
+ pos: 9.5,12.5
+ parent: 1
+- proto: SuitStorageSec
+ entities:
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 2.5,11.5
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 3.5,11.5
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 1
+- proto: Syringe
+ entities:
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.271774,-8.711421
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.2639613,-8.398921
+ parent: 1
+- proto: TableCounterMetal
+ entities:
+ - uid: 413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,11.5
+ parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 1
+ - uid: 711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,13.5
+ parent: 1
+ - uid: 1413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,13.5
+ parent: 1
+ - uid: 2069
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+- proto: TableCounterWood
+ entities:
+ - uid: 387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-0.5
+ parent: 1
+ - uid: 390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 3.5,0.5
+ parent: 1
+ - uid: 396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 3.5,1.5
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-0.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 1
+ - uid: 415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,1.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,1.5
+ parent: 1
+- proto: TableGlass
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-8.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 1
+ - uid: 331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 2009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
+ parent: 1
+ - uid: 2011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-2.5
+ parent: 1
+ - uid: 2012
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 1
+- proto: TelecomServerFilled
+ entities:
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: 7.5,13.5
+ parent: 1
+- proto: Thruster
+ entities:
+ - uid: 166
+ components:
+ - type: Transform
+ pos: -0.5,-36.5
+ parent: 1
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -1.5,-36.5
+ parent: 1
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 0.5,-36.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 1.5,-36.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 5.5,-36.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 6.5,-36.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-38.5
+ parent: 1
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 7.5,-36.5
+ parent: 1
+ - uid: 1031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-38.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 8.5,-36.5
+ parent: 1
+ - uid: 1033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-38.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-38.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-37.5
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-37.5
+ parent: 1
+ - uid: 1555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-38.5
+ parent: 1
+ - uid: 1617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-38.5
+ parent: 1
+ - uid: 1626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-38.5
+ parent: 1
+ - uid: 1631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-38.5
+ parent: 1
+- proto: VendingMachineBooze
+ entities:
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 7.5,1.5
+ parent: 1
+- proto: VendingMachineCigs
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 3.5,-16.5
+ parent: 1
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 1
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 123
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: Transform
+ pos: -6.5,-3.5
+ parent: 1
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -6.5,4.5
+ parent: 1
+ - uid: 258
+ components:
+ - type: Transform
+ pos: 13.5,4.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 13.5,-11.5
+ parent: 1
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 1
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 1
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 445
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,14.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: -1.5,15.5
+ parent: 1
+ - uid: 470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,15.5
+ parent: 1
+ - uid: 483
+ components:
+ - type: Transform
+ pos: -5.5,14.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,16.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 1.5,16.5
+ parent: 1
+- proto: WallShuttleInterior
+ entities:
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 12.5,-11.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-13.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,2.5
+ parent: 1
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -5.5,1.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 12.5,-1.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 8.5,-9.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 16.5,6.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -5.5,7.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 12.5,-5.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-3.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-21.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: -5.5,-0.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 16.5,-13.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-22.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 12.5,-6.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-3.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 12.5,-9.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ pos: 3.5,2.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 1
+ - uid: 117
+ components:
+ - type: Transform
+ pos: -5.5,-6.5
+ parent: 1
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-7.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,8.5
+ parent: 1
+ - uid: 125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-15.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -1.5,-9.5
+ parent: 1
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 12.5,0.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 16.5,-1.5
+ parent: 1
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 16.5,2.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,8.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ pos: 7.5,6.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 12.5,-13.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 12.5,-0.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: -5.5,-14.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: -0.5,6.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-3.5
+ parent: 1
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -5.5,-8.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 12.5,8.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-3.5
+ parent: 1
+ - uid: 194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-2.5
+ parent: 1
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 12.5,-8.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ pos: -1.5,0.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-5.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-1.5
+ parent: 1
+ - uid: 217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-9.5
+ parent: 1
+ - uid: 218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,2.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 1
+ - uid: 221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 1
+ - uid: 232
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 238
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 1
+ - uid: 239
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 242
+ components:
+ - type: Transform
+ pos: 12.5,2.5
+ parent: 1
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 5.5,6.5
+ parent: 1
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-3.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 8.5,-7.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,0.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 16.5,-9.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 16.5,-5.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-4.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-3.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-2.5
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 12.5,-7.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-3.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-3.5
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 8.5,6.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 1
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 12.5,-14.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-11.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-13.5
+ parent: 1
+ - uid: 351
+ components:
+ - type: Transform
+ pos: -9.5,6.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-9.5
+ parent: 1
+ - uid: 362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,6.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-5.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: -1.5,6.5
+ parent: 1
+ - uid: 380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,4.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,12.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 1
+ - uid: 443
+ components:
+ - type: Transform
+ pos: 8.5,14.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-20.5
+ parent: 1
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-17.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 12.5,-16.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-17.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-20.5
+ parent: 1
+ - uid: 488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,11.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,11.5
+ parent: 1
+ - uid: 500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,15.5
+ parent: 1
+ - uid: 507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,15.5
+ parent: 1
+ - uid: 515
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 1
+ - uid: 516
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 1
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 7.5,-22.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-22.5
+ parent: 1
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 3.5,-22.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 1
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 1
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-17.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-17.5
+ parent: 1
+ - uid: 593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-17.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-17.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,12.5
+ parent: 1
+ - uid: 626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,12.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,12.5
+ parent: 1
+ - uid: 630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,12.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,12.5
+ parent: 1
+ - uid: 632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,13.5
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,11.5
+ parent: 1
+ - uid: 660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,12.5
+ parent: 1
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 10.5,-22.5
+ parent: 1
+ - uid: 738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-0.5
+ parent: 1
+ - uid: 739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-0.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-23.5
+ parent: 1
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-21.5
+ parent: 1
+ - uid: 978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-21.5
+ parent: 1
+ - uid: 1508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,9.5
+ parent: 1
+ - uid: 1510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,12.5
+ parent: 1
+ - uid: 1528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-19.5
+ parent: 1
+ - uid: 1559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-23.5
+ parent: 1
+ - uid: 1603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-22.5
+ parent: 1
+ - uid: 1610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-16.5
+ parent: 1
+ - uid: 1615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-24.5
+ parent: 1
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 1
+ - uid: 1618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-25.5
+ parent: 1
+ - uid: 1620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-26.5
+ parent: 1
+ - uid: 1621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-23.5
+ parent: 1
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 1.5,-27.5
+ parent: 1
+ - uid: 1628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-27.5
+ parent: 1
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 5.5,-30.5
+ parent: 1
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-26.5
+ parent: 1
+ - uid: 1645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-27.5
+ parent: 1
+ - uid: 1652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-23.5
+ parent: 1
+ - uid: 1653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-21.5
+ parent: 1
+ - uid: 1654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-25.5
+ parent: 1
+ - uid: 1655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-24.5
+ parent: 1
+ - uid: 1656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-25.5
+ parent: 1
+ - uid: 1657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-25.5
+ parent: 1
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 1.5,-30.5
+ parent: 1
+ - uid: 1665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-30.5
+ parent: 1
+ - uid: 1670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-27.5
+ parent: 1
+ - uid: 1733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-17.5
+ parent: 1
+ - uid: 1734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-17.5
+ parent: 1
+ - uid: 1735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-17.5
+ parent: 1
+ - uid: 1736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-17.5
+ parent: 1
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: 8.5,-22.5
+ parent: 1
+ - uid: 1746
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 1
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 1
+ - uid: 1784
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 1
+ - uid: 1789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-16.5
+ parent: 1
+ - uid: 1790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-15.5
+ parent: 1
+- proto: WarningWaste
+ entities:
+ - uid: 2077
+ components:
+ - type: Transform
+ pos: 1.5,-27.5
+ parent: 1
+- proto: WarpPoint
+ entities:
+ - uid: 968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-5.5
+ parent: 1
+ - type: WarpPoint
+ location: Emergency Shuttle
+- proto: WaterCooler
+ entities:
+ - uid: 763
+ components:
+ - type: Transform
+ pos: 5.5,-10.5
+ parent: 1
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ pos: -4.5,13.5
+ parent: 1
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,11.5
+ parent: 1
+ - uid: 1605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: 6.5,13.5
+ parent: 1
+- proto: WeaponDisabler
+ entities:
+ - uid: 1897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.1339264,11.511697
+ parent: 1
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.891739,11.542947
+ parent: 1
+- proto: WindoorBarKitchenLocked
+ entities:
+ - uid: 392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-0.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-0.5
+ parent: 1
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-5.5
+ parent: 1
+- proto: WindoorSecureSecurityLawyerLocked
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,9.5
+ parent: 1
+ - uid: 623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,9.5
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,8.5
+ parent: 1
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 1906
+ components:
+ - type: Transform
+ pos: -0.5,11.5
+ parent: 1
+ - type: Door
+ secondsUntilStateChange: -1406.6262
+ state: Opening
+ - uid: 1907
+ components:
+ - type: Transform
+ pos: 0.5,11.5
+ parent: 1
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 6.5,11.5
+ parent: 1
+ - uid: 1909
+ components:
+ - type: Transform
+ pos: 7.5,11.5
+ parent: 1
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 3.5,-5.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 4.5,-5.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-4.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 2.5,-5.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,0.5
+ parent: 1
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-0.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 1
+ - uid: 393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-0.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 1
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 4.5,10.5
+ parent: 1
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,7.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,8.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,7.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 2.5,10.5
+ parent: 1
+ - uid: 1911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,11.5
+ parent: 1
+ - uid: 1912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,11.5
+ parent: 1
+...
diff --git a/Resources/Maps/Shuttles/DeltaV/sub_escape_pod.yml b/Resources/Maps/Shuttles/DeltaV/sub_escape_pod.yml
new file mode 100644
index 0000000000..1e7c3210eb
--- /dev/null
+++ b/Resources/Maps/Shuttles/DeltaV/sub_escape_pod.yml
@@ -0,0 +1,412 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 65: FloorMetalDiamond
+ 77: FloorRGlass
+ 121: Lattice
+ 122: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 29
+ components:
+ - type: MetaData
+ name: Submarine Escape Pod
+ - type: Transform
+ parent: invalid
+ - type: ProtectedGrid
+ - type: EscapePod
+ - type: MapGrid
+ chunks:
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAA
+ version: 6
+ 0,0:
+ ind: 0,0
+ tiles: QQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: BecomesStation
+ id: Empty
+ - type: OccluderTree
+ - type: Shuttle
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes: []
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ -1,-1:
+ 0: 60928
+ 0,0:
+ 0: 13107
+ -1,0:
+ 0: 61166
+ 0,-1:
+ 0: 13056
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: SpreaderGrid
+ - type: GridPathfinding
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 29
+- proto: APCBasic
+ entities:
+ - uid: 11
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-1.5
+ parent: 29
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 29
+- proto: CableApcExtension
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 29
+ - uid: 5
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 29
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 29
+ - uid: 24
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 29
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 29
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 29
+- proto: CableHV
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 29
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -1.5,-0.5
+ parent: 29
+ - uid: 17
+ components:
+ - type: Transform
+ pos: -0.5,-0.5
+ parent: 29
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 29
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 29
+- proto: CableMV
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 29
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 29
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 29
+- proto: ChairPilotSeat
+ entities:
+ - uid: 44
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 29
+ - uid: 45
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 29
+ - uid: 46
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
+ parent: 29
+ - uid: 47
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,0.5
+ parent: 29
+ - uid: 53
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 29
+ - uid: 54
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,2.5
+ parent: 29
+- proto: GeneratorWallmountAPU
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 29
+- proto: GravityGeneratorMini
+ entities:
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 29
+- proto: Grille
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 29
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 29
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 29
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 29
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 29
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 29
+- proto: IntercomCommon
+ entities:
+ - uid: 35
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 29
+- proto: PoweredlightRed
+ entities:
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 29
+- proto: Screen
+ entities:
+ - uid: 31
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,3.5
+ parent: 29
+ - uid: 33
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,3.5
+ parent: 29
+ - uid: 55
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,3.5
+ parent: 29
+- proto: ShuttleWindow
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -2.5,1.5
+ parent: 29
+ - uid: 9
+ components:
+ - type: Transform
+ pos: -2.5,2.5
+ parent: 29
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -2.5,0.5
+ parent: 29
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 29
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 29
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 29
+- proto: SubstationWallBasic
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 29
+- proto: Thruster
+ entities:
+ - uid: 2
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-1.5
+ parent: 29
+ - uid: 12
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-1.5
+ parent: 29
+- proto: WallShuttle
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 29
+ - uid: 28
+ components:
+ - type: Transform
+ pos: -1.5,-1.5
+ parent: 29
+ - uid: 30
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 29
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 29
+ - uid: 34
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 29
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 29
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -2.5,-0.5
+ parent: 29
+- proto: WallShuttleDiagonal
+ entities:
+ - uid: 23
+ components:
+ - type: Transform
+ pos: -2.5,3.5
+ parent: 29
+ - uid: 26
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 29
+...
diff --git a/Resources/Maps/submarine.yml b/Resources/Maps/submarine.yml
index 3c2abcd121..1d94f1fb50 100644
--- a/Resources/Maps/submarine.yml
+++ b/Resources/Maps/submarine.yml
@@ -17,57 +17,66 @@ tilemap:
15: FloorBasalt
18: FloorBlueCircuit
19: FloorBoxing
- 20: FloorBrokenWood
- 21: FloorCarpetClown
- 22: FloorCarpetOffice
- 23: FloorCave
- 24: FloorCaveDrought
- 26: FloorClown
- 27: FloorConcrete
- 28: FloorConcreteMono
- 30: FloorDark
- 31: FloorDarkDiagonal
- 32: FloorDarkDiagonalMini
- 37: FloorDarkPavement
- 39: FloorDarkPlastic
- 41: FloorDirt
- 45: FloorFreezer
- 46: FloorGlass
- 47: FloorGold
- 48: FloorGrass
- 50: FloorGrassJungle
- 57: FloorHull
- 58: FloorHullReinforced
- 59: FloorHydro
- 60: FloorIce
- 62: FloorLaundry
- 63: FloorLino
- 65: FloorMetalDiamond
- 66: FloorMime
- 68: FloorMiningDark
- 73: FloorOldConcreteSmooth
- 77: FloorRGlass
- 78: FloorReinforced
- 87: FloorSilver
- 88: FloorSnow
- 89: FloorSnowDug
- 90: FloorSteel
- 93: FloorSteelCheckerLight
- 101: FloorSteelMono
- 103: FloorSteelPavement
- 105: FloorTechMaint
- 106: FloorTechMaint2
- 107: FloorTechMaint3
- 109: FloorWhite
- 112: FloorWhiteHerringbone
- 116: FloorWhitePavement
- 118: FloorWhitePlastic
- 119: FloorWood
- 120: FloorWoodTile
- 121: Lattice
- 122: Plating
- 123: PlatingAsteroid
- 126: PlatingSnow
+ 22: FloorBrokenWood
+ 23: FloorCarpetClown
+ 24: FloorCarpetOffice
+ 25: FloorCave
+ 26: FloorCaveDrought
+ 28: FloorClown
+ 29: FloorConcrete
+ 30: FloorConcreteMono
+ 32: FloorDark
+ 33: FloorDarkDiagonal
+ 34: FloorDarkDiagonalMini
+ 35: FloorDarkHerringbone
+ 37: FloorDarkMono
+ 39: FloorDarkPavement
+ 41: FloorDarkPlastic
+ 43: FloorDirt
+ 46: FloorFlesh
+ 47: FloorFreezer
+ 48: FloorGlass
+ 49: FloorGold
+ 50: FloorGrass
+ 52: FloorGrassJungle
+ 57: FloorGreenCircuit
+ 58: FloorGym
+ 59: FloorHull
+ 60: FloorHullReinforced
+ 61: FloorHydro
+ 62: FloorIce
+ 64: FloorLaundry
+ 65: FloorLino
+ 67: FloorMetalDiamond
+ 68: FloorMime
+ 75: FloorOldConcreteSmooth
+ 79: FloorRGlass
+ 80: FloorReinforced
+ 84: FloorShuttleBlack
+ 87: FloorShuttleOrange
+ 92: FloorSnow
+ 93: FloorSnowDug
+ 94: FloorSteel
+ 97: FloorSteelCheckerLight
+ 99: FloorSteelDiagonal
+ 103: FloorSteelLime
+ 105: FloorSteelMono
+ 107: FloorSteelPavement
+ 109: FloorTechMaint
+ 110: FloorTechMaint2
+ 111: FloorTechMaint3
+ 113: FloorWhite
+ 114: FloorWhiteDiagonal
+ 116: FloorWhiteHerringbone
+ 120: FloorWhitePavement
+ 122: FloorWhitePlastic
+ 123: FloorWood
+ 125: FloorWoodTile
+ 126: Lattice
+ 127: Plating
+ 128: PlatingAsteroid
+ 130: PlatingBurnt
+ 132: PlatingSnow
entities:
- proto: ""
entities:
@@ -81,651 +90,671 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: TQAAAAAATQAAAAACTQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAACegAAAAAAdAAAAAADTQAAAAACdAAAAAAAegAAAAAAbQAAAAACbQAAAAABTQAAAAADTQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAACdAAAAAABdAAAAAAAdAAAAAACTQAAAAAAdAAAAAACTQAAAAADdAAAAAACegAAAAAAegAAAAAAbQAAAAADTQAAAAACTQAAAAABTQAAAAADTQAAAAACTQAAAAACTQAAAAADTQAAAAAATQAAAAAAdAAAAAABTgAAAAAAdAAAAAADTQAAAAAAdAAAAAAATgAAAAAAbQAAAAACbQAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAACTQAAAAACTQAAAAAAdAAAAAABdAAAAAACdAAAAAACTQAAAAAAdAAAAAAATQAAAAADdAAAAAAATgAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAATQAAAAAATQAAAAADTQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAADegAAAAAAdAAAAAABTQAAAAABdAAAAAABegAAAAAAbQAAAAACbQAAAAACbQAAAAAAegAAAAAAdAAAAAABTQAAAAABdAAAAAACbQAAAAABbQAAAAADbQAAAAACbQAAAAACegAAAAAAdAAAAAAAdAAAAAAAdAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAACdAAAAAADTQAAAAACdAAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAAAegAAAAAAdAAAAAAAdAAAAAACdAAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAAATQAAAAAAdAAAAAADdAAAAAABdAAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACegAAAAAAdAAAAAADdAAAAAABdAAAAAAAdAAAAAADdAAAAAADdAAAAAACdAAAAAACdAAAAAADTQAAAAAATQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZwAAAAACZwAAAAADZwAAAAACMAAAAAAATgAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAACegAAAAAAagAAAAAAZwAAAAACTQAAAAAAZwAAAAAAMAAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABegAAAAAAagAAAAAAZwAAAAACTQAAAAADZwAAAAACMAAAAAAATgAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAACegAAAAAAegAAAAAAZwAAAAADTQAAAAABZwAAAAAAMAAAAAAAegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAAAegAAAAAAagAAAAAAZwAAAAABTQAAAAAAZwAAAAADMAAAAAAATgAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAegAAAAAAagAAAAAAZwAAAAAATQAAAAABZwAAAAACMAAAAAAAegAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACbQAAAAABegAAAAAAagAAAAAAZwAAAAACTQAAAAAAZwAAAAAAMAAAAAAATgAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACegAAAAAAagAAAAAA
+ tiles: cQAAAAACcQAAAAADcQAAAAACewAAAAAAewAAAAADewAAAAACewAAAAACfwAAAAAAcQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAcgAAAAADcgAAAAABcgAAAAACcgAAAAABcQAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAACcQAAAAABcQAAAAAATwAAAAAAcQAAAAACcQAAAAADcQAAAAABfwAAAAAAcgAAAAACcgAAAAADcgAAAAACcgAAAAABVwAAAAACVwAAAAADVwAAAAADcQAAAAADcQAAAAABcQAAAAACcQAAAAAAUAAAAAAAcQAAAAABcQAAAAABcQAAAAADUAAAAAAAcgAAAAACcgAAAAABcgAAAAAAcgAAAAACcQAAAAADVwAAAAADcQAAAAAAcQAAAAACcQAAAAADcQAAAAACcQAAAAADTwAAAAACcQAAAAAAcQAAAAAAcQAAAAABUAAAAAAAcgAAAAADcgAAAAADcgAAAAACcgAAAAABcQAAAAADcQAAAAAAcQAAAAADTwAAAAAATwAAAAACTwAAAAABTwAAAAACfwAAAAAAcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAACfwAAAAAAcQAAAAADcQAAAAAAcQAAAAAATwAAAAAAewAAAAADewAAAAACewAAAAADfwAAAAAAcQAAAAACcQAAAAABcQAAAAAATwAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAADcQAAAAADcQAAAAABTwAAAAADewAAAAACewAAAAACewAAAAAATwAAAAACcQAAAAABcQAAAAABcQAAAAACTwAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAACcQAAAAABcQAAAAACTwAAAAADewAAAAACewAAAAAAewAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAADTwAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADTwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABawAAAAACawAAAAAAawAAAAAAMgAAAAAATwAAAAADewAAAAAAewAAAAACVAAAAAABdAAAAAADcgAAAAACdAAAAAABewAAAAADewAAAAABewAAAAACewAAAAABewAAAAADawAAAAABTwAAAAABawAAAAADMgAAAAAATwAAAAABewAAAAACewAAAAABVAAAAAADdAAAAAADcgAAAAACdAAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAABawAAAAADTwAAAAAAawAAAAABMgAAAAAATwAAAAADewAAAAADewAAAAADVAAAAAABdAAAAAABcgAAAAACdAAAAAADewAAAAADewAAAAACewAAAAAAewAAAAAAewAAAAADawAAAAADTwAAAAABawAAAAADMgAAAAAATwAAAAABewAAAAABewAAAAAAVAAAAAADdAAAAAABcgAAAAACdAAAAAACdAAAAAABdAAAAAADewAAAAACewAAAAACewAAAAACawAAAAAATwAAAAABawAAAAABMgAAAAAATwAAAAABewAAAAAAewAAAAABVAAAAAAAdAAAAAACcgAAAAACdAAAAAABdAAAAAADdAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAawAAAAABTwAAAAADawAAAAADMgAAAAAATwAAAAADewAAAAADewAAAAACVAAAAAABdAAAAAACcgAAAAABcgAAAAAAcgAAAAABcgAAAAAAcgAAAAADcgAAAAABcgAAAAADawAAAAAATwAAAAACawAAAAAAMgAAAAAATwAAAAAAewAAAAAAewAAAAABVAAAAAABdAAAAAACcgAAAAACdAAAAAAAdAAAAAADdAAAAAABdAAAAAACdAAAAAAAdAAAAAAC
version: 6
0,-1:
ind: 0,-1
- tiles: TQAAAAABTQAAAAADTQAAAAADTQAAAAAAZwAAAAABTQAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAACZwAAAAAATQAAAAACZwAAAAABZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAAAZwAAAAABZwAAAAADegAAAAAAZwAAAAABTQAAAAADTQAAAAADTQAAAAAATQAAAAABWgAAAAAATgAAAAAAWgAAAAADWgAAAAABegAAAAAATQAAAAADegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABegAAAAAAWgAAAAAAZwAAAAACTQAAAAAAZwAAAAABWgAAAAACWgAAAAABegAAAAAATQAAAAAATQAAAAABegAAAAAAdAAAAAACegAAAAAAegAAAAAATQAAAAACTQAAAAAAegAAAAAAegAAAAAAZwAAAAADTQAAAAABZwAAAAACMAAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACdAAAAAADdAAAAAACdAAAAAACbQAAAAACbQAAAAABbQAAAAAAegAAAAAAbQAAAAADZwAAAAADTQAAAAABZwAAAAADMAAAAAAATQAAAAACbQAAAAAAbQAAAAADbQAAAAACdAAAAAABdAAAAAADdAAAAAABbQAAAAABbQAAAAADbQAAAAABegAAAAAAbQAAAAAAZwAAAAAATQAAAAABZwAAAAADMAAAAAAATQAAAAACbQAAAAABbQAAAAADbQAAAAACdAAAAAABdAAAAAADdAAAAAABbQAAAAACbQAAAAACbQAAAAAAegAAAAAAbQAAAAABZwAAAAAATQAAAAABZwAAAAACMAAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACdAAAAAAAdAAAAAACdAAAAAACdAAAAAADbQAAAAABbQAAAAAAegAAAAAAbQAAAAABZwAAAAAATQAAAAAAZwAAAAADMAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAACdAAAAAAAdAAAAAABdAAAAAADbQAAAAADbQAAAAAAbQAAAAADegAAAAAAbQAAAAAAZwAAAAAATQAAAAABZwAAAAADMAAAAAAATQAAAAACbQAAAAABbQAAAAADbQAAAAABdAAAAAADdAAAAAACdAAAAAADbQAAAAACbQAAAAAAbQAAAAADegAAAAAATQAAAAACZwAAAAABTQAAAAACZwAAAAACMAAAAAAATQAAAAAAbQAAAAACbQAAAAACbQAAAAABdAAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAegAAAAAAbQAAAAADZwAAAAABZwAAAAAAZwAAAAACMAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAADdAAAAAADdAAAAAAAdAAAAAABdAAAAAADdAAAAAADdAAAAAABegAAAAAAbQAAAAAATQAAAAABTQAAAAACTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADdAAAAAADdAAAAAADdAAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAAAegAAAAAAdAAAAAABdAAAAAACdAAAAAACegAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACdAAAAAABTQAAAAADdAAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAAAegAAAAAAdAAAAAADdAAAAAACdAAAAAADegAAAAAAbQAAAAACbQAAAAAATQAAAAAATQAAAAACdAAAAAABTQAAAAAAdAAAAAABbQAAAAACbQAAAAABbQAAAAABbQAAAAABegAAAAAAdAAAAAAAdAAAAAAAdAAAAAACegAAAAAAbQAAAAABbQAAAAADTQAAAAADTQAAAAAA
+ tiles: VwAAAAACVwAAAAACVwAAAAAATwAAAAACawAAAAACTwAAAAACawAAAAAAawAAAAACawAAAAACawAAAAADawAAAAADawAAAAABawAAAAADawAAAAADawAAAAABawAAAAAATwAAAAACVwAAAAADTwAAAAACTwAAAAAAawAAAAACTwAAAAABawAAAAACawAAAAABawAAAAABawAAAAABawAAAAABawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAACTwAAAAACTwAAAAAATwAAAAABawAAAAABawAAAAAAUAAAAAAAXgAAAAADXgAAAAABfwAAAAAATwAAAAACfwAAAAAAXgAAAAACXgAAAAADXgAAAAAAfwAAAAAAXgAAAAADawAAAAAATwAAAAACawAAAAAAawAAAAADawAAAAAAfwAAAAAATwAAAAABTwAAAAABfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADfwAAAAAAfwAAAAAAawAAAAADTwAAAAADawAAAAADMgAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAABeAAAAAACcQAAAAADcQAAAAADcQAAAAACTwAAAAABTwAAAAABfwAAAAAAcQAAAAACawAAAAADTwAAAAADawAAAAABMgAAAAAATwAAAAACcgAAAAADcgAAAAAAcgAAAAABeAAAAAACcQAAAAACcQAAAAADcQAAAAADcgAAAAACcgAAAAABfwAAAAAAcQAAAAAAawAAAAACTwAAAAADawAAAAAAMgAAAAAATwAAAAADcgAAAAADcgAAAAAAcgAAAAAATwAAAAABcQAAAAADcQAAAAACcQAAAAABcgAAAAAAcgAAAAADfwAAAAAAcQAAAAACawAAAAAATwAAAAABawAAAAABMgAAAAAAcQAAAAADcQAAAAAAcQAAAAADcQAAAAADeAAAAAACcQAAAAABcQAAAAADTwAAAAADcgAAAAABcgAAAAABfwAAAAAAcQAAAAACawAAAAACTwAAAAADawAAAAADMgAAAAAAcQAAAAADcgAAAAABcgAAAAACcgAAAAADeAAAAAACcQAAAAACcQAAAAACcQAAAAAAcgAAAAABcgAAAAAAfwAAAAAAcQAAAAACawAAAAAATwAAAAAAawAAAAADMgAAAAAATwAAAAABcgAAAAABcgAAAAACcgAAAAADeAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAACfwAAAAAATwAAAAADawAAAAADTwAAAAACawAAAAACMgAAAAAATwAAAAABcgAAAAADcgAAAAAAcgAAAAAATwAAAAABcQAAAAADcQAAAAADcQAAAAAAcQAAAAACcQAAAAACfwAAAAAAcgAAAAABawAAAAABawAAAAADawAAAAAAMgAAAAAAcQAAAAADcgAAAAACcgAAAAACcgAAAAABeAAAAAABcQAAAAACcQAAAAABcQAAAAABcQAAAAACcQAAAAACfwAAAAAAcgAAAAAATwAAAAADTwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAABcQAAAAADcQAAAAADcQAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAfwAAAAAAcQAAAAACcQAAAAAAcQAAAAADfwAAAAAAcgAAAAABcgAAAAAAcgAAAAADcgAAAAACcQAAAAAAcQAAAAACcQAAAAAAewAAAAACewAAAAACewAAAAADewAAAAABfwAAAAAAcQAAAAABcQAAAAABcQAAAAABTwAAAAAAcgAAAAADcgAAAAABcgAAAAABcgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAAAfwAAAAAAcQAAAAACcQAAAAADcQAAAAADfwAAAAAAcgAAAAABcgAAAAACcgAAAAACcgAAAAAB
version: 6
-1,-1:
ind: -1,-1
- tiles: ZwAAAAADZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAACTQAAAAADZwAAAAADTQAAAAACZwAAAAAAZwAAAAABZwAAAAACZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAABZwAAAAABZwAAAAADZwAAAAADTQAAAAACZwAAAAADTQAAAAAAWgAAAAACDAAAAAAADAAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAABTgAAAAAAWgAAAAABTQAAAAABTQAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAABegAAAAAAWgAAAAABWgAAAAAAdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAACegAAAAAAeAAAAAACeAAAAAAAeAAAAAAAeAAAAAAAegAAAAAAegAAAAAAMAAAAAAAdwAAAAADdwAAAAAAdwAAAAADegAAAAAAeAAAAAAAeAAAAAACeAAAAAACeAAAAAAAegAAAAAAeAAAAAABeAAAAAABeAAAAAAAeAAAAAABeAAAAAADegAAAAAAMAAAAAAAdwAAAAADdwAAAAAAdwAAAAACegAAAAAAeAAAAAABeAAAAAABeAAAAAADeAAAAAABegAAAAAAeAAAAAABeAAAAAACeAAAAAABeAAAAAABeAAAAAABegAAAAAAMAAAAAAAdwAAAAADdwAAAAADdwAAAAADegAAAAAAeAAAAAADeAAAAAADeAAAAAAAeAAAAAADTgAAAAAAeAAAAAACeAAAAAADeAAAAAACeAAAAAACeAAAAAAAegAAAAAAMAAAAAAAdwAAAAABdwAAAAABdwAAAAACegAAAAAAeAAAAAABeAAAAAADeAAAAAADeAAAAAADTgAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAACeAAAAAACTQAAAAABMAAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATQAAAAADegAAAAAATQAAAAABegAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAADdwAAAAADTQAAAAADMAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAADTQAAAAAAMAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAegAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAADegAAAAAATQAAAAAATQAAAAACTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAdAAAAAAAdAAAAAABTgAAAAAAdwAAAAABdwAAAAACdwAAAAABdwAAAAACdwAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAdAAAAAAAdAAAAAADTQAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACagAAAAAAagAAAAAAagAAAAAAegAAAAAAdAAAAAABdAAAAAABTgAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAADdwAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAAA
+ tiles: awAAAAAAawAAAAACawAAAAABawAAAAACawAAAAACawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAAATwAAAAACawAAAAABTwAAAAABawAAAAABawAAAAAAawAAAAAAawAAAAADawAAAAAAawAAAAAAawAAAAACawAAAAABawAAAAACawAAAAACawAAAAADawAAAAAAawAAAAACTwAAAAACawAAAAACTwAAAAABXgAAAAACDAAAAAABDAAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAADUAAAAAAAawAAAAACawAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAABfwAAAAAAawAAAAACawAAAAAAIQAAAAACIQAAAAAAIQAAAAADfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAABfwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAIQAAAAABIQAAAAAAIQAAAAADfwAAAAAAfQAAAAACfQAAAAADfQAAAAAAfQAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfQAAAAAAfQAAAAAAfwAAAAAAMgAAAAAAIQAAAAACIQAAAAACIQAAAAABfwAAAAAAUAAAAAAAfQAAAAACfQAAAAAAfQAAAAABfwAAAAAAfQAAAAADfQAAAAACfQAAAAACfQAAAAAAfQAAAAADfwAAAAAAMgAAAAAAIQAAAAADIQAAAAABIQAAAAAAfwAAAAAAUAAAAAAAfQAAAAAAfQAAAAACfQAAAAABUAAAAAAAfQAAAAABfQAAAAACfQAAAAADfQAAAAABfQAAAAACfwAAAAAAMgAAAAAAIQAAAAACIQAAAAABIQAAAAADfwAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAACUAAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAABfQAAAAACTwAAAAAAMgAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAACfwAAAAAATwAAAAAAfwAAAAAAfQAAAAACfQAAAAACfQAAAAABfQAAAAABfQAAAAACTwAAAAAAMgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAQQAAAAAAcQAAAAAAcQAAAAABfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAADfQAAAAACfQAAAAAATwAAAAACMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQQAAAAAAcQAAAAABcQAAAAACfwAAAAAAfQAAAAABfQAAAAABfQAAAAADfQAAAAABfQAAAAABfQAAAAAAfQAAAAAAfwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcQAAAAAAcQAAAAAAfwAAAAAATwAAAAABTwAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAcQAAAAAAcQAAAAADTwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAADewAAAAAAewAAAAABewAAAAABewAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAcQAAAAAAcQAAAAABTwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAABewAAAAABewAAAAACewAAAAAAewAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAcQAAAAABcQAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAAD
version: 6
-1,0:
ind: -1,0
- tiles: TQAAAAADTQAAAAACTQAAAAABegAAAAAAdAAAAAACdAAAAAABegAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAAAegAAAAAAbQAAAAABbQAAAAADbQAAAAADbQAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAABdAAAAAAATQAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAACdAAAAAACdAAAAAAAdAAAAAABdAAAAAAATQAAAAACTQAAAAADTQAAAAABTQAAAAADdAAAAAADdAAAAAADdAAAAAAATgAAAAAAdAAAAAACTQAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAADTQAAAAADTQAAAAAATQAAAAACdAAAAAADdAAAAAABdAAAAAACdAAAAAACdAAAAAABdAAAAAADTQAAAAABdAAAAAADdAAAAAACdAAAAAABdAAAAAACdAAAAAABdAAAAAADdAAAAAABdAAAAAACTQAAAAABTQAAAAABbQAAAAABTgAAAAAAegAAAAAAdAAAAAACdAAAAAAAegAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAACegAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAAAegAAAAAAdAAAAAACdAAAAAADTgAAAAAAdwAAAAACdwAAAAABdwAAAAABdwAAAAACdwAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAADbQAAAAABbQAAAAABegAAAAAAdAAAAAACdAAAAAADTQAAAAADdwAAAAABdwAAAAABdwAAAAABdwAAAAABdwAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAADegAAAAAAdAAAAAAAdAAAAAABTgAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAABdwAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAdAAAAAADdAAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAdAAAAAAAdAAAAAACegAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAABegAAAAAAMAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAdAAAAAACdAAAAAACegAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAAAegAAAAAAMAAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAdAAAAAAAdAAAAAADegAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAABTgAAAAAAMAAAAAAAdAAAAAADdAAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAADTQAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAACTgAAAAAAMAAAAAAAdAAAAAAAdAAAAAACTQAAAAACTQAAAAADTQAAAAACdAAAAAACTQAAAAADDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAACDgAAAAABTgAAAAAAMAAAAAAAegAAAAAAdAAAAAABTQAAAAAATQAAAAAATQAAAAADdAAAAAADTQAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAAADgAAAAAATgAAAAAAMAAAAAAAegAAAAAAdAAAAAACTQAAAAAATQAAAAADTQAAAAAAdAAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAACegAAAAAADgAAAAABDgAAAAACDgAAAAADegAAAAAAMAAAAAAA
+ tiles: TwAAAAAATwAAAAABTwAAAAADfwAAAAAAcQAAAAACcQAAAAACfwAAAAAAcQAAAAABTwAAAAACTwAAAAACcQAAAAACcQAAAAABewAAAAABewAAAAABewAAAAAAewAAAAACcQAAAAADcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAABcQAAAAABTwAAAAAAcQAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAACcQAAAAABcQAAAAABcQAAAAACcQAAAAADcQAAAAACcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAADTwAAAAACcQAAAAACcQAAAAABcQAAAAABcQAAAAADcQAAAAABcQAAAAABcQAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAAAcQAAAAACcQAAAAABcQAAAAACTwAAAAABcQAAAAABcQAAAAABcQAAAAADcQAAAAADTwAAAAABTwAAAAADTwAAAAACfwAAAAAAcQAAAAAAcQAAAAACfwAAAAAAcQAAAAABcQAAAAADcQAAAAADcQAAAAADTwAAAAACewAAAAADewAAAAAAewAAAAABewAAAAACcgAAAAABcgAAAAADcgAAAAAAfwAAAAAAcQAAAAACcQAAAAACUAAAAAAAcgAAAAACcgAAAAADcgAAAAABcgAAAAABTwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAABcgAAAAACcgAAAAADcgAAAAACfwAAAAAAcQAAAAABcQAAAAAATwAAAAAAcgAAAAABcgAAAAADcgAAAAADcgAAAAABTwAAAAACewAAAAADewAAAAABewAAAAADewAAAAADcgAAAAADcgAAAAACcgAAAAADfwAAAAAAcQAAAAABcQAAAAABUAAAAAAAcgAAAAABcgAAAAAAcgAAAAADcgAAAAADTwAAAAADewAAAAAAewAAAAADewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADeAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAcQAAAAADcQAAAAABfwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAADDgAAAAADfwAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAcQAAAAABcQAAAAABfwAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAAfwAAAAAAMgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAcQAAAAABcQAAAAAAfwAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAAADgAAAAADUAAAAAAAMgAAAAAAcQAAAAABcQAAAAADcQAAAAACcQAAAAAAcQAAAAABcQAAAAABTwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAADUAAAAAAAMgAAAAAAcQAAAAACcQAAAAAATwAAAAABTwAAAAABTwAAAAADcQAAAAADTwAAAAAADgAAAAABDgAAAAABDgAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACUAAAAAAAMgAAAAAAfwAAAAAAcQAAAAAATwAAAAADTwAAAAAATwAAAAAAcQAAAAABTwAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAACDgAAAAABUAAAAAAAMgAAAAAAfwAAAAAAcQAAAAABTwAAAAADTwAAAAABTwAAAAADcQAAAAABfwAAAAAADgAAAAADDgAAAAACDgAAAAAAfwAAAAAADgAAAAACDgAAAAACDgAAAAABfwAAAAAAMgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: bQAAAAABegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAADWgAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAPwAAAAAAPwAAAAAAbQAAAAADbQAAAAAATgAAAAAAWgAAAAABWgAAAAABWgAAAAACWgAAAAADTQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAegAAAAAAPwAAAAAAPwAAAAAAbQAAAAABbQAAAAACTgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAACTQAAAAABagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAegAAAAAAPwAAAAAAPwAAAAAAbQAAAAAAbQAAAAADTgAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAPwAAAAAAPwAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADdAAAAAAAdAAAAAADdAAAAAACdAAAAAABdAAAAAACdAAAAAAAdAAAAAAAdAAAAAADdAAAAAADdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAADdAAAAAABTQAAAAAATQAAAAADTQAAAAADTQAAAAACdAAAAAAAdAAAAAABegAAAAAAdAAAAAACdAAAAAADTQAAAAACTQAAAAACTQAAAAAATQAAAAABdAAAAAABdAAAAAADdAAAAAADdAAAAAAAdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAADdAAAAAACdAAAAAACdAAAAAABdAAAAAADegAAAAAATQAAAAAATQAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAawAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAZwAAAAABWgAAAAACWgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAACWgAAAAAAZwAAAAACWgAAAAACWgAAAAAAawAAAAACagAAAAAAagAAAAAAawAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAAAWgAAAAAAZwAAAAAAWgAAAAABWgAAAAADawAAAAAAawAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAABWgAAAAAAZwAAAAABWgAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAACWgAAAAABZwAAAAACWgAAAAADWgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAAA
+ tiles: cgAAAAABcgAAAAABfwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADUAAAAAAAUAAAAAAAcgAAAAACcgAAAAACUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAUAAAAAAAVAAAAAADVAAAAAACVAAAAAADUAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAcgAAAAACcgAAAAAAUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAUAAAAAAAUAAAAAAAVAAAAAADVAAAAAACVAAAAAACUAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAcgAAAAABcgAAAAACUAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAAVAAAAAADTwAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAADcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADcQAAAAABVAAAAAADTwAAAAACcQAAAAADcQAAAAABcQAAAAABcQAAAAADcQAAAAACcQAAAAABcQAAAAABcQAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAABcQAAAAADcQAAAAABVAAAAAABTwAAAAAAcQAAAAACcQAAAAADcQAAAAADcQAAAAADcQAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABcQAAAAACcQAAAAAAVAAAAAADTwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABdAAAAAADcgAAAAAAdAAAAAABVAAAAAAAewAAAAAAewAAAAABbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAewAAAAADewAAAAACdAAAAAAAcgAAAAACdAAAAAABVAAAAAAAewAAAAADewAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAewAAAAACewAAAAADdAAAAAADcgAAAAADdAAAAAABVAAAAAABewAAAAAAewAAAAABXgAAAAABawAAAAACXgAAAAAAawAAAAAAXgAAAAABXgAAAAAAbgAAAAAAbgAAAAAAcgAAAAACcgAAAAACdAAAAAACcgAAAAAAdAAAAAABVAAAAAACewAAAAACewAAAAAAXgAAAAACawAAAAADXgAAAAACawAAAAADXgAAAAABXgAAAAACbgAAAAAAbwAAAAADdAAAAAADdAAAAAADdAAAAAADcgAAAAADdAAAAAAAVAAAAAADewAAAAADewAAAAAAXgAAAAADawAAAAABXgAAAAADawAAAAABXgAAAAADXgAAAAAAbgAAAAAAbgAAAAAAcgAAAAACcgAAAAABcgAAAAACcgAAAAACdAAAAAACVAAAAAABewAAAAACewAAAAAAXgAAAAADawAAAAABXgAAAAACawAAAAACXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAdAAAAAAAdAAAAAADdAAAAAAAcgAAAAACdAAAAAACVAAAAAABewAAAAAAewAAAAADXgAAAAADawAAAAADXgAAAAACawAAAAADXgAAAAAAXgAAAAABXgAAAAACXgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: ZwAAAAADZwAAAAABZwAAAAACZwAAAAACZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAABZwAAAAADZwAAAAADZwAAAAABZwAAAAAAZwAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAADegAAAAAAZwAAAAACZwAAAAACZwAAAAABZwAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAABZwAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAACegAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABTQAAAAAATQAAAAADegAAAAAATQAAAAACTQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAAAegAAAAAAegAAAAAAdAAAAAADdAAAAAABbQAAAAADdAAAAAABdAAAAAAAbQAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATQAAAAABTQAAAAADbQAAAAACTQAAAAABTQAAAAABbQAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAACPwAAAAAATQAAAAADTQAAAAADbQAAAAAATQAAAAAATQAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAATQAAAAAATQAAAAADTQAAAAAATQAAAAABPwAAAAAATQAAAAAATQAAAAADbQAAAAABTQAAAAADTQAAAAACbQAAAAABegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAATQAAAAABTQAAAAAATQAAAAACTQAAAAACPwAAAAAAdAAAAAABdAAAAAAAbQAAAAACdAAAAAAAdAAAAAADbQAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAATQAAAAABTQAAAAADTQAAAAACTQAAAAACPwAAAAAAbQAAAAABbQAAAAABegAAAAAAbQAAAAAAbQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAATQAAAAACTQAAAAABTQAAAAACTQAAAAABPwAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAACegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAATQAAAAABTQAAAAADTQAAAAADTQAAAAAAPwAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAACTQAAAAABbQAAAAACegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAATQAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAADbQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAATQAAAAAATQAAAAABbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAADbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAABegAAAAAAPwAAAAAAPwAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAAATQAAAAACPwAAAAAAPwAAAAAAbQAAAAADbQAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAA
+ tiles: awAAAAAAawAAAAADawAAAAADawAAAAABawAAAAABawAAAAABTwAAAAAAawAAAAAAawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAAAawAAAAACfwAAAAAAawAAAAACawAAAAAAawAAAAABawAAAAADawAAAAAAawAAAAACawAAAAABawAAAAABawAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAABfwAAAAAAJQAAAAADJQAAAAADJQAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACXgAAAAABXgAAAAABTwAAAAADTwAAAAAAfwAAAAAATwAAAAADTwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAcQAAAAADcQAAAAADcQAAAAAAcQAAAAADcQAAAAAAcQAAAAACfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAAAZwAAAAABcQAAAAABcQAAAAABcQAAAAADcQAAAAACcQAAAAACcQAAAAACfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAABZwAAAAABZwAAAAADcQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAABZwAAAAADZwAAAAACZwAAAAAAZwAAAAAAcQAAAAABcQAAAAABcQAAAAADcQAAAAACcQAAAAAAcQAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAADZwAAAAABcQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAABcQAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAABcQAAAAADcQAAAAADfwAAAAAAcQAAAAADcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAZwAAAAADZwAAAAADZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACcgAAAAABcgAAAAACcgAAAAABcgAAAAAAcgAAAAADcgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAADZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAADcgAAAAADcgAAAAACcgAAAAABcgAAAAACcgAAAAACcgAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAADZwAAAAADZwAAAAABcgAAAAAAcgAAAAAAcgAAAAABcgAAAAAAcgAAAAADcgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAcQAAAAABcQAAAAADfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAAcgAAAAAAcgAAAAACcgAAAAABcgAAAAABcgAAAAAAcgAAAAABcgAAAAAAcgAAAAAAcgAAAAABcgAAAAABcgAAAAAAcgAAAAADcgAAAAABfwAAAAAAVAAAAAADVAAAAAAAcgAAAAABcgAAAAABcgAAAAADcgAAAAACcgAAAAACcgAAAAACcgAAAAACcgAAAAACcgAAAAAAcgAAAAABcgAAAAABcgAAAAACcgAAAAACTwAAAAAAVAAAAAACVAAAAAABcgAAAAADcgAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAAAVAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADAAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAABWgAAAAABegAAAAAAegAAAAAAawAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAADAAAAAAADAAAAAABTQAAAAAAWgAAAAABTQAAAAAATQAAAAABWgAAAAABegAAAAAAegAAAAAAawAAAAADegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAADAAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAADTgAAAAAAegAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAAATgAAAAAATQAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAADegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACegAAAAAAegAAAAAAawAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADAAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAADAAAAAACTgAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADAAAAAABTgAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAMAAAAAAAMAAAAAAADAAAAAADTgAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAADAAAAAABegAAAAAATQAAAAAATQAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAATgAAAAAAaQAAAAAATgAAAAAAMAAAAAAAMAAAAAAADAAAAAADegAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAADAAAAAAADAAAAAAAegAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAADAAAAAACfwAAAAAAUAAAAAAATwAAAAACTwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAABDAAAAAACTwAAAAACUAAAAAAATwAAAAABTwAAAAABUAAAAAAATwAAAAABfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAADfwAAAAAAfwAAAAAAUAAAAAAATwAAAAADTwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAATwAAAAAATwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAADUAAAAAAAfwAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAABUAAAAAAATwAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAABTwAAAAABfwAAAAAAbwAAAAACfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAADAAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAACfwAAAAAATwAAAAABTwAAAAADfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAADAAAAAABfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAAATwAAAAACTwAAAAABTwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: ZwAAAAACZwAAAAADZwAAAAABZwAAAAACZwAAAAAAZwAAAAABZwAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAABZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAADWgAAAAADegAAAAAADAAAAAAADAAAAAABDAAAAAAAegAAAAAAWgAAAAAAWgAAAAACZwAAAAABWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAADAAAAAAADAAAAAADMAAAAAAATgAAAAAAWgAAAAAATQAAAAACTQAAAAACTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABMAAAAAAAMAAAAAAATgAAAAAAWgAAAAACTQAAAAABTQAAAAABFgAAAAAAFgAAAAAAFgAAAAAATQAAAAABDAAAAAADegAAAAAAegAAAAAAawAAAAABegAAAAAADAAAAAADMAAAAAAAMAAAAAAAegAAAAAAWgAAAAAAWgAAAAACWgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAATQAAAAACDAAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAADAAAAAACDAAAAAACMAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACDAAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAADFgAAAAAAFgAAAAAAFgAAAAAATQAAAAADDAAAAAACegAAAAAAegAAAAAAawAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAMAAAAAAADAAAAAADFgAAAAAAFgAAAAAAFgAAAAAATQAAAAAADAAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAADAAAAAAAegAAAAAAdgAAAAADdgAAAAADTQAAAAACDAAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAFgAAAAAAFgAAAAAAFgAAAAAATQAAAAAADAAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAATQAAAAABDAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAMAAAAAAATgAAAAAATQAAAAADWgAAAAADWgAAAAABWgAAAAABWgAAAAABTQAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAMAAAAAAATgAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAMAAAAAAAegAAAAAA
+ tiles: awAAAAABawAAAAACawAAAAACawAAAAABawAAAAABawAAAAABawAAAAABXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAADawAAAAABawAAAAABawAAAAABXgAAAAACfwAAAAAADAAAAAADDAAAAAADDAAAAAACfwAAAAAAXgAAAAADXgAAAAACawAAAAADXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAABXgAAAAACfwAAAAAADAAAAAAADAAAAAADMgAAAAAAUAAAAAAAXgAAAAACTwAAAAABTwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAABDAAAAAAAMgAAAAAAUAAAAAAAXgAAAAACTwAAAAABTwAAAAACGAAAAAAAGAAAAAAAGAAAAAAATwAAAAAADAAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAADAAAAAAADAAAAAADMgAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADGAAAAAAAGAAAAAAAGAAAAAAATwAAAAABDAAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAADAAAAAAADAAAAAACMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADDAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAABGAAAAAAAGAAAAAAAGAAAAAAATwAAAAABDAAAAAADfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAADAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAATwAAAAAADAAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAADAAAAAAAfwAAAAAAegAAAAACegAAAAABTwAAAAAADAAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAATwAAAAACDAAAAAABfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAATwAAAAABDAAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAAATwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: egAAAAAAdAAAAAADdAAAAAAAdAAAAAADdAAAAAACdAAAAAADegAAAAAADgAAAAAADgAAAAACDgAAAAADegAAAAAADgAAAAAADgAAAAADegAAAAAAegAAAAAAMAAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAACegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAADegAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAACWgAAAAADWgAAAAACTgAAAAAAWgAAAAADTQAAAAAAWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAACZwAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAAATQAAAAABZwAAAAAATQAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAACZwAAAAABZwAAAAABZwAAAAACZwAAAAACZwAAAAACZwAAAAACZwAAAAACZwAAAAACZwAAAAABTQAAAAAAZwAAAAABTQAAAAAAZwAAAAABZwAAAAADZwAAAAACZwAAAAACZwAAAAABZwAAAAACZwAAAAACWgAAAAAAWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAACTgAAAAAAWgAAAAACTQAAAAACWgAAAAABWgAAAAABWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAADTQAAAAACTQAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAegAAAAAAWgAAAAABWgAAAAAAHgAAAAABHgAAAAADHgAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAADTgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAAAegAAAAAAawAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAADegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACegAAAAAAawAAAAADagAAAAAAegAAAAAATQAAAAABTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADegAAAAAAagAAAAAAawAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACDgAAAAADDgAAAAADDgAAAAACegAAAAAAHgAAAAACHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACDgAAAAAADgAAAAACDgAAAAABTQAAAAACHgAAAAAAHgAAAAABHgAAAAADTQAAAAADegAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAADDgAAAAABDgAAAAADDgAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAABHgAAAAACHgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAA
+ tiles: fwAAAAAAcQAAAAACcQAAAAACcQAAAAAAcQAAAAAAcQAAAAACfwAAAAAADgAAAAAADgAAAAACDgAAAAADfwAAAAAADgAAAAADDgAAAAACfwAAAAAAfwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAfwAAAAAATwAAAAABTwAAAAACTwAAAAAATwAAAAACTwAAAAAAfwAAAAAAXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAABUAAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAACawAAAAADawAAAAABawAAAAACawAAAAAAawAAAAACTwAAAAACawAAAAADTwAAAAACawAAAAABawAAAAACawAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAADawAAAAACawAAAAACawAAAAACawAAAAACawAAAAADawAAAAACTwAAAAACawAAAAADTwAAAAACawAAAAADawAAAAACawAAAAADawAAAAABawAAAAADawAAAAACawAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAUAAAAAAAXgAAAAABTwAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAABfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADTwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAIQAAAAABIQAAAAAAIQAAAAADIQAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAAAIAAAAAABIAAAAAAAIAAAAAABUAAAAAAAIQAAAAAAIQAAAAAAIQAAAAABIQAAAAABIQAAAAABIQAAAAACIQAAAAABIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABUAAAAAAAIQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAACIQAAAAADfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAACfwAAAAAAIQAAAAABIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAACIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAADIQAAAAAAIQAAAAADfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAIQAAAAABIQAAAAADIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAAATwAAAAACIQAAAAABIQAAAAAAIQAAAAADTwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIQAAAAADIQAAAAABIQAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAACDgAAAAABUAAAAAAAIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: ZwAAAAABTQAAAAADZwAAAAAAMAAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAABegAAAAAAagAAAAAAZwAAAAACTQAAAAAAZwAAAAABWgAAAAABWgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAABTQAAAAABWgAAAAAATgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACegAAAAAAZwAAAAAAZwAAAAABZwAAAAACTQAAAAAAZwAAAAABTQAAAAACZwAAAAABZwAAAAABZwAAAAACZwAAAAAAZwAAAAAAZwAAAAABZwAAAAABZwAAAAAAZwAAAAACZwAAAAAAZwAAAAACZwAAAAADZwAAAAABTQAAAAABZwAAAAACTQAAAAAAZwAAAAABZwAAAAACZwAAAAACTQAAAAACZwAAAAADZwAAAAADZwAAAAADZwAAAAADZwAAAAADZwAAAAABZwAAAAAAZwAAAAACZwAAAAADTQAAAAADWgAAAAABTgAAAAAAWgAAAAACWgAAAAAAZwAAAAAATQAAAAABZwAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAACTQAAAAACTQAAAAACTQAAAAACTQAAAAADWgAAAAACegAAAAAATgAAAAAAWgAAAAAAZwAAAAABZwAAAAADZwAAAAABWgAAAAADTgAAAAAAegAAAAAAWgAAAAABegAAAAAAZwAAAAABZwAAAAADZwAAAAACWgAAAAADWgAAAAABegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAABdwAAAAADMAAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAADTQAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAADMAAAAAAAMAAAAAAAegAAAAAAWgAAAAABWgAAAAABWgAAAAAAegAAAAAAMAAAAAAAMAAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAADdwAAAAADdwAAAAACdwAAAAABMAAAAAAAMAAAAAAAegAAAAAAWgAAAAADTQAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAADTgAAAAAATgAAAAAAegAAAAAATgAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAWgAAAAABTQAAAAAAWgAAAAABTgAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAAAdwAAAAACdwAAAAADdwAAAAAAegAAAAAAWgAAAAAATQAAAAADWgAAAAAATgAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAAdwAAAAABdwAAAAABdwAAAAAAdwAAAAABegAAAAAAWgAAAAADTQAAAAACWgAAAAACTgAAAAAAdwAAAAABdwAAAAADdwAAAAACdwAAAAAAdwAAAAABdwAAAAACTQAAAAABdwAAAAAAdwAAAAACdwAAAAADdwAAAAAATQAAAAACWgAAAAAAWgAAAAABWgAAAAAATgAAAAAAdwAAAAACdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAWgAAAAADWgAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: awAAAAAATwAAAAAAawAAAAACMgAAAAAATwAAAAABewAAAAAAewAAAAAAVAAAAAACdAAAAAADcgAAAAADdAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAATwAAAAADawAAAAACXgAAAAACdAAAAAADQQAAAAAAQQAAAAAAQQAAAAAAVAAAAAABVAAAAAACVAAAAAABfwAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAATwAAAAABTwAAAAABTwAAAAABXgAAAAADXgAAAAAAUAAAAAAAXgAAAAADXgAAAAADTwAAAAACTwAAAAADTwAAAAACfwAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAATwAAAAAAVwAAAAABTwAAAAABTwAAAAABawAAAAADTwAAAAACawAAAAAAawAAAAACawAAAAACawAAAAADawAAAAABawAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAADVwAAAAABVwAAAAACVwAAAAABTwAAAAABawAAAAADTwAAAAAAawAAAAADawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAADTwAAAAABVwAAAAAATwAAAAACTwAAAAAAXgAAAAADUAAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAABXgAAAAABXgAAAAACTwAAAAABTwAAAAADTwAAAAABXgAAAAADXgAAAAABfwAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADUAAAAAAAfwAAAAAAXgAAAAADfwAAAAAAawAAAAABawAAAAAAawAAAAADXgAAAAABXgAAAAABfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAADMgAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAACewAAAAADewAAAAABewAAAAACewAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAACawAAAAACXgAAAAACfwAAAAAAMgAAAAAAMgAAAAAAewAAAAACewAAAAABewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAADawAAAAABXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABawAAAAADXgAAAAACUAAAAAAAewAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAADfwAAAAAAewAAAAADewAAAAACewAAAAABewAAAAABfwAAAAAAXgAAAAADawAAAAABXgAAAAACUAAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAADewAAAAACewAAAAADfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAAAfwAAAAAAXgAAAAADawAAAAADXgAAAAADUAAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAADewAAAAAAewAAAAABTwAAAAADewAAAAACewAAAAABewAAAAACewAAAAABTwAAAAAAXgAAAAACawAAAAADXgAAAAACUAAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAADewAAAAAAewAAAAABfwAAAAAAewAAAAACewAAAAACewAAAAACewAAAAACfwAAAAAAXgAAAAACawAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: agAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAACWgAAAAAAZwAAAAABWgAAAAADWgAAAAABegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAABdwAAAAABegAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAACWgAAAAABJwAAAAADJwAAAAADJwAAAAACWgAAAAADWgAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAABZwAAAAADZwAAAAACZwAAAAABZwAAAAABZwAAAAACZwAAAAADZwAAAAAAZwAAAAABZwAAAAACZwAAAAABZwAAAAADZwAAAAAAZwAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADZwAAAAACZwAAAAACZwAAAAACZwAAAAACWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABJQAAAAADJQAAAAAAJQAAAAABJQAAAAACJQAAAAACWgAAAAADegAAAAAATQAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADTgAAAAAATQAAAAADTQAAAAADTQAAAAAATQAAAAAATgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAABJQAAAAACTgAAAAAATQAAAAADaQAAAAAAaQAAAAAATQAAAAABTgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAATQAAAAADTgAAAAAATQAAAAABaQAAAAAAaQAAAAAATQAAAAADTgAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAADJQAAAAAAJQAAAAAATgAAAAAATQAAAAADaQAAAAAAaQAAAAAATQAAAAACTgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAABJQAAAAACTgAAAAAATQAAAAAAaQAAAAAAaQAAAAAATQAAAAABTgAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAACJQAAAAACTgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAACTgAAAAAATQAAAAAAawAAAAABegAAAAAAegAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAATgAAAAAATgAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAADJQAAAAAAJQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: fwAAAAAAfwAAAAAAdAAAAAABcgAAAAADdAAAAAADVAAAAAABewAAAAAAewAAAAADXgAAAAACawAAAAAAXgAAAAADawAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADVAAAAAACfwAAAAAAVAAAAAADVAAAAAACVAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAVAAAAAADfwAAAAAATwAAAAADTwAAAAABTwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAACTwAAAAABawAAAAACawAAAAACawAAAAACawAAAAABawAAAAACawAAAAACawAAAAACawAAAAAAawAAAAACawAAAAADawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAACawAAAAACawAAAAABawAAAAABawAAAAABawAAAAABawAAAAAAawAAAAACawAAAAABawAAAAACawAAAAADawAAAAACawAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADJwAAAAACJwAAAAACJwAAAAAAJwAAAAACJwAAAAAAXgAAAAACfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAABJwAAAAACJwAAAAADUAAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAJwAAAAACJwAAAAAAJwAAAAACJwAAAAABJwAAAAABJwAAAAACUAAAAAAATwAAAAADbQAAAAAAbQAAAAAATwAAAAABUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAADXgAAAAACfwAAAAAATwAAAAACUAAAAAAATwAAAAADbQAAAAAAbQAAAAAATwAAAAADUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAJwAAAAADJwAAAAACJwAAAAACJwAAAAADJwAAAAADJwAAAAADUAAAAAAATwAAAAACbQAAAAAAbQAAAAAATwAAAAADUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAJwAAAAACJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAADUAAAAAAATwAAAAAAbQAAAAAAbQAAAAAATwAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADJwAAAAACJwAAAAACJwAAAAABUAAAAAAATwAAAAADTwAAAAAATwAAAAAATwAAAAAAUAAAAAAATwAAAAADbwAAAAADfwAAAAAAfwAAAAAAJwAAAAACJwAAAAABJwAAAAACJwAAAAADJwAAAAAAJwAAAAAAUAAAAAAAUAAAAAAAbQAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAJwAAAAACJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: agAAAAAAegAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAADdwAAAAAAegAAAAAAdwAAAAADdwAAAAADegAAAAAAdwAAAAABdwAAAAABegAAAAAAdwAAAAABdwAAAAADegAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAWgAAAAABWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAACZwAAAAAAZwAAAAACZwAAAAADZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAACZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAADZwAAAAACZwAAAAAAZwAAAAABZwAAAAACWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAABWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAATQAAAAABTQAAAAADTQAAAAADegAAAAAATQAAAAAATQAAAAACTQAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADTQAAAAADTQAAAAACHgAAAAAAegAAAAAATQAAAAABTQAAAAABTQAAAAABegAAAAAATQAAAAADTQAAAAABTQAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAATQAAAAACTQAAAAAAHgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADTQAAAAAATQAAAAAAHgAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAegAAAAAATQAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACegAAAAAAHgAAAAACHgAAAAABTQAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAADTQAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAA
+ tiles: bgAAAAAAfwAAAAAAewAAAAADewAAAAABfwAAAAAAewAAAAACewAAAAAAfwAAAAAAewAAAAABewAAAAABfwAAAAAAewAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAABfwAAAAAAfwAAAAAATwAAAAAATwAAAAACfwAAAAAATwAAAAADTwAAAAABfwAAAAAATwAAAAAATwAAAAACfwAAAAAATwAAAAACTwAAAAAAfwAAAAAATwAAAAABTwAAAAADfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAABXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAABawAAAAABawAAAAABawAAAAAAawAAAAADawAAAAADawAAAAACawAAAAABawAAAAACawAAAAADawAAAAACawAAAAAAawAAAAABawAAAAADawAAAAABawAAAAABawAAAAACawAAAAACawAAAAABawAAAAADawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAABawAAAAAAawAAAAAAawAAAAADXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAADXgAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABTwAAAAAATwAAAAADIAAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABTwAAAAACTwAAAAABIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAABTwAAAAADTwAAAAACIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADIAAAAAACfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAACIAAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAADIAAAAAADTwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAACTwAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAACUAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAADTQAAAAACegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAdAAAAAAAdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAAAdAAAAAABdAAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAABdAAAAAACdAAAAAADawAAAAAATQAAAAAAdAAAAAAAdAAAAAACdAAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAACTQAAAAAATQAAAAACTQAAAAACTQAAAAABTQAAAAACawAAAAADegAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAACdAAAAAABdAAAAAAAdAAAAAABegAAAAAAegAAAAAATQAAAAACTQAAAAABTQAAAAAATQAAAAACTQAAAAACTQAAAAABTQAAAAABTQAAAAACTQAAAAACTQAAAAABTQAAAAAATQAAAAABTQAAAAAATQAAAAADMAAAAAAATgAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAADMAAAAAAATgAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADMAAAAAAATgAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAABdwAAAAACegAAAAAAdwAAAAABdwAAAAACegAAAAAAdwAAAAACdwAAAAADegAAAAAAdwAAAAADdwAAAAACagAAAAAAegAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAAAdwAAAAACegAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAAAdwAAAAADegAAAAAAdwAAAAABdwAAAAADagAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAATQAAAAAAegAAAAAAawAAAAAAegAAAAAAdAAAAAAAdAAAAAACdAAAAAACdAAAAAABdAAAAAADdAAAAAADdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAABdAAAAAADdAAAAAACagAAAAAAegAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAACdAAAAAADdAAAAAACdAAAAAABdAAAAAABdAAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAACdAAAAAADagAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAATQAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAdwAAAAADdwAAAAAAegAAAAAAdwAAAAADdwAAAAABegAAAAAAdwAAAAAAdwAAAAADegAAAAAAdwAAAAACdwAAAAAB
+ tiles: NAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAATwAAAAABbgAAAAAAfwAAAAAAbgAAAAAAeAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAACcQAAAAADcQAAAAABcQAAAAADNAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAcQAAAAAAcQAAAAADcQAAAAACcQAAAAAAcQAAAAABcQAAAAAAcQAAAAADNAAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAABbwAAAAABfwAAAAAAbgAAAAAAeAAAAAACcQAAAAAAcQAAAAACcQAAAAABcQAAAAABcQAAAAABcQAAAAADcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAADTwAAAAACTwAAAAABTwAAAAABTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABcQAAAAABcgAAAAABcgAAAAADcgAAAAAAcgAAAAABcgAAAAACcgAAAAADcgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAcQAAAAAAcgAAAAAAcgAAAAAAcgAAAAADcgAAAAABcgAAAAADcgAAAAACcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAACcgAAAAABcgAAAAAAcgAAAAAAcgAAAAACcgAAAAABcgAAAAAAcgAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAewAAAAAAewAAAAACfwAAAAAAewAAAAABewAAAAADfwAAAAAAewAAAAAAewAAAAAAfwAAAAAAewAAAAADewAAAAACfwAAAAAAewAAAAADewAAAAAAbgAAAAAAfwAAAAAAewAAAAACewAAAAABfwAAAAAAewAAAAADewAAAAADfwAAAAAAewAAAAABewAAAAACfwAAAAAAewAAAAABewAAAAADfwAAAAAAewAAAAABewAAAAACbgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAcQAAAAAAcQAAAAABcQAAAAACcQAAAAABcQAAAAAAcQAAAAAAcQAAAAABcQAAAAAAcQAAAAACcQAAAAACcQAAAAACcQAAAAACcQAAAAACcQAAAAADbgAAAAAAfwAAAAAAcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAABcQAAAAAAcQAAAAACcQAAAAAAcQAAAAADcQAAAAACcQAAAAACcQAAAAACcQAAAAACcQAAAAACbgAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAewAAAAABewAAAAAAfwAAAAAAewAAAAADewAAAAACfwAAAAAAewAAAAAAewAAAAADfwAAAAAAewAAAAACewAAAAAAfwAAAAAAewAAAAAAewAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: ZwAAAAABZwAAAAADZwAAAAACZwAAAAABZwAAAAABZwAAAAAAZwAAAAACZwAAAAACZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAADZwAAAAADZwAAAAACZwAAAAADZwAAAAACZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAABZwAAAAABZwAAAAACZwAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAAAZwAAAAACZwAAAAADWgAAAAACWgAAAAABMAAAAAAAMAAAAAAAWgAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAADDAAAAAAAWgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAABTQAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAADawAAAAACegAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAACdwAAAAACegAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAADdwAAAAABegAAAAAAdwAAAAACdwAAAAADagAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAADegAAAAAAdwAAAAAAdwAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADegAAAAAAdwAAAAACdwAAAAACagAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAADegAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAACdwAAAAADegAAAAAAdwAAAAAAdwAAAAAAawAAAAACegAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAABegAAAAAAegAAAAAATQAAAAADTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAawAAAAADawAAAAADegAAAAAAaQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAMAAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAMAAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAA
+ tiles: awAAAAACawAAAAADawAAAAACawAAAAAAawAAAAADawAAAAABawAAAAADawAAAAABawAAAAACawAAAAACawAAAAACawAAAAACawAAAAADawAAAAAAawAAAAACawAAAAACawAAAAACawAAAAADawAAAAACawAAAAACawAAAAADawAAAAACawAAAAAAawAAAAADawAAAAABawAAAAABawAAAAACawAAAAADawAAAAADawAAAAADawAAAAABawAAAAAAXgAAAAABXgAAAAABMgAAAAAAMgAAAAAAXgAAAAACDAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAACXgAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABbwAAAAABfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAADfwAAAAAAIQAAAAACIQAAAAAAbgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAACfwAAAAAAIQAAAAACIQAAAAABbgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAADfwAAAAAAIQAAAAADIQAAAAADbgAAAAAAfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAAAfwAAAAAAIQAAAAACIQAAAAACbwAAAAADfwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAADewAAAAABfwAAAAAAIQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAABfwAAAAAAfwAAAAAATwAAAAAATwAAAAAAbwAAAAADbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbwAAAAABbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: HgAAAAAAWgAAAAAAWgAAAAACTQAAAAACTQAAAAADZwAAAAABZwAAAAABZwAAAAAAZwAAAAADZwAAAAABWgAAAAADegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAHgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAABWgAAAAACWgAAAAABWgAAAAABZwAAAAABZwAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAWgAAAAACWgAAAAADZwAAAAABZwAAAAABTQAAAAADWgAAAAACWgAAAAABWgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADegAAAAAAWgAAAAABWgAAAAACWgAAAAADZwAAAAAATQAAAAACZwAAAAADZwAAAAABWgAAAAAADgAAAAADegAAAAAAawAAAAACegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAATQAAAAADegAAAAAAegAAAAAAWgAAAAADTQAAAAAAZwAAAAACZwAAAAABZwAAAAACDgAAAAACTQAAAAACagAAAAAAegAAAAAAWgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAZwAAAAABDgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACegAAAAAAegAAAAAAWgAAAAACWgAAAAADDgAAAAACegAAAAAAawAAAAABegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAAAegAAAAAAagAAAAAAegAAAAAAEgAAAAAATQAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAEgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEgAAAAAAegAAAAAAagAAAAAAagAAAAAAawAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAawAAAAABawAAAAACawAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAACegAAAAAAawAAAAADegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAATQAAAAACTQAAAAAATQAAAAACTQAAAAABTQAAAAABHgAAAAABHgAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAA
+ tiles: IQAAAAABTwAAAAADXgAAAAACTwAAAAADTwAAAAABawAAAAABawAAAAAAawAAAAABawAAAAAAawAAAAADXgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAADfwAAAAAAIQAAAAABTwAAAAAAXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAACawAAAAABawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACTwAAAAADXgAAAAACXgAAAAADawAAAAAAawAAAAADXgAAAAABTwAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAAXgAAAAAAXgAAAAADXgAAAAACawAAAAADawAAAAADTwAAAAACawAAAAAAXgAAAAADDgAAAAACfwAAAAAAbwAAAAABfwAAAAAATwAAAAACfwAAAAAAfwAAAAAANAAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAAAXgAAAAACTwAAAAACawAAAAAAawAAAAADDgAAAAABTwAAAAACbgAAAAAAfwAAAAAAXgAAAAACNAAAAAAANAAAAAAANAAAAAAAXgAAAAABXgAAAAADXgAAAAADXgAAAAADXgAAAAAAXgAAAAACXgAAAAADawAAAAADDgAAAAACfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAAATwAAAAABfwAAAAAAXgAAAAADXgAAAAAADgAAAAACfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAABTwAAAAABTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAATwAAAAACJQAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAACJQAAAAABJQAAAAACfwAAAAAAbgAAAAAAfwAAAAAAEgAAAAAATwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAEgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAEgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAADIAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: WgAAAAADZwAAAAADWgAAAAADTgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAZwAAAAADWgAAAAACTgAAAAAADAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAACZwAAAAABWgAAAAABegAAAAAADAAAAAABDAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAADWgAAAAAAZwAAAAAAWgAAAAADegAAAAAAegAAAAAADAAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAADZwAAAAABZwAAAAADdwAAAAAATgAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACZwAAAAADZwAAAAADdwAAAAAATgAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAawAAAAABTgAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAACZwAAAAADdwAAAAABTgAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABZwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAZwAAAAADZwAAAAACZwAAAAABZwAAAAADWgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAZwAAAAAAWgAAAAABegAAAAAAagAAAAAAawAAAAABawAAAAADagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADZwAAAAABWgAAAAACegAAAAAAagAAAAAAagAAAAAAawAAAAAAawAAAAABagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAADHgAAAAAATQAAAAACWgAAAAAAZwAAAAABWgAAAAAAegAAAAAAegAAAAAAagAAAAAAawAAAAABawAAAAACagAAAAAAagAAAAAATQAAAAABagAAAAAAegAAAAAAawAAAAAAHgAAAAADTQAAAAADWgAAAAADZwAAAAAAZwAAAAACWgAAAAABegAAAAAAagAAAAAAagAAAAAAawAAAAABawAAAAACagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAHgAAAAAATQAAAAADWgAAAAABZwAAAAAAZwAAAAAAWgAAAAABegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAHgAAAAACTQAAAAAAWgAAAAADZwAAAAACZwAAAAADZwAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACTQAAAAACTQAAAAABZwAAAAABZwAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAADegAAAAAAawAAAAACawAAAAAAegAAAAAAegAAAAAA
+ tiles: XgAAAAACawAAAAABXgAAAAABUAAAAAAADAAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABXgAAAAAAawAAAAADXgAAAAADUAAAAAAADAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAXgAAAAADawAAAAABXgAAAAACfwAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAXgAAAAABawAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAATwAAAAADXgAAAAADawAAAAACawAAAAADXgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADXgAAAAAAawAAAAABawAAAAADXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAABfwAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAACawAAAAADXgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACawAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAABawAAAAABawAAAAACXgAAAAAAfwAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAAAawAAAAAAXgAAAAABfwAAAAAAUAAAAAAAbwAAAAAAbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABawAAAAADXgAAAAABfwAAAAAAUAAAAAAAbgAAAAAAbwAAAAAAbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAAATwAAAAABXgAAAAACawAAAAADXgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAACbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAAAfwAAAAAAIAAAAAAATwAAAAACXgAAAAACawAAAAACawAAAAAAXgAAAAACfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACTwAAAAAAXgAAAAABawAAAAABawAAAAABXgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAATwAAAAABTwAAAAACXgAAAAACawAAAAABawAAAAABawAAAAADXgAAAAACfwAAAAAATwAAAAACTwAAAAAATwAAAAAAfwAAAAAAbwAAAAADbwAAAAABbgAAAAAAfwAAAAAAIQAAAAABTwAAAAABXgAAAAABTwAAAAABTwAAAAADawAAAAACawAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAAAfwAAAAAAbwAAAAACbwAAAAABbgAAAAAAfwAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: WgAAAAAAWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAADZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAADTQAAAAABZwAAAAABZwAAAAABWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAADZwAAAAADZwAAAAAAZwAAAAACZwAAAAACZwAAAAAAZwAAAAABZwAAAAACTQAAAAACZwAAAAAAZwAAAAACWgAAAAADegAAAAAAWgAAAAACWgAAAAADWgAAAAABZwAAAAACZwAAAAACWgAAAAADWgAAAAABWgAAAAAAWgAAAAABWgAAAAABWgAAAAADTgAAAAAAWgAAAAABWgAAAAAATgAAAAAAegAAAAAAWgAAAAAAWgAAAAAAZwAAAAACZwAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAWgAAAAAAWgAAAAADZwAAAAABZwAAAAAAZwAAAAADWgAAAAABWgAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAACZwAAAAACZwAAAAABZwAAAAABWgAAAAACWgAAAAAAWgAAAAADdwAAAAABdwAAAAACdwAAAAABdwAAAAADegAAAAAAawAAAAABawAAAAAAagAAAAAAegAAAAAAWgAAAAAAZwAAAAADZwAAAAABWgAAAAABWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAawAAAAADawAAAAACagAAAAAAegAAAAAAWgAAAAACZwAAAAAAZwAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAACDAAAAAACAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAACagAAAAAAegAAAAAAWgAAAAADZwAAAAADWgAAAAACegAAAAAAegAAAAAADAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAACegAAAAAADAAAAAABDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAAAegAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAAATgAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAWgAAAAACWgAAAAABWgAAAAADTgAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAWgAAAAACZwAAAAADWgAAAAAATgAAAAAADAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAWgAAAAABZwAAAAADWgAAAAABegAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAAAZwAAAAADWgAAAAACTgAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: XgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAXgAAAAADXgAAAAAAawAAAAABawAAAAADawAAAAACawAAAAAAawAAAAACTwAAAAACawAAAAACawAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAACawAAAAADawAAAAADawAAAAAATwAAAAAAawAAAAAAawAAAAABXgAAAAACfwAAAAAAXgAAAAABXgAAAAACXgAAAAACawAAAAACawAAAAACXgAAAAACXgAAAAADXgAAAAACXgAAAAACXgAAAAACXgAAAAADUAAAAAAAXgAAAAABXgAAAAABUAAAAAAAfwAAAAAAXgAAAAAAXgAAAAACawAAAAAAawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAXgAAAAADXgAAAAAAawAAAAABawAAAAACawAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAADawAAAAACawAAAAAAawAAAAADXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAACXgAAAAABXgAAAAAAfwAAAAAAbwAAAAABbwAAAAABbgAAAAAAfwAAAAAAXgAAAAACawAAAAADawAAAAADXgAAAAAAXgAAAAABfwAAAAAAUAAAAAAAbwAAAAADTwAAAAADTwAAAAABTwAAAAADfwAAAAAAbwAAAAACbwAAAAABbgAAAAAAfwAAAAAAXgAAAAABawAAAAADawAAAAABfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAXgAAAAAAawAAAAAAXgAAAAADfwAAAAAAfwAAAAAADAAAAAACDAAAAAAAbwAAAAABTwAAAAADTwAAAAADTwAAAAADbwAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAABfwAAAAAADAAAAAACDAAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAACXgAAAAADfwAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAXgAAAAACXgAAAAAAXgAAAAACUAAAAAAADAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAACUAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAADfwAAAAAAXgAAAAABawAAAAABXgAAAAADUAAAAAAADAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAAXgAAAAADawAAAAADXgAAAAAAfwAAAAAADAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADawAAAAABXgAAAAACUAAAAAAADAAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: agAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAATQAAAAACHgAAAAAATQAAAAABHgAAAAABegAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAATgAAAAAAHgAAAAACTQAAAAACHgAAAAADTQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAATgAAAAAAHgAAAAAATQAAAAADHgAAAAADegAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAAAagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAATgAAAAAAHgAAAAACTQAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAADTQAAAAABHgAAAAADegAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAAATQAAAAABHgAAAAAAegAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACTgAAAAAAHgAAAAAATQAAAAADHgAAAAAATQAAAAABDgAAAAACDgAAAAADDgAAAAAADgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTgAAAAAAHgAAAAAATQAAAAABHgAAAAACegAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAADHgAAAAACTQAAAAACHgAAAAACegAAAAAATgAAAAAATgAAAAAATQAAAAABTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAADHgAAAAACTQAAAAABHgAAAAACegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAATgAAAAAAHgAAAAADTQAAAAADHgAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAATgAAAAAAHgAAAAAATQAAAAABHgAAAAACegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAHgAAAAABHgAAAAADegAAAAAAHgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAHgAAAAACTQAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAAATgAAAAAAHgAAAAADHgAAAAABTQAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAABTgAAAAAAHgAAAAADHgAAAAABTQAAAAADTQAAAAACTQAAAAADTQAAAAAATQAAAAAATQAAAAADTQAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAADegAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAD
+ tiles: bgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAATwAAAAACIAAAAAAATwAAAAACIAAAAAACfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAACIQAAAAACbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAUAAAAAAAIAAAAAACTwAAAAAAIAAAAAAATwAAAAABIQAAAAADIQAAAAAAIQAAAAABIQAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAUAAAAAAAIAAAAAACTwAAAAACIAAAAAADfwAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAUAAAAAAAIAAAAAADTwAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIAAAAAACTwAAAAABIAAAAAAAfwAAAAAADgAAAAADDgAAAAADDgAAAAAADgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAABIAAAAAACfwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAAAIgAAAAACIgAAAAACIgAAAAADIgAAAAABIgAAAAADIgAAAAABIgAAAAAAUAAAAAAAIAAAAAADTwAAAAACIAAAAAAATwAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAACUAAAAAAAIAAAAAADTwAAAAADIAAAAAABfwAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAACTwAAAAABIAAAAAADTwAAAAADIAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAADTwAAAAADIAAAAAADTwAAAAACIAAAAAADfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAABUAAAAAAAIAAAAAAATwAAAAADIAAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAABIgAAAAABIgAAAAACUAAAAAAAIAAAAAAATwAAAAACIAAAAAAAfwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAIgAAAAACIgAAAAACfwAAAAAAIgAAAAADIgAAAAABIgAAAAACfwAAAAAAfwAAAAAAIAAAAAADTwAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAADIgAAAAACfwAAAAAAIgAAAAADIgAAAAACIgAAAAACUAAAAAAAIAAAAAACIAAAAAABTwAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIgAAAAAAIgAAAAACfwAAAAAAIgAAAAADIgAAAAACIgAAAAACUAAAAAAAIAAAAAABIAAAAAACTwAAAAABTwAAAAACTwAAAAACTwAAAAADIAAAAAADIAAAAAAAIAAAAAACIgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAA
version: 6
-4,0:
ind: -4,0
- tiles: egAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAATQAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAADTQAAAAAATQAAAAABTQAAAAACTQAAAAADTQAAAAABTQAAAAAATQAAAAABTQAAAAABTQAAAAACTQAAAAAATQAAAAADTQAAAAAAWgAAAAACTQAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABTQAAAAADTQAAAAABTQAAAAADTQAAAAADTQAAAAACWgAAAAACegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAKQAAAAAAKQAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAABTQAAAAABZwAAAAADZwAAAAADZwAAAAADZwAAAAACZwAAAAACZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAABZwAAAAACZwAAAAAAZwAAAAACZwAAAAACZwAAAAACTQAAAAAAWgAAAAACDAAAAAADDAAAAAADDAAAAAABDAAAAAABDAAAAAAADAAAAAADWgAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAHgAAAAAAHgAAAAADHgAAAAADegAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAAATQAAAAACHgAAAAABTQAAAAABHgAAAAAATQAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADegAAAAAAHgAAAAADTQAAAAACHgAAAAADTQAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABTQAAAAABHgAAAAACTQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAAATQAAAAADHgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAA
+ tiles: fwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAATwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAADTwAAAAACTwAAAAADTwAAAAABTwAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAADTwAAAAADXgAAAAABTwAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAABXgAAAAADfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKwAAAAABKwAAAAADKwAAAAABKwAAAAACKwAAAAACKwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAAAKwAAAAADKwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAABTwAAAAADawAAAAABawAAAAABawAAAAACawAAAAABawAAAAAAawAAAAABawAAAAAAawAAAAADawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAAAawAAAAAAawAAAAACTwAAAAAAXgAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAABDAAAAAACDAAAAAAAXgAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAACfwAAAAAATwAAAAAATwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACIQAAAAAAIQAAAAACfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADfwAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAADfwAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAABIQAAAAABIQAAAAACTwAAAAAAIAAAAAADTwAAAAACIAAAAAACTwAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIQAAAAABIQAAAAAAIQAAAAAAfwAAAAAAIAAAAAABTwAAAAACIAAAAAACTwAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAABTwAAAAADfwAAAAAAIAAAAAABTwAAAAABIAAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIAAAAAACTwAAAAADIAAAAAACfwAAAAAAIQAAAAACIQAAAAADIQAAAAAAIQAAAAAC
version: 6
-4,-1:
ind: -4,-1
- tiles: TgAAAAAAagAAAAAAegAAAAAATQAAAAADGwAAAAADGwAAAAABTQAAAAAAXQAAAAAAXQAAAAADJwAAAAACJwAAAAACJwAAAAABTgAAAAAAJwAAAAADJwAAAAAAWgAAAAAATgAAAAAAawAAAAABegAAAAAAegAAAAAAGwAAAAABGwAAAAADegAAAAAAXQAAAAADXQAAAAABJwAAAAADJwAAAAAAJwAAAAABTgAAAAAAJwAAAAABJwAAAAAAWgAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAADWgAAAAABawAAAAAAagAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAACGwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAADTQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAADgAAAAABDgAAAAABDgAAAAABDgAAAAABDgAAAAACagAAAAAAagAAAAAATQAAAAABegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAADagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAegAAAAAADgAAAAADDgAAAAADDgAAAAADDgAAAAABagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAADDgAAAAADagAAAAAAagAAAAAAegAAAAAAegAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAAADgAAAAACDgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAADDgAAAAADegAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAAAWgAAAAACWgAAAAABWgAAAAABegAAAAAAegAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAAATQAAAAAAWgAAAAADWgAAAAAAWgAAAAADWgAAAAABWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAACWgAAAAAAWgAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAA
+ tiles: UAAAAAAAbgAAAAAAfwAAAAAATwAAAAADYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAACKQAAAAADKQAAAAADKQAAAAAATwAAAAACKQAAAAAAKQAAAAACXgAAAAAAUAAAAAAAbwAAAAABfwAAAAAAfwAAAAAAYQAAAAACYQAAAAAAYQAAAAAAYQAAAAACYQAAAAACKQAAAAABKQAAAAAAKQAAAAABUAAAAAAAKQAAAAABKQAAAAACXgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACTwAAAAABfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAABTwAAAAABfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAADTwAAAAACfwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAfwAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABTwAAAAACfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAADAAAAAABDAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAADTwAAAAAAfwAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAADfwAAAAAAfwAAAAAATwAAAAACTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAADgAAAAAADgAAAAABfwAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAfwAAAAAAfwAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAADDgAAAAADTwAAAAABXgAAAAACXgAAAAABXgAAAAADXgAAAAADXgAAAAABXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAAfwAAAAAAXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: WgAAAAADWgAAAAADWgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAABegAAAAAAZwAAAAADWgAAAAABWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABTQAAAAACWgAAAAACWgAAAAABWgAAAAADWgAAAAAAWgAAAAABZwAAAAAAZwAAAAADZwAAAAABZwAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAACZwAAAAABZwAAAAAATQAAAAADZwAAAAAAZwAAAAADZwAAAAADZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAACZwAAAAADZwAAAAACZwAAAAADZwAAAAADZwAAAAADZwAAAAACTQAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAAAZwAAAAAAZwAAAAABZwAAAAACWgAAAAACWgAAAAACWgAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAACDAAAAAACDAAAAAAADAAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAABegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAATQAAAAADTQAAAAADTQAAAAAAJQAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAACdwAAAAAAJQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACegAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAACdwAAAAACegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAAAdwAAAAAAdwAAAAACJQAAAAACegAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAACegAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAABJQAAAAACegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAABJQAAAAADegAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAADEgAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAABdwAAAAACJQAAAAABTQAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAADTQAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAAAegAAAAAAJQAAAAACegAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAABDgAAAAACTQAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAABegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: XgAAAAAAXgAAAAABXgAAAAADfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAABfwAAAAAAawAAAAACXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAABXgAAAAACTwAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAACXgAAAAADawAAAAAAawAAAAADawAAAAAAawAAAAADawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAADawAAAAACTwAAAAABawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAABawAAAAAAawAAAAACawAAAAAAawAAAAAAawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAABawAAAAADTwAAAAAAawAAAAAAawAAAAAAawAAAAADawAAAAABawAAAAACawAAAAABawAAAAACXgAAAAACXgAAAAADXgAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAAADAAAAAABfwAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAACDAAAAAABDAAAAAACDAAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAADTwAAAAABTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAAATwAAAAACTwAAAAACJwAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAewAAAAABewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABJwAAAAADfwAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAABfwAAAAAAewAAAAABewAAAAACewAAAAADewAAAAADewAAAAADewAAAAACfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAACfwAAAAAAewAAAAADewAAAAACewAAAAABewAAAAABewAAAAAAewAAAAAAJwAAAAADfwAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAABfwAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAABewAAAAACewAAAAACJwAAAAACfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAAAJwAAAAAAfwAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAACEgAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAADJwAAAAABTwAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAADTwAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAJwAAAAABfwAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAABDgAAAAACDgAAAAAATwAAAAADewAAAAACewAAAAADewAAAAAAewAAAAADewAAAAADfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: EwAAAAABEwAAAAACEwAAAAABEwAAAAAAEwAAAAADTQAAAAAAGwAAAAAAHAAAAAABTgAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADagAAAAAAEwAAAAAAEwAAAAAAEwAAAAABEwAAAAABEwAAAAAATQAAAAAAGwAAAAACHAAAAAADTgAAAAAADAAAAAACegAAAAAAawAAAAABegAAAAAAegAAAAAAawAAAAABawAAAAACEwAAAAAAEwAAAAADEwAAAAAAEwAAAAABEwAAAAAATQAAAAABGwAAAAADHAAAAAAATgAAAAAAMAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAawAAAAADagAAAAAAEwAAAAADEwAAAAAAEwAAAAADEwAAAAADEwAAAAABTQAAAAACGwAAAAACHAAAAAADTgAAAAAAMAAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAACEwAAAAABEwAAAAAAEwAAAAABEwAAAAADTQAAAAADGwAAAAABHAAAAAABegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABTQAAAAABTQAAAAACGwAAAAACHAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAHAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAAAHAAAAAAAegAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACegAAAAAAegAAAAAAagAAAAAAHAAAAAABHAAAAAADHAAAAAABGwAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAATQAAAAADTQAAAAACTQAAAAACTQAAAAABHAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHAAAAAABGwAAAAAAHAAAAAADegAAAAAAHAAAAAABHAAAAAADTQAAAAAATQAAAAACTQAAAAADTQAAAAABHAAAAAACegAAAAAAegAAAAAAagAAAAAAAgAAAAAAegAAAAAAHAAAAAAAGwAAAAAAHAAAAAADegAAAAAAHAAAAAABHAAAAAACegAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAegAAAAAAegAAAAAAagAAAAAAAgAAAAAATgAAAAAAHAAAAAACGwAAAAABHAAAAAABegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAagAAAAAAAgAAAAAATgAAAAAAHAAAAAACGwAAAAABHAAAAAACTgAAAAAAMAAAAAAAMAAAAAAADAAAAAADDAAAAAACDAAAAAABMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAAgAAAAAAegAAAAAAHAAAAAABHAAAAAAAHAAAAAACegAAAAAAWgAAAAABWgAAAAAAZwAAAAACZwAAAAABZwAAAAACZwAAAAADZwAAAAACZwAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAWgAAAAABZwAAAAABZwAAAAADTQAAAAACTQAAAAADTQAAAAAAZwAAAAADZwAAAAADZwAAAAACWgAAAAABMAAAAAAAWgAAAAADWgAAAAACWgAAAAACWgAAAAACWgAAAAADZwAAAAACZwAAAAABWgAAAAADTQAAAAAATQAAAAADTQAAAAACWgAAAAABZwAAAAABZwAAAAADWgAAAAAA
+ tiles: EwAAAAABEwAAAAADEwAAAAACEwAAAAAAOgAAAAAATwAAAAADHQAAAAACHgAAAAABUAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAEwAAAAAAEwAAAAAAEwAAAAADEwAAAAABOgAAAAADTwAAAAABHQAAAAABHgAAAAACUAAAAAAADAAAAAADfwAAAAAAbwAAAAACfwAAAAAATwAAAAABNAAAAAAAfwAAAAAAEwAAAAAAEwAAAAACEwAAAAABEwAAAAADOgAAAAABTwAAAAACHQAAAAADHgAAAAAAUAAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAEwAAAAACEwAAAAABEwAAAAACEwAAAAABOgAAAAADTwAAAAAAHQAAAAAAHgAAAAACUAAAAAAAMgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAADTwAAAAACHQAAAAACHgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACTwAAAAABTwAAAAADHQAAAAAAHgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHgAAAAADfwAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAHgAAAAADHgAAAAAAHQAAAAACHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABTwAAAAADTwAAAAABTwAAAAAATwAAAAADHgAAAAADfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAAAfwAAAAAAHgAAAAAAHgAAAAABTwAAAAADTwAAAAACTwAAAAAATwAAAAADHgAAAAACfwAAAAAAfwAAAAAAbgAAAAAAaQAAAAAAHgAAAAADHQAAAAADHQAAAAAAHgAAAAACfwAAAAAAHgAAAAAAHgAAAAACfwAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAACfwAAAAAAfwAAAAAAbgAAAAAAaQAAAAAAHgAAAAAAHQAAAAADHQAAAAADHgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAaQAAAAABHgAAAAAAHQAAAAACHQAAAAADHgAAAAABUAAAAAAAMgAAAAAAMgAAAAAADAAAAAAADAAAAAACDAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAaQAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABfwAAAAAAXgAAAAADXgAAAAABawAAAAABawAAAAABawAAAAABawAAAAABawAAAAABawAAAAABXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAATwAAAAACTwAAAAADfwAAAAAAfwAAAAAAXgAAAAACawAAAAACawAAAAAATwAAAAAATwAAAAABTwAAAAADawAAAAAAawAAAAADawAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABXgAAAAABawAAAAACawAAAAADXgAAAAAATwAAAAABTwAAAAAATwAAAAACXgAAAAACawAAAAACawAAAAAAXgAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: eAAAAAABeAAAAAAAeAAAAAADeAAAAAACeAAAAAABeAAAAAADeAAAAAADeAAAAAACdwAAAAADdwAAAAAAdwAAAAAATQAAAAADHAAAAAACGwAAAAAATQAAAAACEwAAAAADDgAAAAABDgAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAADDgAAAAABeAAAAAABTQAAAAADTQAAAAADdwAAAAABTgAAAAAAHAAAAAADGwAAAAAATQAAAAABEwAAAAADZQAAAAACZQAAAAADZQAAAAABZQAAAAABZQAAAAACZQAAAAABDgAAAAABeAAAAAACTQAAAAACTQAAAAAAdwAAAAABTgAAAAAAHAAAAAAAGwAAAAADTQAAAAAAEwAAAAADZQAAAAADZQAAAAABZQAAAAABZQAAAAADZQAAAAADZQAAAAADDgAAAAADeAAAAAAATQAAAAAATQAAAAAAdwAAAAADTgAAAAAAHAAAAAABGwAAAAACTQAAAAAAEwAAAAABZQAAAAAAZQAAAAAAZQAAAAABZQAAAAADZQAAAAADZQAAAAADDgAAAAADeAAAAAABdwAAAAABdwAAAAABdwAAAAABegAAAAAAHAAAAAACGwAAAAACTQAAAAABEwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHAAAAAADGwAAAAABTQAAAAADTQAAAAACTQAAAAAATQAAAAACegAAAAAAZQAAAAACZQAAAAADZQAAAAAAZQAAAAACegAAAAAAZQAAAAACZQAAAAAAZQAAAAADegAAAAAAHAAAAAABGwAAAAACGwAAAAACGwAAAAACTQAAAAACTQAAAAAAegAAAAAAZQAAAAABZQAAAAACZQAAAAABZQAAAAADTQAAAAAAZQAAAAACZQAAAAAAZQAAAAAAegAAAAAAHAAAAAACGwAAAAAAGwAAAAABGwAAAAABTQAAAAADTQAAAAAAegAAAAAAZQAAAAABZQAAAAABZQAAAAABZQAAAAADegAAAAAAZQAAAAADZQAAAAADZQAAAAAAegAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAATgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAATQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAATgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAegAAAAAAegAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAATgAAAAAATgAAAAAATQAAAAAATQAAAAABTgAAAAAATgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAACWgAAAAACWgAAAAABWgAAAAABWgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAATwAAAAAATwAAAAAAbwAAAAAAggAAAAAAggAAAAAATwAAAAACHgAAAAABHQAAAAABTwAAAAABOgAAAAABfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAATwAAAAAATwAAAAABbgAAAAAAggAAAAAAbgAAAAAAUAAAAAAAHgAAAAABHQAAAAABTwAAAAADOgAAAAACfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAATwAAAAAATwAAAAABbwAAAAAAggAAAAAAbgAAAAAAUAAAAAAAHgAAAAACHQAAAAABTwAAAAAAOgAAAAAANAAAAAAAfwAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAATwAAAAABTwAAAAACbwAAAAADggAAAAAAbgAAAAAAUAAAAAAAHgAAAAADHQAAAAACTwAAAAADOgAAAAACaQAAAAACTwAAAAAATwAAAAAAaQAAAAAAaQAAAAAAaQAAAAABaQAAAAABTwAAAAADbgAAAAAAggAAAAAAbgAAAAAAfwAAAAAAHgAAAAABHQAAAAABTwAAAAACOgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAggAAAAAAbgAAAAAAfwAAAAAAHgAAAAAAHQAAAAABTwAAAAABTwAAAAACbgAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAADbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAggAAAAAAbgAAAAAAfwAAAAAAHgAAAAABHQAAAAADHQAAAAADHQAAAAADaQAAAAACTwAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAAAaQAAAAADbgAAAAAAggAAAAAAbgAAAAAAfwAAAAAAHgAAAAACHQAAAAADHQAAAAABHQAAAAACTwAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAACbgAAAAAAggAAAAAAbgAAAAAAfwAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAABaQAAAAACJQAAAAABaQAAAAAAaQAAAAADJQAAAAADJQAAAAABJQAAAAADJQAAAAADbgAAAAAAggAAAAAAbgAAAAAAfwAAAAAATwAAAAACTwAAAAACTwAAAAACfwAAAAAAaQAAAAABJQAAAAACaQAAAAAAaQAAAAADJQAAAAAAJQAAAAABJQAAAAABJQAAAAADbgAAAAAAggAAAAAAbwAAAAABEgAAAAAAaQAAAAAAaQAAAAAAaQAAAAABEgAAAAAAaQAAAAADJQAAAAADaQAAAAABaQAAAAACaQAAAAADaQAAAAACaQAAAAABJQAAAAAAbwAAAAABggAAAAAAbwAAAAAAEgAAAAAAaQAAAAACaQAAAAAAaQAAAAABEgAAAAAATwAAAAACJQAAAAACaQAAAAABaQAAAAACaQAAAAADaQAAAAABaQAAAAAAJQAAAAACbgAAAAAAggAAAAAAbgAAAAAAEgAAAAAAaQAAAAADaQAAAAABaQAAAAABEgAAAAAAaQAAAAACJQAAAAABJQAAAAADJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAACbwAAAAADggAAAAAAbgAAAAAAEgAAAAAAaQAAAAABaQAAAAACaQAAAAACEgAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAADTwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAADUAAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAAATwAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAAAXgAAAAACXgAAAAABTwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAAB
version: 6
0,-2:
ind: 0,-2
- tiles: dgAAAAABdgAAAAACdgAAAAADdgAAAAACWgAAAAAAWgAAAAADWgAAAAAAWgAAAAABegAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAABTQAAAAACTQAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAagAAAAAAegAAAAAADgAAAAACDgAAAAAADgAAAAAAZwAAAAACZwAAAAABZwAAAAADegAAAAAAagAAAAAAawAAAAACawAAAAAAagAAAAAAagAAAAAAawAAAAADegAAAAAAagAAAAAAegAAAAAADgAAAAAADgAAAAACDgAAAAACZwAAAAABTQAAAAAATQAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAACDgAAAAAADgAAAAADZwAAAAACTQAAAAACDAAAAAACegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAawAAAAAAawAAAAABagAAAAAAagAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAABZwAAAAAATQAAAAADTQAAAAADegAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAACZwAAAAABZwAAAAADZwAAAAADegAAAAAAawAAAAADegAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAWgAAAAABWgAAAAADegAAAAAADgAAAAACDgAAAAABDgAAAAACZwAAAAAAZwAAAAACZwAAAAADegAAAAAAagAAAAAAegAAAAAATQAAAAABWgAAAAACTQAAAAABTQAAAAADTQAAAAACWgAAAAACTQAAAAADDgAAAAADDgAAAAABDgAAAAABTQAAAAACTQAAAAACZwAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAATQAAAAADTQAAAAACWgAAAAAAegAAAAAADgAAAAADDgAAAAABDgAAAAAADAAAAAABTQAAAAAAZwAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAWgAAAAADWgAAAAABWgAAAAACegAAAAAADgAAAAACDgAAAAABDgAAAAABTQAAAAACTQAAAAABZwAAAAACTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAWgAAAAACegAAAAAADgAAAAADDgAAAAAADgAAAAABZwAAAAABZwAAAAAAZwAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAWgAAAAACegAAAAAAWgAAAAADegAAAAAADgAAAAADDgAAAAAADgAAAAABTQAAAAABTQAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAAADgAAAAACZwAAAAACZwAAAAABZwAAAAADWgAAAAADWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAACDgAAAAADTQAAAAABTQAAAAADTQAAAAACTQAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATQAAAAABTgAAAAAATQAAAAACTQAAAAACTQAAAAACTQAAAAAAWgAAAAACTgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAABWgAAAAADWgAAAAAC
+ tiles: XgAAAAADawAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAABfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAATwAAAAABfwAAAAAANAAAAAAANAAAAAAAXgAAAAACawAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbgAAAAAATwAAAAADfwAAAAAANAAAAAAANAAAAAAAXgAAAAACawAAAAABXgAAAAAAfwAAAAAAbgAAAAAAbwAAAAADbwAAAAACbgAAAAAAbgAAAAAAbwAAAAACfwAAAAAAbgAAAAAATwAAAAACfwAAAAAANAAAAAAANAAAAAAAXgAAAAABawAAAAADXgAAAAABTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAATwAAAAACfwAAAAAANAAAAAAANAAAAAAAXgAAAAADawAAAAADXgAAAAACfwAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAADbwAAAAACbwAAAAABfwAAAAAAbwAAAAADfwAAAAAAaQAAAAACaQAAAAADaQAAAAAAaQAAAAACaQAAAAAAaQAAAAACfwAAAAAAJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAABJQAAAAABJQAAAAAAbwAAAAAAbgAAAAAAbgAAAAAATwAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAABUAAAAAAAJQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAAAUAAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAAATwAAAAACJQAAAAACJQAAAAACJQAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAADUAAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAUAAAAAAAJQAAAAADJQAAAAABJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAAUAAAAAAAJQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAACJQAAAAADJQAAAAACTwAAAAACJQAAAAABJQAAAAAAJQAAAAABaQAAAAACaQAAAAACaQAAAAACfwAAAAAAJQAAAAAAJQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADTwAAAAADTwAAAAAAJQAAAAADTwAAAAACTwAAAAAATwAAAAABawAAAAACawAAAAAAawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAABXgAAAAACXgAAAAABawAAAAACTwAAAAAAawAAAAACawAAAAAAawAAAAABfwAAAAAAMQAAAAAAbgAAAAAAXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAAATwAAAAABTwAAAAACTwAAAAADawAAAAACawAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADXgAAAAABTwAAAAACVwAAAAABTwAAAAAATwAAAAACawAAAAAATwAAAAABXgAAAAAAXgAAAAADXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAAD
version: 6
-1,-2:
ind: -1,-2
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAZwAAAAABZwAAAAACZwAAAAADZwAAAAADdgAAAAACDgAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAABMAAAAAAATQAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABTQAAAAADTQAAAAACTQAAAAAATQAAAAAADgAAAAADDgAAAAACMAAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAAAawAAAAAAagAAAAAAagAAAAAAegAAAAAADgAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAADgAAAAADDgAAAAADMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAACDgAAAAAAMAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATQAAAAAAegAAAAAAegAAAAAATQAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACegAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAADTQAAAAADegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAegAAAAAATQAAAAABegAAAAAAHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAADTQAAAAAATQAAAAADTQAAAAACTQAAAAACTQAAAAABTQAAAAADHgAAAAADHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABTQAAAAACTQAAAAABTQAAAAADTQAAAAABTQAAAAAATQAAAAACHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAAAWgAAAAACTgAAAAAATgAAAAAAegAAAAAATQAAAAABTQAAAAAATQAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAABTQAAAAACWgAAAAACWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAACWgAAAAADWgAAAAACWgAAAAABTgAAAAAAWgAAAAADTQAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAADXgAAAAADDgAAAAABDgAAAAACDgAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACMgAAAAAATwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAABTwAAAAABTwAAAAABTwAAAAADTwAAAAAADgAAAAAADgAAAAABMgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAAAbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAADgAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAACDgAAAAAADgAAAAADMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAABDgAAAAADDgAAAAACDgAAAAADMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAACIQAAAAABIQAAAAACIQAAAAADfwAAAAAAIQAAAAACIQAAAAACIQAAAAADIQAAAAABIQAAAAADIQAAAAABIQAAAAACIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAACIQAAAAAAIQAAAAAAfwAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAACIQAAAAADIQAAAAABIQAAAAAAIQAAAAADTwAAAAAAfwAAAAAAfwAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAACfwAAAAAAIQAAAAABIQAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAABIQAAAAACIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAABfwAAAAAATwAAAAABfwAAAAAAIQAAAAAAIQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAACJQAAAAABJQAAAAADJQAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAADJQAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAJQAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAACUAAAAAAAUAAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAACawAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAATwAAAAADawAAAAADTwAAAAAC
version: 6
-2,-2:
ind: -2,-2
- tiles: agAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADagAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAABTQAAAAAATQAAAAAATQAAAAABHgAAAAAAegAAAAAAegAAAAAAawAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAawAAAAAAawAAAAACegAAAAAAMAAAAAAAHgAAAAABTQAAAAAATQAAAAACTQAAAAABHgAAAAACegAAAAAADgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABTgAAAAAADgAAAAADawAAAAACawAAAAABagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABTgAAAAAADgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABegAAAAAADgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTgAAAAAATQAAAAADTgAAAAAATQAAAAADegAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAACegAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACTQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAACegAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAABTQAAAAACHgAAAAADTQAAAAADTQAAAAAATQAAAAACHgAAAAABegAAAAAAHgAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAATQAAAAACTQAAAAABegAAAAAAegAAAAAAHgAAAAABTQAAAAAATQAAAAABTQAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACegAAAAAAHgAAAAADTQAAAAADTQAAAAABTQAAAAAAHgAAAAADTQAAAAADHgAAAAADegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADTQAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABTQAAAAACHgAAAAACegAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAABTgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAADegAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADTgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAATgAAAAAAHgAAAAADegAAAAAAegAAAAAATQAAAAABTQAAAAADTQAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAWgAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAABWgAAAAABWgAAAAADWgAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAACdwAAAAACegAAAAAAWgAAAAAA
+ tiles: bgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAABIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAADbwAAAAABfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAABTwAAAAAAIAAAAAABUAAAAAAAfwAAAAAADgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAAATwAAAAACIAAAAAADUAAAAAAAUAAAAAAADgAAAAAAbwAAAAACbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAACIAAAAAADIAAAAAAAUAAAAAAAUAAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADIAAAAAACIAAAAAABUAAAAAAAfwAAAAAADgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAACIQAAAAABIQAAAAAAIQAAAAACIQAAAAABfwAAAAAAUAAAAAAAIQAAAAAAIQAAAAADIQAAAAACJQAAAAACIQAAAAABIQAAAAADfwAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAADIQAAAAABIQAAAAABIQAAAAABTwAAAAABUAAAAAAAIQAAAAADIQAAAAADIQAAAAACIQAAAAAAIQAAAAACIQAAAAACfwAAAAAAIQAAAAACIQAAAAAAIQAAAAACIQAAAAAAIQAAAAADIQAAAAAAIQAAAAACTwAAAAABUAAAAAAAIQAAAAACJQAAAAAAJQAAAAAAIQAAAAACfwAAAAAAIQAAAAADfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAIQAAAAADJQAAAAAAJQAAAAAAIQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIQAAAAADIQAAAAAAIQAAAAAAIQAAAAACIQAAAAAAIQAAAAABIQAAAAADfwAAAAAAJQAAAAABIQAAAAADJQAAAAAAJQAAAAAAIQAAAAACTwAAAAACJQAAAAADfwAAAAAAIQAAAAACIQAAAAABIQAAAAADIQAAAAACIQAAAAACIQAAAAADIQAAAAADTwAAAAADIQAAAAAAIQAAAAADIQAAAAACIQAAAAADIQAAAAAATwAAAAABJQAAAAABfwAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAACIQAAAAACIQAAAAABIQAAAAAATwAAAAADIQAAAAAAIQAAAAADIQAAAAABIQAAAAACIQAAAAACTwAAAAABIAAAAAADfwAAAAAAIQAAAAADIQAAAAABIQAAAAABIQAAAAACIQAAAAABIQAAAAAAIQAAAAABTwAAAAABIQAAAAAAIQAAAAADJQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAACTwAAAAABfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAADDAAAAAADDAAAAAABDAAAAAAADAAAAAABXgAAAAABXgAAAAACXgAAAAADfwAAAAAAewAAAAABewAAAAABewAAAAADewAAAAABewAAAAAAfwAAAAAAXgAAAAAB
version: 6
-3,-2:
ind: -3,-2
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADawAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAADdwAAAAADegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAawAAAAADawAAAAADeAAAAAADeAAAAAACeAAAAAABeAAAAAADdwAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAACeAAAAAADeAAAAAABeAAAAAADdwAAAAACegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAATQAAAAADagAAAAAAawAAAAADeAAAAAACeAAAAAAAeAAAAAAAeAAAAAABdwAAAAAAegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAAAeAAAAAADdwAAAAADegAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAagAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAAAdwAAAAADJwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAegAAAAAAegAAAAAAawAAAAACTQAAAAACJwAAAAAATQAAAAACJwAAAAAAJwAAAAACJwAAAAAAJwAAAAABJwAAAAACTQAAAAACWgAAAAABTQAAAAACJwAAAAACJwAAAAACegAAAAAAegAAAAAAawAAAAADWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAMAAAAAAAegAAAAAAegAAAAAAawAAAAAATQAAAAAATQAAAAACTQAAAAACWgAAAAACTQAAAAAATQAAAAACTQAAAAACWgAAAAACTQAAAAADTQAAAAAATQAAAAACWgAAAAACMAAAAAAAegAAAAAAegAAAAAAawAAAAADTQAAAAABTQAAAAAATQAAAAAAWgAAAAACTQAAAAAATQAAAAAATQAAAAACWgAAAAABTQAAAAADTQAAAAABTQAAAAADWgAAAAAAMAAAAAAAegAAAAAAegAAAAAAawAAAAABTQAAAAACTQAAAAADTQAAAAADWgAAAAABTQAAAAAATQAAAAAATQAAAAADWgAAAAAATQAAAAABTQAAAAABTQAAAAACWgAAAAACMAAAAAAAegAAAAAAegAAAAAAagAAAAAAWgAAAAADWgAAAAADWgAAAAACWgAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAABWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAAegAAAAAAagAAAAAATQAAAAACTQAAAAACTQAAAAABWgAAAAACTQAAAAABTQAAAAABTQAAAAADWgAAAAABWgAAAAACWgAAAAAAWgAAAAAAWgAAAAABWgAAAAABegAAAAAAegAAAAAAawAAAAADTQAAAAACTQAAAAACTQAAAAAAWgAAAAAATQAAAAAATQAAAAADTQAAAAAAWgAAAAADWgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAAATQAAAAADWgAAAAAATQAAAAACTQAAAAABTQAAAAADWgAAAAABWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAAATgAAAAAAWgAAAAACWgAAAAAC
+ tiles: fQAAAAAAfQAAAAACfQAAAAABfQAAAAACfQAAAAAAfQAAAAAAfQAAAAADTwAAAAADTwAAAAABfQAAAAADfQAAAAACfQAAAAABfQAAAAACfwAAAAAAbwAAAAAAbwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAQAAAAAAAAgAAAAAATwAAAAABAgAAAAAAAgAAAAAAfwAAAAAAbwAAAAAAbwAAAAAAYwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAATwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYwAAAAAADgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAAaQAAAAACaQAAAAABewAAAAAAewAAAAAAewAAAAAATwAAAAADbgAAAAAAbwAAAAABYwAAAAAADgAAAAABDgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAaQAAAAAAaQAAAAACewAAAAAAewAAAAAAewAAAAAATwAAAAACfwAAAAAAfwAAAAAAYwAAAAAADgAAAAADDgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAaQAAAAAAaQAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAACfwAAAAAAbgAAAAAAYwAAAAAADgAAAAADDgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAaQAAAAAATwAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAAbwAAAAABTwAAAAAAKQAAAAADDgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAABTwAAAAABXgAAAAADTwAAAAADKQAAAAAAKQAAAAADfwAAAAAAfwAAAAAAbwAAAAACXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAATwAAAAABTwAAAAAATwAAAAABXgAAAAADTwAAAAADTwAAAAAATwAAAAABXgAAAAADTwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfwAAAAAAbwAAAAACTwAAAAABTwAAAAACTwAAAAAAXgAAAAACTwAAAAAATwAAAAABTwAAAAADXgAAAAABTwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbwAAAAACTwAAAAABTwAAAAADTwAAAAABXgAAAAAATwAAAAACTwAAAAAATwAAAAABXgAAAAACTwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAADTwAAAAABTwAAAAACXgAAAAADTwAAAAACTwAAAAADTwAAAAADXgAAAAABXgAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfwAAAAAAfwAAAAAAbwAAAAAATwAAAAADTwAAAAABTwAAAAADXgAAAAABTwAAAAABTwAAAAAATwAAAAABXgAAAAADXgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAADTwAAAAADXgAAAAADTwAAAAADTwAAAAACTwAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAUAAAAAAAXgAAAAADXgAAAAAB
version: 6
3,1:
ind: 3,1
- tiles: WgAAAAABZwAAAAABWgAAAAADTQAAAAABSQAAAAABSQAAAAAASQAAAAACSQAAAAAASQAAAAAASQAAAAABSQAAAAACSQAAAAADSQAAAAACSQAAAAABSQAAAAACSQAAAAADZwAAAAACZwAAAAADWgAAAAABTQAAAAABSQAAAAADSQAAAAADSQAAAAAASQAAAAACSQAAAAADSQAAAAADSQAAAAABSQAAAAAASQAAAAADSQAAAAAASQAAAAACSQAAAAACZwAAAAAAZwAAAAACWgAAAAABTQAAAAABSQAAAAADSQAAAAADSQAAAAACSQAAAAAASQAAAAABSQAAAAAASQAAAAABSQAAAAABSQAAAAABSQAAAAABSQAAAAADSQAAAAACZwAAAAADZwAAAAACWgAAAAABegAAAAAASQAAAAAASQAAAAACSQAAAAACSQAAAAABSQAAAAACSQAAAAABSQAAAAACSQAAAAADSQAAAAADSQAAAAADSQAAAAACSQAAAAACZwAAAAACZwAAAAAAWgAAAAADTgAAAAAASQAAAAABSQAAAAACSQAAAAABSQAAAAACSQAAAAAASQAAAAAASQAAAAACSQAAAAADSQAAAAABSQAAAAAASQAAAAADSQAAAAABDAAAAAABWgAAAAAAWgAAAAABTgAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAACSQAAAAADSQAAAAAASQAAAAADSQAAAAABSQAAAAAASQAAAAABSQAAAAABSQAAAAACTQAAAAAAegAAAAAAegAAAAAAegAAAAAASQAAAAAASQAAAAABSQAAAAABSQAAAAAASQAAAAAASQAAAAACSQAAAAADSQAAAAAASQAAAAACSQAAAAAASQAAAAAASQAAAAABdwAAAAACdwAAAAABdwAAAAADegAAAAAASQAAAAABSQAAAAADSQAAAAADSQAAAAAASQAAAAADSQAAAAACSQAAAAADSQAAAAABSQAAAAACSQAAAAAASQAAAAAASQAAAAABdwAAAAADdwAAAAABdwAAAAACegAAAAAASQAAAAACSQAAAAABSQAAAAAASQAAAAADSQAAAAADSQAAAAABSQAAAAAASQAAAAACSQAAAAABSQAAAAACSQAAAAADSQAAAAABdwAAAAADdwAAAAACegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAdwAAAAABdwAAAAACTQAAAAACdwAAAAABdwAAAAADdwAAAAABdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAAAdwAAAAADdwAAAAACTQAAAAACegAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAACdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAADdwAAAAADegAAAAAAdwAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAABegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAAAdwAAAAAAdwAAAAABdwAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAAAdwAAAAABdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAA
+ tiles: XgAAAAAAawAAAAADXgAAAAAATwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADawAAAAADawAAAAABXgAAAAAATwAAAAABIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAACIwAAAAABIwAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAABawAAAAABawAAAAAAXgAAAAADTwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAACIwAAAAADIwAAAAACIwAAAAADawAAAAABawAAAAABXgAAAAADfwAAAAAAIwAAAAABIgAAAAAAIgAAAAABIgAAAAAAIgAAAAACIgAAAAACIgAAAAADIgAAAAAAIgAAAAACIgAAAAABIgAAAAABIgAAAAAAawAAAAADawAAAAACXgAAAAABUAAAAAAAIwAAAAADIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAABDAAAAAABXgAAAAADXgAAAAACUAAAAAAAIwAAAAAAIgAAAAABIgAAAAABIgAAAAADIgAAAAACIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIwAAAAABIgAAAAABIgAAAAACIgAAAAADIgAAAAAAIgAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAAAewAAAAACewAAAAABewAAAAABfwAAAAAAIwAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAABIgAAAAAAIgAAAAAAIgAAAAADIgAAAAABIgAAAAADIgAAAAABIgAAAAAAewAAAAACewAAAAABewAAAAACfwAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAewAAAAADewAAAAABTwAAAAACewAAAAABewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAACewAAAAAAewAAAAACTwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAABewAAAAABewAAAAAAewAAAAACewAAAAABewAAAAACewAAAAAAewAAAAADewAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAAAewAAAAADewAAAAABewAAAAADewAAAAABewAAAAACewAAAAADewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAADfwAAAAAAewAAAAACewAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAADewAAAAABewAAAAABewAAAAABewAAAAABfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAACewAAAAABewAAAAACewAAAAACewAAAAACewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: egAAAAAAWgAAAAADZwAAAAADWgAAAAABTgAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAAAZwAAAAABWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAWgAAAAADZwAAAAACWgAAAAADegAAAAAAawAAAAABegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWgAAAAADZwAAAAACZwAAAAADWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACZwAAAAACWgAAAAABWgAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADZwAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACZwAAAAAAWgAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWgAAAAACZwAAAAAAWgAAAAADegAAAAAAawAAAAACegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAADTQAAAAABTQAAAAABegAAAAAAagAAAAAAegAAAAAAegAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAWgAAAAADZwAAAAADWgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAWgAAAAACZwAAAAABWgAAAAACegAAAAAASQAAAAABSQAAAAAASQAAAAABSQAAAAADSQAAAAABSQAAAAACSQAAAAADSQAAAAADSQAAAAACSQAAAAAASQAAAAABSQAAAAACWgAAAAADZwAAAAADWgAAAAAATgAAAAAASQAAAAADSQAAAAACSQAAAAAASQAAAAAASQAAAAAASQAAAAABSQAAAAACSQAAAAAASQAAAAADSQAAAAADSQAAAAAASQAAAAADWgAAAAADZwAAAAABWgAAAAACTgAAAAAASQAAAAAASQAAAAACSQAAAAADSQAAAAACSQAAAAAASQAAAAACSQAAAAAASQAAAAACSQAAAAACSQAAAAADSQAAAAABSQAAAAACWgAAAAAAZwAAAAADWgAAAAADTgAAAAAASQAAAAAASQAAAAAASQAAAAADSQAAAAABSQAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAABSQAAAAABSQAAAAADSQAAAAAAWgAAAAAAZwAAAAADWgAAAAABTgAAAAAASQAAAAACSQAAAAADSQAAAAABSQAAAAADSQAAAAAASQAAAAADSQAAAAABSQAAAAABSQAAAAADSQAAAAABSQAAAAADSQAAAAABWgAAAAABZwAAAAAAWgAAAAABegAAAAAASQAAAAABSQAAAAADSQAAAAACSQAAAAADSQAAAAABSQAAAAACSQAAAAABSQAAAAACSQAAAAAASQAAAAABSQAAAAADSQAAAAAB
+ tiles: fwAAAAAAXgAAAAAAawAAAAAAXgAAAAADUAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAAAawAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAACawAAAAAAXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAABawAAAAAAawAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAADawAAAAACXgAAAAACXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABawAAAAACXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAABawAAAAADXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXgAAAAACawAAAAABXgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAADTwAAAAADTwAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAXgAAAAAAawAAAAADXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAXgAAAAACawAAAAAAXgAAAAAAfwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAACIwAAAAABIwAAAAABIwAAAAACIwAAAAACIwAAAAABTwAAAAADTwAAAAACTwAAAAADUAAAAAAAIwAAAAADIgAAAAAAIgAAAAACIgAAAAABIgAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAAAIgAAAAACIgAAAAAAIgAAAAAATwAAAAADTwAAAAABTwAAAAACUAAAAAAAIwAAAAADIgAAAAAAIgAAAAABIgAAAAABIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAADTwAAAAACTwAAAAACTwAAAAADUAAAAAAAIwAAAAADIgAAAAAAIgAAAAADIgAAAAABIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAADXgAAAAADawAAAAAAXgAAAAAAUAAAAAAAIwAAAAACIgAAAAAAIgAAAAABIgAAAAADIgAAAAAAIgAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIgAAAAABXgAAAAADawAAAAAAXgAAAAADfwAAAAAAIwAAAAABIgAAAAACIgAAAAACIgAAAAACIgAAAAADIgAAAAADIgAAAAACIgAAAAABIgAAAAACIgAAAAACIgAAAAAAIgAAAAAC
version: 6
3,-1:
ind: 3,-1
- tiles: WgAAAAABTgAAAAAAegAAAAAAegAAAAAAMAAAAAAAZwAAAAABZwAAAAABZwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAAAZwAAAAABWgAAAAADWgAAAAACTgAAAAAAMAAAAAAAZwAAAAABZwAAAAABZwAAAAABZwAAAAAAZwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAADWgAAAAABZwAAAAAAZwAAAAACWgAAAAACTgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAADZwAAAAABZwAAAAABZwAAAAACZwAAAAABZwAAAAACZwAAAAAAZwAAAAADWgAAAAAAWgAAAAACZwAAAAABWgAAAAAAWgAAAAADTgAAAAAAMAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAADZwAAAAAAegAAAAAAWgAAAAACZwAAAAAAWgAAAAADWgAAAAABegAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAABZwAAAAACZwAAAAACZwAAAAACZwAAAAABMAAAAAAAegAAAAAATQAAAAABTQAAAAABTQAAAAABegAAAAAAegAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAAZwAAAAAAZwAAAAADZwAAAAADDAAAAAACTgAAAAAAWgAAAAAAZwAAAAABWgAAAAAAegAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAAAZwAAAAABZwAAAAADMAAAAAAATgAAAAAAWgAAAAAAZwAAAAADWgAAAAADTgAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAACMAAAAAAAMAAAAAAADAAAAAAAZwAAAAAAZwAAAAAAMAAAAAAAegAAAAAAWgAAAAABZwAAAAACWgAAAAAATQAAAAABZwAAAAADDAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAZwAAAAABZwAAAAACZwAAAAADDAAAAAADdwAAAAAAWgAAAAAAZwAAAAAAWgAAAAADTQAAAAABZwAAAAAAZwAAAAACZwAAAAABZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAADZwAAAAADdwAAAAACWgAAAAABZwAAAAADWgAAAAABTQAAAAABZwAAAAAAZwAAAAACZwAAAAADZwAAAAABZwAAAAAAZwAAAAABZwAAAAABDAAAAAABDAAAAAACDAAAAAAAZwAAAAABdwAAAAAAWgAAAAABZwAAAAACWgAAAAADTgAAAAAADAAAAAADDAAAAAADZwAAAAACZwAAAAABDAAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAABdwAAAAADWgAAAAAAZwAAAAAAWgAAAAACTQAAAAACZwAAAAAAZwAAAAABZwAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACDAAAAAABdwAAAAABWgAAAAADZwAAAAABWgAAAAADTQAAAAACZwAAAAACZwAAAAAAZwAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAADDAAAAAABDAAAAAACegAAAAAAWgAAAAABZwAAAAABWgAAAAABTQAAAAACZwAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADAAAAAAA
+ tiles: XgAAAAADUAAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAawAAAAACawAAAAABawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAawAAAAADawAAAAADawAAAAAAawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAABXgAAAAABXgAAAAADUAAAAAAAMgAAAAAAawAAAAABawAAAAADawAAAAACawAAAAADawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABXgAAAAAAawAAAAADawAAAAABXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAawAAAAABawAAAAACawAAAAADawAAAAAAawAAAAACawAAAAADawAAAAACawAAAAAAXgAAAAADXgAAAAACawAAAAACXgAAAAAAXgAAAAABUAAAAAAAMgAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAawAAAAADawAAAAACawAAAAADawAAAAACawAAAAAAfwAAAAAAXgAAAAACawAAAAACXgAAAAACXgAAAAADfwAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAADawAAAAADawAAAAAAawAAAAABawAAAAABMgAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAACfwAAAAAAfwAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAAawAAAAADawAAAAAAawAAAAACDAAAAAAAUAAAAAAAXgAAAAABawAAAAACXgAAAAAAfwAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAABawAAAAACawAAAAADMgAAAAAAUAAAAAAAXgAAAAAAawAAAAACXgAAAAAAUAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACDAAAAAADMgAAAAAAMgAAAAAADAAAAAAAawAAAAABawAAAAACMgAAAAAAfwAAAAAAXgAAAAAAawAAAAACXgAAAAAATwAAAAAAawAAAAACDAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAawAAAAABawAAAAABawAAAAACDAAAAAADewAAAAAAXgAAAAABawAAAAADXgAAAAABTwAAAAADawAAAAAAawAAAAABawAAAAABawAAAAACawAAAAAAawAAAAACawAAAAAAawAAAAABawAAAAACawAAAAACawAAAAABewAAAAADXgAAAAADawAAAAABXgAAAAAATwAAAAAAawAAAAACawAAAAABawAAAAADawAAAAADawAAAAAAawAAAAABawAAAAADDAAAAAAADAAAAAABDAAAAAABawAAAAACewAAAAABXgAAAAACawAAAAACXgAAAAAAUAAAAAAADAAAAAABDAAAAAABawAAAAABawAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAADewAAAAADXgAAAAABawAAAAABXgAAAAAATwAAAAABawAAAAACawAAAAACawAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAACewAAAAACXgAAAAADawAAAAAAXgAAAAAATwAAAAABawAAAAABawAAAAABawAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAADfwAAAAAAXgAAAAABawAAAAAAXgAAAAADTwAAAAACawAAAAACDAAAAAAADAAAAAADDAAAAAAADAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAAD
version: 6
3,-2:
ind: 3,-2
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACagAAAAAAawAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAawAAAAAAawAAAAADagAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAADTQAAAAADagAAAAAAagAAAAAAagAAAAAAawAAAAADawAAAAADagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAADAAAAAADDAAAAAABZwAAAAABZwAAAAADZwAAAAAADAAAAAABMAAAAAAADAAAAAADMAAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABMAAAAAAAMAAAAAAAZwAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAAAZwAAAAAAZwAAAAACZwAAAAACDAAAAAAADAAAAAAADAAAAAABegAAAAAAegAAAAAADAAAAAACMAAAAAAAZwAAAAACZwAAAAADZwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAACZwAAAAAAZwAAAAADDAAAAAAADAAAAAABegAAAAAADAAAAAAAZwAAAAADZwAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAABZwAAAAADDAAAAAAAegAAAAAAZwAAAAADZwAAAAACZwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPAAAAAAAZwAAAAACZwAAAAACegAAAAAAZwAAAAABZwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAAZwAAAAABZwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAAZwAAAAADZwAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAADAAAAAACZwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAegAAAAAAMAAAAAAAZwAAAAAAZwAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAATgAAAAAAMAAAAAAAMAAAAAAAZwAAAAACZwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAATgAAAAAAMAAAAAAAMAAAAAAADAAAAAACZwAAAAACZwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
+ tiles: NAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAADbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAADAAAAAADDAAAAAACawAAAAADawAAAAADawAAAAACDAAAAAAAMgAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADMgAAAAAAMgAAAAAAawAAAAAAawAAAAABawAAAAABawAAAAACawAAAAADawAAAAACawAAAAABawAAAAAADAAAAAAADAAAAAADDAAAAAAAfwAAAAAAfwAAAAAADAAAAAACMgAAAAAAawAAAAACawAAAAACawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAACawAAAAAADAAAAAADDAAAAAACfwAAAAAADAAAAAADawAAAAACawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAADDAAAAAADTwAAAAADawAAAAABawAAAAABawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAPgAAAAAAawAAAAAAawAAAAADfwAAAAAAawAAAAAAawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAACawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAawAAAAABawAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAADAAAAAAAawAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAfwAAAAAAMgAAAAAAawAAAAAAawAAAAADDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAAawAAAAACawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAAAawAAAAACawAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: WgAAAAACWgAAAAACWgAAAAADegAAAAAAawAAAAAAawAAAAAAagAAAAAAawAAAAAAawAAAAADagAAAAAAagAAAAAAagAAAAAAawAAAAABagAAAAAAagAAAAAAagAAAAAAWgAAAAADWgAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABWgAAAAABWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAADAAAAAADWgAAAAAAWgAAAAAATgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADTgAAAAAADAAAAAADDAAAAAADDAAAAAABMAAAAAAAMAAAAAAAMAAAAAAATgAAAAAADAAAAAAAWgAAAAADWgAAAAAATgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABTgAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABMAAAAAAAMAAAAAAATgAAAAAADAAAAAACWgAAAAAAWgAAAAADegAAAAAAHgAAAAABTQAAAAABTQAAAAACHgAAAAABegAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAABTQAAAAACTQAAAAAAegAAAAAADAAAAAADWgAAAAADWgAAAAAATQAAAAAAHgAAAAAATQAAAAACTQAAAAACHgAAAAACTQAAAAACTQAAAAACTQAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAACTQAAAAABWgAAAAAAWgAAAAAAWgAAAAACTQAAAAAAHgAAAAADTQAAAAAATQAAAAAAHgAAAAABTQAAAAAATQAAAAADTQAAAAADTQAAAAACTQAAAAAATQAAAAADTQAAAAABTQAAAAABWgAAAAADWgAAAAABWgAAAAABegAAAAAAHgAAAAAATQAAAAACTQAAAAACHgAAAAABegAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAAATQAAAAABegAAAAAAWgAAAAACWgAAAAACWgAAAAACTgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAAdwAAAAAAdwAAAAADegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADTgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAADdwAAAAABdwAAAAABdwAAAAADWgAAAAABTQAAAAAAWgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAACdwAAAAACdwAAAAADdwAAAAACdwAAAAADWgAAAAACTQAAAAAAWgAAAAADTQAAAAADegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAABWgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAADdwAAAAACdwAAAAABdwAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAADTQAAAAACTQAAAAABTQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAACWgAAAAAAWgAAAAADWgAAAAABWgAAAAABegAAAAAATQAAAAACTQAAAAADTQAAAAABegAAAAAAdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAABdwAAAAAAdwAAAAAC
+ tiles: XgAAAAAAawAAAAAAXgAAAAADfwAAAAAAbwAAAAADbwAAAAAAbgAAAAAAbwAAAAACbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAXgAAAAABawAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAABawAAAAADXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAADAAAAAAAawAAAAACXgAAAAABUAAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAAAUAAAAAAADAAAAAABDAAAAAABDAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAADAAAAAABawAAAAABXgAAAAADUAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAAAUAAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAADMgAAAAAAMgAAAAAAUAAAAAAADAAAAAABawAAAAAAXgAAAAABfwAAAAAAIAAAAAADTwAAAAADTwAAAAADIAAAAAACfwAAAAAATwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAACTwAAAAAAfwAAAAAAXgAAAAABawAAAAACXgAAAAAATwAAAAAAIAAAAAADTwAAAAACTwAAAAADIAAAAAABTwAAAAAATwAAAAADTwAAAAADTwAAAAABTwAAAAADTwAAAAADTwAAAAACTwAAAAAAXgAAAAAAawAAAAAAXgAAAAADTwAAAAACIAAAAAAATwAAAAABTwAAAAACIAAAAAADTwAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAADTwAAAAAATwAAAAADaQAAAAADaQAAAAAAaQAAAAAAfwAAAAAAIAAAAAADTwAAAAADTwAAAAACIAAAAAACfwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAACTwAAAAAATwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAewAAAAABewAAAAADfwAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAADUAAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAABfwAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAACewAAAAACewAAAAADewAAAAADTwAAAAABTwAAAAAATwAAAAADfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAADewAAAAABewAAAAADewAAAAACewAAAAABTwAAAAABTwAAAAAATwAAAAABTwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAANAAAAAAAfwAAAAAANAAAAAAANAAAAAAATwAAAAABewAAAAABewAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAADewAAAAADaQAAAAABaQAAAAABaQAAAAABfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAADewAAAAACewAAAAACXgAAAAADawAAAAACXgAAAAABXgAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAACfwAAAAAAewAAAAACewAAAAADewAAAAACewAAAAABewAAAAACewAAAAABewAAAAAC
version: 6
0,-3:
ind: 0,-3
- tiles: TQAAAAACTQAAAAACTQAAAAADdgAAAAAATgAAAAAAMAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAABdgAAAAAATgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAAATQAAAAADdgAAAAABTgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAADcAAAAAACdgAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAMAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAACcAAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAAATgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAABTgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTQAAAAABTQAAAAAAcAAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADTgAAAAAAMAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTQAAAAADTQAAAAABcAAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAABTgAAAAAAMAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTQAAAAADTQAAAAADcAAAAAACcAAAAAACcAAAAAABcAAAAAAAdgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAAADAAAAAACTQAAAAADTQAAAAADTQAAAAAATQAAAAADcAAAAAABdgAAAAACegAAAAAAawAAAAADagAAAAAAegAAAAAAeQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADAAAAAADDAAAAAAADAAAAAAATQAAAAABTQAAAAACTQAAAAAAcAAAAAABdgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATQAAAAABDAAAAAAATQAAAAACTQAAAAACTQAAAAAATQAAAAABcAAAAAADdgAAAAACegAAAAAAawAAAAADegAAAAAAagAAAAAAegAAAAAAdwAAAAADTQAAAAABTQAAAAACTQAAAAADTQAAAAABTQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADdgAAAAACegAAAAAAawAAAAABegAAAAAAawAAAAADegAAAAAAdwAAAAABdwAAAAABdwAAAAADTQAAAAABTQAAAAADTQAAAAACcAAAAAABWgAAAAAAWgAAAAACWgAAAAADWgAAAAADegAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAAdwAAAAABdwAAAAAAdwAAAAACTQAAAAACTQAAAAACTQAAAAADcAAAAAACWgAAAAADWgAAAAABWgAAAAACWgAAAAAAegAAAAAAawAAAAACegAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAACTQAAAAADcAAAAAABcAAAAAACcAAAAAABcAAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAACegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAABTQAAAAAA
+ tiles: TwAAAAADTwAAAAABTwAAAAAAXgAAAAADUAAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAAATwAAAAAAXgAAAAADUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAACTwAAAAABXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAAACXgAAAAACXgAAAAADXgAAAAACfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAADTwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAABTwAAAAACNAAAAAAANAAAAAAANAAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAATwAAAAABTwAAAAAATwAAAAADTwAAAAACXgAAAAAAXgAAAAABXgAAAAADXgAAAAADTwAAAAABNAAAAAAAfwAAAAAANAAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAABVwAAAAADTwAAAAADXgAAAAADXgAAAAACXgAAAAACXgAAAAACTwAAAAACNAAAAAAAfwAAAAAANAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAVwAAAAAAVwAAAAACVwAAAAACTwAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAAATwAAAAAANAAAAAAAfwAAAAAANAAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAVwAAAAADVwAAAAACVwAAAAAATwAAAAABTwAAAAABTwAAAAADTwAAAAABXgAAAAAATwAAAAADTwAAAAAATwAAAAACTwAAAAABTwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAVwAAAAADDAAAAAABVwAAAAABVwAAAAAAVwAAAAABVwAAAAABTwAAAAACXgAAAAABfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAADDAAAAAABDAAAAAAAVwAAAAADVwAAAAAAVwAAAAACTwAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAADVwAAAAACDAAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAADTwAAAAAAXgAAAAACfwAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAADVwAAAAACVwAAAAACVwAAAAAATwAAAAACTwAAAAADTwAAAAACTwAAAAABXgAAAAADfwAAAAAAbwAAAAABfwAAAAAAbwAAAAACTwAAAAABewAAAAAAewAAAAACewAAAAAAVwAAAAAAVwAAAAABVwAAAAADTwAAAAABXgAAAAADXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfQAAAAADewAAAAACewAAAAAAVwAAAAABVwAAAAADVwAAAAAATwAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAADfwAAAAAAbwAAAAADfwAAAAAAbgAAAAAAfwAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAACTwAAAAABTwAAAAADTwAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAABfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAATwAAAAABfwAAAAAANAAAAAAANAAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: TgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAAATQAAAAACTQAAAAACTQAAAAACTQAAAAABTQAAAAACTQAAAAAATQAAAAACTQAAAAACTQAAAAADTQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAACTQAAAAADTQAAAAACTQAAAAABTQAAAAADTQAAAAABTQAAAAADTQAAAAACTQAAAAACTQAAAAACTQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAABTQAAAAACTQAAAAABTQAAAAACTQAAAAADTQAAAAAATQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABawAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAABagAAAAAAagAAAAAAawAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAABTQAAAAACTQAAAAABTQAAAAAATQAAAAABTQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAABTQAAAAADTQAAAAADTQAAAAACTQAAAAAATQAAAAABTQAAAAAAagAAAAAAagAAAAAAawAAAAABagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAAAawAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfQAAAAAAfQAAAAABfQAAAAACfQAAAAACfQAAAAACfQAAAAACfQAAAAADfQAAAAADfQAAAAADfQAAAAADfQAAAAAAfQAAAAADfQAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAACTwAAAAACTwAAAAACTwAAAAACTwAAAAADTwAAAAABTwAAAAADewAAAAADewAAAAABewAAAAACfQAAAAADfwAAAAAAfwAAAAAAbwAAAAADewAAAAACewAAAAADewAAAAACTwAAAAABTwAAAAACTwAAAAADTwAAAAADTwAAAAAATwAAAAACewAAAAACewAAAAAAewAAAAABfQAAAAAAfwAAAAAAfwAAAAAAbwAAAAADewAAAAAAewAAAAADewAAAAADewAAAAADewAAAAABewAAAAABewAAAAABewAAAAAAewAAAAADewAAAAAAewAAAAABewAAAAAAfQAAAAADfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATQAAAAABTgAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATQAAAAADTQAAAAADTQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTgAAAAAATQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADTQAAAAACTQAAAAACTQAAAAABTQAAAAADTQAAAAAATgAAAAAAHgAAAAABTQAAAAACTQAAAAAATQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAACTQAAAAADHgAAAAACTQAAAAADTQAAAAACTQAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAAATQAAAAACTQAAAAADTgAAAAAAHgAAAAAATQAAAAAATQAAAAACTQAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADHgAAAAADTQAAAAACTQAAAAAATQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAATQAAAAABTQAAAAAATQAAAAADagAAAAAAagAAAAAAagAAAAAAawAAAAADagAAAAAAagAAAAAAagAAAAAATQAAAAAAawAAAAACagAAAAAAagAAAAAATQAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAawAAAAADawAAAAADagAAAAAAawAAAAABawAAAAADawAAAAADawAAAAADTQAAAAABagAAAAAAagAAAAAAawAAAAADegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAawAAAAABawAAAAABagAAAAAAagAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAATQAAAAACegAAAAAATQAAAAAAagAAAAAAegAAAAAAawAAAAAAawAAAAABawAAAAABawAAAAACagAAAAAATQAAAAADMAAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABTQAAAAABHgAAAAABagAAAAAAegAAAAAAegAAAAAAawAAAAAAawAAAAACagAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACTQAAAAACHgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAAATQAAAAACTQAAAAADTQAAAAAAHgAAAAADTQAAAAACHgAAAAACagAAAAAAegAAAAAAegAAAAAAawAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAACTQAAAAABTQAAAAAATQAAAAADHgAAAAADTQAAAAABHgAAAAAD
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAADTwAAAAACUAAAAAAATwAAAAABTwAAAAADTwAAAAABUAAAAAAATwAAAAAATwAAAAACUAAAAAAAUAAAAAAAIQAAAAAAUAAAAAAAUAAAAAAATwAAAAAAIAAAAAADIAAAAAAAIAAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAADUAAAAAAAIAAAAAABIAAAAAABIQAAAAAAIQAAAAADIQAAAAABIQAAAAAAIQAAAAABTwAAAAAAIAAAAAADIAAAAAADIAAAAAAAJQAAAAACIAAAAAABIAAAAAACIAAAAAAAJQAAAAADIAAAAAADIAAAAAACIQAAAAABTwAAAAAATwAAAAAATwAAAAABIQAAAAAATwAAAAABIAAAAAABIAAAAAADJQAAAAABJQAAAAABJQAAAAABJQAAAAABJQAAAAABJQAAAAACJQAAAAAAIAAAAAABIQAAAAADTwAAAAAATwAAAAACTwAAAAABIQAAAAADTwAAAAABIAAAAAADIAAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAAAJQAAAAACJQAAAAADJQAAAAADIAAAAAABIQAAAAACTwAAAAABTwAAAAADTwAAAAABIQAAAAADTwAAAAADIAAAAAADIAAAAAAAIAAAAAAAJQAAAAACIAAAAAADIAAAAAADIAAAAAABJQAAAAADIAAAAAAAIAAAAAACIQAAAAABIQAAAAABIQAAAAADIQAAAAAAIQAAAAABTwAAAAAAIAAAAAADIAAAAAAAIAAAAAACUAAAAAAAIAAAAAADIAAAAAADIAAAAAABUAAAAAAAIAAAAAABIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACIAAAAAACUAAAAAAATwAAAAAATwAAAAACTwAAAAAAUAAAAAAAIAAAAAADIAAAAAAATwAAAAACTwAAAAADTwAAAAACTwAAAAADTwAAAAACTwAAAAADfwAAAAAAfwAAAAAAIAAAAAADUAAAAAAAIAAAAAACIAAAAAAAIAAAAAACUAAAAAAAIAAAAAABIAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAMgAAAAAAUAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAUAAAAAAAIAAAAAACIAAAAAADbwAAAAACbwAAAAAAbgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAACbgAAAAAAMgAAAAAAUAAAAAAAIAAAAAABTwAAAAAAIAAAAAACUAAAAAAAIAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbwAAAAABbwAAAAADbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAAATwAAAAAAIAAAAAACUAAAAAAAfwAAAAAATwAAAAADbgAAAAAAfwAAAAAAbwAAAAAAbwAAAAACbwAAAAABbwAAAAAAbgAAAAAATwAAAAADMgAAAAAAUAAAAAAAIAAAAAABTwAAAAADIAAAAAACUAAAAAAATwAAAAADIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAADTwAAAAABIAAAAAACUAAAAAAATwAAAAAAIQAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAACTwAAAAAAIAAAAAABUAAAAAAATwAAAAAAIQAAAAABbgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAUAAAAAAAIAAAAAABTwAAAAACIAAAAAACUAAAAAAATwAAAAAAIQAAAAAB
version: 6
-1,-3:
ind: -1,-3
- tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdgAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAdgAAAAAAHgAAAAABegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdgAAAAADHgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAHgAAAAAAegAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAAATgAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAAAcAAAAAADHgAAAAACTgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAATgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACcAAAAAAAHgAAAAAATgAAAAAAHgAAAAADTQAAAAABTQAAAAABTQAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAABTgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAADcAAAAAABHgAAAAABTQAAAAACHgAAAAAATQAAAAACTQAAAAAATQAAAAABHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAADHgAAAAADQQAAAAAAHgAAAAACTQAAAAACTQAAAAAATQAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAACcAAAAAADTQAAAAAATQAAAAADTQAAAAACHgAAAAABTgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAAdgAAAAACcAAAAAADTQAAAAABTQAAAAABTQAAAAADTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAdgAAAAADcAAAAAACTQAAAAACTQAAAAACTQAAAAAAHgAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACegAAAAAAawAAAAACegAAAAAAegAAAAAAdgAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAACegAAAAAAawAAAAABegAAAAAAegAAAAAAZwAAAAACZwAAAAAAZwAAAAAAegAAAAAAcAAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAZwAAAAAAZwAAAAACZwAAAAADZwAAAAABcAAAAAAAHgAAAAADegAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAZwAAAAAAZwAAAAACZwAAAAADZwAAAAACcAAAAAAB
+ tiles: TwAAAAACTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADIAAAAAABfwAAAAAAUAAAAAAAewAAAAADewAAAAABewAAAAABewAAAAABewAAAAABewAAAAACewAAAAADUAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABIAAAAAAATwAAAAAAUAAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAACewAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAXgAAAAAAIAAAAAAATwAAAAACUAAAAAAAewAAAAACewAAAAACewAAAAAAewAAAAAAewAAAAABewAAAAADfwAAAAAAfwAAAAAAXgAAAAADXgAAAAABXgAAAAACXgAAAAACXgAAAAABIAAAAAADTwAAAAAAUAAAAAAAewAAAAACIQAAAAACIQAAAAABIQAAAAACIQAAAAACIQAAAAABIQAAAAACUAAAAAAAXgAAAAABXgAAAAADXgAAAAACXgAAAAADTwAAAAACIAAAAAADTwAAAAADUAAAAAAAewAAAAACIQAAAAACIQAAAAABIQAAAAACIQAAAAABIQAAAAABIQAAAAADUAAAAAAAXgAAAAAAXgAAAAADXgAAAAADXgAAAAABTwAAAAABIAAAAAADUAAAAAAAIAAAAAADIAAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAACIQAAAAAAIQAAAAACUAAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADTwAAAAADIAAAAAACTwAAAAABIQAAAAADIQAAAAABIQAAAAADIQAAAAADIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAADTwAAAAAATwAAAAADTwAAAAABIAAAAAACIAAAAAAAIQAAAAAAIQAAAAABIQAAAAAAIQAAAAACIQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABTwAAAAAAVwAAAAAAVwAAAAADVwAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAABTwAAAAADVwAAAAABVwAAAAAAVwAAAAACTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAATwAAAAACVwAAAAADVwAAAAADVwAAAAABIQAAAAAAfwAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAABIQAAAAABfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAACTwAAAAACTwAAAAABTwAAAAABTwAAAAAAIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAAAIQAAAAAAIQAAAAADfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAABXgAAAAAAXgAAAAACXgAAAAABTwAAAAADIQAAAAADIQAAAAADIQAAAAADIQAAAAACIQAAAAACIQAAAAACIQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAAAXgAAAAACTwAAAAAAIQAAAAAAfwAAAAAAIAAAAAADIQAAAAACIQAAAAACIQAAAAABIQAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAATwAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAAATQAAAAADdwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAdwAAAAABdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAADdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAdwAAAAABdwAAAAABdwAAAAACdwAAAAAAdwAAAAABdwAAAAACdwAAAAABeAAAAAADeAAAAAADeAAAAAAAeAAAAAACegAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABTQAAAAABTQAAAAABTQAAAAACTQAAAAAATQAAAAABTQAAAAACdwAAAAABeAAAAAACdwAAAAADdwAAAAADeAAAAAADegAAAAAAHAAAAAAAGwAAAAACTQAAAAABTQAAAAADTQAAAAAATQAAAAAATQAAAAABTQAAAAAATQAAAAACTQAAAAADdwAAAAAAeAAAAAADeAAAAAADeAAAAAADeAAAAAACegAAAAAAHAAAAAAAGwAAAAABTQAAAAADEwAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAewAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAewAAAAABfQAAAAADfQAAAAAAewAAAAADewAAAAADewAAAAADewAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAewAAAAABfQAAAAADfQAAAAADewAAAAADewAAAAAAewAAAAAAewAAAAABfwAAAAAATwAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAfQAAAAABfQAAAAADewAAAAACewAAAAABewAAAAABfQAAAAAAbgAAAAAATwAAAAABTwAAAAADTwAAAAAAfwAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAAATwAAAAAATwAAAAACaQAAAAABaQAAAAAATwAAAAABTwAAAAACTwAAAAABfwAAAAAAHgAAAAACHQAAAAACTwAAAAADTwAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAATwAAAAAATwAAAAABbgAAAAAAbgAAAAAAbwAAAAABfwAAAAAAHgAAAAAAHQAAAAAATwAAAAACOgAAAAAD
version: 6
2,-3:
ind: 2,-3
- tiles: AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAABegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACTQAAAAACTQAAAAADGwAAAAAAHAAAAAACegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAEwAAAAAAEwAAAAABEwAAAAADEwAAAAADEwAAAAAATQAAAAADGwAAAAAAHAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAACTwAAAAAATwAAAAAATwAAAAACTwAAAAACTwAAAAADHQAAAAACHgAAAAACfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOgAAAAABOgAAAAAAOgAAAAADOgAAAAADOgAAAAAATwAAAAAAHQAAAAADHgAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAOQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAOQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAATgAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAagAAAAAAagAAAAAAagAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAADbwAAAAABbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: dwAAAAABdwAAAAAATQAAAAABagAAAAAAawAAAAABagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAABawAAAAACawAAAAABagAAAAAAagAAAAAAegAAAAAAdwAAAAABdwAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAABdwAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAABHgAAAAABHgAAAAABegAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAAagAAAAAAawAAAAAAawAAAAADagAAAAAAawAAAAADegAAAAAAagAAAAAAagAAAAAATQAAAAADHgAAAAAAHgAAAAADTQAAAAABawAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAACagAAAAAAagAAAAAAHgAAAAAAHgAAAAABHgAAAAACegAAAAAAawAAAAADagAAAAAAagAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAADHgAAAAABTQAAAAABagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAACHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAA
+ tiles: ewAAAAAAewAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbwAAAAADbwAAAAABewAAAAABewAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAADfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACIAAAAAADIAAAAAABTwAAAAABfwAAAAAAbwAAAAABbwAAAAABfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAAIAAAAAAAIAAAAAACfwAAAAAAfwAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAIAAAAAADIAAAAAADfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAMQAAAAAAIAAAAAABIAAAAAABTwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAOQAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAEgAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAIAAAAAABfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACIAAAAAADIAAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: agAAAAAAawAAAAABegAAAAAAagAAAAAAegAAAAAADAAAAAAAJQAAAAADJQAAAAAAJQAAAAADTQAAAAADdwAAAAABdwAAAAADdwAAAAADdwAAAAACdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAawAAAAAATQAAAAADDAAAAAADJQAAAAAAJQAAAAACJQAAAAADTQAAAAADdwAAAAACdwAAAAADdwAAAAACegAAAAAAdwAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAADAAAAAAAJQAAAAACTQAAAAAAJQAAAAABTQAAAAADdwAAAAABdwAAAAACdwAAAAABegAAAAAAdwAAAAAAdwAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAABJQAAAAAATQAAAAACJQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAAAJQAAAAACTQAAAAABJQAAAAACegAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAAAJQAAAAAATQAAAAABJQAAAAACTQAAAAAAHgAAAAAAHgAAAAADTQAAAAAAagAAAAAAagAAAAAATQAAAAABeQAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAADAAAAAABJQAAAAADTQAAAAADJQAAAAADegAAAAAAHgAAAAACHgAAAAABTQAAAAABagAAAAAAagAAAAAAagAAAAAAeQAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAADAAAAAADJQAAAAADTQAAAAABJQAAAAAATgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACeQAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAADAAAAAAAJQAAAAABTQAAAAAAJQAAAAABTgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABeQAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAADAAAAAABJQAAAAABTQAAAAAAJQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAADJQAAAAACTQAAAAACJQAAAAABTgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAACJQAAAAACJQAAAAABJQAAAAAATQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAADAAAAAADJQAAAAACJQAAAAAAJQAAAAABTgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABawAAAAACegAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAD
+ tiles: bgAAAAAAbwAAAAABfwAAAAAAbgAAAAAAfwAAAAAADAAAAAABJwAAAAABJwAAAAAAJwAAAAABTwAAAAABewAAAAACewAAAAABewAAAAABewAAAAACewAAAAABewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADTwAAAAABDAAAAAABJwAAAAADJwAAAAADJwAAAAAATwAAAAABewAAAAACewAAAAACewAAAAADfwAAAAAAewAAAAACewAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAADAAAAAABJwAAAAAATwAAAAAAJwAAAAACTwAAAAADewAAAAADewAAAAACewAAAAAAfwAAAAAAewAAAAADewAAAAACbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAADJwAAAAADTwAAAAAAJwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAADJwAAAAADTwAAAAADJwAAAAABfwAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAABJwAAAAAATwAAAAADJwAAAAABTwAAAAADIAAAAAADIAAAAAABTwAAAAAATwAAAAADTwAAAAABTwAAAAACfgAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAADAAAAAADJwAAAAADTwAAAAACJwAAAAABfwAAAAAAIAAAAAAAIAAAAAABTwAAAAAATwAAAAABTwAAAAABTwAAAAACfgAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAADAAAAAACJwAAAAADTwAAAAACJwAAAAADUAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAAAIAAAAAABIAAAAAADfgAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAADAAAAAABJwAAAAABTwAAAAABJwAAAAACUAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAADAAAAAADJwAAAAABTwAAAAAAJwAAAAABfwAAAAAATwAAAAADTwAAAAABfwAAAAAATwAAAAADTwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACJwAAAAACTwAAAAADJwAAAAACUAAAAAAAIAAAAAADIAAAAAABIAAAAAAATwAAAAABTwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACJwAAAAABJwAAAAADJwAAAAADTwAAAAAAIAAAAAACIAAAAAACIAAAAAACTwAAAAACTwAAAAAATwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAADAAAAAACJwAAAAADJwAAAAADJwAAAAACUAAAAAAAIAAAAAAAIAAAAAADIAAAAAAATwAAAAADTwAAAAAATwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAATwAAAAADTwAAAAADTwAAAAADbwAAAAABfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADbwAAAAACfwAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAAD
version: 6
1,2:
ind: 1,2
- tiles: agAAAAAAagAAAAAAagAAAAAAawAAAAAAawAAAAADawAAAAABagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAawAAAAADagAAAAAAagAAAAAAawAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAegAAAAAADAAAAAACDAAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACTQAAAAADTQAAAAABTQAAAAADHgAAAAABTgAAAAAADAAAAAAADAAAAAADAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADTgAAAAAADAAAAAADDAAAAAADeQAAAAAATgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAATgAAAAAAAAAAAAAAegAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAACTgAAAAAADAAAAAACDAAAAAAAeQAAAAAATgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAATgAAAAAAeQAAAAAAAAAAAAAAHgAAAAADTQAAAAABTQAAAAAATQAAAAABHgAAAAACTgAAAAAADAAAAAACDAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAegAAAAAADAAAAAABDAAAAAABAAAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAATQAAAAABHgAAAAACegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAAATQAAAAAAHgAAAAACegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAHgAAAAAATgAAAAAAeQAAAAAAegAAAAAAegAAAAAATQAAAAACHgAAAAADTQAAAAAAHgAAAAABegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAHgAAAAACegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAABHgAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTQAAAAACHgAAAAACTQAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAABTQAAAAADagAAAAAATQAAAAAAegAAAAAAegAAAAAAHgAAAAABTQAAAAAAHgAAAAACegAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAATQAAAAACHgAAAAABTQAAAAADHgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: bgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbwAAAAAAbwAAAAABbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbwAAAAACbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAAAfwAAAAAADAAAAAACDAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAADTwAAAAABTwAAAAAATwAAAAADIAAAAAACUAAAAAAADAAAAAACDAAAAAADAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABUAAAAAAADAAAAAADDAAAAAADfgAAAAAAUAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUAAAAAAAAAAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAAAUAAAAAAADAAAAAADDAAAAAADfgAAAAAAUAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAIAAAAAABTwAAAAACTwAAAAABTwAAAAABIAAAAAACUAAAAAAADAAAAAACDAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACIAAAAAADfwAAAAAADAAAAAABDAAAAAABAAAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAIAAAAAABTwAAAAABIAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAIAAAAAAATwAAAAACIAAAAAACfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAATwAAAAADIAAAAAAATwAAAAAAIAAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAACIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADTwAAAAACIAAAAAACTwAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAADbgAAAAAAfwAAAAAAfwAAAAAAIAAAAAABTwAAAAABIAAAAAAAfwAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAAAIAAAAAADbgAAAAAAfwAAAAAATwAAAAABIAAAAAAATwAAAAACIAAAAAACfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: egAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAACTgAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAABTgAAAAAATgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAADTgAAAAAATgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAACHgAAAAADTgAAAAAAegAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAADAAAAAABTQAAAAAATgAAAAAAHgAAAAAAHgAAAAADHgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAADegAAAAAATgAAAAAAHgAAAAAAHgAAAAADTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAACegAAAAAATgAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAACHgAAAAABHgAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABegAAAAAATgAAAAAAHgAAAAAAHgAAAAADegAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAACTQAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAATgAAAAAATgAAAAAAHgAAAAABHgAAAAACTQAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAACHgAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAHgAAAAACTgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAATgAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADegAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADTQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAASQAAAAACSQAAAAACSQAAAAAASQAAAAAASQAAAAACSQAAAAAASQAAAAADSQAAAAACSQAAAAABSQAAAAACSQAAAAAASQAAAAADSQAAAAACTgAAAAAAWgAAAAAA
+ tiles: fwAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAIQAAAAABIQAAAAADIQAAAAAAIQAAAAABIQAAAAACfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIAAAAAADUAAAAAAAUAAAAAAATwAAAAACIQAAAAADIQAAAAABIQAAAAADIQAAAAADIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIAAAAAAAUAAAAAAAUAAAAAAATwAAAAABIQAAAAABIQAAAAACIQAAAAACIQAAAAAAIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADUAAAAAAAUAAAAAAAIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIQAAAAABIQAAAAADfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACUAAAAAAAUAAAAAAAIAAAAAABIAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAACfwAAAAAAUAAAAAAAIAAAAAACIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAABfwAAAAAAIAAAAAABfwAAAAAAUAAAAAAAIAAAAAACIAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAACUAAAAAAAfwAAAAAAIAAAAAACIAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIAAAAAAAIAAAAAABfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAAATwAAAAACIAAAAAADIAAAAAAATwAAAAADUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAAATwAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAADTwAAAAABIAAAAAACIAAAAAABTwAAAAACUAAAAAAAUAAAAAAAIAAAAAABIAAAAAACTwAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAADfwAAAAAAUAAAAAAAIAAAAAADIAAAAAABUAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAUAAAAAAAIAAAAAAAIAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAACUAAAAAAAUAAAAAAAIAAAAAADIAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAADTwAAAAACTwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACUAAAAAAAUAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAACDAAAAAADDAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAATwAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAACfwAAAAAAfwAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAACDAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAACDAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAXgAAAAAC
version: 6
-2,2:
ind: -2,2
- tiles: egAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAAATQAAAAACTQAAAAACegAAAAAATQAAAAADTQAAAAADTQAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAABegAAAAAATQAAAAADTQAAAAAATQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADTgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAABHgAAAAAATQAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAHgAAAAADHgAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATQAAAAABHgAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAATQAAAAABTgAAAAAATgAAAAAATgAAAAAATQAAAAAAHgAAAAAAHgAAAAADegAAAAAAegAAAAAARAAAAAAARAAAAAAATQAAAAADRAAAAAAATQAAAAAARAAAAAAARAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAARAAAAAAARAAAAAAATQAAAAACRAAAAAAATQAAAAAARAAAAAAARAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAABTQAAAAACegAAAAAAegAAAAAARAAAAAAARAAAAAAATQAAAAAARAAAAAAATQAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAATgAAAAAAegAAAAAAMAAAAAAA
+ tiles: fwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAADgAAAAABDgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAAAIQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAADgAAAAAADgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAATwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAUAAAAAAAQwAAAAAAQwAAAAAATwAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAUAAAAAAAUAAAAAAATwAAAAAATwAAAAABTwAAAAACTwAAAAADUAAAAAAATwAAAAAATwAAAAAAQwAAAAAATwAAAAADfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAADJQAAAAADJQAAAAADUAAAAAAATwAAAAABTwAAAAADTwAAAAABTwAAAAADTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAABTwAAAAABJQAAAAAAJQAAAAABJQAAAAADTwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAJQAAAAABJQAAAAADJQAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAABIAAAAAABIAAAAAAATwAAAAABUAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADUAAAAAAATwAAAAAAIAAAAAADUAAAAAAAQwAAAAAAQwAAAAAATwAAAAABTwAAAAACTwAAAAACfwAAAAAATwAAAAABfwAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: TgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABegAAAAAAaQAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABTQAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABTgAAAAAATgAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATQAAAAAATQAAAAAD
+ tiles: UAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADUAAAAAAAUAAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAADIQAAAAABIQAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAACUAAAAAAAUAAAAAAATwAAAAABbQAAAAAAfwAAAAAAfwAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABUAAAAAAAUAAAAAAAfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAIQAAAAADIQAAAAADIQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAADJQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAJQAAAAAAJQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAATwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: egAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAGwAAAAAAGwAAAAADegAAAAAAdwAAAAACdwAAAAAAdwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAACDAAAAAADegAAAAAAdwAAAAACeAAAAAADeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAACegAAAAAAdwAAAAACeAAAAAABeAAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAADegAAAAAAdwAAAAAAeAAAAAACeAAAAAABGAAAAAAEegAAAAAAegAAAAAAegAAAAAADAAAAAAADAAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdwAAAAABeAAAAAADeAAAAAADGAAAAAADegAAAAAAegAAAAAAegAAAAAAGwAAAAABGwAAAAADegAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACegAAAAAAdwAAAAACdwAAAAAAdwAAAAABGAAAAAAAegAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAAAegAAAAAAXQAAAAADXQAAAAACJwAAAAADJwAAAAADJwAAAAABegAAAAAAegAAAAAAJwAAAAAAJwAAAAABegAAAAAATQAAAAADegAAAAAAegAAAAAAGwAAAAAAGwAAAAABegAAAAAAXQAAAAABXQAAAAABJwAAAAACJwAAAAACJwAAAAACTQAAAAACJwAAAAAAJwAAAAAAWgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAADegAAAAAAXQAAAAACXQAAAAACJwAAAAACJwAAAAAAJwAAAAAATgAAAAAAJwAAAAABJwAAAAACWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAGwAAAAAAGwAAAAABegAAAAAAXQAAAAABXQAAAAABJwAAAAAAJwAAAAADJwAAAAACJwAAAAABJwAAAAAAJwAAAAABWgAAAAABegAAAAAAawAAAAACegAAAAAAegAAAAAAGwAAAAACGwAAAAABTQAAAAABXQAAAAAAXQAAAAADJwAAAAACJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAWgAAAAADegAAAAAAawAAAAACegAAAAAAegAAAAAAGwAAAAADGwAAAAACegAAAAAAXQAAAAADXQAAAAADJwAAAAAAJwAAAAACJwAAAAADegAAAAAAJwAAAAADJwAAAAADWgAAAAABTgAAAAAAagAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAJwAAAAAAJwAAAAAAWgAAAAAATgAAAAAAagAAAAAAegAAAAAAegAAAAAAGwAAAAADGwAAAAACegAAAAAAXQAAAAAAXQAAAAADJwAAAAABJwAAAAACJwAAAAACJwAAAAAAJwAAAAADJwAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAGwAAAAACGwAAAAABegAAAAAAXQAAAAADXQAAAAADJwAAAAAAJwAAAAACJwAAAAAAJwAAAAACJwAAAAABJwAAAAACWgAAAAAB
+ tiles: fwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfQAAAAAAfQAAAAAAfQAAAAABfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAHQAAAAAAHQAAAAABfwAAAAAADgAAAAACTwAAAAACDgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAATwAAAAABYwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAATwAAAAAAYwAAAAAATwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfwAAAAAADgAAAAAATwAAAAAATwAAAAAAGgAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAHQAAAAAAHQAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAYwAAAAAATwAAAAAATwAAAAAAGgAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAACYQAAAAACYQAAAAACYQAAAAAAYQAAAAACfwAAAAAAYwAAAAAATwAAAAAATwAAAAAAGgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAYQAAAAABYQAAAAADYQAAAAAAYQAAAAADYQAAAAAAYQAAAAACYQAAAAADYQAAAAADfwAAAAAAfwAAAAAATwAAAAACTwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAYQAAAAABYQAAAAAAYQAAAAADYQAAAAABYQAAAAADYQAAAAADYQAAAAAAYQAAAAAATwAAAAABKQAAAAADKQAAAAACXgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAYQAAAAABYQAAAAADYQAAAAABYQAAAAAAYQAAAAAAKQAAAAADKQAAAAAAKQAAAAACUAAAAAAAKQAAAAADKQAAAAADXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAACYQAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAADXgAAAAACfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAYQAAAAAAYQAAAAACYQAAAAADYQAAAAAAYQAAAAACKQAAAAADKQAAAAACKQAAAAADKQAAAAAAKQAAAAADKQAAAAABXgAAAAACfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAADYQAAAAABYQAAAAACKQAAAAACKQAAAAABKQAAAAAAfwAAAAAAKQAAAAACKQAAAAACXgAAAAADUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAYQAAAAADYQAAAAABYQAAAAACYQAAAAADYQAAAAAAKQAAAAAAKQAAAAADKQAAAAAAfwAAAAAAKQAAAAADKQAAAAAAXgAAAAABUAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAYQAAAAADYQAAAAAAYQAAAAACYQAAAAACYQAAAAACKQAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAABKQAAAAADXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAADYQAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABKQAAAAABKQAAAAABXgAAAAAC
version: 6
-4,2:
ind: -4,2
- tiles: HgAAAAABegAAAAAAegAAAAAAegAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADTgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAABTgAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACHgAAAAACHgAAAAACTgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAegAAAAAAHgAAAAADHgAAAAACHgAAAAACegAAAAAAHgAAAAABHgAAAAABHgAAAAACTgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAHgAAAAAAHgAAAAADHgAAAAACegAAAAAAHgAAAAACHgAAAAACHgAAAAABegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAHgAAAAAAHgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAA
+ tiles: IgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAIgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAIgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACIAAAAAAAIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAAAIAAAAAACIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAADIAAAAAAAIAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAADIAAAAAADUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAIAAAAAABIAAAAAABIAAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: agAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAALwAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAADagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAGgAAAAACGQAAAAADGQAAAAAAGQAAAAADbwAAAAAAbwAAAAABbwAAAAADTwAAAAAAbwAAAAADbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGQAAAAAEGQAAAAAFGQAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbwAAAAACbgAAAAAAbgAAAAAAGQAAAAACGQAAAAAAGQAAAAAGGQAAAAABAAAAAAAAfgAAAAAATwAAAAACTwAAAAAATwAAAAABfwAAAAAAfwAAAAAAGgAAAAAEfwAAAAAAGQAAAAAAKwAAAAADGQAAAAAAGQAAAAADGQAAAAABGQAAAAAGKwAAAAACAAAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAADfwAAAAAAfwAAAAAAKwAAAAAAfwAAAAAAGQAAAAAGGQAAAAACGQAAAAABKwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAGGQAAAAAGfwAAAAAAfwAAAAAAGQAAAAACGgAAAAAFGgAAAAAFGQAAAAAGKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAGgAAAAADGgAAAAACGgAAAAACfwAAAAAAGQAAAAADfwAAAAAAfwAAAAAAGgAAAAABfwAAAAAAKwAAAAADGgAAAAAEGgAAAAACKwAAAAADKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAGQAAAAADKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAACKwAAAAADOQAAAAAAEgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAHGQAAAAAGUAAAAAAAOQAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAGQAAAAAAGQAAAAAGfwAAAAAAfwAAAAAAKwAAAAABKwAAAAACKwAAAAABfwAAAAAAfwAAAAAAKwAAAAAAGQAAAAACUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAGQAAAAAEfwAAAAAAGgAAAAAFfwAAAAAAKwAAAAAAKwAAAAABKwAAAAAAbQAAAAAAbQAAAAAAKwAAAAADGQAAAAAGUAAAAAAAOQAAAAAAfwAAAAAAGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAFKwAAAAACKwAAAAACKwAAAAABKwAAAAAAbQAAAAAAbQAAAAAAKwAAAAAAGQAAAAAEOQAAAAAAEgAAAAAAfwAAAAAAGgAAAAACGgAAAAAGfwAAAAAAfwAAAAAAKwAAAAAAKwAAAAACKwAAAAAAKwAAAAABKwAAAAAAbQAAAAAAbQAAAAAAGQAAAAAAGQAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAGgAAAAADfwAAAAAAKwAAAAAAKwAAAAABKwAAAAABKwAAAAACKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAGgAAAAABfwAAAAAAGgAAAAACfwAAAAAAKwAAAAAAKwAAAAADGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAGUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGgAAAAAGfwAAAAAAGgAAAAAHGgAAAAAGGgAAAAABGgAAAAAFGgAAAAABfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAA
version: 6
4,1:
ind: 4,1
- tiles: SQAAAAAAeAAAAAABdwAAAAAAdwAAAAAAdwAAAAABeAAAAAADdwAAAAACMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAACeAAAAAABdwAAAAADdwAAAAAAdwAAAAAAeAAAAAADdwAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAABeAAAAAADdwAAAAAAdwAAAAADdwAAAAAAeAAAAAADdwAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAeAAAAAAAdwAAAAACdwAAAAACdwAAAAAAeAAAAAADdwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAACeAAAAAAAdwAAAAACdwAAAAACdwAAAAABeAAAAAABdwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAABeAAAAAACdwAAAAABdwAAAAAAdwAAAAABeAAAAAACdwAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAADeAAAAAAAeAAAAAAAdwAAAAACeAAAAAACeAAAAAABeAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAASQAAAAABSQAAAAADeAAAAAACdwAAAAACeAAAAAABeAAAAAABeAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAASQAAAAABSQAAAAABeAAAAAADdwAAAAADeAAAAAABeAAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAATgAAAAAATQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAABegAAAAAAdwAAAAADdwAAAAAAdwAAAAAAdwAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAACegAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAAAegAAAAAAHgAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAACdwAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAA
+ tiles: IwAAAAABIgAAAAABIgAAAAAAIgAAAAADIgAAAAAAIgAAAAADewAAAAADMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAADIgAAAAACIgAAAAAAIgAAAAACIgAAAAADewAAAAABMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAAAIgAAAAABIgAAAAABIgAAAAADIgAAAAACewAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIgAAAAAAIgAAAAACIgAAAAADIgAAAAADIgAAAAAAewAAAAACMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAACIgAAAAADewAAAAACMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAADIgAAAAABewAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIgAAAAACIgAAAAAAIgAAAAABIgAAAAAAIgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAABIgAAAAAAIgAAAAAAIgAAAAADIgAAAAABfQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAADIgAAAAACIgAAAAABIgAAAAAAfQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAATwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABfwAAAAAAbwAAAAACbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAfwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAABTwAAAAABbgAAAAAAbwAAAAACbgAAAAAAbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbgAAAAAAbgAAAAAAfwAAAAAAewAAAAABIgAAAAADfwAAAAAAIgAAAAADfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIgAAAAABIgAAAAACIAAAAAACIgAAAAACIgAAAAAAIgAAAAADIgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAACGgAAAAAAGQAAAAAAfwAAAAAAIgAAAAAAIgAAAAABIAAAAAABIgAAAAACIgAAAAAAIgAAAAACIgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAGQAAAAACGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGQAAAAAAGQAAAAADGQAAAAAB
version: 6
4,0:
ind: 4,0
- tiles: DAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADAAAAAAADAAAAAACMAAAAAAAMAAAAAAADAAAAAADegAAAAAAegAAAAAAawAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATQAAAAADegAAAAAATQAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAADSQAAAAADeAAAAAACdwAAAAADeAAAAAABeAAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAABSQAAAAADeAAAAAADdwAAAAADeAAAAAACeAAAAAACeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAADeAAAAAABeAAAAAADdwAAAAADeAAAAAADeAAAAAABeAAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAeAAAAAABdwAAAAADdwAAAAADdwAAAAACeAAAAAAAdwAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAACeAAAAAAAdwAAAAADdwAAAAADdwAAAAABeAAAAAACdwAAAAABMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAABeAAAAAADdwAAAAADdwAAAAAAdwAAAAACeAAAAAABdwAAAAADMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: DAAAAAADMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAACDAAAAAACMgAAAAAAMgAAAAAADAAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAACTwAAAAABTwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAADTwAAAAABfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAADTwAAAAADTwAAAAAATwAAAAADTwAAAAADMgAAAAAAfwAAAAAAIgAAAAACewAAAAACIgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAIgAAAAADIgAAAAACIgAAAAAAfQAAAAADfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAACIgAAAAABIgAAAAADIgAAAAADIgAAAAABfQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIgAAAAABIgAAAAABIgAAAAADIgAAAAABIgAAAAABfQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIgAAAAADIgAAAAACIgAAAAACIgAAAAADIgAAAAACewAAAAABMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABIgAAAAADIgAAAAABIgAAAAAAIgAAAAAAIgAAAAABewAAAAACMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIgAAAAADIgAAAAADIgAAAAABIgAAAAADIgAAAAAAewAAAAADMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: DQAAAAAADQAAAAAADQAAAAAAZwAAAAACZwAAAAABZwAAAAABegAAAAAAZwAAAAABZwAAAAAAZwAAAAAAZwAAAAABZwAAAAADZwAAAAABZwAAAAABegAAAAAAegAAAAAADQAAAAAAZwAAAAABZwAAAAAAZwAAAAACMAAAAAAAMAAAAAAATgAAAAAAZwAAAAAAZwAAAAADZwAAAAADZwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAZwAAAAADZwAAAAADZwAAAAABDAAAAAAADAAAAAABDAAAAAACTgAAAAAAZwAAAAACZwAAAAABZwAAAAABZwAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAZwAAAAADMAAAAAAADAAAAAACDAAAAAABDAAAAAACMAAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAAMAAAAAAAMAAAAAAADAAAAAACMAAAAAAAegAAAAAAegAAAAAAegAAAAAAZwAAAAACZwAAAAABTQAAAAACZwAAAAABegAAAAAAegAAAAAAawAAAAACagAAAAAAegAAAAAAMAAAAAAADAAAAAAADAAAAAAADAAAAAAAegAAAAAAZwAAAAACTQAAAAACZwAAAAADZwAAAAABegAAAAAAZwAAAAADegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAACegAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAACZwAAAAADZwAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACegAAAAAAZwAAAAABZwAAAAADZwAAAAADZwAAAAABZwAAAAADZwAAAAAAZwAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAACegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAABZwAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAACegAAAAAAagAAAAAAegAAAAAAZwAAAAACZwAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAADZwAAAAADZwAAAAAADAAAAAABDAAAAAABegAAAAAAawAAAAACegAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAAAZwAAAAACegAAAAAAegAAAAAAegAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAAADAAAAAADMAAAAAAAMAAAAAAAegAAAAAAagAAAAAAegAAAAAADAAAAAACDAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADAAAAAAADAAAAAACMAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: DQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAABawAAAAACfwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAATwAAAAADfwAAAAAADQAAAAAAawAAAAADawAAAAADawAAAAAAMgAAAAAAMgAAAAAATwAAAAAAIwAAAAAAIwAAAAAAawAAAAACIwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAAAawAAAAADDAAAAAAADAAAAAABDAAAAAADTwAAAAAAIwAAAAAAIwAAAAAAawAAAAADIwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAawAAAAAAMgAAAAAADAAAAAACDAAAAAABfwAAAAAAMgAAAAAATwAAAAAAIwAAAAAAIwAAAAAAfwAAAAAAawAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAMgAAAAAAMgAAAAAADAAAAAADMgAAAAAAfwAAAAAAXgAAAAAATwAAAAAAIwAAAAAAIwAAAAAATwAAAAACXgAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAMgAAAAAADAAAAAACDAAAAAACDAAAAAADfwAAAAAAXgAAAAAATwAAAAADIwAAAAAAIwAAAAAATwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAADfwAAAAAAawAAAAACawAAAAAAawAAAAAAawAAAAABawAAAAACawAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAADfwAAAAAAawAAAAADawAAAAADawAAAAAAawAAAAADawAAAAACawAAAAACawAAAAACfwAAAAAAfwAAAAAATwAAAAACfwAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAACawAAAAABDAAAAAABDAAAAAACDAAAAAADDAAAAAACfwAAAAAAbgAAAAAAfwAAAAAAawAAAAAAawAAAAAADAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAADAAAAAACDAAAAAAAawAAAAACawAAAAABDAAAAAADDAAAAAACfwAAAAAAbwAAAAAAfwAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAADawAAAAADTwAAAAACfwAAAAAAfwAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAADfwAAAAAAbgAAAAAAfwAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAADDAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAABMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAADAAAAAACDAAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADAAAAAABDAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAMAAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAZwAAAAAAMAAAAAAAMAAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAACZwAAAAABMAAAAAAADAAAAAADegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAADQAAAAAAZwAAAAADZwAAAAACMAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACawAAAAABawAAAAAAawAAAAADagAAAAAAagAAAAAATgAAAAAAeQAAAAAADQAAAAAADQAAAAAAZwAAAAADMAAAAAAADAAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAATgAAAAAAeQAAAAAADQAAAAAADQAAAAAAZwAAAAABZwAAAAACDAAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACTgAAAAAAeQAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAADZwAAAAADZwAAAAABegAAAAAAZwAAAAADZwAAAAADZwAAAAAAZwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAACZwAAAAACZwAAAAAAZwAAAAACZwAAAAACZwAAAAADZwAAAAACZwAAAAABZwAAAAABZwAAAAABZwAAAAAAegAAAAAAegAAAAAADQAAAAAADQAAAAAADQAAAAAAZwAAAAACZwAAAAADZwAAAAAAZwAAAAABZwAAAAABZwAAAAACZwAAAAADZwAAAAADZwAAAAAAZwAAAAADZwAAAAABTgAAAAAATgAAAAAA
+ tiles: fwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADMgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAADawAAAAACMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAawAAAAABawAAAAADMgAAAAAADAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAADQAAAAAAawAAAAAAawAAAAADMgAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbwAAAAABbwAAAAADbwAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAAAMgAAAAAADAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAfwAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAABDAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABUAAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAABawAAAAADawAAAAABfwAAAAAAawAAAAABawAAAAAAawAAAAAAawAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAADawAAAAADawAAAAACawAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAATwAAAAACfwAAAAAADQAAAAAADQAAAAAADQAAAAAAawAAAAAAawAAAAACawAAAAADawAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAUAAAAAAAfwAAAAAA
version: 6
-5,2:
ind: -5,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAOQAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABTwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAACNAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAABNAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAACNAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACfwAAAAAAOwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAADgAAAAADDgAAAAABDgAAAAADegAAAAAAdwAAAAACdwAAAAADdwAAAAAATQAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAABDgAAAAAADgAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAABegAAAAAAagAAAAAAagAAAAAAawAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAAawAAAAAAagAAAAAAawAAAAABegAAAAAAagAAAAAAawAAAAAAagAAAAAAegAAAAAAWgAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAAawAAAAADegAAAAAAawAAAAAAagAAAAAAawAAAAADegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAAAagAAAAAAawAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAACHgAAAAAATgAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAawAAAAABegAAAAAAawAAAAACagAAAAAAagAAAAAAegAAAAAAawAAAAABegAAAAAAHgAAAAAAegAAAAAAMgAAAAAAMgAAAAAATQAAAAABagAAAAAAagAAAAAAegAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAABTQAAAAADHgAAAAACegAAAAAAMgAAAAAAMgAAAAAATgAAAAAAagAAAAAAagAAAAAAegAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAHgAAAAABegAAAAAAMgAAAAAAMgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAAAegAAAAAAHgAAAAACegAAAAAAMgAAAAAAMgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAADegAAAAAAHgAAAAACHgAAAAAAMgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAAMgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAIAAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAACTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAIAAAAAABIAAAAAACIAAAAAADegAAAAAAegAAAAAA
+ tiles: UAAAAAAAUAAAAAAAEgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAACDgAAAAADDgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAABTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAADgAAAAADDgAAAAABDgAAAAAAfwAAAAAAewAAAAACewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbwAAAAADbgAAAAAAbwAAAAACfwAAAAAAbgAAAAAAbwAAAAACbgAAAAAAfwAAAAAAXgAAAAACTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAbwAAAAACbgAAAAAAbwAAAAACfwAAAAAAbwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABbgAAAAAAbwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAIgAAAAABIgAAAAACUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAIgAAAAACfwAAAAAANAAAAAAANAAAAAAATwAAAAADbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACIgAAAAABfwAAAAAANAAAAAAANAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAfwAAAAAATwAAAAADfwAAAAAATwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAIgAAAAAAfwAAAAAANAAAAAAANAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAATwAAAAAATwAAAAACTwAAAAACfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAABfwAAAAAAIgAAAAACfwAAAAAANAAAAAAANAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAIgAAAAABIgAAAAADNAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAABfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAIgAAAAACNAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAAFfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIgAAAAABUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAADGQAAAAACfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAIgAAAAABUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAADfwAAAAAATwAAAAADTwAAAAACTwAAAAABTwAAAAABfwAAAAAAfwAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: QgAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAdwAAAAACdwAAAAACdwAAAAABegAAAAAADgAAAAAADgAAAAAADgAAAAADegAAAAAAawAAAAAAegAAAAAAQgAAAAAAegAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAACFAAAAAACDgAAAAABDgAAAAAADgAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAACegAAAAAADgAAAAABDgAAAAAADgAAAAACegAAAAAAagAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATQAAAAADdwAAAAACdwAAAAABdwAAAAABegAAAAAADgAAAAABDgAAAAABDgAAAAADegAAAAAAagAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAATgAAAAAATQAAAAACTgAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAawAAAAACegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAADdwAAAAACegAAAAAAagAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAABegAAAAAAegAAAAAAegAAAAAAdwAAAAACTQAAAAADTQAAAAAATQAAAAABTQAAAAACTQAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAAZwAAAAABZwAAAAACZwAAAAACZwAAAAAAZwAAAAADTQAAAAADdwAAAAAATQAAAAAATQAAAAACTQAAAAAATQAAAAACTQAAAAABdwAAAAACTQAAAAADWgAAAAADWgAAAAABTQAAAAABTQAAAAABTQAAAAAATQAAAAAAZwAAAAABTQAAAAAAdwAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAADTQAAAAADdwAAAAADTQAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAAAZwAAAAADZwAAAAAAZwAAAAAATQAAAAAAdwAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAABTQAAAAADdwAAAAADTQAAAAADWgAAAAABWgAAAAACdwAAAAADdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAAdwAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAAATQAAAAACdwAAAAABegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAABdwAAAAADdwAAAAADdwAAAAADdwAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAWgAAAAACWgAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAADgAAAAACDgAAAAABDgAAAAAAegAAAAAAdwAAAAABdwAAAAACdwAAAAACegAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAADgAAAAACDgAAAAACDgAAAAAATQAAAAABdwAAAAABdwAAAAADdwAAAAABegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAADgAAAAAADgAAAAACegAAAAAAegAAAAAAdwAAAAAAdwAAAAABdwAAAAADegAAAAAAegAAAAAATQAAAAAB
+ tiles: RAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAADewAAAAADewAAAAABfwAAAAAADgAAAAACDgAAAAACDgAAAAACfwAAAAAAbwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAewAAAAAAewAAAAABewAAAAACFgAAAAACDgAAAAACDgAAAAABDgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAewAAAAAAewAAAAADewAAAAABfwAAAAAADgAAAAADDgAAAAABDgAAAAACfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAATwAAAAABewAAAAAAewAAAAADewAAAAACfwAAAAAADgAAAAADDgAAAAADDgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAUAAAAAAATwAAAAABUAAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAbwAAAAADfwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAACTwAAAAABTwAAAAABTwAAAAACTwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAADXgAAAAADXgAAAAABXgAAAAAATwAAAAACTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAawAAAAAAawAAAAAAawAAAAACawAAAAABawAAAAAATwAAAAACTwAAAAADXgAAAAABXgAAAAADVwAAAAACXgAAAAAAXgAAAAABTwAAAAADTwAAAAABXgAAAAABXgAAAAAATwAAAAAATwAAAAABTwAAAAACTwAAAAABawAAAAAATwAAAAAATwAAAAABXgAAAAAAVwAAAAABVwAAAAACVwAAAAADXgAAAAADTwAAAAABTwAAAAABawAAAAAAawAAAAACawAAAAADawAAAAADawAAAAABawAAAAADawAAAAAATwAAAAADTwAAAAAAXgAAAAACXgAAAAADVwAAAAABXgAAAAABXgAAAAACTwAAAAAATwAAAAADXgAAAAADXgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAAATwAAAAADXgAAAAAAXgAAAAABXgAAAAAATwAAAAADTwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAADTwAAAAAATwAAAAACTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAADgAAAAABDgAAAAACDgAAAAADfwAAAAAAewAAAAADewAAAAABewAAAAACfwAAAAAAfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADgAAAAAADgAAAAACDgAAAAACTwAAAAACewAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAawAAAAADUAAAAAAAEgAAAAAAUAAAAAAAawAAAAAAUAAAAAAADgAAAAAADgAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAATwAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAagAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAawAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAWAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAWAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAawAAAAACegAAAAAAWAAAAAAIWAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAawAAAAAAegAAAAAAWAAAAAAAWAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAWQAAAAAAWQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAawAAAAABegAAAAAAWQAAAAAAWQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACegAAAAAATgAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAWgAAAAABegAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAAagAAAAAADwAAAAAAagAAAAAAegAAAAAAWgAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAADegAAAAAAQgAAAAAAegAAAAAAGgAAAAAAGgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAABDgAAAAADDgAAAAACTQAAAAACawAAAAADegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbwAAAAACUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAXAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAACfwAAAAAAXAAAAAAAXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAADfwAAAAAAXAAAAAAMXAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAXQAAAAAAXQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAXgAAAAABfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAbgAAAAAADwAAAAAAbgAAAAAAfwAAAAAAXgAAAAACfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAABfwAAAAAARAAAAAAAfwAAAAAAHAAAAAAAHAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAADgAAAAABDgAAAAACDgAAAAAATwAAAAACbwAAAAABfwAAAAAA
version: 6
-6,0:
ind: -6,0
- tiles: agAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAAATQAAAAADWgAAAAADegAAAAAAQgAAAAAAQgAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAADTQAAAAAAWgAAAAADegAAAAAAQgAAAAAAQgAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAAATQAAAAADWgAAAAACegAAAAAAegAAAAAATQAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAABTQAAAAAAWgAAAAABegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAABegAAAAAAFQAAAAAAFQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAADegAAAAAAegAAAAAAFQAAAAAAWgAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAAAWgAAAAABWgAAAAAAWgAAAAABegAAAAAAegAAAAAAWgAAAAABTQAAAAADZwAAAAABZwAAAAABZwAAAAADZwAAAAADZwAAAAAAZwAAAAABTQAAAAACZwAAAAACZwAAAAADTQAAAAACZwAAAAADZwAAAAACTQAAAAADZwAAAAACWgAAAAABTQAAAAADZwAAAAADTQAAAAAATQAAAAACTQAAAAAATQAAAAAAZwAAAAABTQAAAAACZwAAAAACTQAAAAAATQAAAAACTQAAAAADZwAAAAABTQAAAAACZwAAAAADWgAAAAABTQAAAAAAZwAAAAAAZwAAAAACZwAAAAAAZwAAAAABZwAAAAAAZwAAAAAATQAAAAABZwAAAAACZwAAAAACTQAAAAADZwAAAAABZwAAAAADTQAAAAAAZwAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAWgAAAAABWgAAAAADWgAAAAACWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAABTQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATQAAAAABWgAAAAADWgAAAAAAWgAAAAAAegAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAADTQAAAAAAWgAAAAAATgAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAABTQAAAAADWgAAAAABTgAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAAATQAAAAABWgAAAAABTgAAAAAAMAAAAAAAMAAAAAAA
+ tiles: bgAAAAAATwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADTwAAAAAAXgAAAAADfwAAAAAARAAAAAAARAAAAAAATwAAAAACTwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAABXgAAAAAAfwAAAAAARAAAAAAARAAAAAAAbgAAAAAATwAAAAADTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAAAXgAAAAABfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAABTwAAAAABXgAAAAABfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAAAfwAAAAAAFwAAAAAAFwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAABfwAAAAAAfwAAAAAAFwAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAACfwAAAAAAfwAAAAAAXgAAAAAATwAAAAADawAAAAABawAAAAAAawAAAAABawAAAAACawAAAAACawAAAAADTwAAAAAAawAAAAABawAAAAAATwAAAAACawAAAAADawAAAAACTwAAAAACawAAAAACXgAAAAAATwAAAAADawAAAAAATwAAAAABTwAAAAACTwAAAAACTwAAAAABawAAAAADTwAAAAAAawAAAAAATwAAAAACTwAAAAAATwAAAAABawAAAAACTwAAAAADawAAAAACXgAAAAABTwAAAAACawAAAAAAawAAAAADawAAAAACawAAAAACawAAAAAAawAAAAACTwAAAAACawAAAAABawAAAAACTwAAAAADawAAAAABawAAAAAATwAAAAAAawAAAAACXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAATwAAAAAAXgAAAAACXgAAAAABXgAAAAADfwAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAACTwAAAAAAXgAAAAADUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAADTwAAAAAAXgAAAAADUAAAAAAAMgAAAAAAMgAAAAAATwAAAAABTwAAAAADTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAAAUAAAAAAAMgAAAAAAMgAAAAAA
version: 6
-6,1:
ind: -6,1
- tiles: egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAATgAAAAAAWgAAAAADTQAAAAADWgAAAAACTgAAAAAAMAAAAAAAMAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAegAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAegAAAAAAMAAAAAAAMAAAAAAAWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAACegAAAAAAegAAAAAAMAAAAAAAWgAAAAADWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAAAWgAAAAABWgAAAAACWgAAAAACegAAAAAAegAAAAAAWgAAAAADWgAAAAABegAAAAAAWgAAAAAAWgAAAAACegAAAAAAegAAAAAAWgAAAAABWgAAAAACWgAAAAADWgAAAAAAWgAAAAABWgAAAAABWgAAAAADWgAAAAABWgAAAAABWgAAAAADWgAAAAADWgAAAAABWgAAAAADWgAAAAADTQAAAAAAWgAAAAACWgAAAAACWgAAAAADTQAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAADWgAAAAABWgAAAAAAWgAAAAACWgAAAAAAWgAAAAADWgAAAAAATQAAAAACWgAAAAABTQAAAAABTQAAAAABTQAAAAAATQAAAAABTQAAAAADTQAAAAADTQAAAAAATQAAAAABTQAAAAABWgAAAAABWgAAAAADegAAAAAAWgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAADegAAAAAAagAAAAAATQAAAAABMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAAAWgAAAAACegAAAAAAagAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAACWgAAAAABegAAAAAAAAAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAACegAAAAAAegAAAAAAAAAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAATgAAAAAATgAAAAAA
+ tiles: fwAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAATwAAAAAAXgAAAAACUAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAfwAAAAAAXgAAAAACXgAAAAACXgAAAAACfwAAAAAAMgAAAAAAMgAAAAAAXgAAAAACXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAADTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAMgAAAAAAXgAAAAADXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAAAfwAAAAAATwAAAAACXgAAAAACXgAAAAADfwAAAAAAXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACXgAAAAACTwAAAAACXgAAAAADXgAAAAACTwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAABTwAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAACXgAAAAADXgAAAAAATwAAAAAAXgAAAAABTwAAAAAATwAAAAADTwAAAAADTwAAAAACTwAAAAAATwAAAAACTwAAAAACXgAAAAADXgAAAAACXgAAAAAAXgAAAAABfwAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAACfwAAAAAAbgAAAAAATwAAAAACNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAXgAAAAADXgAAAAABfwAAAAAAbgAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAXgAAAAADfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAUAAAAAAAUAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: HwAAAAACHgAAAAACHgAAAAADegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAHwAAAAACHgAAAAABHgAAAAABTQAAAAADaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAHgAAAAABHgAAAAABegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAaQAAAAAAagAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAHgAAAAABHgAAAAAAegAAAAAAaQAAAAAAaQAAAAAAegAAAAAAaQAAAAAAagAAAAAAagAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAagAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAAMAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAagAAAAAAaQAAAAAAaQAAAAAAegAAAAAATgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAMAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAAMAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAATgAAAAAATgAAAAAATQAAAAABegAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: IQAAAAADIAAAAAADIAAAAAABfwAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAIAAAAAACIAAAAAAATwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAABfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAIAAAAAADfwAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbgAAAAAAbQAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbQAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAbgAAAAAAfwAAAAAAGgAAAAAHfwAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAAHfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAABfwAAAAAAbgAAAAAAUAAAAAAAUAAAAAAATwAAAAADfwAAAAAAfwAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAABGgAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAFGgAAAAAGfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAACfwAAAAAAKwAAAAAAKwAAAAAAGgAAAAACGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAAfwAAAAAAKwAAAAADKwAAAAACKwAAAAAAKwAAAAAAfwAAAAAAKwAAAAAAGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAACGgAAAAAHKwAAAAACfwAAAAAAKwAAAAACKwAAAAABKwAAAAABKwAAAAACKwAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAAGgAAAAAGfwAAAAAAKwAAAAACKwAAAAACKwAAAAAAKwAAAAADKwAAAAABKwAAAAABKwAAAAAB
version: 6
-4,-3:
ind: -4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAADawAAAAAAagAAAAAAawAAAAACawAAAAAATQAAAAACegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAABawAAAAADawAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAATwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAADbwAAAAABfwAAAAAAbwAAAAAAbwAAAAAATwAAAAACfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAAAfwAAAAAAfQAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfQAAAAABfwAAAAAAfwAAAAAAbQAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAADbgAAAAAAbgAAAAAAfQAAAAAAfQAAAAAAfQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAABbgAAAAAATwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAD
version: 6
5,2:
ind: 5,2
- tiles: egAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAawAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAawAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAFwAAAAACKQAAAAAAFwAAAAAEFwAAAAADFwAAAAAGegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAKQAAAAACKQAAAAAAKQAAAAABKQAAAAABFwAAAAAFFwAAAAAAKQAAAAADegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAKQAAAAACKQAAAAACKQAAAAACKQAAAAACKQAAAAADKQAAAAAAKQAAAAABegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAKQAAAAAAKQAAAAAAKQAAAAACKQAAAAABKQAAAAACKQAAAAABKQAAAAAAKQAAAAABKQAAAAACTgAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAKQAAAAABKQAAAAAAKQAAAAADKQAAAAADKQAAAAAAKQAAAAACKQAAAAAAFwAAAAADFwAAAAACTgAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAKQAAAAABKQAAAAACKQAAAAADKQAAAAABKQAAAAACFwAAAAAGFwAAAAAAFwAAAAACFwAAAAADTgAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAKQAAAAAAKQAAAAACFwAAAAAAFwAAAAABFwAAAAAGFwAAAAABFwAAAAAFegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAKQAAAAADKQAAAAAAKQAAAAABFwAAAAAAFwAAAAAFFwAAAAADFwAAAAAFegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAKQAAAAAAKQAAAAADFwAAAAAGFwAAAAACFwAAAAACegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAACawAAAAABawAAAAAAagAAAAAAegAAAAAAawAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAATQAAAAADTQAAAAAD
+ tiles: GgAAAAAAGgAAAAAHGgAAAAABGQAAAAADGQAAAAABGQAAAAAEGQAAAAAFGQAAAAAFKwAAAAABGQAAAAAGGQAAAAAFGgAAAAABGgAAAAAAGgAAAAACGQAAAAADGQAAAAAFGgAAAAADGgAAAAAEGgAAAAABGgAAAAAEKwAAAAADGQAAAAAGGQAAAAAGKwAAAAABKwAAAAAAKwAAAAAAGgAAAAABGgAAAAAFGgAAAAADGgAAAAAFGQAAAAAFGQAAAAAFGgAAAAACKwAAAAABUAAAAAAAKwAAAAADKwAAAAACKwAAAAABKwAAAAAAKwAAAAADKwAAAAAAKwAAAAAAKwAAAAACKwAAAAABGgAAAAAEGgAAAAADGQAAAAAAGgAAAAACKwAAAAAAKwAAAAABKwAAAAACKwAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAAAKwAAAAACGQAAAAABGQAAAAAAGQAAAAAGKwAAAAABKwAAAAACKwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAEKwAAAAACGQAAAAAGGQAAAAAGGQAAAAABfwAAAAAAfwAAAAAAGgAAAAAHGgAAAAACGgAAAAAHGQAAAAADKwAAAAADKwAAAAADKwAAAAACfwAAAAAAKwAAAAADKwAAAAACKwAAAAABKwAAAAADGQAAAAAGGQAAAAABKwAAAAABfwAAAAAAGgAAAAACGgAAAAAAGQAAAAACGQAAAAAAKwAAAAAAKwAAAAACfwAAAAAAfwAAAAAAKwAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAADKwAAAAACKwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAEGQAAAAAGGgAAAAAGKwAAAAACKwAAAAABfwAAAAAAKwAAAAADKwAAAAADKwAAAAADKwAAAAACKwAAAAADKwAAAAACKwAAAAAAKwAAAAACKwAAAAACUAAAAAAAGQAAAAABGQAAAAAAGQAAAAABKwAAAAABKwAAAAAAfwAAAAAAKwAAAAADKwAAAAACKwAAAAABKwAAAAACKwAAAAACKwAAAAABKwAAAAABGQAAAAACGQAAAAADUAAAAAAAGQAAAAADGgAAAAAEGgAAAAAEKwAAAAADGQAAAAAGfwAAAAAAKwAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAABGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAABUAAAAAAAGQAAAAAGGQAAAAAEGgAAAAAGKwAAAAABGQAAAAAAfwAAAAAAfwAAAAAAKwAAAAADKwAAAAACGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAACGQAAAAAEfwAAAAAAfwAAAAAAGgAAAAAEGgAAAAAEGgAAAAAAGQAAAAAAGQAAAAAGGQAAAAAFfwAAAAAAKwAAAAABKwAAAAABKwAAAAABGQAAAAAFGQAAAAADGQAAAAACGQAAAAAEfwAAAAAAGQAAAAAFGQAAAAAGKwAAAAAAGgAAAAAAGQAAAAAEGQAAAAAAGQAAAAAFfwAAAAAAfwAAAAAAKwAAAAACKwAAAAADGQAAAAAFGQAAAAAEGQAAAAAEfwAAAAAAfwAAAAAAGQAAAAABGgAAAAAAGgAAAAAFKwAAAAAAGQAAAAAAGgAAAAABGQAAAAAGGgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAADKwAAAAADGQAAAAAGGQAAAAAGGQAAAAACGQAAAAADGgAAAAABGgAAAAAGGgAAAAABGgAAAAACGgAAAAAHGgAAAAAGGgAAAAADGQAAAAAAGQAAAAACGQAAAAAEGgAAAAAGGQAAAAACGQAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGgAAAAAAGgAAAAABGQAAAAAD
version: 6
0,-4:
ind: 0,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABTgAAAAAAMAAAAAAAeQAAAAAAeQAAAAAATQAAAAABTQAAAAABTQAAAAADTQAAAAADTQAAAAAATQAAAAACTQAAAAADTQAAAAACTQAAAAADTQAAAAACTQAAAAADcAAAAAADTgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAATgAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAABcAAAAAADdgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAACTQAAAAADdgAAAAAATgAAAAAAMAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAawAAAAABawAAAAAAawAAAAACawAAAAADawAAAAABawAAAAACawAAAAAAawAAAAAAawAAAAADawAAAAACawAAAAACawAAAAAAUAAAAAAAMgAAAAAAfgAAAAAAfgAAAAAATwAAAAACTwAAAAABTwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAABTwAAAAADTwAAAAAATwAAAAAATwAAAAACawAAAAABUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAawAAAAADawAAAAACawAAAAACawAAAAAAawAAAAAAawAAAAACawAAAAACawAAAAABawAAAAAAawAAAAAAawAAAAACawAAAAAAUAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAXgAAAAAAawAAAAADXgAAAAAAXgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAAAAAAAAAAAAAAAAAATwAAAAAATwAAAAACTwAAAAABXgAAAAACUAAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAcAAAAAABTQAAAAADTQAAAAAATQAAAAAATQAAAAABTQAAAAAATQAAAAADTQAAAAADTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdgAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAawAAAAACawAAAAACawAAAAABawAAAAACawAAAAADawAAAAADawAAAAAAawAAAAAAawAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAawAAAAACTwAAAAABTwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAABTwAAAAABTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAawAAAAADawAAAAADawAAAAABawAAAAADawAAAAABawAAAAAAawAAAAABawAAAAACawAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAXgAAAAAD
version: 6
0,3:
ind: 0,3
- tiles: WgAAAAADTQAAAAABWgAAAAABWgAAAAADegAAAAAATQAAAAADLgAAAAAALgAAAAACTQAAAAACdwAAAAACdwAAAAADdwAAAAACdwAAAAABdwAAAAACdwAAAAADdwAAAAACTQAAAAADTQAAAAACTQAAAAABWgAAAAADegAAAAAATQAAAAADLgAAAAADLgAAAAADTQAAAAAAdwAAAAAAdwAAAAABdwAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAADTQAAAAACDAAAAAADTQAAAAADWgAAAAADegAAAAAATQAAAAACLgAAAAADLgAAAAAAegAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAAATQAAAAACDAAAAAACTQAAAAACWgAAAAABegAAAAAATQAAAAABLgAAAAAALgAAAAADegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAACDAAAAAADTQAAAAAAWgAAAAAAegAAAAAATQAAAAACLgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAADTQAAAAACegAAAAAAegAAAAAATgAAAAAATQAAAAACDAAAAAADTQAAAAAAWgAAAAACTgAAAAAATQAAAAABLgAAAAABLgAAAAACLgAAAAABLgAAAAACLgAAAAACLgAAAAADegAAAAAAegAAAAAATgAAAAAATQAAAAADTQAAAAACDAAAAAAATQAAAAABWgAAAAACTgAAAAAATQAAAAAALgAAAAACLgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAACegAAAAAATgAAAAAATQAAAAABTQAAAAABTQAAAAACDAAAAAABTQAAAAACWgAAAAACTgAAAAAATQAAAAADLgAAAAADLgAAAAADLgAAAAABLgAAAAABLgAAAAAALgAAAAADTgAAAAAATgAAAAAATQAAAAADTQAAAAADWgAAAAACTQAAAAADWgAAAAADWgAAAAAAegAAAAAATQAAAAABTQAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAABLgAAAAACTgAAAAAATgAAAAAATQAAAAADTQAAAAABWgAAAAAATQAAAAACWgAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATQAAAAAATQAAAAABWgAAAAAATQAAAAABWgAAAAADHgAAAAADTgAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAABWgAAAAAATQAAAAACWgAAAAADHgAAAAACegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAACTQAAAAADWgAAAAABHgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAWgAAAAABTQAAAAADWgAAAAACHgAAAAABegAAAAAAegAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWgAAAAABTQAAAAABWgAAAAACHgAAAAADTgAAAAAAegAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABTQAAAAAAWgAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: XgAAAAACawAAAAADXgAAAAABUAAAAAAAfwAAAAAATwAAAAAAMAAAAAACMAAAAAAATwAAAAADewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAADewAAAAAAewAAAAADTwAAAAADTwAAAAADTwAAAAADUAAAAAAAfwAAAAAATwAAAAADMAAAAAABMAAAAAADTwAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAACTwAAAAABDAAAAAACTwAAAAACXgAAAAAAfwAAAAAATwAAAAABMAAAAAABMAAAAAAAfwAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAACTwAAAAACDAAAAAACTwAAAAABXgAAAAACTwAAAAAATwAAAAADMAAAAAACMAAAAAABfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAADAAAAAACTwAAAAABXgAAAAABfwAAAAAATwAAAAAAMAAAAAAAMAAAAAACMAAAAAAAMAAAAAABMAAAAAABMAAAAAADTwAAAAADfwAAAAAAfwAAAAAAUAAAAAAATwAAAAADDAAAAAAATwAAAAABXgAAAAACUAAAAAAATwAAAAABMAAAAAADMAAAAAABMAAAAAABMAAAAAAAMAAAAAABMAAAAAACfwAAAAAAfwAAAAAAUAAAAAAATwAAAAACTwAAAAABDAAAAAADTwAAAAABXgAAAAAAUAAAAAAATwAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAABMAAAAAAAMAAAAAABfwAAAAAAUAAAAAAATwAAAAACTwAAAAAATwAAAAACDAAAAAACTwAAAAACXgAAAAACUAAAAAAATwAAAAADMAAAAAACMAAAAAAAMAAAAAAAMAAAAAACMAAAAAABMAAAAAABUAAAAAAAUAAAAAAATwAAAAACTwAAAAADXgAAAAADawAAAAABXgAAAAABXgAAAAADfwAAAAAATwAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAAATwAAAAADMAAAAAADUAAAAAAAUAAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAATwAAAAADTwAAAAACXgAAAAADawAAAAADXgAAAAAAIQAAAAABIAAAAAAAIAAAAAADIAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABXgAAAAADawAAAAABXgAAAAABIQAAAAAATwAAAAACIQAAAAADIQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADawAAAAABXgAAAAABIQAAAAAAIAAAAAAAIQAAAAAAIQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAXgAAAAADawAAAAABXgAAAAACIQAAAAAATwAAAAACIQAAAAAAIQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXgAAAAADawAAAAAAXgAAAAAAIQAAAAAAIAAAAAAAIQAAAAADIQAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXgAAAAABawAAAAABXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: MAAAAAAASQAAAAADSQAAAAACTQAAAAAATQAAAAACSQAAAAABSQAAAAAASQAAAAACSQAAAAADSQAAAAADSQAAAAACSQAAAAAASQAAAAABSQAAAAACTgAAAAAAWgAAAAABMAAAAAAASQAAAAADSQAAAAADTQAAAAADTQAAAAACSQAAAAABSQAAAAAASQAAAAAASQAAAAADSQAAAAACSQAAAAAASQAAAAADSQAAAAABSQAAAAADTgAAAAAAWgAAAAABMAAAAAAASQAAAAACSQAAAAACTQAAAAABTQAAAAACSQAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAADSQAAAAADSQAAAAACSQAAAAADSQAAAAAAegAAAAAAWgAAAAABMAAAAAAASQAAAAACSQAAAAAATQAAAAADTQAAAAABTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAAATQAAAAACTQAAAAABTQAAAAABTQAAAAABTQAAAAADWgAAAAAAMAAAAAAASQAAAAABSQAAAAAATQAAAAAATQAAAAABTQAAAAAATQAAAAABTQAAAAAATQAAAAACTQAAAAABTQAAAAADTQAAAAAATQAAAAABTQAAAAABTQAAAAACWgAAAAAAMAAAAAAASQAAAAACSQAAAAACTQAAAAACTQAAAAAASQAAAAADSQAAAAAASQAAAAABSQAAAAABSQAAAAABSQAAAAACSQAAAAAASQAAAAADSQAAAAAAegAAAAAAWgAAAAAAMAAAAAAASQAAAAAASQAAAAADTQAAAAABTQAAAAABSQAAAAACSQAAAAAASQAAAAACSQAAAAADSQAAAAADSQAAAAAASQAAAAABSQAAAAAASQAAAAACTgAAAAAAWgAAAAABMAAAAAAASQAAAAABSQAAAAAATQAAAAADTQAAAAABSQAAAAABSQAAAAAASQAAAAADSQAAAAABSQAAAAAASQAAAAACSQAAAAADSQAAAAAASQAAAAACTgAAAAAAWgAAAAACMAAAAAAASQAAAAADSQAAAAABTQAAAAADTQAAAAADSQAAAAADSQAAAAABSQAAAAAASQAAAAADSQAAAAADSQAAAAABSQAAAAAASQAAAAABSQAAAAAATgAAAAAAWgAAAAAAMAAAAAAASQAAAAACSQAAAAABSQAAAAADSQAAAAAASQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAASQAAAAAASQAAAAACSQAAAAABSQAAAAACSQAAAAADTQAAAAABdwAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAAAdwAAAAABTgAAAAAADAAAAAACWgAAAAACMAAAAAAASQAAAAAASQAAAAADSQAAAAADSQAAAAAASQAAAAADegAAAAAAdwAAAAACdwAAAAACdwAAAAADdwAAAAABdwAAAAABdwAAAAADTQAAAAABWgAAAAABWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAABdwAAAAABdwAAAAABdwAAAAABdwAAAAACdwAAAAABTgAAAAAADAAAAAADWgAAAAABdAAAAAAATgAAAAAAdAAAAAACdAAAAAABdAAAAAADdAAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAABdwAAAAADdwAAAAAAdwAAAAABTgAAAAAADAAAAAAAWgAAAAADdAAAAAAATgAAAAAAdAAAAAADTQAAAAACTQAAAAAAdAAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdAAAAAABdAAAAAAAdAAAAAADTQAAAAABTQAAAAADdAAAAAABTQAAAAADTgAAAAAATgAAAAAATgAAAAAATQAAAAAAdAAAAAAAdAAAAAADdAAAAAABdAAAAAABTgAAAAAA
+ tiles: fwAAAAAAewAAAAADewAAAAABewAAAAADewAAAAABSwAAAAACSwAAAAACSwAAAAABSwAAAAABSwAAAAABSwAAAAABSwAAAAAASwAAAAADSwAAAAACUAAAAAAAXgAAAAACTwAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABSwAAAAABSwAAAAAASwAAAAAASwAAAAABSwAAAAADSwAAAAABSwAAAAABSwAAAAAASwAAAAABUAAAAAAAXgAAAAAATwAAAAACewAAAAACewAAAAAAewAAAAACewAAAAADSwAAAAADSwAAAAADSwAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAAASwAAAAACSwAAAAAAfwAAAAAAXgAAAAADfwAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAACewAAAAAAewAAAAADewAAAAACewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAACTwAAAAADXgAAAAACfwAAAAAAewAAAAABewAAAAABewAAAAABewAAAAABewAAAAACewAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAABTwAAAAACXgAAAAADMgAAAAAAewAAAAACewAAAAABewAAAAAAewAAAAADSwAAAAADSwAAAAABSwAAAAACSwAAAAADSwAAAAABSwAAAAADSwAAAAAASwAAAAACSwAAAAABfwAAAAAAXgAAAAACMgAAAAAAewAAAAABewAAAAAAewAAAAACewAAAAABSwAAAAABSwAAAAABSwAAAAACSwAAAAABSwAAAAADSwAAAAACSwAAAAADSwAAAAADSwAAAAACUAAAAAAAXgAAAAACMgAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAADSwAAAAACSwAAAAACSwAAAAADSwAAAAACSwAAAAAASwAAAAABSwAAAAACSwAAAAABSwAAAAABUAAAAAAAXgAAAAADMgAAAAAASwAAAAADSwAAAAAASwAAAAABSwAAAAABSwAAAAADSwAAAAABSwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAADUAAAAAAAXgAAAAAAMgAAAAAASwAAAAADSwAAAAABSwAAAAABSwAAAAABSwAAAAABfwAAAAAAewAAAAAAewAAAAADewAAAAADewAAAAABewAAAAABewAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAMgAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAACTwAAAAABewAAAAABewAAAAAAewAAAAAAewAAAAACewAAAAACewAAAAADTwAAAAAADAAAAAACXgAAAAADMgAAAAAASwAAAAAASwAAAAABSwAAAAACSwAAAAACSwAAAAAAfwAAAAAAewAAAAADewAAAAABewAAAAACewAAAAACewAAAAAAewAAAAAATwAAAAADXgAAAAACXgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAABewAAAAABewAAAAABewAAAAAATwAAAAABDAAAAAADXgAAAAABeAAAAAACTwAAAAABeAAAAAADeAAAAAACeAAAAAADeAAAAAACfwAAAAAAewAAAAACewAAAAADewAAAAABewAAAAABewAAAAACewAAAAAATwAAAAAADAAAAAACXgAAAAABeAAAAAAAUAAAAAAAeAAAAAADTwAAAAADTwAAAAABeAAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAAAeAAAAAABeAAAAAACTwAAAAADTwAAAAABeAAAAAAATwAAAAABUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABeAAAAAAAeAAAAAAAeAAAAAABeAAAAAADUAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: agAAAAAAegAAAAAAHgAAAAAAHgAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAAAegAAAAAATQAAAAAAHgAAAAAAHgAAAAADHwAAAAACHwAAAAACHwAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHwAAAAADHwAAAAACegAAAAAAegAAAAAAHgAAAAACHgAAAAACegAAAAAATQAAAAACegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAACegAAAAAATQAAAAADegAAAAAAegAAAAAAHgAAAAAAHgAAAAAAegAAAAAATQAAAAADegAAAAAAHgAAAAACegAAAAAAHgAAAAADHgAAAAABHgAAAAACegAAAAAAHgAAAAADegAAAAAATQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAABegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAMAAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAATgAAAAAAegAAAAAATgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAA
+ tiles: bgAAAAAAfwAAAAAAIAAAAAABIAAAAAAAIQAAAAAAIQAAAAABIQAAAAACIQAAAAADIQAAAAAAIQAAAAADIQAAAAADIQAAAAABIQAAAAAAIQAAAAACIQAAAAAAIQAAAAABbgAAAAAATwAAAAACIAAAAAABIAAAAAAAIQAAAAABIQAAAAABIQAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACIQAAAAABIQAAAAACbgAAAAAAfwAAAAAAIAAAAAADIAAAAAABfwAAAAAATwAAAAABfwAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAABfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAIAAAAAABIAAAAAACfwAAAAAATwAAAAABfwAAAAAAIAAAAAADfwAAAAAAIAAAAAACIAAAAAABIAAAAAACfwAAAAAAIAAAAAAAfwAAAAAATwAAAAACTwAAAAACfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAABfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAADNAAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAADPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAACPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAATwAAAAAATwAAAAABTwAAAAAATwAAAAACfwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: TQAAAAAAHgAAAAACTQAAAAABHgAAAAACegAAAAAAdwAAAAABdwAAAAACdwAAAAADegAAAAAAdwAAAAADdwAAAAABdwAAAAABdwAAAAABdwAAAAADegAAAAAAegAAAAAAegAAAAAAHgAAAAABTQAAAAACHgAAAAACTQAAAAADdwAAAAADdwAAAAABdwAAAAABdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAACdwAAAAAATQAAAAADegAAAAAAegAAAAAAHgAAAAACHgAAAAAAHgAAAAADegAAAAAAdwAAAAADdwAAAAADdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAADdwAAAAABegAAAAAAegAAAAAATQAAAAACTQAAAAADTQAAAAADTQAAAAACTQAAAAACTgAAAAAAegAAAAAAegAAAAAAdwAAAAACdwAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAegAAAAAAegAAAAAATQAAAAACLgAAAAAALgAAAAABLgAAAAAATQAAAAADTQAAAAADTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAALgAAAAADLgAAAAABLgAAAAACLgAAAAACLgAAAAABTQAAAAACTQAAAAAATgAAAAAATQAAAAAATgAAAAAATQAAAAABTQAAAAAATQAAAAADTgAAAAAATgAAAAAAeQAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAAATQAAAAACTQAAAAACTgAAAAAATgAAAAAATgAAAAAATQAAAAADTQAAAAADTQAAAAABTgAAAAAATgAAAAAAeQAAAAAALgAAAAACLgAAAAADLgAAAAACLgAAAAADLgAAAAACTQAAAAABTQAAAAAATgAAAAAATQAAAAADTgAAAAAATQAAAAABTQAAAAADTQAAAAABTgAAAAAATgAAAAAAAAAAAAAATQAAAAAALgAAAAABLgAAAAAALgAAAAADTQAAAAABTQAAAAACTQAAAAABTgAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAACTQAAAAAATQAAAAADTgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: TwAAAAAAIAAAAAAATwAAAAADIAAAAAAAfwAAAAAAewAAAAACewAAAAACewAAAAACfwAAAAAAewAAAAAAewAAAAACewAAAAABewAAAAABewAAAAACfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAACTwAAAAABIAAAAAAATwAAAAABewAAAAABewAAAAACewAAAAABTwAAAAABewAAAAADewAAAAAAewAAAAADewAAAAACewAAAAADTwAAAAABfwAAAAAAfwAAAAAAIAAAAAADIAAAAAACIAAAAAACfwAAAAAAewAAAAABewAAAAAAewAAAAAAewAAAAABewAAAAADewAAAAAAewAAAAADewAAAAADewAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAewAAAAADewAAAAAAewAAAAAAewAAAAABewAAAAABewAAAAAAewAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAADUAAAAAAAfwAAAAAAfwAAAAAAewAAAAADUAAAAAAAUAAAAAAAUAAAAAAAewAAAAACewAAAAAAfwAAAAAAfwAAAAAATwAAAAABMAAAAAACMAAAAAADMAAAAAADTwAAAAACTwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAANAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAAAMAAAAAABTwAAAAACTwAAAAACUAAAAAAATwAAAAACUAAAAAAATwAAAAACTwAAAAAATwAAAAADUAAAAAAATwAAAAADNAAAAAAAMAAAAAAAMAAAAAABMAAAAAACMAAAAAADMAAAAAACTwAAAAADTwAAAAABUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADTwAAAAADTwAAAAADUAAAAAAATwAAAAACNAAAAAAAMAAAAAACMAAAAAABMAAAAAADMAAAAAAAMAAAAAADTwAAAAACTwAAAAACUAAAAAAATwAAAAABUAAAAAAATwAAAAABTwAAAAABTwAAAAACUAAAAAAATwAAAAADNAAAAAAATwAAAAACMAAAAAAAMAAAAAAAMAAAAAAATwAAAAAATwAAAAACTwAAAAABUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAANAAAAAAATwAAAAAATwAAAAADTwAAAAABTwAAAAAATwAAAAACTwAAAAABUAAAAAAAUAAAAAAAUAAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAACTwAAAAADfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABfgAAAAAATwAAAAADTwAAAAACTwAAAAADTwAAAAABTwAAAAACAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAATwAAAAADTwAAAAACTwAAAAAATwAAAAABTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADTwAAAAAATwAAAAABTwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: agAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAADdwAAAAACdwAAAAAAdwAAAAACdwAAAAACegAAAAAAagAAAAAAegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFGgAAAAAHGgAAAAAHGgAAAAAAGgAAAAAHGgAAAAACGgAAAAADGgAAAAAEfwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAGgAAAAABfwAAAAAAGgAAAAAHGgAAAAABGgAAAAAEGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAGgAAAAAHGgAAAAACGgAAAAAEGgAAAAAEGgAAAAAAGgAAAAAAGgAAAAAHGgAAAAADGQAAAAAAGQAAAAAAGQAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAGgAAAAAFGgAAAAAAGQAAAAAFGQAAAAAAGgAAAAAEGgAAAAAGGgAAAAADGgAAAAAGfwAAAAAAGQAAAAADGQAAAAAEGQAAAAADfwAAAAAAbQAAAAAAGgAAAAAGGgAAAAAAGgAAAAAGGQAAAAADGgAAAAAEGgAAAAAHGgAAAAAFGgAAAAADGgAAAAADGQAAAAADGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAGKwAAAAAAGgAAAAAAGgAAAAAHGgAAAAAHGQAAAAACGgAAAAAGGgAAAAACGgAAAAADGgAAAAACGgAAAAAEGgAAAAAGfwAAAAAAGQAAAAAEGgAAAAAHKwAAAAAAKwAAAAADKwAAAAABKwAAAAAANAAAAAAAGgAAAAADGgAAAAACGgAAAAAHGgAAAAACGgAAAAACGgAAAAAHGgAAAAACfwAAAAAAfwAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAADbQAAAAAAbQAAAAAANAAAAAAAGgAAAAAEGgAAAAAHGgAAAAACGgAAAAABGgAAAAABfwAAAAAAfwAAAAAAGQAAAAAEGgAAAAADGgAAAAAEGgAAAAAFGgAAAAAFKwAAAAABNAAAAAAAbQAAAAAANAAAAAAAGgAAAAAHGgAAAAABGgAAAAACGgAAAAAHGgAAAAAAfwAAAAAAGQAAAAAGGgAAAAAAGgAAAAACGgAAAAABGgAAAAAGGgAAAAACNAAAAAAANAAAAAAAbQAAAAAAbQAAAAAAfwAAAAAAGgAAAAAFGgAAAAAGGgAAAAACGgAAAAAGfwAAAAAAfwAAAAAAGgAAAAADGgAAAAAEGgAAAAAAGgAAAAAHNAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAHGQAAAAAGGgAAAAADGgAAAAAGGgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAANAAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAAGQAAAAAFGQAAAAAEGgAAAAAGGgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAEGgAAAAAFNAAAAAAANAAAAAAAbQAAAAAANAAAAAAAGgAAAAACGgAAAAADGQAAAAAGGgAAAAAGGgAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAGGgAAAAAAGgAAAAAFNAAAAAAANAAAAAAANAAAAAAAGgAAAAAGGgAAAAAAGQAAAAADGQAAAAAFGgAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAEGgAAAAAAGgAAAAAHGgAAAAAAGgAAAAABGgAAAAAHGgAAAAAAGgAAAAAEGQAAAAADGQAAAAAEGgAAAAAFGgAAAAACGgAAAAAEGQAAAAAEGQAAAAAEGQAAAAAGGgAAAAADGQAAAAAFGQAAAAAFGQAAAAAEGgAAAAABGgAAAAAGKwAAAAAAKwAAAAABGQAAAAAFGQAAAAAFGQAAAAABGgAAAAAGGgAAAAAGGQAAAAAEGQAAAAAGGQAAAAAAGgAAAAAHGQAAAAAFGQAAAAAGGQAAAAAGGgAAAAADGgAAAAAC
version: 6
5,-1:
ind: 5,-1
- tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAABTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACUAAAAAAAUAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAbgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbwAAAAADTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,0:
ind: 5,0
- tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAATgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAawAAAAABagAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAADagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAATQAAAAAATQAAAAADTQAAAAABTQAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: bgAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAGQAAAAABfwAAAAAAGQAAAAAEGQAAAAAEGQAAAAAFGQAAAAAEGQAAAAADGQAAAAACfgAAAAAAbwAAAAAAbwAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAABGQAAAAABGQAAAAAGGQAAAAAEGQAAAAAAGQAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAEfwAAAAAAGQAAAAAAGQAAAAAGGQAAAAAFfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAGgAAAAABfwAAAAAAfwAAAAAAGQAAAAAEGQAAAAAGfwAAAAAAGQAAAAADfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAfwAAAAAAfwAAAAAAGQAAAAABGQAAAAAGGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGQAAAAACGQAAAAADfwAAAAAAGQAAAAACGQAAAAAAGQAAAAABGgAAAAAEGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAGQAAAAAAGQAAAAABGQAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAGGgAAAAADGQAAAAAEGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAABbgAAAAAAbwAAAAADGQAAAAADGQAAAAACGQAAAAABfwAAAAAAfwAAAAAAGgAAAAADGgAAAAAEGQAAAAAEGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACbwAAAAABbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAGgAAAAAGKwAAAAABKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADbwAAAAABbgAAAAAAfwAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAACfwAAAAAAGgAAAAACKwAAAAACKwAAAAAB
version: 6
5,3:
ind: 5,3
- tiles: agAAAAAAawAAAAACagAAAAAAagAAAAAAawAAAAAAawAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAATQAAAAABTQAAAAACTQAAAAADTQAAAAACTQAAAAACTQAAAAADTQAAAAABTQAAAAAAegAAAAAATQAAAAAATQAAAAABTgAAAAAAeQAAAAAAAAAAAAAAegAAAAAAagAAAAAATQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAADTQAAAAADTQAAAAACTQAAAAADTQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAATQAAAAACagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAATQAAAAAATQAAAAADegAAAAAATQAAAAACTQAAAAACTgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAATQAAAAACTQAAAAACTQAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFfwAAAAAAGQAAAAADGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAEGQAAAAAFfwAAAAAAGQAAAAAEGQAAAAAFGgAAAAAHfwAAAAAAKwAAAAACKwAAAAAAGgAAAAAGGgAAAAAFGgAAAAAHGgAAAAACfwAAAAAAfwAAAAAAGQAAAAACfwAAAAAAGQAAAAACGQAAAAADGQAAAAABGQAAAAAEGQAAAAAFGgAAAAAAGgAAAAAEGgAAAAAFGgAAAAAGGgAAAAACGgAAAAAEGgAAAAAGGQAAAAABGQAAAAACGQAAAAACGQAAAAABGQAAAAAGfwAAAAAAGQAAAAACGQAAAAAEGQAAAAADGgAAAAAEGgAAAAADGgAAAAAHGgAAAAAFGgAAAAAGGgAAAAACGgAAAAADGQAAAAAEGQAAAAAGGgAAAAAGGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAAFGQAAAAABGQAAAAACKwAAAAAANAAAAAAANAAAAAAAGgAAAAACNAAAAAAAGgAAAAAHGgAAAAAGGgAAAAAHGgAAAAADGQAAAAADGQAAAAADGQAAAAABGQAAAAACGQAAAAACGQAAAAAGGQAAAAABNAAAAAAANAAAAAAAGgAAAAACNAAAAAAAGgAAAAAFGgAAAAADGgAAAAACGgAAAAADGgAAAAAFGgAAAAABGgAAAAAGGQAAAAADGQAAAAAFGQAAAAAEGQAAAAAGGQAAAAAFNAAAAAAANAAAAAAANAAAAAAANAAAAAAAGgAAAAAHNAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAACGQAAAAAGGQAAAAACGQAAAAADGQAAAAAFGQAAAAACGQAAAAAFNAAAAAAANAAAAAAANAAAAAAAGgAAAAAHGgAAAAAGGgAAAAAGGgAAAAADGgAAAAAEGQAAAAADGgAAAAAGGgAAAAAGGgAAAAACGQAAAAAAGQAAAAACGQAAAAAAGQAAAAAGNAAAAAAANAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAHGgAAAAABGgAAAAAGGgAAAAAGGQAAAAADGQAAAAAAGQAAAAACGQAAAAAGGQAAAAADNAAAAAAANAAAAAAAGgAAAAAGGgAAAAADGgAAAAAEGgAAAAADGgAAAAACGgAAAAAFGgAAAAAFGgAAAAAGGgAAAAAAGgAAAAACGgAAAAAEGQAAAAAFGQAAAAAFGQAAAAAGNAAAAAAAGgAAAAAHGgAAAAAEGgAAAAAFGgAAAAAGGgAAAAABGgAAAAACGgAAAAAFGgAAAAACGgAAAAAHGgAAAAABGgAAAAAFGgAAAAAGGgAAAAACGgAAAAABGQAAAAAEGgAAAAAGGgAAAAAFGgAAAAABGgAAAAAEGgAAAAABGgAAAAAEGgAAAAAFGgAAAAADGgAAAAAAGgAAAAAFGgAAAAABGgAAAAACGgAAAAABGgAAAAADGQAAAAAEGQAAAAAEGgAAAAADGgAAAAAGGgAAAAAFGgAAAAABGgAAAAAFGgAAAAAHGgAAAAAHGgAAAAAGGgAAAAAAGgAAAAABGQAAAAAFGgAAAAADGQAAAAAAGgAAAAAGGQAAAAAEGQAAAAABGgAAAAACGgAAAAAHGgAAAAAFGgAAAAABGgAAAAAFGgAAAAAFGgAAAAAEGgAAAAAEGgAAAAAEGgAAAAAAGgAAAAAHGQAAAAACGQAAAAAGGQAAAAABGQAAAAAFGQAAAAAFGgAAAAACGgAAAAAGGgAAAAAEGgAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAAEGQAAAAACGgAAAAAEGQAAAAAEGQAAAAAFGQAAAAAFGQAAAAAGGQAAAAAFGQAAAAAC
version: 6
5,1:
ind: 5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAawAAAAABagAAAAAAegAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAADTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAawAAAAABagAAAAAATQAAAAADTQAAAAAATQAAAAABTQAAAAAATQAAAAABTgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAATQAAAAADTQAAAAADTQAAAAADTQAAAAADTgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAAATQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAawAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAFwAAAAADFwAAAAAAFwAAAAABFwAAAAAEegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAFwAAAAABFwAAAAADFwAAAAAAFwAAAAADegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbwAAAAABbgAAAAAAfwAAAAAATwAAAAABTwAAAAAATwAAAAACTwAAAAADUAAAAAAAKwAAAAAAKwAAAAADfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbwAAAAACbgAAAAAATwAAAAAATwAAAAACTwAAAAACTwAAAAADTwAAAAAAUAAAAAAAGgAAAAAHKwAAAAACGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAAAbgAAAAAAfwAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAAAUAAAAAAAKwAAAAADKwAAAAADKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAbwAAAAACbgAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAABfwAAAAAAKwAAAAADKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbwAAAAADbgAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAGgAAAAAEGgAAAAAEKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAAFfwAAAAAAGgAAAAAGfwAAAAAAGgAAAAACGgAAAAAFGgAAAAAFGgAAAAACAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAABGQAAAAACGgAAAAAGGgAAAAAAGgAAAAAAGgAAAAAFKwAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAfwAAAAAAGgAAAAAAfwAAAAAAGgAAAAADGgAAAAABGgAAAAAHGgAAAAAGGQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGgAAAAAGGgAAAAADGQAAAAADGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGQAAAAAGbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAATwAAAAADTwAAAAACbgAAAAAAfwAAAAAAGQAAAAAGGgAAAAAHGgAAAAADGgAAAAABGgAAAAAHGgAAAAAGGQAAAAAFbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGgAAAAAHGgAAAAABGQAAAAABGgAAAAAEGgAAAAACGQAAAAADGgAAAAAHbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbwAAAAADbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAGQAAAAABGgAAAAACGgAAAAAGGgAAAAABGgAAAAAEGQAAAAAAGgAAAAACbgAAAAAATwAAAAADTwAAAAABTwAAAAACTwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAGQAAAAAFGgAAAAAAGQAAAAABGgAAAAABGgAAAAAHGQAAAAAFGQAAAAABGQAAAAADGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAADGQAAAAABGQAAAAAEGQAAAAAFGgAAAAAGGQAAAAAAGgAAAAAHGgAAAAAEGgAAAAADGQAAAAAFGgAAAAABGgAAAAAGGQAAAAAGGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAABGQAAAAAAGQAAAAACGQAAAAABGQAAAAACGgAAAAAFGQAAAAABGQAAAAADGQAAAAAEGQAAAAAFGgAAAAAAGQAAAAAGGgAAAAACGQAAAAADGQAAAAAFfwAAAAAAGQAAAAABGQAAAAAAGQAAAAACGQAAAAAGGQAAAAADGQAAAAAGGgAAAAADKwAAAAACKwAAAAADGgAAAAAAGgAAAAAHGgAAAAAAGQAAAAAC
version: 6
5,-2:
ind: 5,-2
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAADUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
- -4,-4:
- ind: -4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAA
+ -3,-4:
+ ind: -3,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAA
version: 6
-6,-1:
ind: -6,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAIWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAIWgAAAAACegAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAWAAAAAAKWAAAAAAFWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWgAAAAABegAAAAAAegAAAAAAAAAAAAAATgAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAKWgAAAAAAWgAAAAADegAAAAAAAAAAAAAATgAAAAAAWAAAAAAAWAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWAAAAAAJWAAAAAALWAAAAAAAWAAAAAAAWAAAAAAAWgAAAAABWgAAAAACegAAAAAATQAAAAAATgAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAfgAAAAAAWQAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADWgAAAAAAWgAAAAAAegAAAAAAagAAAAAATQAAAAACWQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWQAAAAAAWQAAAAAAWAAAAAAIWAAAAAAAWAAAAAAEWAAAAAAIWQAAAAAAWgAAAAADWgAAAAADegAAAAAATQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAADWgAAAAADWgAAAAAAWgAAAAADWgAAAAACTQAAAAAAWgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADTQAAAAAATQAAAAABTQAAAAABTQAAAAABTQAAAAAATQAAAAACWgAAAAADWgAAAAAAWgAAAAACWgAAAAABWgAAAAABTQAAAAADWgAAAAABWgAAAAACWgAAAAACWgAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAABWgAAAAACWgAAAAABWgAAAAACegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAWgAAAAADWgAAAAACWgAAAAADWgAAAAACWgAAAAABWgAAAAADWgAAAAACWgAAAAAAWgAAAAAAWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAADWgAAAAADWgAAAAADWgAAAAADegAAAAAAegAAAAAAWgAAAAAAWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAAegAAAAAATQAAAAACTQAAAAACTQAAAAAAegAAAAAAegAAAAAAQgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAMAAAAAAAWgAAAAABWgAAAAADWgAAAAADWgAAAAABegAAAAAAQgAAAAAAQgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAhAAAAAAAhAAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAGXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAGXAAAAAAAXgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAhAAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXgAAAAADfwAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAHXAAAAAAAXgAAAAACXgAAAAAAfwAAAAAAAAAAAAAAUAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXgAAAAAAXgAAAAAAfwAAAAAATwAAAAAAUAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAhAAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXgAAAAAAXgAAAAACfwAAAAAAbgAAAAAATwAAAAABXQAAAAAAhAAAAAAAhAAAAAAAhAAAAAAAXQAAAAAAXQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXQAAAAAAXgAAAAADXgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAACXgAAAAAAXgAAAAABXgAAAAACTwAAAAACXgAAAAADXgAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAAATwAAAAABXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAACTwAAAAACXgAAAAACXgAAAAACXgAAAAACTwAAAAABTwAAAAACTwAAAAACTwAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABXgAAAAABXgAAAAACXgAAAAADXgAAAAACXgAAAAABXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAADXgAAAAADfwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAATwAAAAAATwAAAAAATwAAAAACfwAAAAAAfwAAAAAARAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAMgAAAAAAXgAAAAADXgAAAAAAXgAAAAADXgAAAAAAfwAAAAAARAAAAAAARAAAAAAA
version: 6
-7,0:
ind: -7,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAABegAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAADAAAAAAADAAAAAAADAAAAAADDAAAAAABegAAAAAATQAAAAADegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAAMAAAAAAATgAAAAAAWgAAAAACWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAAAMAAAAAAATgAAAAAAWgAAAAADWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADTgAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAABMAAAAAAAMAAAAAAATgAAAAAATQAAAAACTQAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACegAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAABDAAAAAABMAAAAAAAMAAAAAAATgAAAAAATQAAAAACTQAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAABMAAAAAAATgAAAAAATQAAAAAATQAAAAABWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADDAAAAAABDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAACTgAAAAAATQAAAAABTQAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACDAAAAAACMAAAAAAAMAAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAAADAAAAAADTgAAAAAATQAAAAABTQAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABMAAAAAAAMAAAAAAAMAAAAAAADAAAAAABDAAAAAADMAAAAAAADAAAAAAADAAAAAACTgAAAAAATQAAAAACTQAAAAABWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATQAAAAACTgAAAAAAMAAAAAAAMAAAAAAADAAAAAABDAAAAAACMAAAAAAAMAAAAAAAMAAAAAAATgAAAAAATQAAAAABTQAAAAAAWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAMAAAAAAAMAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAABMAAAAAAATgAAAAAATQAAAAABWgAAAAABWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADMAAAAAAATQAAAAACWgAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAADAAAAAABDAAAAAACDAAAAAACMAAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAACegAAAAAAagAAAAAAagAAAAAAagAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAACTwAAAAABTwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAAADAAAAAADDAAAAAABDAAAAAAAfwAAAAAATwAAAAACfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAADMgAAAAAAUAAAAAAAXgAAAAACXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAACDAAAAAABDAAAAAABMgAAAAAAUAAAAAAAXgAAAAAAXgAAAAABXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAUAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAATwAAAAABTwAAAAADXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABfwAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAAAMgAAAAAAMgAAAAAAUAAAAAAATwAAAAABTwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAADAAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACMgAAAAAAUAAAAAAATwAAAAACTwAAAAAAXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABDAAAAAABDAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAABUAAAAAAATwAAAAABTwAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADDAAAAAACMgAAAAAAMgAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAAAUAAAAAAATwAAAAABTwAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADMgAAAAAAMgAAAAAAMgAAAAAADAAAAAACDAAAAAABMgAAAAAADAAAAAAADAAAAAADUAAAAAAATwAAAAACTwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADUAAAAAAAMgAAAAAAMgAAAAAADAAAAAABDAAAAAACMgAAAAAAMgAAAAAAMgAAAAAAUAAAAAAATwAAAAACTwAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAMgAAAAAAMgAAAAAADAAAAAABDAAAAAAADAAAAAADDAAAAAAAMgAAAAAAUAAAAAAATwAAAAADXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAACDAAAAAACMgAAAAAATwAAAAADXgAAAAABXgAAAAABfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAADAAAAAACDAAAAAACDAAAAAADMgAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA
version: 6
-5,-4:
ind: -5,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,2:
ind: -6,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAGGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAFGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAAGQAAAAAAGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAACGQAAAAABGQAAAAAAGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAEGQAAAAACGQAAAAADGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAFGQAAAAAFGQAAAAADGQAAAAAEGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABGQAAAAAFGQAAAAABGQAAAAAFGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACGQAAAAABGQAAAAAFGQAAAAADGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGLgAAAAADGQAAAAAAGQAAAAACGQAAAAAGGQAAAAABGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAABQAAAAAABQAAAAAKBQAAAAAHBQAAAAADegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAABwAAAAADBwAAAAAABwAAAAAABQAAAAAMBQAAAAAEBQAAAAAMTgAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABQAAAAAHBQAAAAAIBQAAAAALTgAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATgAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAJBQAAAAACTgAAAAAATQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABQAAAAALBQAAAAAHTgAAAAAATQAAAAAATQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAABwAAAAABCgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAKBQAAAAADBQAAAAABTgAAAAAATQAAAAAATQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADewAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAALTgAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADCwAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABQAAAAAOBwAAAAAATgAAAAAATQAAAAABTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAADewAAAAAACAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAATgAAAAAATQAAAAACTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABTgAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHTgAAAAAATQAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAewAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABQAAAAACBwAAAAAATgAAAAAATQAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAABgAAAAAABQAAAAABBwAAAAAABQAAAAAMBQAAAAAGBQAAAAAHTgAAAAAAWgAAAAADWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAABQAAAAADBgAAAAAABgAAAAAABQAAAAADegAAAAAAWgAAAAAAWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADegAAAAAAegAAAAAATQAAAAABegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAABQAAAAAFBQAAAAAABQAAAAADBQAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAMBQAAAAAABQAAAAAIUAAAAAAAXgAAAAACXgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABQAAAAAHBQAAAAAOBQAAAAAIUAAAAAAAXgAAAAABXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADUAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAADBQAAAAAEUAAAAAAATwAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAACBQAAAAAGUAAAAAAATwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABBwAAAAAACgAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAABQAAAAANBQAAAAAEUAAAAAAATwAAAAABTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAgAAAAAAACgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAAUAAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAADCwAAAAAACgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABQAAAAAIBwAAAAAAUAAAAAAATwAAAAACTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAgAAAAAAACAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAUAAAAAAATwAAAAACTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABUAAAAAAACgAAAAAACgAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAALUAAAAAAATwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAgAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABQAAAAAIBwAAAAAAUAAAAAAATwAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAABgAAAAAABQAAAAAFBwAAAAADBQAAAAAKBQAAAAAGBQAAAAABUAAAAAAAXgAAAAAAXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAABQAAAAAGBgAAAAAABgAAAAAABQAAAAAJfwAAAAAAXgAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABfwAAAAAAfwAAAAAATwAAAAADfwAAAAAA
version: 6
- -8,-2:
- ind: -8,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -8,0:
+ ind: -8,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,-5:
ind: -5,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-8,-1:
ind: -8,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-2:
ind: -7,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -7,2:
- ind: -7,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAA
+ 6,-2:
+ ind: 6,-2
+ tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAABegAAAAAAegAAAAAAegAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAGAAAAAAAKQAAAAACKQAAAAADKQAAAAACegAAAAAAWgAAAAABWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAGAAAAAAGGAAAAAABGAAAAAAEGAAAAAADKQAAAAADGAAAAAAFTgAAAAAAWgAAAAADWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAKQAAAAAAGAAAAAAAGAAAAAACKQAAAAABGAAAAAAFGAAAAAACGAAAAAAATgAAAAAATQAAAAACTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAKQAAAAACKQAAAAAAKQAAAAACKQAAAAADGAAAAAAEGAAAAAAFGAAAAAAATgAAAAAATQAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFwAAAAADKQAAAAACKQAAAAAAKQAAAAAAKQAAAAADGAAAAAAAGAAAAAAAGAAAAAAHTgAAAAAATQAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAABFwAAAAAAFwAAAAAAKQAAAAADKQAAAAADGAAAAAAAKQAAAAABGAAAAAAAGAAAAAAGTgAAAAAATQAAAAADTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAEFwAAAAADFwAAAAAAFwAAAAADKQAAAAAAKQAAAAACKQAAAAABGAAAAAAEGAAAAAAATgAAAAAATQAAAAACTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAACKQAAAAABGAAAAAADKQAAAAADKQAAAAADKQAAAAACTgAAAAAATQAAAAACTQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAFwAAAAADFwAAAAABKQAAAAADKQAAAAAAKQAAAAABGAAAAAACKQAAAAABKQAAAAADTgAAAAAATQAAAAABTQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAFwAAAAACKQAAAAAAKQAAAAADKQAAAAACKQAAAAABFwAAAAADKQAAAAACTgAAAAAATQAAAAABTQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAKQAAAAADKQAAAAADKQAAAAABKQAAAAABFwAAAAABFwAAAAACFwAAAAAETgAAAAAATQAAAAABWgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAGAAAAAAFKQAAAAACKQAAAAADFwAAAAAGFwAAAAACFwAAAAAATgAAAAAAWgAAAAACWgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAFwAAAAAFFwAAAAABFwAAAAADFwAAAAAFegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGgAAAAABKwAAAAACKwAAAAACKwAAAAABfwAAAAAAXgAAAAADXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAGgAAAAACGgAAAAAEGgAAAAAAGgAAAAADKwAAAAAAGgAAAAACUAAAAAAAXgAAAAACXgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAKwAAAAACGgAAAAABGgAAAAAHKwAAAAABGgAAAAADGgAAAAABGgAAAAAHUAAAAAAATwAAAAABTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAKwAAAAABKwAAAAADKwAAAAACKwAAAAABGgAAAAACGgAAAAAFGgAAAAAEUAAAAAAATwAAAAACTwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAABKwAAAAABKwAAAAADKwAAAAABKwAAAAADGgAAAAADGgAAAAAEGgAAAAADUAAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAADGQAAAAACKwAAAAAAKwAAAAADGgAAAAAFKwAAAAACGgAAAAABGgAAAAADUAAAAAAATwAAAAABTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAAGKwAAAAABKwAAAAACKwAAAAACGgAAAAAGGgAAAAACUAAAAAAATwAAAAABTwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAEGQAAAAAFGQAAAAAGKwAAAAACGgAAAAAGKwAAAAAAKwAAAAACKwAAAAAAUAAAAAAATwAAAAADTwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAAFGQAAAAABKwAAAAABKwAAAAAAKwAAAAADGgAAAAAAKwAAAAAAKwAAAAADUAAAAAAATwAAAAABTwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAGQAAAAADKwAAAAABKwAAAAABKwAAAAABKwAAAAABGQAAAAACKwAAAAAAUAAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAKwAAAAABKwAAAAACKwAAAAABKwAAAAAAGQAAAAADGQAAAAAEGQAAAAAEUAAAAAAATwAAAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAGgAAAAAGKwAAAAACKwAAAAACGQAAAAAGGQAAAAABGQAAAAADUAAAAAAAXgAAAAABXgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAGGQAAAAAAGQAAAAABGQAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAA
version: 6
-7,-5:
ind: -7,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAADGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAADGQAAAAAGGQAAAAADGQAAAAAAfgAAAAAAfgAAAAAAGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAGfgAAAAAAfgAAAAAAGQAAAAACGQAAAAAEGQAAAAADGQAAAAABfgAAAAAAGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAACGQAAAAACGQAAAAABfgAAAAAAGQAAAAAFGQAAAAAFGQAAAAACGQAAAAABGQAAAAADGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAGGQAAAAADGQAAAAAAfgAAAAAAGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAGGQAAAAAAGQAAAAACGQAAAAABfgAAAAAAGQAAAAAEGQAAAAADGQAAAAADGQAAAAABGQAAAAAGGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAABGQAAAAADGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAAGGQAAAAADGQAAAAAFGQAAAAAFGQAAAAAAGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACfgAAAAAAGQAAAAAFGQAAAAAEGQAAAAACGQAAAAADGQAAAAAGGQAAAAACGQAAAAAEGQAAAAADGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAfgAAAAAAGQAAAAACGQAAAAAAGQAAAAAEGQAAAAAEGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAABLgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAAGQAAAAAFfgAAAAAAGQAAAAACGQAAAAABGQAAAAACGQAAAAAFGQAAAAACGQAAAAABGQAAAAACGQAAAAADGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAAFGQAAAAAEGQAAAAACGQAAAAAAGQAAAAAFGQAAAAABLgAAAAAAGQAAAAAFGQAAAAABGQAAAAAFfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAAGQAAAAADGQAAAAAEGQAAAAACGQAAAAACGQAAAAACLgAAAAACLgAAAAACLgAAAAADGQAAAAADGQAAAAABGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAEGQAAAAAFfgAAAAAAGQAAAAADGQAAAAACGQAAAAAFLgAAAAACLgAAAAACLgAAAAACGQAAAAAAGQAAAAACGQAAAAAB
version: 6
-4,3:
ind: -4,3
- tiles: AAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAA
+ tiles: AAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAADfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAA
version: 6
-3,3:
ind: -3,3
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAAAHgAAAAADTgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAawAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAawAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAKQAAAAABKQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAACbQAAAAABegAAAAAAdwAAAAABdwAAAAACdwAAAAACdwAAAAADdwAAAAACegAAAAAAKQAAAAAAKQAAAAACegAAAAAAegAAAAAAegAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAADTQAAAAACdwAAAAADdwAAAAAAdwAAAAACdwAAAAAAdwAAAAADegAAAAAAKQAAAAAAKQAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAABdwAAAAACdwAAAAABegAAAAAAKQAAAAAAKQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAADdwAAAAADdwAAAAABTgAAAAAAKQAAAAABKQAAAAAAegAAAAAAegAAAAAAegAAAAAADgAAAAADDgAAAAACDgAAAAADDgAAAAACdwAAAAABdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAADdwAAAAACTgAAAAAAKQAAAAABKQAAAAAATgAAAAAAegAAAAAAegAAAAAADgAAAAADDgAAAAADDgAAAAACDgAAAAAAdwAAAAAAdwAAAAACdwAAAAAAdwAAAAAAdwAAAAABdwAAAAABegAAAAAATgAAAAAATgAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAABTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAATwAAAAADTwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfwAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAKwAAAAACKwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAADcgAAAAABfwAAAAAAewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAADTwAAAAADKwAAAAAAKwAAAAACfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAADcgAAAAACcgAAAAAAcgAAAAAATwAAAAABewAAAAAAewAAAAAAewAAAAADewAAAAACewAAAAACTwAAAAADKwAAAAAAKwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAADcgAAAAABcgAAAAAAcgAAAAAAfwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAACewAAAAAAfwAAAAAAKwAAAAAAKwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAAAewAAAAABewAAAAAAewAAAAACUAAAAAAAKwAAAAAAKwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAABUAAAAAAAKwAAAAABKwAAAAACUAAAAAAAfwAAAAAAfwAAAAAAewAAAAABewAAAAADewAAAAABewAAAAAAewAAAAABewAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAADfwAAAAAAUAAAAAAAUAAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: TQAAAAABegAAAAAAegAAAAAAegAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAARAAAAAAATgAAAAAAegAAAAAAMAAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAAATQAAAAACagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAHgAAAAACTgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABMAAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdAAAAAAAdAAAAAACdAAAAAADegAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAegAAAAAAMAAAAAAATQAAAAAATQAAAAABTQAAAAADegAAAAAAdAAAAAACdAAAAAABdAAAAAACegAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACTgAAAAAAMAAAAAAATQAAAAADTQAAAAAATQAAAAACegAAAAAAdAAAAAACdAAAAAABdAAAAAACTQAAAAADbQAAAAACbQAAAAABTQAAAAAATQAAAAACbQAAAAACbQAAAAAATgAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdAAAAAACdAAAAAADdAAAAAABegAAAAAAbQAAAAABbQAAAAABTQAAAAACTQAAAAADbQAAAAABbQAAAAACTgAAAAAAMAAAAAAAbQAAAAADbQAAAAAAbQAAAAADTgAAAAAAdAAAAAADdAAAAAACdAAAAAADTgAAAAAAbQAAAAACbQAAAAABTQAAAAABTQAAAAAAbQAAAAACbQAAAAABTgAAAAAAMAAAAAAAbQAAAAABbQAAAAAAbQAAAAABTgAAAAAAdAAAAAADdAAAAAABdAAAAAACTgAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAADTgAAAAAAMAAAAAAAbQAAAAACbQAAAAAAbQAAAAAATQAAAAADdAAAAAAAdAAAAAACdAAAAAACTgAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADegAAAAAAMAAAAAAAbQAAAAADbQAAAAABbQAAAAACTQAAAAABdAAAAAABdAAAAAACdAAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAACbQAAAAABTgAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAABdAAAAAADdAAAAAAAdAAAAAACdAAAAAACdAAAAAADdAAAAAADdAAAAAACdAAAAAABbQAAAAADbQAAAAADbQAAAAADTgAAAAAAdAAAAAADTQAAAAAATQAAAAABTQAAAAAAdAAAAAABdAAAAAADdAAAAAABdAAAAAACdAAAAAABdAAAAAAATQAAAAABTQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAdAAAAAADTQAAAAABTQAAAAAATQAAAAAAdAAAAAADdAAAAAAAdAAAAAABdAAAAAABdAAAAAADdAAAAAABTQAAAAACTQAAAAAD
+ tiles: TwAAAAABTwAAAAABTwAAAAAATwAAAAABUAAAAAAAIAAAAAADIAAAAAABUAAAAAAAQwAAAAAAQwAAAAAATwAAAAACIQAAAAACIQAAAAAAIQAAAAABIQAAAAAAIQAAAAAATwAAAAABTwAAAAAATwAAAAABTwAAAAACUAAAAAAAIAAAAAADIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAAIAAAAAACIQAAAAAAIQAAAAACIQAAAAADIQAAAAADIQAAAAADTwAAAAADTwAAAAADTwAAAAADTwAAAAABUAAAAAAAIAAAAAACIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAATwAAAAAAIQAAAAAAIQAAAAACIQAAAAABIQAAAAAAIQAAAAADUAAAAAAAUAAAAAAAUAAAAAAATwAAAAABUAAAAAAAIAAAAAAAIAAAAAACfwAAAAAAQwAAAAAAQwAAAAAATwAAAAAAIQAAAAAAIQAAAAACIQAAAAACIQAAAAACIQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAADfwAAAAAAfwAAAAAATwAAAAABTwAAAAABTwAAAAACTwAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAAAeAAAAAADeAAAAAAAfwAAAAAAcgAAAAAAcgAAAAACcgAAAAACcgAAAAACcgAAAAABcgAAAAACfwAAAAAAMgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAAeAAAAAAAeAAAAAACeAAAAAAAfwAAAAAAcgAAAAABcgAAAAABcgAAAAACcgAAAAACcgAAAAAAcgAAAAAATwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAACeAAAAAAAeAAAAAABTwAAAAABcgAAAAACcgAAAAACTwAAAAADTwAAAAABcgAAAAABcgAAAAACTwAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAAAeAAAAAACeAAAAAACfwAAAAAAcgAAAAABcgAAAAABTwAAAAADTwAAAAABcgAAAAAAcgAAAAACTwAAAAADMgAAAAAAcQAAAAACcQAAAAACcQAAAAABUAAAAAAAeAAAAAACeAAAAAABeAAAAAAAUAAAAAAAcgAAAAADcgAAAAACcgAAAAAAcgAAAAADcgAAAAABcgAAAAADTwAAAAACMgAAAAAAcQAAAAACcQAAAAAAcQAAAAABUAAAAAAAeAAAAAAAeAAAAAADeAAAAAACUAAAAAAAcgAAAAADcgAAAAABcgAAAAAAcgAAAAABcgAAAAADcgAAAAABTwAAAAAAMgAAAAAAcQAAAAACcQAAAAABcQAAAAADTwAAAAABeAAAAAAAeAAAAAABeAAAAAAATwAAAAACTwAAAAABTwAAAAABTwAAAAACTwAAAAADTwAAAAADTwAAAAADfwAAAAAAMgAAAAAAcQAAAAADcQAAAAABcQAAAAACTwAAAAABeAAAAAACeAAAAAACeAAAAAADTwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAACfwAAAAAAfwAAAAAAcQAAAAABcQAAAAADcQAAAAADUAAAAAAAeAAAAAACeAAAAAAAeAAAAAABTwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAACeAAAAAABeAAAAAABcQAAAAACcQAAAAAAcQAAAAADUAAAAAAAeAAAAAACTwAAAAACeAAAAAABTwAAAAACTwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAABTwAAAAACeAAAAAADeAAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAeAAAAAADTwAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAABeAAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAABeAAAAAAD
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,3:
ind: -6,3
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAA
+ tiles: LgAAAAABLgAAAAACLgAAAAACGQAAAAAFGQAAAAAFGQAAAAAFGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAADLgAAAAACLgAAAAACGQAAAAAEGQAAAAAGGQAAAAAEGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAADGQAAAAAELgAAAAABLgAAAAACGQAAAAADGQAAAAAEGQAAAAADGQAAAAAGGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAEfwAAAAAAfgAAAAAAGQAAAAAEGQAAAAAEGQAAAAAAGQAAAAABGQAAAAAFGQAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAGfwAAAAAAfwAAAAAAGQAAAAABGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAFfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGfwAAAAAAfwAAAAAAGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAGGQAAAAAEfwAAAAAAGQAAAAAEfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAGGQAAAAAEfwAAAAAAGQAAAAAGGQAAAAAEGQAAAAAAGQAAAAAFfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAGQAAAAABGQAAAAADfwAAAAAAGQAAAAAGfgAAAAAAGQAAAAABGQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAADGQAAAAACGQAAAAAGfgAAAAAAfwAAAAAAGQAAAAABGQAAAAAAGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAAEGQAAAAAAGQAAAAACGQAAAAABfwAAAAAAfwAAAAAAGQAAAAAGGQAAAAAFGQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAAEGQAAAAAAGQAAAAABGQAAAAACfwAAAAAAfwAAAAAAGQAAAAABGQAAAAAFGQAAAAAEfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAABGQAAAAAAGQAAAAAGGQAAAAABfwAAAAAAGQAAAAAGGQAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAAGGQAAAAACGQAAAAAAGQAAAAAAGQAAAAAFfgAAAAAAGQAAAAAAGQAAAAAGGQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAGQAAAAAFGQAAAAABGQAAAAAFGQAAAAAGGQAAAAAFGQAAAAADfwAAAAAAGQAAAAACGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAGQAAAAAGGQAAAAABGQAAAAAAGQAAAAAGGQAAAAADGQAAAAACGQAAAAAFGQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAFGQAAAAABGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAAHGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAOQAAAAAAGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAOQAAAAAAGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAGAAAAAAEGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAAEGAAAAAAGGAAAAAADGAAAAAAGGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAAFGAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADGAAAAAACGAAAAAACGAAAAAAGGAAAAAACGAAAAAACGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAAHGAAAAAABGAAAAAAHGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAHGAAAAAABGAAAAAAAGAAAAAAGGAAAAAAFGAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAGGAAAAAABegAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABegAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAABAAAAAAAAGAAAAAABegAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAagAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAABGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAOwAAAAAAGgAAAAAGGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAOwAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGgAAAAAEGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGgAAAAAAGgAAAAAHGgAAAAAFGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFGgAAAAAHGgAAAAAEGgAAAAAAGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAEGgAAAAABGgAAAAADGgAAAAAFGgAAAAACGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAHGgAAAAAEGgAAAAACGgAAAAABGgAAAAADGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAGGgAAAAADGgAAAAADfwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFGgAAAAABGgAAAAACfwAAAAAAbQAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAAHfwAAAAAAbQAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAbgAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABfwAAAAAAfwAAAAAA
version: 6
-5,-3:
ind: -5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAGAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAGAAAAAAAegAAAAAAegAAAAAAegAAAAAAOQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAGAAAAAAFeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAGAAAAAADGAAAAAAFGAAAAAAFeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAGAAAAAAHGAAAAAAFGAAAAAABGAAAAAABGAAAAAABAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAOQAAAAAAOQAAAAAAGAAAAAAE
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAGgAAAAACfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAGgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAbQAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAGgAAAAABGgAAAAAGGgAAAAAGfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAGgAAAAACGgAAAAAGGgAAAAAEGgAAAAAHGgAAAAACAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAGgAAAAAH
version: 6
-6,-3:
ind: -6,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: WgAAAAAAWgAAAAAAWgAAAAACegAAAAAATgAAAAAATgAAAAAAegAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAAAWgAAAAAAWgAAAAADegAAAAAATgAAAAAATgAAAAAAegAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAWgAAAAABWgAAAAADWgAAAAADegAAAAAAegAAAAAAegAAAAAAegAAAAAAOgAAAAAATgAAAAAATgAAAAAATgAAAAAAOgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAWgAAAAACWgAAAAAAWgAAAAACTQAAAAABTQAAAAABTQAAAAADTgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAATgAAAAAATQAAAAADTQAAAAABegAAAAAAWgAAAAADWgAAAAACWgAAAAACTQAAAAABTQAAAAACTQAAAAACTQAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATQAAAAADTQAAAAAATQAAAAACegAAAAAAWgAAAAABWgAAAAAAWgAAAAAAegAAAAAATQAAAAACTQAAAAABTQAAAAABTQAAAAADTQAAAAADTQAAAAADTQAAAAADTQAAAAACTQAAAAABTQAAAAACTQAAAAACegAAAAAAWgAAAAAAWgAAAAADWgAAAAACegAAAAAATQAAAAACTQAAAAADTQAAAAAATQAAAAACTQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAABTQAAAAACTQAAAAACegAAAAAATQAAAAABTQAAAAACTQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAABTQAAAAAATQAAAAADTQAAAAABTQAAAAABTQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAABTQAAAAADTQAAAAACTQAAAAABTQAAAAABTQAAAAACegAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAABLgAAAAADLgAAAAACLgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAACLgAAAAABTQAAAAADTgAAAAAALgAAAAABLgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAABTQAAAAAATgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAABLgAAAAAALgAAAAAATQAAAAABTgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAAALgAAAAACLgAAAAABLgAAAAACLgAAAAABLgAAAAABLgAAAAAALgAAAAABLgAAAAADLgAAAAAATQAAAAAATgAAAAAATQAAAAAATQAAAAACTQAAAAAATQAAAAABTQAAAAAATQAAAAABTQAAAAABTQAAAAACTQAAAAACTQAAAAABTQAAAAABTQAAAAADTQAAAAACTQAAAAAATQAAAAACegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA
+ tiles: XgAAAAADawAAAAAAXgAAAAADfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAABXgAAAAABXgAAAAACTwAAAAADUAAAAAAAUAAAAAAATwAAAAACPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAATwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAABfwAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAXgAAAAADXgAAAAAAXgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAPAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAPAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAXgAAAAAAXgAAAAAAXgAAAAADTwAAAAAATwAAAAABTwAAAAAAUAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAUAAAAAAATwAAAAABTwAAAAACfwAAAAAAXgAAAAABXgAAAAADXgAAAAAATwAAAAADTwAAAAAATwAAAAACTwAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAATwAAAAAATwAAAAACTwAAAAAAfwAAAAAAXgAAAAACawAAAAADXgAAAAABfwAAAAAATwAAAAAATwAAAAADTwAAAAACTwAAAAADTwAAAAABTwAAAAAATwAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAAAfwAAAAAAXgAAAAACXgAAAAAAXgAAAAACfwAAAAAATwAAAAADTwAAAAADTwAAAAAATwAAAAABTwAAAAACTwAAAAADTwAAAAABTwAAAAADTwAAAAADTwAAAAAATwAAAAAAfwAAAAAATwAAAAACTwAAAAAATwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAACTwAAAAABTwAAAAADTwAAAAABTwAAAAABTwAAAAAATwAAAAABTwAAAAACTwAAAAABTwAAAAADTwAAAAACTwAAAAADTwAAAAAATwAAAAADTwAAAAABfwAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAMAAAAAADMAAAAAABMAAAAAABTwAAAAACUAAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAAAMAAAAAADMAAAAAABMAAAAAADMAAAAAACMAAAAAABMAAAAAADTwAAAAADUAAAAAAAMAAAAAACMAAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAACMAAAAAAAMAAAAAABMAAAAAACTwAAAAABUAAAAAAAMAAAAAACMAAAAAADMAAAAAADMAAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAABMAAAAAABMAAAAAADMAAAAAABMAAAAAACMAAAAAABMAAAAAADTwAAAAACUAAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAAATwAAAAABTwAAAAACTwAAAAAATwAAAAAATwAAAAADTwAAAAADTwAAAAADTwAAAAABTwAAAAADTwAAAAADTwAAAAACfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: dAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAACTQAAAAABTgAAAAAATgAAAAAATgAAAAAATQAAAAAAdAAAAAABdAAAAAADdAAAAAACdAAAAAADTQAAAAADTgAAAAAATQAAAAABTgAAAAAAegAAAAAATQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAADegAAAAAAegAAAAAAegAAAAAAbQAAAAAAbQAAAAACbQAAAAAAegAAAAAAdwAAAAACdwAAAAABdwAAAAADdwAAAAACdwAAAAABegAAAAAAbQAAAAACbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAegAAAAAAbQAAAAADbQAAAAABbQAAAAADegAAAAAAdwAAAAACdwAAAAADdwAAAAADdwAAAAAAdwAAAAABegAAAAAAbQAAAAAATQAAAAACTQAAAAABTQAAAAACbQAAAAACegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAdwAAAAAAegAAAAAAdwAAAAABegAAAAAAdwAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAABbQAAAAADegAAAAAAeQAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdwAAAAABdwAAAAAAdwAAAAADdwAAAAABdwAAAAADegAAAAAAegAAAAAATQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdwAAAAACdwAAAAADdwAAAAAAdwAAAAABdwAAAAADWgAAAAADWgAAAAADWgAAAAAAWgAAAAAAWgAAAAADWgAAAAABWgAAAAABeQAAAAAAeQAAAAAAMAAAAAAATgAAAAAAdwAAAAACdwAAAAAAdwAAAAADdwAAAAAAdwAAAAACWgAAAAABWgAAAAAAWgAAAAADWgAAAAADWgAAAAABWgAAAAACWgAAAAABAAAAAAAAeQAAAAAAMAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAMAAAAAAAegAAAAAATQAAAAADTQAAAAACTQAAAAADTQAAAAABTQAAAAABTQAAAAACTQAAAAADTQAAAAABTQAAAAADTQAAAAADTQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAATQAAAAACLgAAAAADLgAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAAALgAAAAABLgAAAAAALgAAAAADLgAAAAAALgAAAAAAeQAAAAAAeQAAAAAAMAAAAAAATgAAAAAATQAAAAABLgAAAAAALgAAAAAALgAAAAADLgAAAAACLgAAAAABLgAAAAABLgAAAAACLgAAAAAALgAAAAADLgAAAAABLgAAAAABAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAATQAAAAAALgAAAAABLgAAAAAALgAAAAABLgAAAAADLgAAAAAALgAAAAADLgAAAAACLgAAAAAALgAAAAABLgAAAAAALgAAAAADAAAAAAAAAAAAAAAAMAAAAAAATgAAAAAATQAAAAABLgAAAAADLgAAAAACLgAAAAAALgAAAAACLgAAAAABLgAAAAAALgAAAAADLgAAAAADLgAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAMAAAAAAAegAAAAAATQAAAAADTQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAACTQAAAAACTQAAAAADTQAAAAADTQAAAAABTQAAAAABTQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAA
+ tiles: eAAAAAACeAAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAACTwAAAAACUAAAAAAAUAAAAAAAUAAAAAAATwAAAAACeAAAAAABeAAAAAAAeAAAAAADeAAAAAACTwAAAAACUAAAAAAATwAAAAABUAAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAATwAAAAABfwAAAAAAfwAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAABfwAAAAAAewAAAAADewAAAAABewAAAAABewAAAAAAewAAAAADfwAAAAAAUAAAAAAATwAAAAABTwAAAAAATwAAAAABUAAAAAAAfwAAAAAAcgAAAAAAcgAAAAADcgAAAAAAfwAAAAAAewAAAAACewAAAAADewAAAAAAewAAAAAAewAAAAACfwAAAAAAUAAAAAAATwAAAAABTwAAAAACTwAAAAACUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAewAAAAAAfwAAAAAAewAAAAADfwAAAAAAewAAAAADfwAAAAAAUAAAAAAATwAAAAABTwAAAAADTwAAAAABUAAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAADewAAAAABewAAAAAAewAAAAAAewAAAAAAfwAAAAAAfwAAAAAATwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAADewAAAAAAewAAAAABXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAAAXgAAAAADXgAAAAACfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAAewAAAAADewAAAAADewAAAAABewAAAAADewAAAAADXgAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAACXgAAAAAAXgAAAAADAAAAAAAAAAAAAAAAMgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAACTwAAAAADTwAAAAACTwAAAAADTwAAAAABTwAAAAABTwAAAAAATwAAAAACTwAAAAACTwAAAAACTwAAAAABTwAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAACMAAAAAACMAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAACMAAAAAADMAAAAAACMAAAAAABMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAMgAAAAAAUAAAAAAATwAAAAAAMAAAAAACMAAAAAAAMAAAAAAAMAAAAAABMAAAAAABMAAAAAACMAAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAABMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAADMAAAAAACMAAAAAABAAAAAAAAAAAAAAAAMgAAAAAAUAAAAAAATwAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAABMAAAAAAAMAAAAAAAMAAAAAADMAAAAAADMAAAAAACMAAAAAABfgAAAAAAfgAAAAAAMgAAAAAAfwAAAAAATwAAAAADTwAAAAABTwAAAAADTwAAAAABTwAAAAADTwAAAAACTwAAAAABTwAAAAABTwAAAAADTwAAAAACTwAAAAADTwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: dAAAAAABdAAAAAACdAAAAAAATQAAAAADdAAAAAADdAAAAAABdAAAAAAAdAAAAAABdAAAAAACdAAAAAACdAAAAAACdAAAAAABdAAAAAABdAAAAAABdAAAAAACdAAAAAADTQAAAAAAegAAAAAATQAAAAACegAAAAAATgAAAAAATQAAAAADTgAAAAAAegAAAAAATgAAAAAATQAAAAACTgAAAAAAegAAAAAATgAAAAAATQAAAAAATgAAAAAAegAAAAAATQAAAAABegAAAAAATQAAAAADegAAAAAAbQAAAAABbQAAAAACbQAAAAABegAAAAAAbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAbQAAAAADbQAAAAADbQAAAAADegAAAAAAbQAAAAACegAAAAAAbQAAAAADegAAAAAAbQAAAAACbQAAAAAAbQAAAAABegAAAAAAbQAAAAAAbQAAAAAAbQAAAAADegAAAAAAbQAAAAABbQAAAAABbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eAAAAAADeAAAAAABeAAAAAAATwAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAADeAAAAAABeAAAAAADeAAAAAABeAAAAAACeAAAAAACeAAAAAADTwAAAAABfwAAAAAATwAAAAACfwAAAAAAUAAAAAAATwAAAAACUAAAAAAAfwAAAAAAUAAAAAAATwAAAAADUAAAAAAAfwAAAAAAUAAAAAAATwAAAAACUAAAAAAAfwAAAAAATwAAAAADfwAAAAAATwAAAAAAfwAAAAAAcgAAAAADcgAAAAACcgAAAAACfwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfwAAAAAAcgAAAAACcgAAAAABcgAAAAABfwAAAAAAcQAAAAAAfwAAAAAAcQAAAAAAfwAAAAAAcgAAAAAAcgAAAAACcgAAAAABfwAAAAAAcgAAAAACcgAAAAADcgAAAAACfwAAAAAAcgAAAAADcgAAAAACcgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: TgAAAAAAegAAAAAATgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAAdwAAAAAAdwAAAAACdwAAAAACdwAAAAABdwAAAAAAdwAAAAAATQAAAAABdAAAAAABdAAAAAACTgAAAAAAegAAAAAATgAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAACdwAAAAADdwAAAAAAdwAAAAABdwAAAAADdwAAAAABdwAAAAADegAAAAAATQAAAAABegAAAAAATgAAAAAAegAAAAAATgAAAAAADgAAAAACDgAAAAACDgAAAAAADgAAAAADdwAAAAADdwAAAAABdwAAAAAAdwAAAAABdwAAAAABdwAAAAABegAAAAAATQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAAdwAAAAAAdwAAAAABdwAAAAAAdwAAAAABdwAAAAAAdwAAAAACegAAAAAAbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UAAAAAAAfwAAAAAAUAAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACewAAAAABewAAAAACewAAAAACewAAAAADewAAAAADTwAAAAABeAAAAAADeAAAAAADUAAAAAAAfwAAAAAAUAAAAAAADgAAAAADDgAAAAADDgAAAAABDgAAAAABDgAAAAADewAAAAACewAAAAABewAAAAAAewAAAAABewAAAAABfwAAAAAATwAAAAADfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAADDgAAAAAAewAAAAAAewAAAAACewAAAAADewAAAAABewAAAAACfwAAAAAATwAAAAACfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAABDgAAAAAAewAAAAACewAAAAAAewAAAAABewAAAAABewAAAAACfwAAAAAAcQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAANAAAAAAAfwAAAAAANAAAAAAANAAAAAAAbgAAAAAAfgAAAAAAfgAAAAAATwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAAANAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAANAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAbgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbgAAAAAATwAAAAADTwAAAAADTwAAAAADTwAAAAABTwAAAAACbgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,3:
ind: -7,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAATgAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAATgAAAAAATgAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAALgAAAAABLgAAAAAALgAAAAACUAAAAAAAUAAAAAAAUAAAAAAALgAAAAACLgAAAAACLgAAAAABGQAAAAABGQAAAAAEGQAAAAADGQAAAAACGQAAAAAGGQAAAAABfwAAAAAALgAAAAABLgAAAAABLgAAAAADUAAAAAAAUAAAAAAAUAAAAAAALgAAAAAALgAAAAACLgAAAAADfwAAAAAAGQAAAAAFGQAAAAADGQAAAAACGQAAAAADGQAAAAAEfwAAAAAALgAAAAAALgAAAAADLgAAAAACUAAAAAAAUAAAAAAAUAAAAAAALgAAAAABLgAAAAAALgAAAAADGQAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAACLgAAAAABLgAAAAABLgAAAAAALgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALgAAAAACLgAAAAABLgAAAAADGQAAAAAGGQAAAAABGQAAAAADGQAAAAAEGQAAAAADLgAAAAAALgAAAAADLgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfwAAAAAALgAAAAABfwAAAAAALgAAAAAALgAAAAABGQAAAAACGQAAAAAAGQAAAAAGGQAAAAAGLgAAAAABLgAAAAAALgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAALgAAAAAALgAAAAADLgAAAAADfwAAAAAAGQAAAAADGQAAAAAAGQAAAAABGQAAAAAGGQAAAAAEfwAAAAAALgAAAAABLgAAAAADLgAAAAADLgAAAAACLgAAAAAALgAAAAACLgAAAAADLgAAAAADfwAAAAAAGQAAAAAGfwAAAAAAfwAAAAAAGQAAAAAAfwAAAAAAGQAAAAAAfwAAAAAALgAAAAABLgAAAAACLgAAAAAALgAAAAAALgAAAAACLgAAAAAALgAAAAACGQAAAAABfwAAAAAAGQAAAAAEGQAAAAABLgAAAAACGQAAAAAFGQAAAAAAGQAAAAADfwAAAAAALgAAAAAAfwAAAAAAfwAAAAAALgAAAAADLgAAAAACLgAAAAACGQAAAAAGLgAAAAABfwAAAAAAfwAAAAAALgAAAAAALgAAAAABfwAAAAAAGQAAAAAEGQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAALgAAAAADfwAAAAAALgAAAAADfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAALgAAAAABfwAAAAAAGQAAAAAFGQAAAAABGQAAAAABLgAAAAABLgAAAAACLgAAAAACLgAAAAAALgAAAAACLgAAAAAALgAAAAABfwAAAAAAGQAAAAAEGQAAAAABGQAAAAACGQAAAAAAGQAAAAAFfwAAAAAAGQAAAAAAGQAAAAAGGQAAAAACLgAAAAAALgAAAAABGQAAAAABGQAAAAAFfwAAAAAALgAAAAADfwAAAAAAGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAAGGQAAAAAEGQAAAAADGQAAAAAGGQAAAAADGQAAAAAFGQAAAAAEGQAAAAACGQAAAAAGGQAAAAAEfwAAAAAAGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAAGGQAAAAABGQAAAAADGQAAAAACGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAACfwAAAAAAGQAAAAAFGQAAAAAGGQAAAAACGQAAAAABGQAAAAAFGQAAAAAAGQAAAAAEGQAAAAADGQAAAAAAGQAAAAACGQAAAAAEGQAAAAAGGQAAAAACGQAAAAAAGQAAAAAEfwAAAAAAGQAAAAADGQAAAAAFGQAAAAAGGQAAAAAGfgAAAAAAGQAAAAAEGQAAAAAAGQAAAAACfgAAAAAAfgAAAAAAGQAAAAADGQAAAAAEGQAAAAAEGQAAAAACGQAAAAABGQAAAAACGQAAAAADGQAAAAAFGQAAAAAGfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAAEGQAAAAADGQAAAAAG
version: 6
-8,3:
ind: -8,3
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAATgAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGQAAAAAAGQAAAAAFGQAAAAAFGQAAAAAGGQAAAAAELgAAAAADLgAAAAADLgAAAAACGQAAAAADGQAAAAACGQAAAAABAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAGQAAAAAEGQAAAAABGQAAAAAEGQAAAAAEGQAAAAABGQAAAAACGQAAAAAFGQAAAAAEGQAAAAACGQAAAAACGQAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAAGQAAAAABGQAAAAADGQAAAAAEGQAAAAADGQAAAAAGGQAAAAAFfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAAEGQAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAADfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAADLgAAAAACGQAAAAADGQAAAAADGQAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAELgAAAAACLgAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAABGQAAAAABGQAAAAAFGQAAAAAAfwAAAAAALgAAAAABGQAAAAAEGQAAAAACGQAAAAAFGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAABGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAACGQAAAAACGQAAAAABGQAAAAAGLgAAAAACLgAAAAAAGQAAAAAEGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAAGQAAAAAGfgAAAAAAGQAAAAADGQAAAAAGGQAAAAABGQAAAAAGGQAAAAADGQAAAAACGQAAAAAFGQAAAAAEGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAfgAAAAAAGQAAAAAGGQAAAAAAGQAAAAACGQAAAAABGQAAAAAFGQAAAAADGQAAAAAGGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGfgAAAAAAGQAAAAADGQAAAAAGGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAADGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFfgAAAAAAGQAAAAABfgAAAAAAGQAAAAAGGQAAAAACGQAAAAACGQAAAAACGQAAAAACGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAACGQAAAAACGQAAAAAAGQAAAAAEGQAAAAABGQAAAAADGQAAAAAEGQAAAAABGQAAAAAEAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGQAAAAACGQAAAAABGQAAAAABGQAAAAAFGQAAAAAFAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAADfgAAAAAAGQAAAAAB
version: 6
-8,4:
ind: -8,4
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,4:
ind: -7,4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAGAAAAAAAGAAAAAABGAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAGAAAAAADGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAFGAAAAAAFGAAAAAABGAAAAAABGAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAGAAAAAADGAAAAAAEGAAAAAADGAAAAAAHGAAAAAACGAAAAAACGAAAAAADeQAAAAAAAAAAAAAAeQAAAAAAGAAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAGGAAAAAAAGAAAAAAEGAAAAAAHGAAAAAAHGAAAAAADGAAAAAAGGAAAAAAFGAAAAAAAAAAAAAAAeQAAAAAAGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAHGAAAAAABGAAAAAAGGAAAAAAHGAAAAAAGGAAAAAABGAAAAAAGGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAHGAAAAAACGAAAAAAFGAAAAAADGAAAAAAEGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAEGAAAAAACGAAAAAACGAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAGgAAAAAFGgAAAAACGgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGgAAAAABGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAAGgAAAAAFGgAAAAAAGgAAAAAHGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAGgAAAAAGGgAAAAAAGgAAAAAGGgAAAAAEGgAAAAAFGgAAAAADGgAAAAACfgAAAAAAAAAAAAAAfgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAEGgAAAAABGgAAAAAGGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAAGAAAAAAAAfgAAAAAAGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAAFGgAAAAADGgAAAAACGgAAAAAEGgAAAAAFGgAAAAAEGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAAEGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAAHGgAAAAAFGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-9,3:
ind: -9,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -9,2:
- ind: -9,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAA
+ -7,2:
+ ind: -7,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGQAAAAAEGQAAAAADGQAAAAAFGQAAAAAEAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAADGQAAAAACGQAAAAAAGQAAAAACGQAAAAAGGQAAAAADGQAAAAAGfgAAAAAAAAAAAAAAGQAAAAAGGQAAAAAAGQAAAAAFfgAAAAAAGQAAAAACGQAAAAAFGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAADGQAAAAADGQAAAAAGGQAAAAACGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAFGQAAAAACGQAAAAAGGQAAAAAGGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAACGQAAAAABGQAAAAAEGQAAAAADGQAAAAACGQAAAAAFGQAAAAAGGQAAAAAGGQAAAAAAGQAAAAACGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAACGQAAAAADGQAAAAAAGQAAAAAALgAAAAACGQAAAAAAGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAAGGQAAAAAEGQAAAAACGQAAAAADGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAFGQAAAAADGQAAAAADLgAAAAABLgAAAAADLgAAAAADGQAAAAADGQAAAAAGGQAAAAACGQAAAAAGGQAAAAAFGQAAAAACfwAAAAAAGQAAAAAGGQAAAAAGGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAADLgAAAAABLgAAAAAAGQAAAAAGGQAAAAADGQAAAAAGGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAAAGQAAAAABGQAAAAADGQAAAAABGQAAAAADGQAAAAACGQAAAAACGQAAAAAGGQAAAAAEGQAAAAACGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAFGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAABGQAAAAABGQAAAAABGQAAAAABGQAAAAADGQAAAAAFGQAAAAABGQAAAAADGQAAAAAGGQAAAAABGQAAAAAFGQAAAAAFfwAAAAAAfwAAAAAALgAAAAACfwAAAAAAGQAAAAAGGQAAAAAEGQAAAAADGQAAAAAGGQAAAAACGQAAAAAAfwAAAAAAfwAAAAAAGQAAAAAGGQAAAAAAGQAAAAAGGQAAAAADGQAAAAABLgAAAAADGQAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAGfwAAAAAALgAAAAABGQAAAAACGQAAAAAGGQAAAAADGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAAAGQAAAAAGfwAAAAAAGQAAAAACGQAAAAACGQAAAAACGQAAAAAAGQAAAAADfwAAAAAAfwAAAAAAGQAAAAAEGQAAAAAEGQAAAAABGQAAAAADGQAAAAAAGQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAFfwAAAAAAfwAAAAAAGQAAAAABLgAAAAADGQAAAAAEGQAAAAAE
version: 6
-9,4:
ind: -9,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,5:
ind: -1,5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAeQAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,5:
ind: 0,5
- tiles: egAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAATgAAAAAAegAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAfwAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,4:
ind: 1,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAA
version: 6
3,4:
ind: 3,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAKQAAAAABKQAAAAABKQAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAKQAAAAADKQAAAAAAKQAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGgAAAAAEKwAAAAABKwAAAAADfwAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACGgAAAAADKwAAAAADKwAAAAACKwAAAAABKwAAAAABKwAAAAACKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAACGQAAAAAFGgAAAAAAGgAAAAAFKwAAAAABKwAAAAADKwAAAAACKwAAAAADKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAADGgAAAAAEGgAAAAABKwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAAAGgAAAAAEGgAAAAABGgAAAAAAKwAAAAAAKwAAAAACKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAAAGQAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACKwAAAAAAGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAGQAAAAABGQAAAAAEGgAAAAABGgAAAAAEGgAAAAABGgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAAAGQAAAAAAGgAAAAAAGgAAAAAAKwAAAAAAGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAGQAAAAAAGQAAAAAFGgAAAAAHKwAAAAACKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAGQAAAAACGgAAAAAFGgAAAAAHGgAAAAAHGgAAAAADGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAAAGgAAAAAAGgAAAAAHKwAAAAACGgAAAAABGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAACGQAAAAACGQAAAAAFGgAAAAAGGgAAAAAFGgAAAAAEGgAAAAAGKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGgAAAAAEGgAAAAAAGgAAAAAFGgAAAAAHKwAAAAABGgAAAAAGGgAAAAAHfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAABGgAAAAAAGQAAAAADfwAAAAAAGQAAAAACGgAAAAAAGQAAAAAGGgAAAAAEGgAAAAAFGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGgAAAAAGfwAAAAAAGQAAAAABGQAAAAAAGQAAAAAFGQAAAAAAGgAAAAADGgAAAAADGgAAAAAGAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAGQAAAAAEGgAAAAAGfwAAAAAAGQAAAAABGQAAAAAAfwAAAAAAGQAAAAAFGgAAAAABGgAAAAAFGgAAAAAG
version: 6
6,2:
ind: 6,2
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GQAAAAAGGgAAAAACGQAAAAABGQAAAAAFGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAEGQAAAAACGQAAAAAGGQAAAAAGGQAAAAABGQAAAAACGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGgAAAAAGGQAAAAAEGQAAAAADGQAAAAADGQAAAAAGGQAAAAACGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAACGQAAAAABGQAAAAACGgAAAAAHGQAAAAADGQAAAAAFGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGQAAAAABGgAAAAAHGQAAAAAEGQAAAAAAGQAAAAADGQAAAAAFGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAEGQAAAAAGGQAAAAAEGgAAAAAEGQAAAAAGGQAAAAAEGQAAAAAEGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAHGgAAAAACGQAAAAAGGgAAAAAGGgAAAAACGgAAAAAGGQAAAAAGGQAAAAAFGQAAAAADGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAHGQAAAAAEGgAAAAAAGgAAAAAGGgAAAAABGQAAAAAAGQAAAAADGQAAAAABGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAACKwAAAAADGgAAAAAFGgAAAAAHGQAAAAAGGQAAAAACGQAAAAAEGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAGKwAAAAABKwAAAAAAGgAAAAACGgAAAAABGgAAAAADKwAAAAADGQAAAAABGQAAAAACGQAAAAABGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAABKwAAAAADKwAAAAABKwAAAAAAKwAAAAACGQAAAAAGGQAAAAACGQAAAAAEGQAAAAAGGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAADKwAAAAACKwAAAAABKwAAAAACKwAAAAABGQAAAAAAGQAAAAAGGQAAAAABGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAADewAAAAADewAAAAABKwAAAAAAKwAAAAABGQAAAAAAGQAAAAAGGQAAAAAGGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAABKwAAAAABKwAAAAADKwAAAAADewAAAAACewAAAAABKwAAAAAAKwAAAAABKwAAAAABGQAAAAAAGQAAAAABGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABKwAAAAADKwAAAAADKwAAAAADewAAAAACewAAAAACKwAAAAAAKwAAAAAAKwAAAAACGQAAAAAAGQAAAAAAGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABGQAAAAAEKwAAAAACKwAAAAADewAAAAABewAAAAACKwAAAAADKwAAAAAAGQAAAAABGQAAAAAFGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,3:
ind: 6,3
- tiles: egAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GQAAAAAAGQAAAAACGQAAAAAGGQAAAAAAKwAAAAACKwAAAAADKwAAAAACKwAAAAAAKwAAAAAAGQAAAAAGGQAAAAABGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAGGgAAAAAEGQAAAAAGGgAAAAABKwAAAAADKwAAAAAAGgAAAAAGGQAAAAACGQAAAAAEGQAAAAABGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAAFGQAAAAACGgAAAAACGgAAAAAAKwAAAAADGgAAAAAFKwAAAAACGQAAAAABGQAAAAADGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGgAAAAAAGgAAAAAFGQAAAAAFGgAAAAAGGgAAAAAHGgAAAAAEGgAAAAAHGQAAAAADGQAAAAADGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAAGfwAAAAAAfwAAAAAAGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAADGQAAAAADfwAAAAAAfwAAAAAAGQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAAfwAAAAAAGQAAAAABGQAAAAAAGQAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGfwAAAAAAGgAAAAAGfwAAAAAAGQAAAAAFfwAAAAAAGgAAAAABGgAAAAAAGgAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABGQAAAAADGQAAAAAGGQAAAAADGQAAAAABGgAAAAACGgAAAAAAGQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAAGQAAAAADGQAAAAACGQAAAAAEGQAAAAADGQAAAAAAGQAAAAAGGQAAAAACGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAEGQAAAAADGQAAAAADGQAAAAAEGQAAAAABGQAAAAABGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAAGgAAAAAFGQAAAAAGGQAAAAACGQAAAAAAGQAAAAAFGQAAAAADGQAAAAAGGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGgAAAAADGgAAAAABGQAAAAABGQAAAAAFGQAAAAACGQAAAAADGQAAAAADGQAAAAADGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAABGgAAAAAEGgAAAAAGGQAAAAACGQAAAAAEGQAAAAAGGQAAAAAEGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAABGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAACGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,1:
ind: 6,1
- tiles: AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GgAAAAACGQAAAAAFGQAAAAACKwAAAAADKwAAAAADGgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAAEGQAAAAAFKwAAAAAAGgAAAAAFGgAAAAABUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAGQAAAAAFGQAAAAABAAAAAAAAAAAAAAAAGgAAAAAFGQAAAAAFGgAAAAADKwAAAAADGgAAAAAGGgAAAAAGUAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAUAAAAAAAGgAAAAABGQAAAAAEGQAAAAABAAAAAAAAAAAAAAAAGgAAAAADGQAAAAAAKwAAAAABKwAAAAACGQAAAAAAGgAAAAADGQAAAAADfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAGgAAAAADGQAAAAACGQAAAAACAAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAAAGQAAAAADGQAAAAAAGQAAAAAEfwAAAAAAfwAAAAAAfwAAAAAAGQAAAAACGQAAAAADGgAAAAAGGQAAAAADGQAAAAAAAAAAAAAAAAAAAAAAKwAAAAABGQAAAAADGQAAAAAEGQAAAAAFGQAAAAACGQAAAAAFGQAAAAAEfwAAAAAAGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAAAGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGgAAAAAGGQAAAAADGQAAAAAEGQAAAAAEGQAAAAAGGQAAAAAGfwAAAAAAGQAAAAACGQAAAAADGQAAAAAGGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAABGQAAAAAGGQAAAAABGQAAAAAGGQAAAAABGQAAAAABGQAAAAADGQAAAAAGGQAAAAAGGQAAAAAEGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAGGQAAAAADGQAAAAAEGQAAAAAFGQAAAAADGQAAAAADGQAAAAAFGQAAAAAFGQAAAAAEGQAAAAACGQAAAAAAGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAEGQAAAAAAGgAAAAADGQAAAAAFGQAAAAAEGQAAAAAFGQAAAAADGQAAAAABGQAAAAAGGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAAEGQAAAAAGGQAAAAAGGQAAAAAEGQAAAAADGQAAAAADGQAAAAAAGQAAAAAFGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAADGQAAAAAEGQAAAAAFGQAAAAAGGQAAAAAAGQAAAAAGGQAAAAACGQAAAAAGGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGQAAAAAEGQAAAAABGQAAAAAFGQAAAAABGQAAAAAEGQAAAAAFGQAAAAAEGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAFGQAAAAABGQAAAAAEGQAAAAACGQAAAAABGQAAAAAAGQAAAAAFGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAACGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAACGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAACGQAAAAACGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,4:
ind: 6,4
- tiles: eQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GQAAAAAEGQAAAAAFGQAAAAADGQAAAAAFGQAAAAABGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGgAAAAAEGQAAAAACGQAAAAADGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGQAAAAAAGQAAAAAEGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAADGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGQAAAAAAGQAAAAACGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAADGQAAAAAFGQAAAAADGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAACfwAAAAAAfwAAAAAAfwAAAAAATwAAAAAAfwAAAAAATwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAGQAAAAAEfwAAAAAAGQAAAAABfwAAAAAATwAAAAACfwAAAAAATwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAGGQAAAAABfwAAAAAAfwAAAAAATwAAAAABfwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAATwAAAAADTwAAAAADfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFfwAAAAAAfwAAAAAAGQAAAAACGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAFfwAAAAAAfwAAAAAAGQAAAAACGQAAAAADGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACGQAAAAADGQAAAAAEGQAAAAADGQAAAAAFGQAAAAACGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAACAAAAAAAAGQAAAAAEGQAAAAADGQAAAAABGQAAAAACGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,4:
ind: 5,4
- tiles: agAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAATgAAAAAAVwAAAAAAVwAAAAAAVwAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATgAAAAAATgAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GgAAAAAHGgAAAAAAGgAAAAAGGgAAAAAHGgAAAAAGGgAAAAACGgAAAAAGGgAAAAAHGgAAAAAAGQAAAAAGGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAACGQAAAAADGQAAAAABGgAAAAABGgAAAAAGGgAAAAABGgAAAAAFGgAAAAAHGgAAAAAHGgAAAAABGgAAAAAFGgAAAAAHGQAAAAAAGQAAAAAAGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAEGQAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAAHGgAAAAAFGgAAAAABGgAAAAAFGgAAAAAFGgAAAAAHGQAAAAAGGQAAAAADGQAAAAAGGQAAAAAFGQAAAAADGQAAAAACGQAAAAAGGgAAAAAGGQAAAAAGGQAAAAAAGgAAAAAHGgAAAAAFGgAAAAABGgAAAAAAGQAAAAAGGQAAAAABGgAAAAAEKwAAAAAAGQAAAAAAGQAAAAAFGQAAAAADGQAAAAABGgAAAAAAGgAAAAADGQAAAAACGQAAAAABGgAAAAAGGQAAAAABGQAAAAACGQAAAAADGQAAAAAAGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAADGQAAAAAGGQAAAAACGQAAAAADGQAAAAAGGQAAAAAFGQAAAAAAGQAAAAAAGQAAAAAGGQAAAAACGQAAAAADGQAAAAAEGQAAAAACGQAAAAABGQAAAAADGQAAAAABGQAAAAAAGQAAAAADGQAAAAAEGQAAAAAFGQAAAAABGQAAAAAFGQAAAAAFGQAAAAAAGgAAAAAHGQAAAAAEGQAAAAABGQAAAAAAGQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAFGgAAAAAAGQAAAAACGQAAAAAEGgAAAAADGQAAAAADGQAAAAABGQAAAAADGQAAAAAFUAAAAAAAGQAAAAAEGQAAAAAFTwAAAAACGQAAAAAFGQAAAAABGQAAAAAFTwAAAAACGQAAAAADGQAAAAAEGQAAAAAEGgAAAAAEGQAAAAAEGQAAAAAEGQAAAAADGQAAAAADUAAAAAAAGQAAAAAFGQAAAAACGQAAAAADGQAAAAABGQAAAAAEGQAAAAAEfwAAAAAAGQAAAAAFGQAAAAACGQAAAAACGQAAAAAEGQAAAAAFGQAAAAADGQAAAAAGGQAAAAADUAAAAAAAGQAAAAADGQAAAAAGGQAAAAACGQAAAAABGQAAAAAGGQAAAAACGQAAAAADGQAAAAACGQAAAAACGQAAAAACGQAAAAADGQAAAAAEGQAAAAACGQAAAAABGQAAAAAGUAAAAAAAGQAAAAAGGQAAAAAFGQAAAAAEGQAAAAAEGQAAAAABGQAAAAAFGQAAAAAAGQAAAAADGQAAAAAAGQAAAAAFGgAAAAABGQAAAAACGQAAAAAGGQAAAAAAGQAAAAADUAAAAAAAGQAAAAAGGQAAAAACGQAAAAAGGQAAAAAEGQAAAAADGQAAAAABTwAAAAACGgAAAAABGQAAAAACGQAAAAADGQAAAAAEGQAAAAAGGQAAAAABGQAAAAAFGQAAAAACUAAAAAAAGQAAAAAGGQAAAAAETwAAAAACGQAAAAAAGQAAAAAFGQAAAAADGQAAAAACGgAAAAAAGgAAAAADGQAAAAABGQAAAAABGQAAAAADGQAAAAAEGQAAAAAAGQAAAAAAUAAAAAAAGQAAAAACGQAAAAABGQAAAAABGQAAAAAETwAAAAACGQAAAAAAGQAAAAAFGgAAAAAEGgAAAAACGgAAAAABGgAAAAADGQAAAAACGQAAAAADGQAAAAAAGQAAAAAGUAAAAAAAGQAAAAAAGQAAAAABGQAAAAAEGQAAAAAFTwAAAAABGQAAAAAFGQAAAAABGgAAAAAAGgAAAAAAfwAAAAAAGgAAAAAAGgAAAAAHGQAAAAAFGQAAAAAAGQAAAAAGGQAAAAADGQAAAAAFGQAAAAACGQAAAAAGGQAAAAAEGQAAAAAEGQAAAAAFGQAAAAAE
version: 6
4,4:
ind: 4,4
- tiles: agAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAdwAAAAAAdwAAAAADdwAAAAACdwAAAAADdwAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAagAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -2,-4:
- ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: KwAAAAACGgAAAAAAGgAAAAAEGQAAAAAFGQAAAAADGgAAAAAAGQAAAAAEfwAAAAAAGgAAAAAFGgAAAAABGgAAAAAEfwAAAAAAGgAAAAADGgAAAAAHGgAAAAAHGgAAAAAGGgAAAAABGQAAAAACGQAAAAAGGQAAAAAGGQAAAAAGGQAAAAACGQAAAAAGGQAAAAACGQAAAAAAGQAAAAAAGQAAAAAGGQAAAAACGQAAAAAFGgAAAAAFGgAAAAAGGgAAAAAAKwAAAAABGQAAAAABGQAAAAAGGQAAAAACGQAAAAAEGQAAAAABGQAAAAAGGQAAAAACGQAAAAAGGQAAAAAEGQAAAAAFGQAAAAAFGQAAAAAGGQAAAAAAGgAAAAABGgAAAAADKwAAAAADGQAAAAAEGgAAAAACfwAAAAAAfwAAAAAAGQAAAAAEGQAAAAACGgAAAAADGgAAAAACGgAAAAAFGQAAAAABGQAAAAADGQAAAAACGQAAAAAEGgAAAAAHGgAAAAAFGQAAAAAAGgAAAAAAGQAAAAAEGQAAAAACGQAAAAAGGQAAAAACGQAAAAAGGQAAAAAGGQAAAAAEGQAAAAAFGgAAAAAHGQAAAAAEGQAAAAADGQAAAAAEGgAAAAABGgAAAAAGGgAAAAAAGgAAAAABGQAAAAACGQAAAAAGGQAAAAADGQAAAAABGQAAAAAAGQAAAAAEGgAAAAAEGQAAAAAEGQAAAAAAGQAAAAADGQAAAAAGGQAAAAABGQAAAAADGQAAAAAEGgAAAAAEGgAAAAADGgAAAAAAGgAAAAAHfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAGGQAAAAABGQAAAAABGgAAAAAFfwAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAADGgAAAAAEGgAAAAAHGgAAAAAFGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAFGgAAAAACGgAAAAAAGgAAAAAGGgAAAAAGGgAAAAAAGgAAAAABGgAAAAAEGgAAAAAEGgAAAAACGgAAAAAEUAAAAAAAUAAAAAAAUAAAAAAAGgAAAAAHGQAAAAAGGgAAAAADGgAAAAAAGgAAAAAFGgAAAAAFGgAAAAABGgAAAAABGQAAAAAFKwAAAAABGgAAAAAGGgAAAAAHGgAAAAACGgAAAAAGGgAAAAAEGgAAAAAHGgAAAAABGQAAAAADGgAAAAACGgAAAAAGGgAAAAAAGgAAAAAGGgAAAAAAGQAAAAAAGQAAAAAAGgAAAAAEGgAAAAAGGgAAAAABGgAAAAAAGgAAAAAEGQAAAAAEGgAAAAACGgAAAAAEGQAAAAAEGgAAAAADGgAAAAADGgAAAAAEGgAAAAAFGgAAAAAHGQAAAAAGGgAAAAAAGgAAAAAFGgAAAAADKwAAAAADfwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAGfwAAAAAAGgAAAAAFGgAAAAAEfwAAAAAAGgAAAAACGgAAAAAFGgAAAAAHGgAAAAADGgAAAAAHGgAAAAAEGgAAAAAGGgAAAAABGgAAAAAFGgAAAAAFfwAAAAAAfwAAAAAAGgAAAAABfwAAAAAAGgAAAAAGGgAAAAAFfwAAAAAAGgAAAAABGgAAAAABGgAAAAAGGgAAAAAFKwAAAAABfwAAAAAAGgAAAAACfwAAAAAAGgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAAAGgAAAAAAGgAAAAADGgAAAAADKwAAAAAAGgAAAAABfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABfwAAAAAAGgAAAAAAGgAAAAADGgAAAAAF
version: 6
-4,4:
ind: -4,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAATQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAagAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAATwAAAAADfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA
version: 6
- -3,-4:
- ind: -3,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ -2,-4:
+ ind: -2,-4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAABUAAAAAAATwAAAAADTwAAAAAATwAAAAABUAAAAAAATwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAIAAAAAACAAAAAAAA
version: 6
-6,4:
ind: -6,4
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAGAAAAAACAAAAAAAAGAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAGAAAAAABGAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAACAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAADeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAADGAAAAAAAGAAAAAAEAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAGAAAAAAFGAAAAAAHGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAA
+ tiles: fgAAAAAAfgAAAAAAGQAAAAAAGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAGgAAAAADAAAAAAAAGgAAAAAFfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAGgAAAAAFGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACGgAAAAABfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAFGgAAAAAEAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAGgAAAAAHGgAAAAACGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAA
version: 6
-5,4:
ind: -5,4
- tiles: egAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-4:
ind: -6,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAA
version: 6
-7,-4:
ind: -7,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAA
version: 6
-7,-3:
ind: -7,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,5:
ind: -6,5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAGAAAAAADAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAGgAAAAAHAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAA
version: 6
-5,5:
ind: -5,5
- tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,6:
ind: -6,6
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-5,6:
ind: -5,6
- tiles: eQAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: fgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,-5:
ind: -6,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-6:
ind: 3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-6:
ind: 4,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAA
version: 6
- -8,0:
- ind: -8,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
+ -8,-2:
+ ind: -8,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- -8,-3:
- ind: -8,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,5:
ind: -7,5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA
version: 6
-7,6:
ind: -7,6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
version: 6
-4,6:
ind: -4,6
- tiles: AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,5:
ind: -4,5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,7:
ind: -4,7
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,7:
ind: -5,7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,7:
ind: -6,7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,7:
ind: -7,7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,0:
ind: 6,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAGQAAAAACGQAAAAAGGQAAAAADGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAADGQAAAAACGQAAAAAFGQAAAAACGQAAAAACGQAAAAAFGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAFGQAAAAABGQAAAAAAGQAAAAADGQAAAAAGGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAABGQAAAAAGGQAAAAAAGQAAAAAEGQAAAAAEGQAAAAACGQAAAAAAGQAAAAAEGQAAAAAGGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAGGQAAAAADGQAAAAACGQAAAAABGQAAAAABGQAAAAAFGQAAAAABGQAAAAABGQAAAAAEGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAAGQAAAAAEGQAAAAABGQAAAAAGGQAAAAAEGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAAFGQAAAAADGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAAGQAAAAAEGQAAAAADGQAAAAAEGQAAAAAEfwAAAAAAGQAAAAABGQAAAAABGQAAAAAEGQAAAAACGQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGQAAAAADGQAAAAAEGQAAAAADGQAAAAAFGQAAAAADfwAAAAAAGQAAAAACGQAAAAABGQAAAAAGGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGgAAAAAFGgAAAAAFGgAAAAAFGgAAAAAHGQAAAAAEGQAAAAAFfwAAAAAAGQAAAAAGGQAAAAABGQAAAAAFGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADKwAAAAADKwAAAAACGgAAAAADGgAAAAABGgAAAAAGfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAHGgAAAAAEGQAAAAADGQAAAAABAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAABKwAAAAADKwAAAAACGgAAAAACGgAAAAAGGQAAAAAFfwAAAAAAfwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAGQAAAAAFGQAAAAACAAAAAAAAAAAAAAAA
version: 6
2,4:
ind: 2,4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAA
version: 6
1,5:
ind: 1,5
- tiles: AAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,5:
ind: 2,5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,5:
ind: 3,5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAGQAAAAAEGQAAAAAAGgAAAAAFGQAAAAAFGQAAAAACGQAAAAABGgAAAAAAGQAAAAACGgAAAAABGgAAAAAGfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGgAAAAADGQAAAAADGQAAAAABGQAAAAABGQAAAAACGgAAAAAAGQAAAAACGgAAAAAFGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGgAAAAABGQAAAAACGQAAAAABGQAAAAABfwAAAAAAGQAAAAABGQAAAAAEKwAAAAACGgAAAAAFGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEfwAAAAAAfwAAAAAAGQAAAAACGQAAAAAEGQAAAAAGGQAAAAADGQAAAAACKwAAAAADGgAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEfwAAAAAAfwAAAAAAGQAAAAAAGQAAAAAFGQAAAAADGQAAAAAEfwAAAAAAKwAAAAAAGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAACfwAAAAAAGQAAAAAEGQAAAAADGQAAAAADGQAAAAACfwAAAAAAGQAAAAAGGgAAAAAEKwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAAAGgAAAAABGQAAAAABGQAAAAAEGQAAAAAEfwAAAAAAGQAAAAABGQAAAAACGQAAAAADfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAGGQAAAAADGQAAAAACfwAAAAAAfwAAAAAAfwAAAAAAGgAAAAAFGQAAAAAAGQAAAAADGQAAAAAEfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGGQAAAAAEGQAAAAAAGQAAAAAFGQAAAAAEGQAAAAAFGQAAAAAEGQAAAAAAGQAAAAAAGQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAFGQAAAAABGQAAAAAFGQAAAAACGQAAAAAFGQAAAAABGQAAAAAGGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAAFGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAAEGQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAACGQAAAAABGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,5:
ind: 4,5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 5,5:
- ind: 5,5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GgAAAAAFfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADfwAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAABGgAAAAAGGgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAIAAAAAABIAAAAAAAfwAAAAAAGQAAAAAEGQAAAAAEIAAAAAACIAAAAAABGgAAAAAEIAAAAAACIAAAAAACIAAAAAADGgAAAAABGgAAAAAEGgAAAAAGGgAAAAAAGgAAAAAAIAAAAAACIAAAAAABQwAAAAAAQwAAAAAAIAAAAAAAIAAAAAADIAAAAAADQwAAAAAAIAAAAAADIAAAAAADIAAAAAABGgAAAAACGgAAAAAHGgAAAAAHGgAAAAABGgAAAAAFQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAGgAAAAABAAAAAAAAAAAAAAAAGgAAAAAEQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAGgAAAAABfgAAAAAAAAAAAAAAAAAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAGgAAAAADfwAAAAAAfwAAAAAAfgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAGgAAAAACGgAAAAAHGgAAAAAHGgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAACGgAAAAAGGgAAAAADGgAAAAAGGgAAAAAGGgAAAAAFGgAAAAAFGgAAAAAHAAAAAAAAGgAAAAAEGgAAAAADGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAEGgAAAAADGgAAAAACGgAAAAAEGgAAAAAGGgAAAAAHGgAAAAAHAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABGgAAAAAFGgAAAAAAGgAAAAABGgAAAAACGgAAAAAFGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAADGgAAAAAFGgAAAAACGgAAAAACGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAHGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
6,5:
ind: 6,5
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: GQAAAAACGQAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAFGQAAAAABGQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADGQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAADGQAAAAADGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAAGQAAAAAAGQAAAAADGQAAAAADGQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAAGQAAAAAEGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAGGQAAAAAGGQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,5:
+ ind: 5,5
+ tiles: GgAAAAAGfwAAAAAAIAAAAAAAIAAAAAAAGgAAAAADGgAAAAADGQAAAAABGQAAAAACGQAAAAAEGQAAAAAAGQAAAAABGQAAAAADGQAAAAAGGQAAAAAGGQAAAAAFGQAAAAACGgAAAAABIAAAAAAAIAAAAAABfwAAAAAAfwAAAAAAGgAAAAAGGgAAAAAFGgAAAAAGGQAAAAAAGQAAAAAFGQAAAAAFGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAGQAAAAAFIAAAAAABIAAAAAABfwAAAAAAfwAAAAAAGgAAAAABGgAAAAAGGgAAAAAEGQAAAAAEGgAAAAAHGgAAAAABGQAAAAACGQAAAAAGAAAAAAAAAAAAAAAAGQAAAAAFGQAAAAAGIAAAAAADIAAAAAADIAAAAAADIAAAAAACGgAAAAAEGgAAAAACGgAAAAADGgAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAAEGQAAAAAFGQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAIAAAAAACGgAAAAAEGgAAAAAFGgAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAABGQAAAAADGQAAAAAEQwAAAAAAQwAAAAAAQwAAAAAAIAAAAAADGgAAAAAGGgAAAAAEGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGQAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAACGgAAAAAHGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-5:
ind: 5,-5
- tiles: eQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-6:
ind: 5,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -2,5:
+ ind: -2,5
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -3,5:
+ ind: -3,5
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,-1:
+ ind: 6,-1
+ tiles: AAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfwAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,-1:
+ ind: 7,-1
+ tiles: fwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,-2:
+ ind: 7,-2
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfwAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,0:
+ ind: 7,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -8,-3:
+ ind: -8,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -747,191 +776,353 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#BA8841FF'
+ id: Arrows
+ decals:
+ 6392: -48.5741,12.641021
+ 6393: -51.04285,12.648833
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 5861: -52.005,-49.860638
+ 5207: -19.52188,25.64454
+ 5208: -22.029692,25.621103
+ 5209: 29.35393,23.657501
+ 5210: 27.07268,23.634064
+ 6958: -13,-22
+ 6959: -16.595276,-22.00405
+ 6960: -14.790589,-21.988424
- node:
color: '#FFFFFFFF'
id: Arrows
decals:
7: 6,25
- 2156: 30,1
- 2157: 30,-1
- 5842: -19,-25
- 5843: -17,-39
- 5846: -20,-29
- 5853: -48,-47
- 5858: -48,-50
+ 4321: -19,-25
+ 6900: -19,-45
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: Arrows
decals:
- 2153: 27,1
- 2154: 26,1
- 2155: 25,1
- 5860: -52.46594,-45.938763
- 6122: -29,-41
- 6123: -35.374405,-41.0069
+ 6949: -14,-19
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Arrows
decals:
6: 11,23
- 5844: -19,-39
- 5845: -22,-29
- 5857: -52,-45
- 5859: -52.012814,-50.43095
+ 6878: -23.029945,-21.439867
+ 6899: -23,-44
+ 6903: -21,-20
- node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Arrows
+ color: '#91D4FFFF'
+ id: ArrowsGreyscale
decals:
- 6124: -35,-45
- 6125: -28.570425,-45.00288
+ 7166: 30,-1
+ 7167: 31,-1
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#91D4FFFF'
+ id: ArrowsGreyscale
+ decals:
+ 7168: 27.822773,2.0505733
+ 7169: 27.807148,1.0505733
+ 7170: 23.822773,2.0427608
+ 7171: 23.830585,1.0583858
- node:
color: '#FFFFFFFF'
id: Basalt1
decals:
- 227: 37,41
- 3970: -99.61036,26.588285
+ 210: 37,41
+ 3024: -99.61036,26.588285
+ 4933: 93.02058,51.60418
+ 4944: 66.34715,58.84518
+ 4957: 73.95262,66.55768
+ 5128: 96.39168,49.646423
- node:
color: '#FFFFFFFF'
id: Basalt2
decals:
- 311: -105.70246,26.941643
- 312: -102.98371,23.863518
- 313: -100.96809,26.472893
- 314: -100.95246,29.691643
- 315: -101.12434,18.972893
+ 288: -105.70246,26.941643
+ 289: -102.98371,23.863518
+ 290: -100.96809,26.472893
+ 291: -100.95246,29.691643
+ 292: -101.12434,18.972893
+ 4931: 94.12662,39.650402
+ 4932: 102.7237,50.338554
+ 4936: 95.55183,54.158867
+ 4937: 89.750755,51.463554
+ 4945: 65.45653,53.67721
+ 4946: 71.17528,55.224087
+ 5099: 95.92281,26.526537
+ 5100: 103.23531,23.081224
+ 5101: 97.283325,33.188183
+ 5102: 91.11926,33.516308
+ 5103: 85.70933,33.896484
+ 5104: 94.42808,41.115234
+ 5105: 96.5023,50.21054
+ 5106: 88.451515,54.826
+ 5107: 82.01792,55.224438
+ 5108: 77.02674,55.33442
+ 5109: 74.21675,48.18598
+ 5110: 65.33786,55.943794
+ 5111: 69.333954,65.73181
+ 5112: 76.6113,70.67297
+ 5113: 65.309555,75.46353
+ 5114: 61.465096,66.79979
+ 5115: 60.726814,60.061504
+ 5116: 57.95337,78.038086
+ 5117: 55.152588,85.06621
+ 5118: 64.66163,79.07793
+ 5119: 79.57742,74.000534
+ 5120: 86.57352,76.906784
+ 5121: 87.31241,68.669266
+ 5122: 81.903885,65.11125
+ 5123: 90.08174,62.43762
+ 5124: 96.50362,63.035275
+ 5125: 90.40101,56.661156
+ 5126: 102.50646,58.758724
+ 5127: 96.989334,53.970642
- node:
color: '#FFFFFFFF'
id: Basalt3
decals:
- 308: -105.23371,25.754143
- 309: -104.88996,27.597893
- 310: -100.99934,29.222893
+ 285: -105.23371,25.754143
+ 286: -104.88996,27.597893
+ 287: -100.99934,29.222893
+ 5063: 101.953514,10.329902
+ 5064: 100.68789,23.947906
+ 5065: 94.88548,29.055845
+ 5066: 92.516785,31.606804
+ 5067: 98.419014,36.156094
+ 5068: 101.26667,41.858273
+ 5069: 99.93073,51.26495
+ 5070: 95.231514,49.823544
+ 5071: 93.450264,53.292294
+ 5072: 97.61042,53.990532
+ 5073: 96.23933,57.27736
+ 5074: 100.82136,59.252556
+ 5075: 92.77103,63.009056
+ 5076: 93.90295,64.58206
+ 5077: 88.41857,69.08588
+ 5078: 86.9917,72.94891
+ 5079: 81.58891,69.753204
+ 5080: 82.221725,73.16336
+ 5081: 83.920944,61.88992
+ 5082: 85.90141,76.88017
+ 5083: 91.85454,78.075485
+ 5084: 74.8638,74.38379
+ 5085: 74.72911,65.52536
+ 5086: 68.15042,69.81442
+ 5087: 65.73852,64.68848
+ 5088: 67.05102,55.861427
+ 5089: 74.72735,48.126648
+ 5090: 78.42977,33.29339
+ 5091: 69.17623,39.117607
+ 5092: 77.97701,30.437107
+ 5093: 91.013565,25.139786
+ 5094: 87.85332,21.59596
+ 5095: 92.91534,16.061563
+ 5096: 94.520805,20.913126
+ 5097: 99.61789,22.061563
+ 5098: 90.17258,10.411268
- node:
color: '#FFFFFFFF'
id: Basalt4
decals:
- 229: 37,34
- 230: 13,25
- 231: -1,11
- 234: 3,-7
- 235: -14,-14
- 317: -106.43684,22.207268
- 318: -103.65559,19.363518
- 319: -101.63996,29.332268
- 3971: -104.75489,18.982817
- 3972: -99.750984,17.846098
- 3973: -87.95603,15.0817375
- 3974: -79.94041,11.091608
- 3975: -87.9215,1.822197
- 3976: -100.69823,2.235566
+ 212: 37,34
+ 213: 13,25
+ 214: -1,11
+ 217: 3,-7
+ 218: -14,-14
+ 294: -106.43684,22.207268
+ 295: -103.65559,19.363518
+ 296: -101.63996,29.332268
+ 3025: -104.75489,18.982817
+ 3026: -99.750984,17.846098
+ 3027: -87.95603,15.0817375
+ 3028: -87.9215,1.822197
+ 3029: -100.69823,2.235566
+ 4751: 78.19888,84.978485
+ 4752: 77.206696,80.81442
+ 4930: 99.22427,37.52931
+ 4940: 66.4024,54.743618
+ 4954: 66.35887,69.92096
+ 4958: 76.03856,65.51471
- node:
color: '#FFFFFFFF'
id: Basalt5
decals:
- 245: 56,8
+ 224: 56,8
+ 4748: 76.47232,81.90817
+ 4929: 98.06412,38.056652
+ 4941: 67.175835,54.216274
+ 4947: 73.437,52.235806
+ 4950: 70.437,49.880337
+ 4955: 67.179184,68.186584
- node:
color: '#FFFFFFFF'
id: Basalt6
decals:
- 232: 3,16
- 291: -104.92121,26.535393
- 292: -103.26496,28.488518
- 293: -106.10871,26.441643
- 294: -105.90559,25.207268
- 295: -102.23371,23.988518
- 296: -102.95246,22.019768
- 297: -103.74934,21.191643
- 298: -102.93684,21.019768
- 299: -103.78059,19.254143
- 300: -102.32746,18.426018
- 301: -102.95246,18.441643
- 3965: -99.99786,-5.579525
- 3966: -99.611145,-6.3646812
- 3967: -101.94239,-10.427048
- 3968: -100.53614,-12.050097
- 3969: -99.80958,20.762344
+ 215: 3,16
+ 268: -104.92121,26.535393
+ 269: -103.26496,28.488518
+ 270: -106.10871,26.441643
+ 271: -105.90559,25.207268
+ 272: -102.23371,23.988518
+ 273: -102.95246,22.019768
+ 274: -103.74934,21.191643
+ 275: -102.93684,21.019768
+ 276: -103.78059,19.254143
+ 277: -102.32746,18.426018
+ 278: -102.95246,18.441643
+ 3019: -99.99786,-5.579525
+ 3020: -99.611145,-6.3646812
+ 3021: -101.94239,-10.427048
+ 3022: -100.53614,-12.050097
+ 3023: -99.80958,20.762344
+ 4934: 93.47761,51.100273
+ 4942: 64.50731,55.036587
+ 4953: 67.15575,67.155334
+ 4960: 76.729965,71.06819
+ 4961: 63.909653,76.17592
+ 4962: 62.585304,72.767166
+ 4963: 58.984917,63.1665
+ 4964: 60.892647,61.217464
+ 4965: 72.78663,47.70175
+ 4966: 73.384,41.707333
+ 4967: 77.103874,38.038437
+ 4968: 74.78356,34.886093
+ 4969: 79.43612,30.653725
+ 4970: 81.67582,29.316776
+ 4971: 81.617004,29.2005
+ 4972: 89.283424,25.58541
+ 4973: 94.9762,19.99961
+ 4974: 97.54006,19.931826
+ 4975: 94.426544,9.595158
+ 4976: 97.44998,8.668957
+ 4977: 101.082794,11.282238
+ 4978: 102.3367,23.698109
+ 4979: 99.78201,24.425102
+ 4980: 100.39139,27.916481
+ 4981: 98.80936,36.606403
+ 4982: 93.17848,39.471783
+ 4983: 94.174576,42.237408
+ 4984: 100.643326,41.642517
+ 4985: 101.66286,49.579823
+ 4986: 95.34645,49.828194
+ 4987: 96.35426,53.60163
+ 4988: 97.29176,53.179756
+ 4989: 96.518326,57.788383
+ 4990: 101.10036,59.265377
+ 4991: 93.28503,62.223106
+ 4992: 92.0194,63.453575
+ 4993: 93.32018,65.56296
+ 4994: 91.51511,68.54053
+ 4995: 88.63218,68.89754
+ 4996: 86.93297,71.68956
+ 4997: 86.72202,76.09238
+ 4998: 81.45493,72.886536
+ 4999: 81.68788,69.36061
+ 5000: 75.14882,73.27467
+ 5001: 74.84413,74.32936
+ 5002: 74.96223,79.80643
- node:
color: '#FFFFFFFF'
id: Basalt7
decals:
- 233: -1,16
- 236: 49,56
- 246: 64,8
- 302: -106.24934,20.785393
- 303: -105.76496,20.144768
- 304: -106.04621,20.988518
- 305: -102.23371,25.519768
- 306: -101.63996,25.785393
- 307: -101.63996,30.004143
- 316: -104.87434,23.082268
+ 216: -1,16
+ 219: 49,56
+ 225: 64,8
+ 279: -106.24934,20.785393
+ 280: -105.76496,20.144768
+ 281: -106.04621,20.988518
+ 282: -102.23371,25.519768
+ 283: -101.63996,25.785393
+ 284: -101.63996,30.004143
+ 293: -104.87434,23.082268
+ 4935: 95.387764,55.15496
+ 4943: 65.60887,57.89596
+ 4948: 74.3745,51.80221
+ 4949: 74.937,51.134243
- node:
color: '#FFFFFFFF'
id: Basalt8
decals:
- 285: -105.06184,23.816643
- 286: -104.85871,20.957268
+ 262: -105.06184,23.816643
+ 263: -104.85871,20.957268
+ 4753: 74.612946,79.68942
+ 4951: 70.47215,51.15768
+ 4952: 66.136215,66.8858
+ 4956: 70.9409,70.29596
- node:
color: '#FFFFFFFF'
id: Basalt9
decals:
- 228: 37,44
- 237: 35,54
- 287: -105.93684,22.972893
- 288: -101.93684,22.176018
- 289: -101.57746,27.582268
- 290: -100.88996,30.160393
+ 211: 37,44
+ 264: -105.93684,22.972893
+ 265: -101.93684,22.176018
+ 266: -101.57746,27.582268
+ 267: -100.88996,30.160393
+ 4749: 75.96451,81.634735
+ 4750: 77.706696,84.353485
+ 4938: 90.793724,50.84246
+ 4939: 84.163475,54.474087
+ 4959: 75.37059,65.9483
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#845606FF'
+ id: Bot
+ decals:
+ 6951: -17,-21
+ 6952: -17,-22
+ 6953: -13,-22
+ 6954: -13,-21
+ 6955: -15,-22
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 6956: -16,-22
+ 6957: -14,-22
- node:
color: '#FFFFFFFF'
id: Bot
decals:
0: 7,25
- 276: -17,-19
- 277: -16,-19
- 2159: 7,25
- 2709: 47,43
- 2710: 49,43
- 3201: -117,55
- 3202: -109,55
- 3203: -109,47
- 3204: -117,47
- 3205: -117,51
- 3206: -109,51
- 3207: -120,51
- 3208: -120,58
- 3209: -106,44
- 3210: -120,44
- 3449: -17,-19
- 3450: -16,-19
- 3451: -19,-19
- 3452: -20,-19
- 3453: -21,-19
- 3454: -22,-19
- 3455: -23,-19
- 4340: -63,30
- 4341: -63,29
- 4342: -63,28
- 4343: -61,28
- 4344: -61,29
- 4345: -61,30
- 5841: -19,-26
- 5856: -52,-44
+ 1558: 7,25
+ 3351: -63,30
+ 3352: -63,29
+ 3353: -63,28
+ 3354: -61,28
+ 3355: -61,29
+ 3356: -61,30
+ 4739: 42,42
+ 4740: 43,42
+ 4741: 44,42
+ 4742: 96,72
+ 4743: 97,72
+ 4744: 98,72
+ 4745: 98,73
+ 4746: 97,73
+ 4747: 96,73
+ 6901: -21,-19
+ 6902: -15,-19
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: Bot
decals:
- 5847: -48,-46
- 5848: -15,-20
- 5849: -15,-19
+ 6879: -23,-22
+ 6880: -19,-26
+ 6881: -23,-46
+ 6882: -23,-43
+ 6883: -19,-43
+ 6884: -19,-46
- node:
angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -946,7714 +1137,9116 @@ entities:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 2160: 8,25
- 2161: 9,25
- 2162: 10,25
- 2163: 11,25
- 5904: -61,46
- 5905: -60,46
- 5906: -59,46
- 5907: -58,46
- 5908: -57,46
- 5909: -56,46
- 5910: -47,37
- 5911: -48,37
- 5912: -49,37
- 5913: -50,37
+ 1559: 8,25
+ 1560: 9,25
+ 1561: 10,25
+ 1562: 11,25
- node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: BotLeftGreyscale
+ color: '#B02E26FF'
+ id: Box
decals:
- 5864: -50,-50
- 5865: -52,-48
- 5866: -32,-45
+ 5221: -12,37
+ 5222: -11,37
+ 5458: -8,37
+ 5459: -7,37
+ 5460: -6,37
- node:
- angle: -1.5707963267948966 rad
color: '#FFFFFFFF'
id: Box
decals:
- 5862: -19,-23
- 5863: -19,-24
+ 8: 26,12
+ 9: 26,14
+ 10: 26,15
+ 11: 26,11
+ 1557: 26,13
+ 2021: 40,46
+ 2022: 41,46
+ 2023: 43,46
+ 2024: 44,46
+ 2025: 34,51
+ 2026: 35,51
+ 2027: 35,50
+ 2028: 34,50
+ 2029: 49,50
+ 2030: 50,50
+ 2031: 49,51
+ 2032: 50,51
+ 2033: 60,50
+ 4340: 26,16
+ 4702: 23,-24
+ 4703: 21,-24
+ 4704: 21,-23
+ 4705: 23,-23
+ 5743: -36,12
+ 5744: -35,12
+ 5778: 97,-11
+ 5779: 105,-11
+ 5780: 105,-23
+ 5781: 97,-23
+ 6075: -49,39
+ 6076: -48,39
+ 6077: -47,39
+ 6078: -46,39
+ 6079: -61,46
+ 6080: -60,46
+ 6081: -59,46
+ 6082: -58,46
+ 6083: -57,46
+ 6084: -56,46
+ 7046: 28,16
+ 7047: 28,15
+ 7048: 28,14
+ 7049: 28,13
+ 7050: 28,12
+ 7051: 28,11
+ - node:
+ color: '#B02E26FF'
+ id: BoxGreyscale
+ decals:
+ 5894: 1,-27
+ 5895: 1,-21
+ 6145: 1,40
+ 6146: 1,46
- node:
color: '#FFFFFFFF'
- id: Box
+ id: BoxGreyscale
decals:
- 8: 24,15
- 9: 24,14
- 10: 24,13
- 11: 24,12
- 12: 24,11
- 13: 26,12
- 14: 26,14
- 15: 26,15
- 16: 26,11
- 2158: 26,13
- 2164: -8,37
- 2165: -7,37
- 2166: -6,37
- 2342: -39,24
- 2343: -40,24
- 2344: -42,19
- 2345: -43,19
- 2721: 40,46
- 2722: 41,46
- 2723: 43,46
- 2724: 44,46
- 2725: 34,51
- 2726: 35,51
- 2727: 35,50
- 2728: 34,50
- 2729: 49,50
- 2730: 50,50
- 2731: 49,51
- 2732: 50,51
- 2733: 60,50
- 4300: 83,62
- 4301: 84,62
- 4302: 85,62
- 5902: 24,16
- 5903: 26,16
- - node:
- color: '#D4D4D4FF'
+ 7264: -21,-22
+ 7265: -21,-23
+ 7266: -21,-24
+ 7267: -20,-24
+ 7268: -20,-23
+ 7269: -20,-22
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: BoxGreyscale
+ decals:
+ 6885: -24,-44
+ 6886: -24,-45
+ 6887: -23,-45
+ 6888: -23,-44
+ 6889: -21,-44
+ 6890: -22,-44
+ 6891: -22,-45
+ 6892: -21,-45
+ 6893: -20,-45
+ 6894: -20,-44
+ 6895: -19,-44
+ 6896: -19,-45
+ 6897: -18,-45
+ 6898: -18,-44
+ - node:
+ color: '#DFAA16FF'
+ id: BrickCornerOverlayNE
+ decals:
+ 6651: 33,-31
+ - node:
+ color: '#E8B516FF'
+ id: BrickCornerOverlayNE
+ decals:
+ 6681: 33,-31
+ - node:
+ color: '#BA8841FF'
+ id: BrickCornerOverlayNW
+ decals:
+ 6031: -56,37
+ - node:
+ color: '#DFAA16FF'
+ id: BrickCornerOverlayNW
+ decals:
+ 6661: 34,-31
+ - node:
+ color: '#E8B516FF'
+ id: BrickCornerOverlayNW
+ decals:
+ 6684: 34,-31
+ - node:
+ color: '#DFAA16FF'
+ id: BrickCornerOverlaySE
+ decals:
+ 6652: 33,-30
+ - node:
+ color: '#E8B516FF'
+ id: BrickCornerOverlaySE
+ decals:
+ 6683: 33,-30
+ - node:
+ color: '#DFAA16FF'
+ id: BrickCornerOverlaySW
+ decals:
+ 6662: 34,-30
+ - node:
+ color: '#E8B516FF'
+ id: BrickCornerOverlaySW
+ decals:
+ 6682: 34,-30
+ - node:
+ color: '#DFAA16FF'
+ id: BrickLineOverlayS
+ decals:
+ 6672: 33.18141,-30.250166
+ 6673: 33.265118,-29.998882
+ 6674: 32.99964,-30.171968
+ 6675: 33.318783,-30.158688
+ 6676: 33.86722,-29.999313
+ 6677: 33.99847,-30.089937
+ 6678: 33.999252,-30.086031
+ 6679: 33.621906,-30.13447
+ 6680: 33.69769,-30.250875
+ - node:
+ color: '#DFAA16FF'
+ id: BrickLineOverlayW
+ decals:
+ 6663: 33.999493,-30.060682
+ 6664: 33.748947,-30.119276
+ 6665: 33.88098,-29.999744
+ 6666: 33.865356,-30.1599
+ 6667: 33.87473,-30.913055
+ 6668: 33.87317,-30.999775
+ 6669: 33.751293,-30.881025
+ 6670: 33.74973,-30.86618
+ 6671: 33.999634,-30.798994
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 7284: 63,23
+ 7315: 63,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 7283: 53,23
+ 7314: 53,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 7281: 63,11
+ 7316: 63,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSw
+ decals:
+ 7282: 53,11
+ 7318: 53,19
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNe
+ decals:
+ 7358: 53,11
+ 7359: 53,19
+ 7407: 57,11
+ 7408: 57,19
+ 7445: -56,-24
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerNw
+ decals:
+ 7363: 57,19
+ 7364: 57,11
+ 7401: 63,19
+ 7402: 63,11
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSe
+ decals:
+ 7365: 53,15
+ 7366: 53,23
+ 7403: 57,23
+ 7404: 57,15
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkInnerSw
+ decals:
+ 7367: 57,23
+ 7368: 57,15
+ 7405: 63,15
+ 7406: 63,23
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 7294: 63,12
+ 7295: 63,13
+ 7296: 63,14
+ 7302: 63,20
+ 7303: 63,21
+ 7304: 63,22
+ 7340: 53,22
+ 7341: 53,21
+ 7342: 53,20
+ 7349: 53,14
+ 7350: 53,13
+ 7351: 53,12
+ 7379: 57,12
+ 7380: 57,13
+ 7381: 57,14
+ 7382: 57,20
+ 7383: 57,21
+ 7384: 57,22
+ 7432: -56,-15
+ 7433: -56,-16
+ 7434: -56,-17
+ 7435: -56,-18
+ 7436: -56,-19
+ 7437: -56,-21
+ 7440: -56,-23
+ 7441: -56,-22
+ - node:
+ color: '#FFFFFFFF'
id: BrickTileDarkLineN
decals:
- 6217: 6,61
- 6218: 7,61
- 6219: 8,61
- 6220: 9,61
+ 7305: 62,23
+ 7306: 61,23
+ 7307: 60,23
+ 7308: 59,23
+ 7309: 58,23
+ 7310: 57,23
+ 7311: 56,23
+ 7312: 55,23
+ 7313: 54,23
+ 7328: 54,15
+ 7329: 55,15
+ 7330: 56,15
+ 7331: 57,15
+ 7332: 58,15
+ 7333: 59,15
+ 7334: 60,15
+ 7335: 61,15
+ 7336: 62,15
+ 7355: 54,11
+ 7356: 55,11
+ 7357: 56,11
+ 7360: 54,19
+ 7361: 55,19
+ 7362: 56,19
+ 7369: 58,19
+ 7370: 59,19
+ 7371: 60,19
+ 7372: 61,19
+ 7373: 62,19
+ 7374: 58,11
+ 7375: 59,11
+ 7376: 60,11
+ 7377: 61,11
+ 7378: 62,11
+ 7442: -55,-24
+ 7443: -54,-24
+ 7444: -53,-24
- node:
- color: '#D4D4D4FF'
+ color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 6213: 6,59
- 6214: 7,59
- 6215: 8,59
- 6216: 9,59
+ 7285: 54,11
+ 7286: 55,11
+ 7287: 56,11
+ 7288: 57,11
+ 7289: 58,11
+ 7290: 59,11
+ 7291: 60,11
+ 7292: 61,11
+ 7293: 62,11
+ 7319: 54,19
+ 7320: 55,19
+ 7321: 56,19
+ 7322: 57,19
+ 7323: 59,19
+ 7324: 58,19
+ 7325: 60,19
+ 7326: 61,19
+ 7327: 62,19
+ 7343: 54,23
+ 7344: 55,23
+ 7345: 56,23
+ 7346: 54,15
+ 7347: 55,15
+ 7348: 56,15
+ 7391: 58,15
+ 7392: 59,15
+ 7393: 60,15
+ 7394: 61,15
+ 7395: 62,15
+ 7396: 58,23
+ 7397: 59,23
+ 7398: 60,23
+ 7399: 61,23
+ 7400: 62,23
- node:
- color: '#91D4FFFF'
- id: BrickTileSteelCornerNe
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
decals:
- 573: -11,-5
- 605: 31,-5
- 1435: -3,-5
- 1438: -9,-8
- 1442: -6,7
- 1476: -6,-1
- 1492: -20,-8
- 1497: -14,-8
- 1538: -3,16
- 1539: -7,16
- 1563: 36,7
- 1564: 34,13
- 1565: 34,16
- 1566: 27,16
- 1567: 21,16
- 1570: 21,10
- 1674: 22,3
- 5885: 31,3
+ 7270: 53,22
+ 7271: 53,21
+ 7272: 53,20
+ 7278: 53,14
+ 7279: 53,13
+ 7280: 53,12
+ 7337: 57,22
+ 7338: 57,21
+ 7339: 57,20
+ 7352: 57,14
+ 7353: 57,13
+ 7354: 57,12
+ 7385: 63,22
+ 7386: 63,21
+ 7387: 63,20
+ 7388: 63,14
+ 7389: 63,13
+ 7390: 63,12
- node:
- color: '#B02E26FF'
+ color: '#91D4FFFF'
id: BrickTileSteelCornerNe
decals:
- 866: -3,56
- 6106: -11,59
- 6227: 11,68
- 6228: 14,66
- 6229: 5,66
+ 1063: -3,-5
+ 1066: -9,-8
+ 1098: -6,-1
+ 1110: -14,-8
+ 1138: -3,16
+ 1139: -7,16
+ 1155: 36,7
+ 1156: 34,13
+ 1157: 34,16
+ 1203: 22,3
+ 7035: 29,16
+ 7095: 23,16
- node:
- color: '#BA8841FF'
+ color: '#B02E26FF'
id: BrickTileSteelCornerNe
decals:
- 2091: -58,13
- 2092: -62,13
- 2096: -48,14
+ 4471: 11,68
+ 4472: 14,66
+ 4473: 5,66
+ 5420: -12,55
+ 5865: 11,-22
- node:
color: '#91D4FFFF'
id: BrickTileSteelCornerNw
decals:
- 574: -24,-5
- 606: 26,-5
- 1436: -9,-5
- 1437: -12,-8
- 1443: -9,7
- 1477: -9,-1
- 1495: -24,-8
- 1496: -18,-8
- 1540: -9,16
- 1541: -5,16
- 1568: 15,16
- 1569: 15,10
- 1571: 33,7
- 1577: 29,16
- 1626: 23,16
- 1675: 19,3
- 5886: 30,3
+ 1064: -9,-5
+ 1065: -12,-8
+ 1099: -9,-1
+ 1109: -18,-8
+ 1140: -9,16
+ 1141: -5,16
+ 1158: 33,7
+ 1204: 19,3
+ 7034: 25,16
+ 7090: 5,16
- node:
color: '#B02E26FF'
id: BrickTileSteelCornerNw
decals:
- 6105: -15,59
- 6230: 4,66
- 6231: 7,68
- 6238: 13,66
- - node:
- color: '#BA8841FF'
- id: BrickTileSteelCornerNw
- decals:
- 2093: -63,13
- 2094: -60,13
- 2095: -52,14
+ 4474: 4,66
+ 4475: 7,68
+ 4482: 13,66
+ 5425: -15,55
+ 5866: 10,-22
+ 5867: 5,-23
- node:
color: '#91D4FFFF'
id: BrickTileSteelCornerSe
decals:
- 576: -11,-6
- 607: 31,-12
- 632: 31,-3
- 1441: -6,5
- 1444: -9,-12
- 1478: -6,-3
- 1493: -14,-12
- 1505: -20,-12
- 1546: -3,9
- 1578: 21,12
- 1579: 21,9
- 1580: 34,9
- 1581: 36,5
- 1605: 34,15
- 1676: 22,0
+ 1068: -9,-12
+ 1100: -6,-3
+ 1108: -14,-12
+ 1146: -3,9
+ 1160: 36,5
+ 1173: 34,15
+ 1205: 22,0
+ 6517: -3,-11
+ 6518: -4,-12
+ 7096: 23,9
- node:
color: '#B02E26FF'
id: BrickTileSteelCornerSe
decals:
- 867: -3,47
- 6232: 11,64
- 6233: 14,64
- 6234: 5,64
+ 4476: 11,64
+ 4477: 14,64
+ 4478: 5,64
+ 5421: -12,48
+ 5868: 11,-24
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelCornerSe
decals:
- 2100: -48,11
- 2101: -62,11
- 2108: -58,11
+ 7218: -41,-31
- node:
color: '#91D4FFFF'
id: BrickTileSteelCornerSw
decals:
- 575: -24,-6
- 608: 26,-12
- 631: 30,-3
- 1439: -7,-12
- 1440: -9,5
- 1445: -12,-12
- 1468: -9,-6
- 1479: -9,-3
- 1494: -24,-12
- 1504: -18,-12
- 1545: -9,9
- 1572: 33,5
- 1573: 23,9
- 1574: 15,9
- 1575: 15,12
- 1576: 29,15
- 1688: 19,0
+ 1067: -7,-12
+ 1069: -12,-12
+ 1090: -9,-6
+ 1101: -9,-3
+ 1114: -18,-12
+ 1145: -9,9
+ 1159: 33,5
+ 1217: 19,0
+ 7045: 25,9
+ 7087: 5,9
- node:
color: '#B02E26FF'
id: BrickTileSteelCornerSw
decals:
- 868: -15,47
- 6235: 4,64
- 6236: 7,64
- 6237: 13,64
+ 4479: 4,64
+ 4480: 7,64
+ 4481: 13,64
+ 5422: -15,48
+ 5869: 5,-24
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelCornerSw
decals:
- 2097: -52,11
- 2098: -60,11
- 2099: -63,11
+ 7211: -48,-31
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelEndN
+ decals:
+ 7232: -41,-29
- node:
color: '#B02E26FF'
id: BrickTileSteelEndW
decals:
- 1046: -2,59
+ 723: -2,59
- node:
color: '#91D4FFFF'
id: BrickTileSteelInnerNe
decals:
- 1553: -7,14
- 1648: 19,10
+ 1153: -7,14
+ 7038: 29,13
- node:
color: '#B02E26FF'
id: BrickTileSteelInnerNe
decals:
- 904: -11,56
+ 5451: -12,52
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelInnerNe
decals:
- 2121: -62,12
+ 7187: -48,-31
- node:
color: '#91D4FFFF'
id: BrickTileSteelInnerNw
decals:
- 1552: -5,14
- 1647: 17,10
+ 1152: -5,14
- node:
color: '#B02E26FF'
id: BrickTileSteelInnerNw
decals:
- 1047: -1,59
+ 724: -1,59
+ 5879: 10,-23
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelInnerNw
decals:
- 2122: -60,12
- - node:
- color: '#91D4FFFF'
- id: BrickTileSteelInnerSe
- decals:
- 1645: 19,12
+ 7186: -41,-31
- node:
- color: '#BA8841FF'
+ color: '#B02E26FF'
id: BrickTileSteelInnerSe
decals:
- 2119: -62,12
+ 5450: -12,51
- node:
color: '#91D4FFFF'
id: BrickTileSteelInnerSw
decals:
- 1475: -7,-6
- 1646: 17,12
+ 1097: -7,-6
- node:
color: '#B02E26FF'
id: BrickTileSteelInnerSw
decals:
- 1048: -1,59
- - node:
- color: '#BA8841FF'
- id: BrickTileSteelInnerSw
- decals:
- 2120: -60,12
+ 725: -1,59
- node:
color: '#91D4FFFF'
id: BrickTileSteelLineE
decals:
- 619: 31,-1
- 620: 31,-2
- 621: 31,-11
- 622: 31,-10
- 623: 31,-9
- 624: 31,-8
- 625: 31,-7
- 626: 31,-6
- 1453: -9,-9
- 1454: -9,-10
- 1455: -9,-11
- 1456: -3,-10
- 1457: -3,-9
- 1458: -3,-8
- 1459: -3,-7
- 1460: -3,-6
- 1490: -6,6
- 1491: -6,-2
- 1498: -14,-9
- 1499: -14,-10
- 1500: -14,-11
- 1501: -20,-9
- 1502: -20,-10
- 1503: -20,-11
- 1530: -3,10
- 1531: -3,11
- 1532: -3,12
- 1533: -3,13
- 1534: -3,14
- 1535: -3,15
- 1536: -7,15
- 1636: 21,15
- 1637: 21,14
- 1638: 21,13
- 1639: 34,12
- 1640: 34,11
- 1641: 34,10
- 1644: 19,11
- 1684: 22,2
- 1685: 22,1
- 5887: 31,2
- 5888: 31,1
- 5889: 31,0
+ 1075: -9,-9
+ 1076: -9,-10
+ 1077: -9,-11
+ 1078: -3,-10
+ 1079: -3,-9
+ 1080: -3,-8
+ 1081: -3,-7
+ 1082: -3,-6
+ 1107: -6,-2
+ 1111: -14,-9
+ 1112: -14,-10
+ 1113: -14,-11
+ 1130: -3,10
+ 1131: -3,11
+ 1132: -3,12
+ 1133: -3,13
+ 1134: -3,14
+ 1135: -3,15
+ 1136: -7,15
+ 1185: 34,12
+ 1186: 34,11
+ 1213: 22,2
+ 1214: 22,1
+ 7036: 29,15
+ 7037: 29,14
+ 7099: 23,10
+ 7100: 23,11
+ 7101: 23,12
+ 7102: 23,13
+ 7103: 23,14
+ 7104: 23,15
- node:
color: '#B02E26FF'
id: BrickTileSteelLineE
decals:
- 876: -3,55
- 877: -3,54
- 878: -3,53
- 879: -3,52
- 880: -3,51
- 881: -3,50
- 882: -3,49
- 883: -3,48
- 6103: -11,57
- 6104: -11,58
- 6239: 14,65
- 6240: 11,67
- 6241: 11,66
- 6242: 11,65
- 6243: 5,65
+ 4483: 14,65
+ 4484: 11,67
+ 4485: 11,66
+ 4486: 11,65
+ 4487: 5,65
+ 5428: -12,54
+ 5429: -12,49
+ 5430: -12,50
+ 5431: -12,53
+ 5880: 11,-23
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelLineE
decals:
- 2105: -48,13
- 2106: -48,12
- 2107: -58,12
+ 7174: -48,-26
+ 7175: -48,-27
+ 7176: -48,-28
+ 7177: -48,-29
+ 7178: -48,-30
+ 7202: -51,-26
+ 7203: -51,-27
+ 7204: -51,-29
+ 7205: -51,-30
+ 7219: -41,-30
+ 7456: -50,-15
+ 7457: -50,-16
+ 7458: -50,-17
+ 7459: -50,-18
+ 7460: -50,-19
+ 7461: -50,-20
+ 7462: -50,-21
+ 7463: -50,-22
+ 7464: -50,-23
+ 7465: -50,-24
- node:
color: '#91D4FFFF'
id: BrickTileSteelLineN
decals:
- 589: -23,-5
- 590: -22,-5
- 591: -21,-5
- 592: -20,-5
- 593: -19,-5
- 594: -18,-5
- 595: -17,-5
- 596: -16,-5
- 597: -15,-5
- 598: -14,-5
- 599: -13,-5
- 600: -12,-5
- 609: 30,-5
- 610: 29,-5
- 611: 28,-5
- 612: 27,-5
- 1448: -11,-8
- 1449: -10,-8
- 1470: -8,-5
- 1471: -7,-5
- 1472: -6,-5
- 1473: -5,-5
- 1474: -4,-5
- 1484: -8,-1
- 1485: -7,-1
- 1486: -8,7
- 1487: -7,7
- 1512: -23,-8
- 1513: -22,-8
- 1514: -21,-8
- 1515: -17,-8
- 1516: -16,-8
- 1517: -15,-8
- 1542: -8,16
- 1543: -4,16
- 1544: -6,14
- 1606: 16,16
- 1607: 17,16
- 1608: 18,16
- 1609: 19,16
- 1610: 20,16
- 1611: 24,16
- 1612: 25,16
- 1613: 26,16
- 1614: 30,16
- 1615: 31,16
- 1616: 32,16
- 1617: 33,16
- 1618: 34,7
- 1619: 35,7
- 1620: 33,13
- 1621: 32,13
- 1622: 31,13
- 1623: 30,13
- 1624: 29,13
- 1625: 28,13
- 1649: 16,10
- 1650: 20,10
- 1691: 20,3
- 1692: 21,3
+ 471: -13,-5
+ 1072: -11,-8
+ 1073: -10,-8
+ 1092: -8,-5
+ 1093: -7,-5
+ 1094: -6,-5
+ 1095: -5,-5
+ 1096: -4,-5
+ 1104: -8,-1
+ 1105: -7,-1
+ 1118: -17,-8
+ 1119: -16,-8
+ 1120: -15,-8
+ 1142: -8,16
+ 1143: -4,16
+ 1144: -6,14
+ 1174: 26,16
+ 1175: 30,16
+ 1176: 31,16
+ 1177: 32,16
+ 1178: 33,16
+ 1179: 34,7
+ 1180: 35,7
+ 1181: 33,13
+ 1182: 32,13
+ 1183: 31,13
+ 1184: 30,13
+ 1220: 20,3
+ 1221: 21,3
+ 7032: 27,16
+ 7033: 28,16
+ 7091: 6,16
+ 7092: 7,16
+ 7093: 21,16
+ 7094: 22,16
- node:
color: '#B02E26FF'
id: BrickTileSteelLineN
decals:
- 869: -10,56
- 870: -9,56
- 871: -8,56
- 872: -7,56
- 873: -6,56
- 874: -5,56
- 875: -4,56
- 6107: -14,59
- 6108: -13,59
- 6109: -12,59
- 6249: 8,68
- 6250: 9,68
- 6251: 10,68
+ 4493: 8,68
+ 4494: 9,68
+ 4495: 10,68
+ 5426: -14,55
+ 5427: -13,55
+ 5432: -11,52
+ 5433: -10,52
+ 5434: -9,52
+ 5435: -8,52
+ 5436: -7,52
+ 5437: -6,52
+ 5438: -5,52
+ 5439: -4,52
+ 5440: -3,52
+ 5875: 6,-23
+ 5876: 7,-23
+ 5877: 8,-23
+ 5878: 9,-23
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelLineN
decals:
- 2113: -61,12
- 2114: -51,14
- 2115: -50,14
- 2116: -49,14
- 2117: -59,13
+ 7179: -47,-31
+ 7180: -46,-31
+ 7181: -45,-31
+ 7182: -44,-31
+ 7183: -43,-31
+ 7184: -42,-31
- node:
color: '#91D4FFFF'
id: BrickTileSteelLineS
decals:
- 577: -12,-6
- 578: -13,-6
- 579: -14,-6
- 580: -15,-6
- 581: -16,-6
- 582: -17,-6
- 583: -18,-6
- 584: -19,-6
- 585: -20,-6
- 586: -21,-6
- 587: -22,-6
- 588: -23,-6
- 627: 30,-12
- 628: 29,-12
- 629: 28,-12
- 630: 27,-12
- 1446: -11,-12
- 1447: -10,-12
- 1461: -5,-12
- 1462: -6,-12
- 1469: -8,-6
- 1480: -8,-3
- 1481: -7,-3
- 1482: -8,5
- 1483: -7,5
- 1506: -23,-12
- 1507: -22,-12
- 1508: -21,-12
- 1509: -17,-12
- 1510: -16,-12
- 1511: -15,-12
- 1547: -4,9
- 1548: -5,9
- 1549: -6,9
- 1550: -7,9
- 1551: -8,9
- 1582: 16,9
- 1583: 17,9
- 1584: 18,9
- 1585: 19,9
- 1586: 20,9
- 1587: 20,12
- 1588: 16,12
- 1589: 24,9
- 1590: 25,9
- 1591: 26,9
- 1592: 27,9
- 1593: 28,9
- 1594: 29,9
- 1595: 30,9
- 1596: 31,9
- 1597: 32,9
- 1598: 33,9
- 1599: 34,5
- 1600: 35,5
- 1601: 30,15
- 1602: 31,15
- 1603: 32,15
- 1604: 33,15
- 1686: 20,0
- 1687: 21,0
+ 470: -13,-6
+ 1070: -11,-12
+ 1071: -10,-12
+ 1083: -5,-12
+ 1084: -6,-12
+ 1091: -8,-6
+ 1102: -8,-3
+ 1103: -7,-3
+ 1115: -17,-12
+ 1116: -16,-12
+ 1117: -15,-12
+ 1147: -4,9
+ 1148: -5,9
+ 1149: -6,9
+ 1150: -7,9
+ 1151: -8,9
+ 1161: 26,9
+ 1162: 27,9
+ 1163: 28,9
+ 1164: 29,9
+ 1165: 30,9
+ 1166: 31,9
+ 1167: 34,5
+ 1168: 35,5
+ 1169: 30,15
+ 1170: 31,15
+ 1171: 32,15
+ 1172: 33,15
+ 1215: 20,0
+ 1216: 21,0
+ 7064: 32,9
+ 7088: 6,9
+ 7089: 7,9
+ 7097: 22,9
+ 7098: 21,9
- node:
color: '#B02E26FF'
id: BrickTileSteelLineS
decals:
- 893: -14,47
- 894: -13,47
- 895: -12,47
- 896: -11,47
- 897: -10,47
- 898: -9,47
- 899: -8,47
- 900: -7,47
- 901: -6,47
- 902: -5,47
- 903: -4,47
- 6252: 8,64
- 6253: 9,64
- 6254: 10,64
+ 616: -4,47
+ 4496: 8,64
+ 4497: 9,64
+ 4498: 10,64
+ 5423: -14,48
+ 5424: -13,48
+ 5441: -11,51
+ 5442: -10,51
+ 5443: -9,51
+ 5444: -8,51
+ 5445: -7,51
+ 5446: -6,51
+ 5447: -5,51
+ 5448: -4,51
+ 5449: -3,51
+ 5870: 6,-24
+ 5871: 7,-24
+ 5872: 8,-24
+ 5873: 9,-24
+ 5874: 10,-24
+ 5898: 10,-20
+ 5899: 11,-20
+ 5900: 12,-20
+ 5901: 13,-20
+ 5902: 14,-20
+ 5903: 15,-20
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelLineS
decals:
- 2109: -61,12
- 2110: -51,11
- 2111: -50,11
- 2112: -49,11
- 2118: -59,11
+ 7212: -47,-31
+ 7213: -46,-31
+ 7214: -45,-31
+ 7215: -44,-31
+ 7216: -43,-31
+ 7217: -42,-31
- node:
color: '#91D4FFFF'
id: BrickTileSteelLineW
decals:
- 613: 26,-6
- 614: 26,-7
- 615: 26,-8
- 616: 26,-9
- 617: 26,-10
- 618: 26,-11
- 633: 30,-2
- 634: 30,-1
- 635: 30,1
- 1450: -12,-9
- 1451: -12,-10
- 1452: -12,-11
- 1463: -7,-11
- 1464: -7,-10
- 1465: -7,-9
- 1466: -7,-8
- 1467: -7,-7
- 1488: -9,6
- 1489: -9,-2
- 1518: -24,-9
- 1519: -24,-10
- 1520: -24,-11
- 1521: -18,-9
- 1522: -18,-10
- 1523: -18,-11
- 1524: -9,15
- 1525: -9,14
- 1526: -9,11
- 1527: -9,10
- 1528: -9,13
- 1529: -9,12
- 1537: -5,15
- 1627: 23,15
- 1628: 23,14
- 1629: 23,13
- 1630: 23,12
- 1631: 23,11
- 1632: 23,10
- 1633: 15,15
- 1634: 15,14
- 1635: 15,13
- 1642: 33,6
- 1643: 17,11
- 1689: 19,1
- 1690: 19,2
- 5890: 30,2
- 5891: 30,0
+ 1074: -12,-11
+ 1085: -7,-11
+ 1086: -7,-10
+ 1087: -7,-9
+ 1088: -7,-8
+ 1089: -7,-7
+ 1106: -9,-2
+ 1121: -18,-9
+ 1122: -18,-10
+ 1123: -18,-11
+ 1124: -9,15
+ 1125: -9,14
+ 1126: -9,11
+ 1127: -9,10
+ 1128: -9,13
+ 1129: -9,12
+ 1137: -5,15
+ 1187: 33,6
+ 1218: 19,1
+ 1219: 19,2
+ 7039: 25,15
+ 7040: 25,14
+ 7041: 25,13
+ 7042: 25,12
+ 7043: 25,11
+ 7044: 25,10
+ 7081: 5,15
+ 7082: 5,14
+ 7083: 5,13
+ 7084: 5,12
+ 7085: 5,11
+ 7086: 5,10
- node:
color: '#B02E26FF'
id: BrickTileSteelLineW
decals:
- 884: -15,48
- 885: -15,49
- 886: -15,50
- 887: -15,51
- 888: -15,52
- 889: -15,53
- 890: -15,54
- 891: -15,55
- 892: -15,56
- 1033: -1,56
- 1034: -1,55
- 1035: -1,54
- 1036: -1,53
- 1037: -1,52
- 1038: -1,51
- 1039: -1,50
- 1040: -1,49
- 1041: -1,48
- 1042: -1,47
- 1043: -1,61
- 1044: -1,60
- 1045: -1,58
- 6101: -15,57
- 6102: -15,58
- 6244: 4,65
- 6245: 7,67
- 6246: 7,66
- 6247: 7,65
- 6248: 13,65
+ 610: -15,49
+ 611: -15,50
+ 612: -15,51
+ 613: -15,52
+ 614: -15,53
+ 615: -15,54
+ 710: -1,56
+ 711: -1,55
+ 712: -1,54
+ 713: -1,53
+ 714: -1,52
+ 715: -1,51
+ 716: -1,50
+ 717: -1,49
+ 718: -1,48
+ 719: -1,47
+ 720: -1,61
+ 721: -1,60
+ 722: -1,58
+ 4488: 4,65
+ 4489: 7,67
+ 4490: 7,66
+ 4491: 7,65
+ 4492: 13,65
- node:
- color: '#BA8841FF'
+ color: '#FFFFFFFF'
id: BrickTileSteelLineW
decals:
- 2102: -52,12
- 2103: -52,13
- 2104: -63,12
+ 7185: -41,-30
+ 7188: -51,-26
+ 7189: -51,-27
+ 7190: -51,-29
+ 7191: -51,-30
+ 7206: -48,-26
+ 7207: -48,-27
+ 7208: -48,-28
+ 7209: -48,-29
+ 7210: -48,-30
+ 7409: 66,-9
+ 7446: -51,-24
+ 7447: -51,-23
+ 7448: -51,-22
+ 7449: -51,-21
+ 7450: -51,-20
+ 7451: -51,-19
+ 7452: -51,-18
+ 7453: -51,-17
+ 7454: -51,-16
+ 7455: -51,-15
- node:
color: '#334E6DFF'
id: BrickTileWhiteCornerNe
decals:
- 1082: 7,42
- 1114: 14,40
- 1128: 20,40
- 1131: 19,50
- 1166: 15,50
- 1167: 11,56
- 1209: 15,43
- 1248: 27,46
- 1263: 29,52
- 1296: 19,57
- 1297: 20,56
- 1312: 22,57
- 1313: 21,58
- 1332: 28,56
- 1343: 9,30
- 1344: 14,30
- 1345: 20,29
- 1346: 12,25
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteCornerNe
- decals:
- 5892: 36,3
+ 759: 7,42
+ 787: 14,40
+ 801: 20,40
+ 804: 19,50
+ 839: 15,50
+ 840: 11,56
+ 879: 15,43
+ 921: 29,52
+ 939: 19,57
+ 940: 20,56
+ 955: 22,57
+ 956: 21,58
+ 975: 28,56
+ 986: 9,30
+ 987: 14,30
+ 988: 20,29
+ 989: 12,25
+ 6102: 29,46
+ 6452: 6,62
- node:
color: '#7C45B5FF'
id: BrickTileWhiteCornerNe
decals:
- 2285: -36,24
- 2318: -38,13
- 2319: -37,12
- 2335: 36,-1
+ 1645: 36,-1
- node:
color: '#80C71FFF'
id: BrickTileWhiteCornerNe
decals:
- 6331: -17,7
- 6332: -14,7
- 6333: -19,7
- 6334: -21,7
- 6335: -23,7
- 6336: -25,7
- 6337: -27,7
- 6338: -29,7
+ 4569: -14,7
+ 4604: -16,7
+ 4605: -18,7
+ 4606: -20,7
+ 4607: -22,7
+ 4608: -6,7
- node:
color: '#845606FF'
id: BrickTileWhiteCornerNe
decals:
- 3253: -7,-19
- 3254: -18,-19
- 3255: -25,-19
- 3256: -25,-24
- 3257: -10,-28
- 3258: -4,-23
- 3259: -13,-24
- 3260: -19,-28
- 3261: -10,-33
- 3262: -16,-33
- 3263: -16,-38
- 3264: -10,-38
- 3265: -7,-41
- 3276: -19,-19
- 3287: -10,-38
- 4459: -22,-41
+ 2452: -25,-19
+ 2453: -25,-24
+ 2454: -10,-28
+ 2455: -4,-23
+ 2456: -13,-24
+ 2457: -10,-33
+ 2458: -7,-41
+ 6722: -10,-19
+ 6730: -16,-39
+ 6757: -25,-41
+ 6762: -28,-41
+ 6816: -10,-39
+ 6925: -16,-33
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteCornerNe
decals:
- 374: -14,-1
- 375: -20,-1
- 376: -26,-1
- 377: 6,7
- 378: 13,16
- 379: -11,16
- 1652: 31,7
- 6288: 7,-5
- 6289: 13,-5
- 6290: 13,-8
- 6291: 7,-10
- - node:
- color: '#951710FF'
+ 5724: -35,12
+ 5725: -38,13
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteCornerNe
decals:
- 6158: -20,48
+ 351: -14,-1
+ 352: -20,-1
+ 353: -11,16
+ 1189: 31,7
+ 4531: 7,-5
+ 4532: 13,-5
+ 4533: 13,-8
+ 4534: 7,-10
+ 6461: 2,7
+ 6467: 6,3
+ 6512: -6,3
+ 6963: 10,16
+ 6964: 20,16
+ 7052: 10,7
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteCornerNe
decals:
- 906: -11,64
- 915: -2,64
- 916: -7,64
- 922: -30,62
- 949: -19,59
- 950: -2,68
- 4410: -36,67
+ 618: -11,64
+ 626: -2,64
+ 630: -30,62
+ 3387: -36,67
+ 6218: -42,60
+ 6241: -19,58
- node:
color: '#B02E26FF'
id: BrickTileWhiteCornerNe
decals:
- 640: -21,42
- 660: -30,42
- 666: -5,43
- 734: -8,35
- 735: -5,35
- 736: -5,30
- 764: -14,26
- 783: -9,30
- 784: -12,36
- 835: -33,31
- 836: -33,35
- 849: -13,45
- 860: -17,42
- 1079: -10,22
- 4424: -32,51
+ 525: -5,35
+ 526: -5,30
+ 552: -14,26
+ 571: -9,30
+ 756: -10,22
+ 5497: -13,46
+ 5516: -26,51
+ 5537: -17,51
+ 6153: -2,40
+ 6409: -33,30
- node:
color: '#B04DB5FF'
id: BrickTileWhiteCornerNe
decals:
- 2357: 50,21
- 2387: 32,24
- 2388: 32,30
- 2389: 40,30
- 2390: 40,26
- 2391: 49,26
- 2392: 50,24
- 2393: 49,30
- 2394: 46,30
- 2395: 44,34
- 2396: 50,40
- 2397: 49,44
- 2398: 50,51
- 2399: 45,51
- 2400: 47,57
- 2401: 41,57
- 2402: 35,51
- 2407: 40,44
- 2424: 63,30
- 2425: 49,34
- 2685: 54,49
- 2686: 53,51
+ 1663: 50,21
+ 1693: 32,24
+ 1694: 32,30
+ 1695: 40,30
+ 1696: 40,26
+ 1697: 49,26
+ 1698: 50,24
+ 1699: 49,30
+ 1700: 46,30
+ 1701: 44,34
+ 1702: 50,40
+ 1703: 50,51
+ 1704: 45,51
+ 1705: 47,57
+ 1706: 41,57
+ 1707: 35,51
+ 1712: 40,44
+ 1729: 63,30
+ 1730: 49,34
+ 1987: 54,49
+ 1988: 53,51
+ 4735: 49,44
- node:
color: '#BA8841FF'
id: BrickTileWhiteCornerNe
decals:
- 1872: -53,37
- 1873: -52,36
- 1874: -42,35
- 1875: -48,27
- 1876: -48,23
- 1877: -48,18
- 1878: -58,20
- 1890: -58,27
- 1891: -59,30
- 1892: -60,36
- 1893: -42,31
+ 1360: -48,27
+ 1361: -48,23
+ 1362: -48,18
+ 1363: -58,20
+ 1373: -58,27
+ 1374: -59,30
+ 1375: -60,36
+ 4707: 23,-19
+ 6030: -54,37
+ 6036: -44,31
+ 6085: -44,35
+ 6359: -58,13
+ 6374: -48,13
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteCornerNe
decals:
- 2775: -50,5
- 2776: -50,-2
- 2777: -58,-2
- 2881: -58,-7
- 2904: -50,-11
- 2916: -59,-15
- 3015: -98,13
- 3016: -97,12
- 3017: -96,10
- 3018: -89,9
- 3019: -83,10
- 3020: -84,17
- 3021: -80,22
- 3022: -95,26
- 3023: -96,28
- 3024: -97,29
- 3025: -72,17
- 3026: -72,14
- 3027: -68,17
- 3028: -68,11
- 3029: -76,9
- 3030: -84,4
- 3031: -81,-4
- 3032: -80,-5
- 3033: -83,-3
- 6178: -97,-2
- 6179: -96,-3
- 6182: -92,-5
- 6185: -92,22
- 6200: -68,3
- 6379: -53,-6
+ 2075: -50,5
+ 2076: -50,-2
+ 2077: -58,-2
+ 2180: -58,-7
+ 2198: -50,-11
+ 2286: -98,13
+ 2287: -97,12
+ 2288: -96,10
+ 2289: -89,9
+ 2290: -83,10
+ 2291: -84,17
+ 2292: -80,22
+ 2293: -95,26
+ 2294: -96,28
+ 2295: -97,29
+ 2296: -72,17
+ 2297: -72,14
+ 2298: -68,17
+ 2299: -68,11
+ 2300: -76,9
+ 2301: -84,4
+ 2302: -81,-4
+ 2303: -80,-5
+ 2304: -83,-3
+ 4438: -97,-2
+ 4439: -96,-3
+ 4442: -92,-5
+ 4445: -92,22
+ 4460: -68,3
- node:
color: '#FF974DFF'
id: BrickTileWhiteCornerNe
decals:
- 2184: 17,-1
- 2185: 17,3
- 2186: 28,-2
- 2235: 21,-8
+ 1576: 17,-1
+ 1577: 17,3
+ 1578: 28,-2
+ 1625: 21,-8
- node:
color: '#334E6DFF'
id: BrickTileWhiteCornerNw
decals:
- 1083: 4,42
- 1109: 9,40
- 1129: 16,40
- 1130: 17,50
- 1168: 5,56
- 1169: 9,50
- 1207: 9,43
- 1242: 21,46
- 1264: 24,52
- 1265: 23,51
- 1266: 21,50
- 1290: 17,57
- 1291: 16,56
- 1314: 15,58
- 1315: 14,57
- 1333: 26,56
- 1340: 4,30
- 1341: 11,30
- 1342: 17,29
- 1347: 6,25
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteCornerNw
- decals:
- 5894: 33,3
+ 760: 4,42
+ 782: 9,40
+ 802: 16,40
+ 803: 17,50
+ 841: 5,56
+ 842: 9,50
+ 878: 9,43
+ 910: 21,46
+ 922: 24,52
+ 923: 23,51
+ 933: 17,57
+ 934: 16,56
+ 957: 15,58
+ 958: 14,57
+ 976: 26,56
+ 983: 4,30
+ 984: 11,30
+ 985: 17,29
+ 990: 6,25
+ 6097: 25,51
+ 6099: 28,52
+ 6447: 5,62
- node:
color: '#7C45B5FF'
id: BrickTileWhiteCornerNw
decals:
- 2283: -43,24
- 2302: -40,19
- 2303: -37,20
- 2315: -40,13
- 2316: -41,12
- 2317: -42,10
- 2332: 33,-1
+ 1642: 33,-1
- node:
color: '#80C71FFF'
id: BrickTileWhiteCornerNw
decals:
- 6339: -30,7
- 6340: -26,7
- 6341: -28,7
- 6342: -24,7
- 6343: -22,7
- 6344: -20,7
- 6345: -18,7
- 6346: -15,7
+ 4570: -24,7
+ 4599: -23,7
+ 4600: -21,7
+ 4601: -19,7
+ 4602: -17,7
+ 4603: -9,7
+ 4609: -15,7
- node:
color: '#845606FF'
id: BrickTileWhiteCornerNw
decals:
- 3266: -17,-28
- 3267: -17,-33
- 3268: -14,-33
- 3269: -20,-38
- 3270: -14,-38
- 3271: -11,-24
- 3272: -5,-23
- 3273: -17,-24
- 3274: -17,-19
- 3275: -23,-19
- 3277: -31,-19
- 3278: -31,-24
- 4460: -52,-41
- 4538: -23,-28
+ 2459: -17,-28
+ 2460: -14,-33
+ 2461: -11,-24
+ 2462: -5,-23
+ 2463: -17,-24
+ 2464: -31,-19
+ 2465: -31,-24
+ 6709: -23,-19
+ 6728: -26,-41
+ 6729: -17,-39
+ 6763: -32,-41
+ 6817: -14,-39
+ 6924: -17,-33
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteCornerNw
decals:
- 380: -30,13
- 384: -30,3
- 404: -15,16
- 464: -30,-1
- 465: -24,-1
- 466: -18,-1
- 536: -4,7
- 560: -9,3
- 1556: 8,7
- 1796: -13,-14
- 4540: 6,16
- 4541: 5,15
- 6279: 5,-5
- 6280: 9,-5
- 6281: 12,-8
- 6282: 5,-10
- - node:
- color: '#951710FF'
+ 5726: -40,13
+ 5727: -41,12
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteCornerNw
decals:
- 6134: -28,48
- 6135: -29,47
+ 354: -30,13
+ 371: -15,16
+ 408: -24,-1
+ 409: -18,-1
+ 1154: 8,7
+ 1301: -13,-14
+ 4523: 5,-5
+ 4524: 9,-5
+ 4525: 12,-8
+ 4526: 5,-10
+ 4596: -23,3
+ 6462: 0,7
+ 6466: -4,3
+ 6961: 8,16
+ 6962: 18,16
+ 7056: 18,7
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteCornerNw
decals:
- 905: -28,64
- 914: -5,64
- 917: -9,64
- 921: -32,62
- 951: -24,59
- 952: -6,68
- 4411: -45,67
+ 617: -28,64
+ 625: -5,64
+ 629: -32,62
+ 3388: -45,67
+ 6217: -45,60
+ 6240: -24,58
- node:
color: '#B02E26FF'
id: BrickTileWhiteCornerNw
decals:
- 639: -28,42
- 661: -31,42
- 672: -11,42
- 673: -9,43
- 730: -12,26
- 731: -7,30
- 732: -9,35
- 733: -6,35
- 765: -23,26
- 785: -23,30
- 832: -37,35
- 834: -37,31
- 853: -17,45
- 861: -19,42
- 4423: -34,51
+ 479: -11,42
+ 480: -9,43
+ 522: -12,26
+ 523: -7,30
+ 524: -6,35
+ 553: -23,26
+ 572: -23,30
+ 601: -37,35
+ 5511: -27,46
+ 5517: -27,51
+ 5538: -21,51
+ 6118: -9,34
+ 6152: -3,40
- node:
color: '#B04DB5FF'
id: BrickTileWhiteCornerNw
decals:
- 2370: 26,30
- 2371: 34,30
- 2372: 38,44
- 2373: 34,51
- 2374: 39,51
- 2375: 49,51
- 2376: 37,57
- 2377: 43,57
- 2378: 42,44
- 2379: 42,40
- 2380: 42,34
- 2381: 46,34
- 2382: 42,30
- 2383: 48,30
- 2384: 42,26
- 2385: 34,26
- 2386: 26,24
- 2423: 51,30
- 2684: 52,51
- 2692: 52,47
+ 1676: 26,30
+ 1677: 34,30
+ 1678: 38,44
+ 1679: 34,51
+ 1680: 39,51
+ 1681: 49,51
+ 1682: 37,57
+ 1683: 43,57
+ 1684: 42,44
+ 1685: 42,40
+ 1686: 42,34
+ 1687: 46,34
+ 1688: 42,30
+ 1689: 48,30
+ 1690: 42,26
+ 1691: 34,26
+ 1692: 26,24
+ 1728: 51,30
+ 1986: 52,51
+ 1994: 52,47
- node:
color: '#BA8841FF'
id: BrickTileWhiteCornerNw
decals:
- 1880: -52,18
- 1881: -52,23
- 1882: -66,27
- 1883: -65,30
- 1884: -64,36
- 1885: -57,37
- 1886: -58,36
- 1887: -50,35
- 1888: -57,31
- 1895: -52,27
- 1938: -64,20
+ 1365: -52,18
+ 1366: -52,23
+ 1367: -66,27
+ 1368: -65,30
+ 1369: -64,36
+ 1370: -50,35
+ 1371: -57,31
+ 1376: -52,27
+ 1408: -64,20
+ 4706: 17,-19
+ 6360: -60,13
+ 6361: -63,12
+ 6373: -52,13
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteCornerNw
decals:
- 2778: -63,5
- 2779: -63,-2
- 2780: -56,-2
- 2880: -56,-6
- 2882: -63,-7
- 2905: -56,-11
- 2906: -60,-12
- 2917: -60,-15
- 3034: -98,-2
- 3035: -90,-5
- 3036: -89,-4
- 3037: -87,-3
- 3038: -86,4
- 3039: -87,10
- 3040: -94,9
- 3041: -99,13
- 3042: -81,9
- 3043: -86,17
- 3044: -90,22
- 3045: -98,29
- 3046: -74,17
- 3047: -70,17
- 3048: -74,11
- 6199: -70,3
+ 2078: -63,5
+ 2079: -63,-2
+ 2080: -56,-2
+ 2181: -63,-7
+ 2199: -56,-11
+ 2200: -60,-12
+ 2305: -98,-2
+ 2306: -90,-5
+ 2307: -89,-4
+ 2308: -87,-3
+ 2309: -86,4
+ 2310: -87,10
+ 2311: -94,9
+ 2312: -99,13
+ 2313: -81,9
+ 2314: -86,17
+ 2315: -90,22
+ 2316: -98,29
+ 2317: -74,17
+ 2318: -70,17
+ 2319: -74,11
+ 4459: -70,3
- node:
color: '#FF974DFF'
id: BrickTileWhiteCornerNw
decals:
- 2177: 12,3
- 2181: 12,0
- 2234: 15,-8
+ 1569: 12,3
+ 1573: 12,0
+ 1624: 15,-8
- node:
color: '#334E6DFF'
id: BrickTileWhiteCornerSe
decals:
- 1115: 14,37
- 1127: 7,35
- 1133: 20,35
- 1203: 15,42
- 1204: 15,45
- 1205: 7,47
- 1206: 11,52
- 1269: 23,48
- 1270: 29,48
- 1292: 19,53
- 1293: 20,54
- 1319: 20,52
- 1320: 21,53
- 1321: 22,54
- 1335: 28,54
- 1348: 9,27
- 1349: 14,27
- 1350: 20,24
- 1355: 12,23
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteCornerSe
- decals:
- 5895: 36,1
+ 788: 14,37
+ 800: 7,35
+ 806: 20,35
+ 875: 15,42
+ 876: 15,45
+ 877: 11,52
+ 924: 29,48
+ 935: 19,53
+ 936: 20,54
+ 962: 20,52
+ 963: 21,53
+ 964: 22,54
+ 978: 28,54
+ 991: 9,27
+ 992: 14,27
+ 993: 20,24
+ 998: 12,23
+ 5231: 7,48
+ 6103: 29,45
+ 6453: 6,58
- node:
color: '#7C45B5FF'
id: BrickTileWhiteCornerSe
decals:
- 2278: -42,19
- 2280: -39,21
- 2281: -37,22
- 2282: -36,23
- 2320: -37,9
- 2333: 36,-3
+ 1643: 36,-3
- node:
color: '#80C71FFF'
id: BrickTileWhiteCornerSe
decals:
- 6347: -14,5
- 6348: -17,5
- 6349: -19,5
- 6350: -21,5
- 6351: -23,5
- 6352: -25,5
- 6353: -27,5
- 6354: -29,5
+ 4615: -14,5
+ 4616: -16,5
+ 4617: -18,5
+ 4618: -20,5
+ 4619: -22,5
+ 4620: -6,5
- node:
color: '#845606FF'
id: BrickTileWhiteCornerSe
decals:
- 3288: -7,-43
- 3289: -10,-36
- 3290: -16,-36
- 3291: -13,-26
- 3292: -4,-26
- 3293: -7,-22
- 3294: -25,-26
- 3295: -25,-22
- 3318: -10,-31
- 4457: -16,-45
- 4458: -22,-45
- 4462: -48,-50
+ 2471: -7,-43
+ 2472: -10,-36
+ 2473: -13,-26
+ 2474: -4,-26
+ 2475: -7,-22
+ 2476: -25,-26
+ 2477: -25,-22
+ 2491: -10,-31
+ 6731: -16,-47
+ 6775: -28,-46
+ 6926: -16,-36
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteCornerSe
decals:
- 461: -26,-3
- 462: -20,-3
- 463: -14,-3
- 473: -11,-3
- 537: 6,-3
- 1555: 13,9
- 1651: 31,5
- 1708: 10,-3
- 6283: 10,-12
- 6284: 7,-12
- 6285: 13,-12
- 6286: 13,-6
- 6287: 7,-8
- - node:
- color: '#951710FF'
+ 5731: -35,8
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteCornerSe
decals:
- 6133: -23,44
- 6157: -20,47
+ 406: -20,-3
+ 407: -14,-3
+ 1188: 31,5
+ 1231: 10,-3
+ 4527: 10,-12
+ 4528: 7,-12
+ 4529: 13,-6
+ 4530: 7,-8
+ 5382: -11,-6
+ 6454: 13,-11
+ 6464: 2,-3
+ 6465: 6,1
+ 6513: -6,1
+ 6984: 20,9
+ 6986: 12,12
+ 6987: 10,9
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteCornerSe
decals:
- 907: -11,61
- 908: -26,53
- 909: -19,53
- 913: -2,63
- 918: -7,63
- 919: -30,57
- 954: -2,66
- 1013: -16,61
- 4409: -36,58
+ 619: -11,61
+ 620: -26,53
+ 621: -19,53
+ 624: -2,63
+ 627: -30,57
+ 692: -16,61
+ 3386: -36,58
+ 6220: -42,58
- node:
color: '#B02E26FF'
id: BrickTileWhiteCornerSe
decals:
- 641: -21,39
- 663: -30,39
- 664: -5,39
- 665: -6,38
- 760: -5,23
- 761: -5,32
- 762: -14,24
- 798: -20,28
- 813: -9,28
- 837: -33,29
- 838: -33,33
- 858: -17,39
- 4426: -33,37
- 4427: -32,44
+ 472: -5,39
+ 473: -6,38
+ 548: -5,23
+ 549: -5,32
+ 550: -14,24
+ 585: -20,28
+ 603: -33,33
+ 5211: -9,28
+ 5512: -26,48
+ 5540: -17,48
+ 6155: -2,38
+ 6412: -33,29
- node:
color: '#B04DB5FF'
id: BrickTileWhiteCornerSe
decals:
- 2416: 32,26
- 2417: 40,23
- 2418: 50,23
- 2419: 49,28
- 2420: 49,32
- 2421: 63,26
- 2426: 50,36
- 2427: 49,42
- 2428: 50,46
- 2429: 47,53
- 2430: 41,53
- 2431: 40,28
- 2432: 40,32
- 2433: 32,23
- 2690: 54,46
+ 1721: 32,26
+ 1722: 40,23
+ 1723: 50,23
+ 1724: 49,28
+ 1725: 49,32
+ 1726: 63,26
+ 1731: 50,36
+ 1732: 50,46
+ 1733: 47,53
+ 1734: 41,53
+ 1735: 40,28
+ 1736: 40,32
+ 1737: 32,23
+ 1992: 54,46
+ 4736: 49,42
- node:
color: '#BA8841FF'
id: BrickTileWhiteCornerSe
decals:
- 1865: -58,22
- 1866: -48,20
- 1867: -48,16
- 1868: -48,25
- 1869: -52,33
- 1870: -42,33
- 1879: -58,15
- 1894: -42,29
- 1937: -54,11
+ 1356: -58,22
+ 1357: -48,20
+ 1358: -48,25
+ 1364: -58,15
+ 1407: -54,11
+ 4709: 20,-24
+ 4710: 23,-22
+ 6025: -54,33
+ 6037: -44,29
+ 6087: -44,33
+ 6362: -58,11
+ 6375: -48,11
+ 6390: -48,15
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteCornerSe
decals:
- 2785: -58,-5
- 2786: -50,-4
- 2787: -57,0
- 2788: -50,0
- 2884: -58,-10
- 2902: -50,-12
- 2903: -53,-13
- 2979: -80,-6
- 2980: -84,-1
- 2981: -83,6
- 2982: -68,5
- 2983: -68,13
- 2984: -72,13
- 2985: -72,16
- 2986: -76,7
- 2987: -84,12
- 2988: -83,19
- 2989: -81,20
- 2990: -80,21
- 2991: -97,4
- 2992: -96,6
- 2993: -98,3
- 2995: -89,7
- 2996: -95,-10
- 2997: -96,-12
- 2998: -97,-13
- 6172: -96,19
- 6173: -97,18
- 6183: -92,-6
- 6184: -92,21
- 6201: -68,-1
- 6380: -53,-9
- 6385: -59,-26
+ 2085: -58,-5
+ 2086: -50,-4
+ 2087: -57,0
+ 2088: -50,0
+ 2183: -58,-10
+ 2196: -50,-12
+ 2197: -53,-13
+ 2250: -80,-6
+ 2251: -84,-1
+ 2252: -83,6
+ 2253: -68,5
+ 2254: -68,13
+ 2255: -72,13
+ 2256: -72,16
+ 2257: -76,7
+ 2258: -84,12
+ 2259: -83,19
+ 2260: -81,20
+ 2261: -80,21
+ 2262: -97,4
+ 2263: -96,6
+ 2264: -98,3
+ 2266: -89,7
+ 2267: -95,-10
+ 2268: -96,-12
+ 2269: -97,-13
+ 4432: -96,19
+ 4433: -97,18
+ 4443: -92,-6
+ 4444: -92,21
+ 4461: -68,-1
- node:
color: '#FF974DFF'
id: BrickTileWhiteCornerSe
decals:
- 2178: 21,-6
- 2179: 28,-3
- 2180: 17,1
- 2233: 21,-12
+ 1570: 21,-6
+ 1571: 28,-3
+ 1572: 17,1
+ 1623: 21,-12
- node:
color: '#334E6DFF'
id: BrickTileWhiteCornerSw
decals:
- 1108: 4,35
- 1116: 9,37
- 1132: 16,35
- 1199: 9,45
- 1200: 5,47
- 1201: 9,42
- 1202: 21,45
- 1267: 21,48
- 1268: 25,48
- 1294: 16,54
- 1295: 17,53
- 1316: 14,54
- 1317: 15,53
- 1318: 16,52
- 1334: 26,54
- 1351: 4,27
- 1352: 11,27
- 1353: 17,24
- 1354: 6,23
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteCornerSw
- decals:
- 5893: 33,1
+ 781: 4,35
+ 789: 9,37
+ 805: 16,35
+ 872: 9,45
+ 873: 9,42
+ 874: 21,45
+ 937: 16,54
+ 938: 17,53
+ 959: 14,54
+ 960: 15,53
+ 961: 16,52
+ 977: 26,54
+ 994: 4,27
+ 995: 11,27
+ 996: 17,24
+ 997: 6,23
+ 5232: 5,48
+ 6094: 25,48
+ 6448: 5,58
- node:
color: '#7C45B5FF'
id: BrickTileWhiteCornerSw
decals:
- 2279: -43,19
- 2321: -42,9
- 2334: 33,-3
+ 1644: 33,-3
- node:
color: '#80C71FFF'
id: BrickTileWhiteCornerSw
decals:
- 6355: -30,5
- 6356: -28,5
- 6357: -26,5
- 6358: -24,5
- 6359: -22,5
- 6360: -20,5
- 6361: -18,5
- 6370: -15,5
+ 4571: -24,5
+ 4621: -23,5
+ 4622: -21,5
+ 4623: -19,5
+ 4624: -17,5
+ 4625: -15,5
+ 4626: -9,5
- node:
color: '#845606FF'
id: BrickTileWhiteCornerSw
decals:
- 3279: -31,-26
- 3280: -31,-22
- 3281: -23,-26
- 3282: -17,-22
- 3283: -11,-26
- 3284: -17,-31
- 3285: -14,-36
- 3286: -14,-43
- 4456: -20,-45
- 4461: -52,-50
- 4533: -23,-36
+ 2466: -31,-26
+ 2467: -31,-22
+ 2468: -11,-26
+ 2469: -17,-31
+ 2470: -14,-36
+ 5941: -14,-40
+ 5942: -12,-43
+ 6732: -26,-47
+ 6776: -32,-46
+ 6927: -17,-36
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteCornerSw
decals:
- 381: -30,12
- 382: -12,-3
- 383: -30,1
- 467: -30,-3
- 468: -24,-3
- 469: -18,-3
- 534: -9,1
- 535: -4,-3
- 1554: 5,9
- 1683: 8,-3
- 1853: -9,18
- 6293: 5,-11
- 6294: 5,-8
- 6295: 12,-12
- 6319: 6,-12
- - node:
- color: '#951710FF'
+ 5732: -41,8
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteCornerSw
decals:
- 6136: -29,44
+ 355: -30,12
+ 410: -24,-3
+ 411: -18,-3
+ 1212: 8,-3
+ 1346: -9,18
+ 4536: 5,-11
+ 4537: 5,-8
+ 4557: 6,-12
+ 4597: -23,1
+ 5381: -12,-6
+ 6455: 12,-11
+ 6463: 0,-3
+ 6468: -4,1
+ 6981: 8,9
+ 6985: 16,12
+ 6988: 18,9
+ 7057: 18,5
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteCornerSw
decals:
- 910: -28,53
- 911: -9,63
- 912: -5,63
- 920: -32,57
- 1010: -24,53
- 1011: -14,61
- 1012: -6,66
- 4408: -40,58
- 6169: -45,62
+ 622: -28,53
+ 623: -5,63
+ 628: -32,57
+ 690: -24,53
+ 691: -14,61
+ 3385: -40,58
+ 4429: -45,62
+ 6219: -45,58
+ 6242: -18,61
- node:
color: '#B02E26FF'
id: BrickTileWhiteCornerSw
decals:
- 636: -28,39
- 662: -31,39
- 667: -11,39
- 670: -8,38
- 741: -12,24
- 742: -8,23
- 743: -9,32
- 763: -23,24
- 797: -18,28
- 801: -23,28
- 831: -37,29
- 833: -37,33
- 854: -17,44
- 859: -19,39
- 4425: -34,37
+ 474: -11,39
+ 477: -8,38
+ 531: -12,24
+ 532: -8,23
+ 533: -9,32
+ 551: -23,24
+ 584: -18,28
+ 587: -23,28
+ 602: -37,33
+ 5492: -27,45
+ 5513: -27,48
+ 5539: -21,48
+ 6154: -3,38
+ 6411: -36,29
- node:
color: '#B04DB5FF'
id: BrickTileWhiteCornerSw
decals:
- 2403: 34,46
- 2404: 37,53
- 2405: 43,53
- 2406: 38,32
- 2408: 42,42
- 2409: 42,36
- 2410: 42,32
- 2411: 42,28
- 2412: 42,23
- 2413: 34,23
- 2414: 26,23
- 2415: 26,26
- 2422: 51,26
- 2501: 34,28
- 2683: 52,46
- 2694: 52,49
+ 1708: 34,46
+ 1709: 37,53
+ 1710: 43,53
+ 1711: 38,32
+ 1713: 42,42
+ 1714: 42,36
+ 1715: 42,32
+ 1716: 42,28
+ 1717: 42,23
+ 1718: 34,23
+ 1719: 26,23
+ 1720: 26,26
+ 1727: 51,26
+ 1805: 34,28
+ 1985: 52,46
+ 1996: 52,49
- node:
color: '#BA8841FF'
id: BrickTileWhiteCornerSw
decals:
- 1858: -52,16
- 1859: -52,20
- 1860: -56,11
- 1861: -64,15
- 1862: -58,33
- 1863: -50,33
- 1864: -66,22
- 1871: -52,25
- 1889: -57,29
+ 1351: -52,20
+ 1352: -56,11
+ 1353: -64,15
+ 1354: -50,33
+ 1355: -66,22
+ 1359: -52,25
+ 1372: -57,29
+ 4708: 17,-24
+ 6035: -56,33
+ 6363: -63,11
+ 6376: -52,11
+ 6391: -52,15
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteCornerSw
decals:
- 2781: -63,0
- 2782: -55,0
- 2783: -63,-5
- 2784: -56,-4
- 2883: -63,-10
- 2900: -56,-9
- 2915: -60,-13
- 2999: -90,-6
- 3000: -98,-13
- 3001: -99,3
- 3002: -94,7
- 3003: -87,6
- 3004: -81,7
- 3005: -86,-1
- 3006: -74,-1
- 3007: -74,5
- 3008: -74,13
- 3009: -70,13
- 3010: -86,12
- 3011: -87,19
- 3012: -89,20
- 3013: -90,21
- 3014: -98,18
- 6202: -70,-1
- 6386: -60,-26
+ 2081: -63,0
+ 2082: -55,0
+ 2083: -63,-5
+ 2084: -56,-4
+ 2182: -63,-10
+ 2209: -60,-13
+ 2270: -90,-6
+ 2271: -98,-13
+ 2272: -99,3
+ 2273: -94,7
+ 2274: -87,6
+ 2275: -81,7
+ 2276: -86,-1
+ 2277: -74,-1
+ 2278: -74,5
+ 2279: -74,13
+ 2280: -70,13
+ 2281: -86,12
+ 2282: -87,19
+ 2283: -89,20
+ 2284: -90,21
+ 2285: -98,18
+ 4462: -70,-1
- node:
color: '#FF974DFF'
id: BrickTileWhiteCornerSw
decals:
- 2182: 15,-6
- 2183: 12,-3
- 2194: 12,2
- 2232: 15,-12
+ 1574: 15,-6
+ 1575: 12,-3
+ 1585: 12,2
+ 1622: 15,-12
+ - node:
+ color: '#845606FF'
+ id: BrickTileWhiteEndN
+ decals:
+ 6719: -7,-19
- node:
color: '#B02E26FF'
- id: BrickTileWhiteEndE
+ id: BrickTileWhiteEndN
decals:
- 817: -25,29
+ 6410: -36,31
- node:
- color: '#334E6DFF'
+ color: '#845606FF'
id: BrickTileWhiteEndS
decals:
- 1256: 27,41
+ 6779: -30,-47
- node:
color: '#91D4FFFF'
id: BrickTileWhiteEndS
decals:
- 6292: 9,-13
- - node:
- color: '#B02E26FF'
- id: BrickTileWhiteEndW
- decals:
- 816: -31,29
+ 4535: 9,-13
- node:
color: '#334E6DFF'
id: BrickTileWhiteInnerNe
decals:
- 1100: 2,34
- 1147: 19,40
- 1303: 19,56
- 1330: 21,57
- 1402: 15,21
- 1403: 11,22
+ 774: 2,34
+ 820: 19,40
+ 946: 19,56
+ 973: 21,57
+ 1045: 15,21
+ 1046: 11,22
- node:
- color: '#7C45B5FF'
+ color: '#845606FF'
id: BrickTileWhiteInnerNe
decals:
- 2313: -44,17
- 2329: -38,12
+ 2570: -19,-25
+ 2571: -10,-41
+ 6721: -10,-20
+ 6761: -25,-42
+ 6935: -16,-34
- node:
- color: '#845606FF'
+ color: '#8932B8FF'
id: BrickTileWhiteInnerNe
decals:
- 3446: -16,-34
- 3447: -19,-25
- 3448: -10,-41
+ 5741: -38,12
- node:
color: '#91D4FFFF'
id: BrickTileWhiteInnerNe
decals:
- 1798: -25,-15
- 1799: 2,-13
+ 1302: 2,-13
+ 4594: -11,3
+ 6499: 2,3
+ 6999: 10,15
- node:
color: '#B02E26FF'
id: BrickTileWhiteInnerNe
decals:
- 744: -8,34
- 799: -12,30
- 848: -13,36
- 1071: -33,22
- 1078: -10,21
+ 609: -13,36
+ 748: -33,22
+ 755: -10,21
+ 5214: -13,30
+ 6417: -36,30
- node:
color: '#B04DB5FF'
id: BrickTileWhiteInnerNe
decals:
- 2356: 25,21
- 2369: 50,9
- 2677: 49,24
- 2678: 46,28
- 2681: 44,32
- 2697: 53,49
- 2701: 35,49
- 2702: 45,49
+ 1662: 25,21
+ 1675: 50,9
+ 1979: 49,24
+ 1980: 46,28
+ 1983: 44,32
+ 1999: 53,49
+ 2003: 35,49
+ 2004: 45,49
- node:
color: '#BA8841FF'
id: BrickTileWhiteInnerNe
decals:
- 2063: -60,30
- 2064: -59,27
- 2071: -53,36
+ 1515: -60,30
+ 1516: -59,27
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteInnerNe
decals:
- 3107: -73,14
- 3113: -96,26
- 3114: -97,28
- 3115: -98,12
- 3116: -97,10
- 3117: -83,-4
- 3118: -81,-5
- 6180: -96,-5
- 6181: -97,-3
- 6198: -95,22
+ 2378: -73,14
+ 2384: -96,26
+ 2385: -97,28
+ 2386: -98,12
+ 2387: -97,10
+ 2388: -83,-4
+ 2389: -81,-5
+ 4440: -96,-5
+ 4441: -97,-3
+ 4458: -95,22
- node:
color: '#FF974DFF'
id: BrickTileWhiteInnerNe
decals:
- 2199: 16,-1
- 2209: 17,-2
+ 1589: 16,-1
+ 1599: 17,-2
- node:
color: '#334E6DFF'
id: BrickTileWhiteInnerNw
decals:
- 1146: 17,40
- 1287: 23,50
- 1288: 24,51
- 1302: 17,56
- 1327: 15,57
- 1401: 22,21
- 1404: 7,22
- - node:
- color: '#7C45B5FF'
- id: BrickTileWhiteInnerNw
- decals:
- 2310: -40,17
- 2311: -37,19
- 2312: -36,20
- 2330: -40,12
- 2331: -41,10
+ 819: 17,40
+ 931: 24,51
+ 945: 17,56
+ 970: 15,57
+ 1044: 22,21
+ 1047: 7,22
+ 6100: 28,51
- node:
color: '#845606FF'
id: BrickTileWhiteInnerNw
decals:
- 3441: -17,-25
- 3442: -5,-24
- 3443: -14,-34
+ 2568: -17,-25
+ 2569: -5,-24
+ 6720: -7,-20
+ 6760: -17,-42
+ 6934: -14,-34
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteInnerNw
decals:
- 526: -15,13
- 533: -12,3
- 555: -4,3
- 1797: -13,-15
- 1800: 0,-13
- 1805: 37,-14
- 4542: 6,15
+ 5742: -40,12
- node:
- color: '#951710FF'
+ color: '#91D4FFFF'
id: BrickTileWhiteInnerNw
decals:
- 6156: -28,47
+ 458: -15,13
+ 465: -12,3
+ 1303: 0,-13
+ 1308: 37,-14
+ 6498: 0,3
+ 7000: 18,15
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteInnerNw
decals:
- 1080: 0,62
+ 757: 0,62
- node:
color: '#B02E26FF'
id: BrickTileWhiteInnerNw
decals:
- 685: -9,42
- 745: -6,34
- 746: -7,26
- 800: -14,30
- 1077: -4,21
+ 488: -9,42
+ 534: -6,34
+ 535: -7,26
+ 586: -14,30
+ 754: -4,21
- node:
color: '#B04DB5FF'
id: BrickTileWhiteInnerNw
decals:
- 2679: 48,28
- 2682: 46,32
- 2698: 53,47
- 2699: 49,49
- 2700: 39,49
+ 1981: 48,28
+ 1984: 46,32
+ 2000: 53,47
+ 2001: 49,49
+ 2002: 39,49
- node:
color: '#BA8841FF'
id: BrickTileWhiteInnerNw
decals:
- 2068: -65,27
- 2069: -64,30
- 2070: -57,36
- 2082: -46,9
+ 1520: -65,27
+ 1521: -64,30
+ 1532: -46,9
+ 6372: -60,12
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteInnerNw
decals:
- 3111: -89,-5
- 3112: -87,-4
- 3145: -48,-2
+ 2382: -89,-5
+ 2383: -87,-4
+ 2416: -48,-2
- node:
color: '#FF974DFF'
id: BrickTileWhiteInnerNw
decals:
- 2197: 13,0
+ 1588: 13,0
- node:
color: '#334E6DFF'
id: BrickTileWhiteInnerSe
decals:
- 1101: 2,43
- 1241: 7,52
- 1276: 23,49
- 1301: 19,54
- 1328: 20,53
- 1329: 21,54
- 1405: 11,23
- - node:
- color: '#7C45B5FF'
- id: BrickTileWhiteInnerSe
- decals:
- 2299: -42,21
- 2300: -39,22
- 2301: -37,23
+ 909: 7,52
+ 944: 19,54
+ 971: 20,53
+ 972: 21,54
+ 1048: 11,23
- node:
color: '#845606FF'
id: BrickTileWhiteInnerSe
decals:
- 3252: -32,-17
- 3445: -16,-35
- 4532: -48,-45
+ 2451: -32,-17
+ 6780: -30,-46
+ 6932: -16,-35
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteInnerSe
decals:
- 1693: 10,5
- 1852: -32,19
- 1856: 2,17
- 6328: 10,-6
- 6329: 9,-12
+ 5756: -41,15
- node:
- color: '#951710FF'
+ color: '#91D4FFFF'
id: BrickTileWhiteInnerSe
decals:
- 6155: -23,47
+ 1345: -32,19
+ 1349: 2,17
+ 4566: 10,-6
+ 4567: 9,-12
+ 4595: -11,1
+ 6496: 2,1
+ 6995: 12,13
+ 6998: 10,12
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteInnerSe
decals:
- 1029: -16,63
- 1031: -26,61
+ 706: -16,63
+ 708: -26,61
+ 6244: -26,63
- node:
color: '#B02E26FF'
id: BrickTileWhiteInnerSe
decals:
- 683: -6,39
- 815: -20,29
- 4440: -33,44
+ 486: -6,39
+ 600: -20,29
- node:
color: '#BA8841FF'
id: BrickTileWhiteInnerSe
decals:
- 2067: -54,29
+ 1519: -54,29
+ 4714: 20,-22
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteInnerSe
decals:
- 2804: -57,2
- 2946: -53,-12
- 3092: -97,-12
- 3093: -96,-10
- 3094: -98,4
- 3095: -97,6
- 3101: -81,21
- 3102: -83,20
- 3108: -73,16
- 6174: -97,19
- 6175: -96,21
- 6187: -95,-6
+ 2104: -57,2
+ 2217: -53,-12
+ 2363: -97,-12
+ 2364: -96,-10
+ 2365: -98,4
+ 2366: -97,6
+ 2372: -81,21
+ 2373: -83,20
+ 2379: -73,16
+ 4434: -97,19
+ 4435: -96,21
+ 4447: -95,-6
- node:
color: '#FF974DFF'
id: BrickTileWhiteInnerSe
decals:
- 2195: 16,1
- 2200: 21,-3
+ 1586: 16,1
+ 1590: 21,-3
- node:
color: '#334E6DFF'
id: BrickTileWhiteInnerSw
decals:
- 1255: 27,45
- 1275: 25,49
- 1304: 17,54
- 1331: 15,54
- 1406: 7,23
+ 947: 17,54
+ 974: 15,54
+ 1049: 7,23
- node:
color: '#845606FF'
id: BrickTileWhiteInnerSw
decals:
- 3176: -6,-17
- 3444: -14,-35
+ 2442: -6,-17
+ 5945: -12,-40
+ 6781: -30,-46
+ 6933: -14,-35
- node:
color: '#91D4FFFF'
id: BrickTileWhiteInnerSw
decals:
- 527: -12,12
- 532: -12,1
- 554: -4,1
- 1854: -9,19
- 1855: 0,17
- 1857: 36,18
- 6330: 6,-11
+ 459: -12,12
+ 464: -12,1
+ 1347: -9,19
+ 1348: 0,17
+ 1350: 36,18
+ 4568: 6,-11
+ 6497: 0,1
+ 6996: 16,13
+ 6997: 18,12
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteInnerSw
decals:
- 1030: -14,63
- 1081: 0,69
- 4412: -40,62
+ 707: -14,63
+ 758: 0,69
+ 3389: -40,62
+ 6245: -18,63
- node:
color: '#B02E26FF'
id: BrickTileWhiteInnerSw
decals:
- 684: -8,39
- 747: -8,24
- 814: -18,29
- 857: -14,44
+ 487: -8,39
+ 536: -8,24
+ 599: -18,29
+ 5479: -14,45
- node:
color: '#B04DB5FF'
id: BrickTileWhiteInnerSw
decals:
- 2696: 53,49
+ 1998: 53,49
- node:
color: '#BA8841FF'
id: BrickTileWhiteInnerSw
decals:
- 2065: -56,29
+ 1517: -56,29
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteInnerSw
decals:
- 2805: -55,2
- 3109: -87,20
- 3110: -89,21
- 3136: -48,7
+ 2105: -55,2
+ 2380: -87,20
+ 2381: -89,21
+ 2407: -48,7
- node:
color: '#FF974DFF'
id: BrickTileWhiteInnerSw
decals:
- 2196: 13,2
- 2198: 15,-3
+ 1587: 13,2
+ 6515: 15,-3
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineE
decals:
- 1086: 7,41
- 1087: 7,40
- 1088: 7,39
- 1089: 7,38
- 1090: 7,37
- 1091: 7,36
- 1092: 2,42
- 1093: 2,41
- 1094: 2,40
- 1095: 2,39
- 1096: 2,38
- 1097: 2,37
- 1098: 2,36
- 1099: 2,35
- 1119: 14,38
- 1120: 14,39
- 1142: 20,39
- 1143: 20,38
- 1144: 20,37
- 1145: 20,36
- 1157: 19,49
- 1158: 19,48
- 1159: 19,47
- 1160: 19,46
- 1161: 19,44
- 1162: 19,45
- 1163: 19,43
- 1164: 19,42
- 1165: 19,41
- 1170: 3,48
- 1171: 3,49
- 1172: 3,50
- 1173: 3,51
- 1174: 3,52
- 1175: 3,53
- 1176: 3,54
- 1177: 3,55
- 1178: 3,56
- 1179: 11,53
- 1180: 11,54
- 1181: 11,55
- 1182: 15,49
- 1183: 15,48
- 1184: 15,47
- 1185: 15,46
- 1186: 7,50
- 1187: 7,49
- 1188: 7,51
- 1208: 7,48
- 1254: 27,45
- 1257: 27,44
- 1258: 27,43
- 1259: 27,42
- 1278: 29,49
- 1279: 29,50
- 1280: 29,51
- 1298: 20,55
- 1308: 22,55
- 1309: 22,56
- 1338: 28,55
- 1369: 12,24
- 1370: 20,25
- 1371: 20,26
- 1372: 20,27
- 1373: 20,28
- 1374: 9,28
- 1375: 9,29
- 1376: 14,28
- 1377: 14,29
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteLineE
- decals:
- 5900: 36,2
+ 763: 7,41
+ 764: 7,40
+ 765: 7,39
+ 766: 7,38
+ 767: 7,37
+ 768: 7,36
+ 769: 2,39
+ 770: 2,38
+ 771: 2,37
+ 772: 2,36
+ 773: 2,35
+ 792: 14,38
+ 793: 14,39
+ 815: 20,39
+ 816: 20,38
+ 817: 20,37
+ 818: 20,36
+ 830: 19,49
+ 831: 19,48
+ 832: 19,47
+ 833: 19,46
+ 834: 19,44
+ 835: 19,45
+ 836: 19,43
+ 837: 19,42
+ 838: 19,41
+ 843: 3,48
+ 844: 3,49
+ 845: 3,50
+ 846: 3,51
+ 847: 3,52
+ 848: 3,53
+ 849: 3,54
+ 850: 3,55
+ 851: 3,56
+ 852: 11,53
+ 853: 11,54
+ 854: 11,55
+ 855: 15,49
+ 856: 15,48
+ 857: 15,47
+ 858: 15,46
+ 859: 7,50
+ 860: 7,49
+ 861: 7,51
+ 928: 29,49
+ 929: 29,50
+ 930: 29,51
+ 941: 20,55
+ 951: 22,55
+ 952: 22,56
+ 981: 28,55
+ 1012: 12,24
+ 1013: 20,25
+ 1014: 20,26
+ 1015: 20,27
+ 1016: 20,28
+ 1017: 9,28
+ 1018: 9,29
+ 1019: 14,28
+ 1020: 14,29
+ 6439: 3,58
+ 6440: 3,59
+ 6441: 3,60
+ 6442: 3,61
+ 6443: 3,62
+ 6449: 6,59
+ 6450: 6,60
+ 6451: 6,61
- node:
color: '#7C45B5FF'
id: BrickTileWhiteLineE
decals:
- 2284: -42,20
- 2326: -37,10
- 2327: -37,11
- 2338: 36,-2
+ 1648: 36,-2
- node:
color: '#80C71FFF'
id: BrickTileWhiteLineE
decals:
- 6362: -17,6
- 6363: -19,6
- 6364: -21,6
- 6365: -23,6
- 6366: -25,6
- 6367: -27,6
- 6368: -29,6
- 6369: -14,6
+ 4572: -14,6
+ 4610: -16,6
+ 4611: -18,6
+ 4612: -20,6
+ 4613: -22,6
+ 4614: -6,6
- node:
color: '#845606FF'
id: BrickTileWhiteLineE
decals:
- 3296: -4,-24
- 3297: -4,-25
- 3298: -7,-21
- 3299: -7,-20
- 3300: -19,-20
- 3301: -19,-21
- 3302: -19,-22
- 3303: -19,-23
- 3304: -19,-24
- 3305: -13,-25
- 3306: -25,-21
- 3307: -25,-20
- 3308: -25,-25
- 3309: -19,-29
- 3310: -19,-30
- 3311: -19,-31
- 3312: -19,-32
- 3313: -19,-33
- 3314: -10,-35
- 3315: -10,-34
- 3316: -10,-30
- 3317: -10,-29
- 3319: -10,-39
- 3320: -10,-40
- 3321: -7,-42
- 3322: -16,-39
- 3323: -16,-40
- 3324: -16,-41
- 4463: -16,-42
- 4464: -16,-43
- 4465: -16,-44
- 4527: -48,-49
- 4528: -48,-46
- 4529: -22,-44
- 4530: -22,-43
- 4531: -22,-42
- 5851: -48,-47
- 5852: -48,-48
+ 2478: -4,-24
+ 2479: -4,-25
+ 2480: -7,-21
+ 2481: -7,-20
+ 2482: -19,-22
+ 2483: -13,-25
+ 2484: -25,-21
+ 2485: -25,-20
+ 2486: -25,-25
+ 2487: -10,-35
+ 2488: -10,-34
+ 2489: -10,-30
+ 2490: -10,-29
+ 2492: -10,-40
+ 2493: -7,-42
+ 6711: -19,-20
+ 6712: -19,-21
+ 6713: -19,-23
+ 6714: -19,-24
+ 6745: -16,-40
+ 6746: -16,-41
+ 6747: -16,-42
+ 6748: -16,-43
+ 6749: -16,-44
+ 6750: -16,-45
+ 6751: -16,-46
+ 6767: -28,-42
+ 6768: -28,-43
+ 6769: -28,-44
+ 6770: -28,-45
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteLineE
decals:
- 386: -11,-2
- 387: -11,-1
- 388: -11,0
- 389: -11,1
- 390: -11,2
- 391: -11,3
- 392: -11,4
- 393: -11,5
- 394: -11,6
- 395: -11,7
- 396: -11,8
- 397: -11,9
- 398: -11,10
- 399: -11,11
- 400: -11,12
- 401: -11,13
- 402: -11,14
- 403: -11,15
- 456: -26,-2
- 457: -20,-2
- 458: -14,-2
- 459: -36,10
- 538: 6,-2
- 539: 6,-1
- 540: 6,0
- 541: 6,1
- 542: 6,2
- 543: 6,3
- 544: 6,4
- 545: 6,5
- 546: 6,6
- 1557: 13,10
- 1558: 13,11
- 1559: 13,12
- 1560: 13,13
- 1561: 13,14
- 1562: 13,15
- 1653: 31,6
- 1677: 10,4
- 1678: 10,3
- 1679: 10,2
- 1680: 10,1
- 1681: 10,0
- 1682: 10,-1
- 1717: 2,10
- 1718: 2,9
- 1719: 2,11
- 1720: 2,12
- 1721: 2,13
- 1722: 2,14
- 1723: 2,15
- 1724: 2,16
- 1741: 2,-12
- 1742: 2,-11
- 1743: 2,-10
- 1744: 2,-9
- 1745: 2,-8
- 1746: 2,-7
- 1747: 2,-6
- 1748: 2,-5
- 2251: 10,-2
- 6296: 10,-11
- 6297: 10,-10
- 6298: 10,-9
- 6299: 10,-8
- 6300: 10,-7
- 6301: 13,-9
- 6302: 13,-10
- 6303: 13,-11
- 6304: 7,-11
- 6305: 7,-7
- 6306: 7,-6
- - node:
- color: '#951710FF'
+ 5738: -35,9
+ 5739: -35,10
+ 5740: -35,11
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteLineE
decals:
- 6153: -23,45
- 6154: -23,46
+ 356: -11,-2
+ 357: -11,-1
+ 358: -11,0
+ 359: -11,4
+ 360: -11,5
+ 361: -11,6
+ 362: -11,7
+ 363: -11,8
+ 364: -11,9
+ 365: -11,10
+ 366: -11,11
+ 367: -11,12
+ 368: -11,13
+ 369: -11,14
+ 370: -11,15
+ 404: -20,-2
+ 405: -14,-2
+ 466: 6,2
+ 1190: 31,6
+ 1206: 10,4
+ 1207: 10,3
+ 1208: 10,2
+ 1209: 10,1
+ 1210: 10,0
+ 1211: 10,-1
+ 1233: 2,10
+ 1234: 2,9
+ 1235: 2,11
+ 1236: 2,12
+ 1237: 2,13
+ 1238: 2,14
+ 1239: 2,15
+ 1240: 2,16
+ 1257: 2,-12
+ 1258: 2,-11
+ 1259: 2,-10
+ 1260: 2,-9
+ 1261: 2,-8
+ 1262: 2,-7
+ 1263: 2,-6
+ 1264: 2,-5
+ 1641: 10,-2
+ 4538: 10,-11
+ 4539: 10,-10
+ 4540: 10,-9
+ 4541: 10,-8
+ 4542: 10,-7
+ 4543: 13,-9
+ 4544: 7,-11
+ 4545: 7,-7
+ 4546: 7,-6
+ 5383: -11,-5
+ 5384: -11,-4
+ 5385: -11,-3
+ 6456: 13,-10
+ 6472: 2,6
+ 6473: 2,5
+ 6474: 2,-2
+ 6475: 2,-1
+ 6491: 2,4
+ 6492: 2,0
+ 6514: -6,2
+ 6972: 20,10
+ 6973: 20,11
+ 6974: 20,12
+ 6975: 20,13
+ 6976: 20,14
+ 6977: 20,15
+ 6978: 10,10
+ 6979: 10,11
+ 7053: 10,6
+ 7054: 10,5
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteLineE
decals:
- 955: -2,67
- 956: -11,63
- 957: -11,62
- 958: -19,58
- 959: -19,57
- 960: -19,56
- 961: -19,55
- 962: -19,54
- 963: -26,60
- 964: -26,59
- 965: -26,58
- 966: -26,57
- 967: -26,56
- 968: -26,55
- 969: -26,54
- 970: -30,61
- 971: -30,60
- 972: -30,59
- 973: -30,58
- 1014: -16,62
- 4385: -36,63
- 4386: -36,62
- 4387: -36,61
- 4388: -36,60
- 4389: -36,59
- 4390: -36,65
- 4391: -36,64
- 4392: -36,66
+ 650: -11,63
+ 651: -11,62
+ 652: -19,57
+ 653: -19,56
+ 654: -19,55
+ 655: -19,54
+ 656: -26,60
+ 657: -26,59
+ 658: -26,58
+ 659: -26,57
+ 660: -26,56
+ 661: -26,55
+ 662: -26,54
+ 663: -30,61
+ 664: -30,60
+ 665: -30,59
+ 666: -30,58
+ 693: -16,62
+ 3362: -36,63
+ 3363: -36,62
+ 3364: -36,61
+ 3365: -36,60
+ 3366: -36,59
+ 3367: -36,65
+ 3368: -36,64
+ 3369: -36,66
+ 6221: -42,59
+ 6231: -26,61
+ 6232: -26,62
- node:
color: '#B02E26FF'
id: BrickTileWhiteLineE
decals:
- 648: -21,41
- 649: -21,40
- 656: -30,40
- 657: -30,41
- 678: -5,42
- 679: -5,41
- 680: -5,40
- 686: -13,44
- 687: -13,43
- 688: -13,42
- 689: -13,41
- 690: -13,40
- 691: -13,39
- 692: -13,38
- 693: -13,37
- 694: -12,35
- 695: -12,34
- 696: -12,33
- 697: -12,32
- 698: -12,31
- 699: -9,29
- 700: -5,29
- 701: -5,28
- 702: -5,27
- 703: -5,26
- 704: -5,25
- 705: -5,24
- 706: -14,25
- 707: -33,34
- 708: -33,30
- 709: -17,41
- 710: -17,40
- 758: -5,33
- 759: -5,34
- 4428: -32,45
- 4429: -32,46
- 4430: -32,47
- 4431: -32,48
- 4432: -32,49
- 4433: -32,50
- 4434: -33,43
- 4435: -33,42
- 4436: -33,41
- 4437: -33,40
- 4438: -33,39
- 4439: -33,38
+ 483: -5,40
+ 489: -13,43
+ 490: -13,42
+ 491: -13,41
+ 492: -13,40
+ 493: -13,39
+ 494: -13,38
+ 495: -13,37
+ 496: -5,29
+ 497: -5,28
+ 498: -5,27
+ 499: -5,26
+ 500: -5,25
+ 501: -5,24
+ 502: -14,25
+ 503: -33,34
+ 546: -5,33
+ 547: -5,34
+ 5212: -9,29
+ 5215: -13,31
+ 5216: -13,32
+ 5217: -13,33
+ 5218: -13,34
+ 5219: -13,35
+ 5220: -13,36
+ 5495: -13,44
+ 5496: -13,45
+ 5514: -26,49
+ 5515: -26,50
+ 5541: -17,49
+ 5542: -17,50
+ 6156: -2,39
- node:
color: '#B04DB5FF'
id: BrickTileWhiteLineE
decals:
- 2358: 50,20
- 2359: 50,19
- 2360: 50,18
- 2361: 50,17
- 2362: 50,16
- 2363: 50,15
- 2364: 50,14
- 2365: 50,13
- 2366: 50,12
- 2367: 50,11
- 2368: 50,10
- 2536: 32,29
- 2537: 32,28
- 2538: 32,27
- 2539: 40,29
- 2540: 40,25
- 2541: 40,24
- 2542: 49,25
- 2543: 49,29
- 2544: 46,29
- 2545: 50,37
- 2546: 50,38
- 2547: 50,39
- 2548: 49,33
- 2549: 44,33
- 2550: 40,43
- 2551: 40,42
- 2552: 40,41
- 2553: 40,40
- 2554: 40,39
- 2555: 40,38
- 2556: 40,37
- 2557: 40,36
- 2558: 40,35
- 2559: 40,34
- 2560: 40,33
- 2561: 50,47
- 2562: 50,48
- 2563: 50,49
- 2564: 50,50
- 2565: 35,50
- 2566: 45,50
- 2567: 41,54
- 2568: 41,55
- 2569: 41,56
- 2570: 47,56
- 2571: 47,55
- 2572: 47,54
- 2573: 49,43
- 2660: 63,29
- 2661: 63,28
- 2662: 63,27
- 2687: 53,50
- 2688: 54,48
- 2689: 54,47
+ 1664: 50,20
+ 1665: 50,19
+ 1666: 50,18
+ 1667: 50,17
+ 1668: 50,16
+ 1669: 50,15
+ 1670: 50,14
+ 1671: 50,13
+ 1672: 50,12
+ 1673: 50,11
+ 1674: 50,10
+ 1840: 32,29
+ 1841: 32,28
+ 1842: 32,27
+ 1843: 40,29
+ 1844: 40,25
+ 1845: 40,24
+ 1846: 49,25
+ 1847: 49,29
+ 1848: 46,29
+ 1849: 50,37
+ 1850: 50,38
+ 1851: 50,39
+ 1852: 49,33
+ 1853: 44,33
+ 1854: 40,43
+ 1855: 40,42
+ 1856: 40,41
+ 1857: 40,40
+ 1858: 40,39
+ 1859: 40,38
+ 1860: 40,37
+ 1861: 40,36
+ 1862: 40,35
+ 1863: 40,34
+ 1864: 40,33
+ 1865: 50,47
+ 1866: 50,48
+ 1867: 50,49
+ 1868: 50,50
+ 1869: 35,50
+ 1870: 45,50
+ 1871: 41,54
+ 1872: 41,55
+ 1873: 41,56
+ 1874: 47,56
+ 1875: 47,55
+ 1876: 47,54
+ 1962: 63,29
+ 1963: 63,28
+ 1964: 63,27
+ 1989: 53,50
+ 1990: 54,48
+ 1991: 54,47
+ 4738: 49,43
- node:
color: '#BA8841FF'
id: BrickTileWhiteLineE
decals:
- 1976: -60,35
- 1977: -60,34
- 1978: -60,33
- 1979: -60,32
- 1980: -60,31
- 1981: -52,34
- 1982: -52,35
- 1983: -42,34
- 1984: -42,30
- 1985: -48,26
- 1986: -48,22
- 1987: -48,21
- 1988: -48,17
- 1989: -54,12
- 1990: -54,13
- 1991: -54,14
- 1992: -54,15
- 1993: -54,16
- 1994: -54,17
- 1995: -58,16
- 1996: -58,17
- 1997: -58,18
- 1998: -58,19
- 1999: -54,18
- 2000: -54,19
- 2001: -54,20
- 2002: -54,21
- 2003: -54,22
- 2004: -54,23
- 2005: -54,24
- 2006: -54,25
- 2007: -54,26
- 2008: -54,27
- 2009: -54,28
- 2057: -58,26
- 2058: -58,25
- 2059: -58,24
- 2060: -58,23
- 2061: -59,29
- 2062: -59,28
+ 1434: -60,35
+ 1435: -60,34
+ 1436: -60,33
+ 1437: -60,32
+ 1438: -60,31
+ 1439: -48,26
+ 1440: -48,22
+ 1441: -48,21
+ 1442: -48,17
+ 1443: -54,12
+ 1444: -54,13
+ 1445: -54,14
+ 1446: -54,15
+ 1447: -54,16
+ 1448: -54,17
+ 1449: -58,16
+ 1450: -58,17
+ 1451: -58,18
+ 1452: -58,19
+ 1453: -54,18
+ 1454: -54,19
+ 1455: -54,20
+ 1456: -54,21
+ 1457: -54,22
+ 1458: -54,23
+ 1459: -54,24
+ 1460: -54,25
+ 1461: -54,26
+ 1462: -54,27
+ 1463: -54,28
+ 1509: -58,26
+ 1510: -58,25
+ 1511: -58,24
+ 1512: -58,23
+ 1513: -59,29
+ 1514: -59,28
+ 4713: 20,-23
+ 4726: 23,-20
+ 4727: 23,-21
+ 6027: -54,34
+ 6028: -54,35
+ 6029: -54,36
+ 6038: -44,30
+ 6086: -44,34
+ 6371: -58,12
+ 6377: -48,12
+ 6388: -48,16
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteLineE
decals:
- 2789: -50,4
- 2790: -50,3
- 2791: -50,2
- 2792: -50,1
- 2793: -50,-3
- 2794: -58,-3
- 2795: -58,-4
- 2796: -57,1
- 2812: -68,10
- 2813: -68,9
- 2814: -68,8
- 2815: -68,7
- 2816: -68,6
- 2817: -68,16
- 2818: -68,15
- 2819: -68,14
- 2820: -73,15
- 2821: -76,8
- 2822: -83,9
- 2823: -83,8
- 2824: -83,7
- 2825: -89,8
- 2826: -96,9
- 2827: -96,8
- 2828: -84,16
- 2829: -84,15
- 2830: -84,14
- 2831: -84,13
- 2832: -84,3
- 2833: -84,2
- 2834: -84,1
- 2835: -84,0
- 2836: -95,-7
- 2837: -95,-8
- 2838: -95,-9
- 2894: -58,-8
- 2895: -58,-9
- 2918: -59,-16
- 2919: -59,-17
- 2920: -59,-18
- 2921: -59,-19
- 2922: -59,-20
- 2923: -59,-21
- 2924: -59,-22
- 2925: -59,-23
- 2926: -59,-24
- 2927: -59,-25
- 2928: -53,-31
- 2994: -96,7
- 3071: -95,25
- 3072: -95,24
- 3073: -95,23
- 3091: -96,-11
- 3096: -97,11
- 3097: -97,5
- 3098: -96,27
- 6176: -96,20
- 6177: -96,-4
- 6203: -68,0
- 6204: -68,1
- 6205: -68,2
- 6381: -53,-8
- 6382: -53,-7
- - node:
- color: '#D4D4D428'
- id: BrickTileWhiteLineE
- decals:
- 460: -36,10
+ 2089: -50,4
+ 2090: -50,3
+ 2091: -50,2
+ 2092: -50,1
+ 2093: -50,-3
+ 2094: -58,-3
+ 2095: -58,-4
+ 2096: -57,1
+ 2112: -68,10
+ 2113: -68,9
+ 2114: -68,8
+ 2115: -68,7
+ 2116: -68,6
+ 2117: -68,16
+ 2118: -68,15
+ 2119: -68,14
+ 2120: -73,15
+ 2121: -76,8
+ 2122: -83,9
+ 2123: -83,8
+ 2124: -83,7
+ 2125: -89,8
+ 2126: -96,9
+ 2127: -96,8
+ 2128: -84,16
+ 2129: -84,15
+ 2130: -84,14
+ 2131: -84,13
+ 2132: -84,3
+ 2133: -84,2
+ 2134: -84,1
+ 2135: -84,0
+ 2136: -95,-7
+ 2137: -95,-8
+ 2138: -95,-9
+ 2192: -58,-8
+ 2193: -58,-9
+ 2265: -96,7
+ 2342: -95,25
+ 2343: -95,24
+ 2344: -95,23
+ 2362: -96,-11
+ 2367: -97,11
+ 2368: -97,5
+ 2369: -96,27
+ 4436: -96,20
+ 4437: -96,-4
+ 4463: -68,0
+ 4464: -68,1
+ 4465: -68,2
- node:
color: '#FF974DFF'
id: BrickTileWhiteLineE
decals:
- 2187: 17,2
- 2188: 16,0
- 2189: 21,-4
- 2190: 21,-5
- 2229: 21,-9
- 2230: 21,-10
- 2231: 21,-11
+ 1579: 17,2
+ 1580: 21,-4
+ 1581: 21,-5
+ 1619: 21,-9
+ 1620: 21,-10
+ 1621: 21,-11
+ 6516: 16,0
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineN
decals:
- 1084: 5,42
- 1085: 6,42
- 1110: 10,40
- 1111: 11,40
- 1112: 12,40
- 1113: 13,40
- 1134: 18,50
- 1189: 10,56
- 1190: 9,56
- 1191: 8,56
- 1192: 7,56
- 1193: 6,56
- 1194: 10,50
- 1195: 11,50
- 1196: 12,50
- 1197: 13,50
- 1198: 14,50
- 1215: 10,43
- 1216: 11,43
- 1217: 12,43
- 1218: 13,43
- 1219: 14,43
- 1243: 22,46
- 1244: 23,46
- 1245: 24,46
- 1246: 25,46
- 1247: 26,46
- 1282: 22,50
- 1283: 25,52
- 1284: 26,52
- 1285: 27,52
- 1286: 28,52
- 1289: 18,57
- 1322: 16,58
- 1323: 17,58
- 1324: 18,58
- 1325: 19,58
- 1326: 20,58
- 1337: 27,56
- 1356: 5,30
- 1357: 6,30
- 1358: 7,30
- 1359: 8,30
- 1360: 12,30
- 1361: 13,30
- 1362: 18,29
- 1363: 19,29
- 1364: 7,25
- 1365: 8,25
- 1366: 9,25
- 1367: 10,25
- 1368: 11,25
- 1395: 16,21
- 1396: 17,21
- 1397: 18,21
- 1398: 19,21
- 1399: 20,21
- 1400: 21,21
- - node:
- color: '#354DA0FF'
+ 761: 5,42
+ 762: 6,42
+ 783: 10,40
+ 784: 11,40
+ 785: 12,40
+ 786: 13,40
+ 807: 18,50
+ 862: 10,56
+ 863: 9,56
+ 864: 8,56
+ 865: 7,56
+ 866: 6,56
+ 867: 10,50
+ 868: 11,50
+ 869: 12,50
+ 870: 13,50
+ 871: 14,50
+ 885: 10,43
+ 886: 11,43
+ 887: 12,43
+ 888: 13,43
+ 889: 14,43
+ 911: 22,46
+ 912: 23,46
+ 913: 24,46
+ 914: 25,46
+ 915: 26,46
+ 932: 18,57
+ 965: 16,58
+ 966: 17,58
+ 967: 18,58
+ 968: 19,58
+ 969: 20,58
+ 980: 27,56
+ 999: 5,30
+ 1000: 6,30
+ 1001: 7,30
+ 1002: 8,30
+ 1003: 12,30
+ 1004: 13,30
+ 1005: 18,29
+ 1006: 19,29
+ 1007: 7,25
+ 1008: 8,25
+ 1009: 9,25
+ 1010: 10,25
+ 1011: 11,25
+ 1038: 16,21
+ 1039: 17,21
+ 1040: 18,21
+ 1041: 19,21
+ 1042: 20,21
+ 1043: 21,21
+ 6098: 26,51
+ 6101: 27,51
+ 6106: 27,46
+ 6107: 28,46
+ - node:
+ color: '#7C45B5FF'
id: BrickTileWhiteLineN
decals:
- 5896: 35,3
- 5897: 34,3
+ 1646: 34,-1
+ 1647: 35,-1
- node:
- color: '#7C45B5FF'
+ color: '#80C71FFF'
id: BrickTileWhiteLineN
decals:
- 2290: -42,24
- 2291: -41,24
- 2292: -40,24
- 2293: -39,24
- 2294: -38,24
- 2295: -37,24
- 2304: -43,17
- 2305: -42,17
- 2306: -41,17
- 2307: -39,19
- 2308: -38,19
- 2314: -39,13
- 2336: 34,-1
- 2337: 35,-1
+ 4635: -8,7
+ 4636: -7,7
- node:
color: '#845606FF'
id: BrickTileWhiteLineN
decals:
- 3146: -16,-19
- 3147: -15,-19
- 3148: -14,-19
- 3149: -13,-19
- 3150: -11,-19
- 3151: -12,-19
- 3152: -10,-19
- 3153: -9,-19
- 3154: -8,-19
- 3350: -22,-19
- 3351: -21,-19
- 3352: -20,-19
- 3353: -30,-19
- 3354: -29,-19
- 3355: -27,-19
- 3356: -26,-19
- 3357: -30,-24
- 3358: -29,-24
- 3359: -28,-24
- 3360: -27,-24
- 3361: -26,-24
- 3362: -21,-28
- 3363: -20,-28
- 3364: -16,-28
- 3365: -15,-28
- 3366: -14,-28
- 3367: -13,-28
- 3368: -12,-28
- 3369: -11,-28
- 3370: -11,-33
- 3371: -12,-33
- 3372: -13,-33
- 3373: -13,-38
- 3374: -12,-38
- 3375: -11,-38
- 3376: -9,-41
- 3377: -8,-41
- 3378: -17,-38
- 3379: -18,-38
- 3380: -19,-38
- 3381: -18,-25
- 3396: -15,-34
- 3427: -6,-24
- 3428: -7,-24
- 3429: -8,-24
- 3430: -9,-24
- 3431: -10,-24
- 3432: -14,-24
- 3433: -15,-24
- 3434: -16,-24
- 4502: -23,-41
- 4503: -24,-41
- 4504: -25,-41
- 4505: -26,-41
- 4506: -27,-41
- 4507: -28,-41
- 4508: -31,-41
- 4509: -32,-41
- 4510: -33,-41
- 4511: -36,-41
- 4512: -37,-41
- 4513: -38,-41
- 4514: -39,-41
- 4515: -40,-41
- 4516: -41,-41
- 4517: -42,-41
- 4518: -43,-41
- 4519: -44,-41
- 4520: -45,-41
- 4521: -46,-41
- 4522: -47,-41
- 4523: -48,-41
- 4524: -49,-41
- 4525: -50,-41
- 4526: -51,-41
- 4537: -22,-28
+ 2417: -14,-19
+ 2418: -13,-19
+ 2419: -11,-19
+ 2420: -12,-19
+ 2502: -30,-19
+ 2503: -29,-19
+ 2504: -27,-19
+ 2505: -26,-19
+ 2506: -30,-24
+ 2507: -29,-24
+ 2508: -28,-24
+ 2509: -27,-24
+ 2510: -26,-24
+ 2511: -21,-28
+ 2512: -16,-28
+ 2513: -15,-28
+ 2514: -14,-28
+ 2515: -13,-28
+ 2516: -12,-28
+ 2517: -11,-28
+ 2518: -11,-33
+ 2519: -12,-33
+ 2520: -13,-33
+ 2521: -18,-25
+ 2556: -6,-24
+ 2557: -7,-24
+ 2558: -8,-24
+ 2559: -9,-24
+ 2560: -10,-24
+ 2561: -14,-24
+ 2562: -15,-24
+ 2563: -16,-24
+ 6716: -22,-19
+ 6717: -9,-20
+ 6718: -8,-20
+ 6726: -22,-28
+ 6727: -20,-28
+ 6740: -24,-42
+ 6741: -22,-42
+ 6742: -21,-42
+ 6743: -20,-42
+ 6744: -18,-42
+ 6764: -31,-41
+ 6765: -30,-41
+ 6766: -29,-41
+ 6818: -13,-39
+ 6819: -12,-39
+ 6820: -11,-39
+ 6821: -9,-41
+ 6822: -8,-41
+ 6931: -15,-34
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteLineN
decals:
- 405: -14,16
- 406: -13,16
- 407: -12,16
- 408: -16,13
- 409: -17,13
- 410: -19,13
- 411: -18,13
- 412: -20,13
- 413: -21,13
- 414: -22,13
- 415: -23,13
- 416: -24,13
- 417: -25,13
- 418: -26,13
- 419: -3,7
- 420: -2,7
- 421: -1,7
- 422: 0,7
- 423: 1,7
- 424: 2,7
- 425: 3,7
- 426: 4,7
- 427: 5,7
- 428: -29,13
- 429: -28,13
- 430: -27,13
- 431: -29,3
- 432: -28,3
- 433: -27,3
- 434: -26,3
- 435: -25,3
- 436: -24,3
- 437: -23,3
- 438: -22,3
- 439: -21,3
- 440: -20,3
- 441: -19,3
- 442: -18,3
- 443: -17,3
- 444: -16,3
- 445: -15,3
- 446: -14,3
- 447: -29,-1
- 448: -28,-1
- 449: -27,-1
- 450: -22,-1
- 451: -21,-1
- 452: -23,-1
- 453: -17,-1
- 454: -16,-1
- 455: -15,-1
- 530: -13,3
- 561: -8,3
- 562: -6,3
- 563: -5,3
- 1407: 12,16
- 1408: 11,16
- 1409: 10,16
- 1410: 9,16
- 1411: 8,16
- 1412: 7,16
- 1413: 30,7
- 1414: 29,7
- 1415: 28,7
- 1416: 27,7
- 1417: 26,7
- 1418: 25,7
- 1419: 24,7
- 1420: 23,7
- 1421: 22,7
- 1422: 21,7
- 1423: 20,7
- 1424: 19,7
- 1425: 18,7
- 1426: 17,7
- 1427: 16,7
- 1428: 15,7
- 1429: 14,7
- 1430: 13,7
- 1431: 12,7
- 1432: 11,7
- 1433: 10,7
- 1434: 9,7
- 1749: 6,-14
- 1750: 7,-14
- 1751: 11,-14
- 1752: 12,-14
- 1753: 13,-14
- 1754: 14,-14
- 1755: 15,-14
- 1756: 16,-14
- 1757: 17,-14
- 1758: 18,-14
- 1759: 19,-14
- 1760: 20,-14
- 1761: 21,-14
- 1762: 22,-14
- 1763: 23,-14
- 1764: 24,-14
- 1765: 25,-14
- 1766: 26,-14
- 1767: 27,-14
- 1768: 28,-14
- 1769: 29,-14
- 1770: 30,-14
- 1771: 31,-14
- 1772: 32,-14
- 1773: 33,-14
- 1774: 34,-14
- 1775: 35,-14
- 1776: 36,-14
- 1777: -4,-14
- 1778: -5,-14
- 1779: -6,-14
- 1780: -7,-14
- 1781: -8,-14
- 1782: -9,-14
- 1783: -10,-14
- 1784: -11,-14
- 1785: -24,-15
- 1786: -23,-15
- 1787: -22,-15
- 1788: -21,-15
- 1789: -20,-15
- 1790: -19,-15
- 1791: -18,-15
- 1792: -17,-15
- 1793: -15,-15
- 1794: -14,-15
- 1795: -12,-14
- 1801: -1,-13
- 1802: -2,-13
- 1803: 3,-13
- 1804: 4,-13
- 2734: -7,3
- 4455: -16,-15
- 6323: 6,-5
- 6324: 6,-10
- 6325: 10,-5
- 6326: 11,-5
- 6327: 12,-5
- - node:
- color: '#951710FF'
+ 5716: -40,21
+ 5717: -39,21
+ 5718: -38,21
+ 5719: -37,21
+ 5720: -36,21
+ 5721: -39,13
+ 5722: -37,12
+ 5723: -36,12
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteLineN
decals:
- 6143: -27,48
- 6144: -26,48
- 6145: -25,48
- 6146: -24,48
- 6147: -23,48
- 6148: -22,48
- 6149: -21,48
+ 372: -14,16
+ 373: -13,16
+ 374: -12,16
+ 375: -16,13
+ 376: -17,13
+ 377: -19,13
+ 378: -18,13
+ 379: -20,13
+ 380: -21,13
+ 381: -22,13
+ 382: -23,13
+ 383: -24,13
+ 384: -25,13
+ 385: -26,13
+ 386: -29,13
+ 387: -28,13
+ 388: -27,13
+ 389: -22,3
+ 390: -21,3
+ 391: -20,3
+ 392: -19,3
+ 393: -18,3
+ 394: -17,3
+ 395: -16,3
+ 396: -15,3
+ 397: -14,3
+ 398: -22,-1
+ 399: -21,-1
+ 400: -23,-1
+ 401: -17,-1
+ 402: -16,-1
+ 403: -15,-1
+ 462: -13,3
+ 469: -8,3
+ 1050: 30,7
+ 1051: 29,7
+ 1052: 28,7
+ 1053: 27,7
+ 1054: 26,7
+ 1055: 25,7
+ 1056: 24,7
+ 1057: 23,7
+ 1058: 22,7
+ 1059: 21,7
+ 1060: 20,7
+ 1061: 19,7
+ 1062: 9,7
+ 1265: 6,-14
+ 1266: 7,-14
+ 1267: 12,-14
+ 1268: 13,-14
+ 1269: 14,-14
+ 1270: 15,-14
+ 1271: 16,-14
+ 1272: 17,-14
+ 1273: 18,-14
+ 1274: 19,-14
+ 1275: 20,-14
+ 1276: 21,-14
+ 1277: 22,-14
+ 1278: 23,-14
+ 1279: 24,-14
+ 1280: 25,-14
+ 1281: 26,-14
+ 1282: 27,-14
+ 1283: 28,-14
+ 1284: 29,-14
+ 1285: 30,-14
+ 1286: 31,-14
+ 1287: 32,-14
+ 1288: 33,-14
+ 1289: 34,-14
+ 1290: 35,-14
+ 1291: 36,-14
+ 1292: -4,-14
+ 1293: -5,-14
+ 1294: -6,-14
+ 1295: -7,-14
+ 1296: -8,-14
+ 1297: -9,-14
+ 1298: -10,-14
+ 1299: -11,-14
+ 1300: -12,-14
+ 1304: -1,-13
+ 1305: -2,-13
+ 1306: 3,-13
+ 1307: 4,-13
+ 2034: -7,3
+ 4561: 6,-5
+ 4562: 6,-10
+ 4563: 10,-5
+ 4564: 11,-5
+ 4565: 12,-5
+ 4590: -10,3
+ 4591: -9,3
+ 6478: -3,3
+ 6479: -2,3
+ 6480: 1,7
+ 6486: 5,3
+ 6487: 4,3
+ 6488: -1,3
+ 6489: 3,3
+ 6965: 9,16
+ 6966: 19,16
+ 7001: 11,15
+ 7002: 12,15
+ 7003: 13,15
+ 7004: 14,15
+ 7005: 15,15
+ 7006: 16,15
+ 7007: 17,15
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteLineN
decals:
- 923: -27,64
- 924: -26,64
- 925: -25,64
- 926: -24,64
- 927: -23,64
- 928: -22,64
- 929: -21,64
- 930: -20,64
- 931: -19,64
- 932: -18,64
- 933: -17,64
- 934: -16,64
- 935: -15,64
- 936: -14,64
- 937: -13,64
- 938: -12,64
- 939: -8,64
- 940: -4,64
- 941: -3,64
- 942: -5,68
- 943: -4,68
- 944: -3,68
- 945: -23,59
- 946: -22,59
- 947: -21,59
- 948: -20,59
- 953: -31,62
- 4400: -44,67
- 4401: -43,67
- 4402: -42,67
- 4403: -41,67
- 4404: -40,67
- 4405: -39,67
- 4406: -37,67
- 4407: -38,67
- 4413: -33,64
- 4414: -32,64
- 4415: -31,64
- 4416: -30,64
- 4417: -34,64
+ 631: -27,64
+ 632: -26,64
+ 633: -25,64
+ 634: -24,64
+ 635: -23,64
+ 636: -22,64
+ 637: -21,64
+ 638: -20,64
+ 639: -19,64
+ 640: -18,64
+ 641: -17,64
+ 642: -16,64
+ 643: -15,64
+ 644: -14,64
+ 645: -13,64
+ 646: -12,64
+ 647: -4,64
+ 648: -3,64
+ 649: -31,62
+ 3377: -44,67
+ 3378: -43,67
+ 3379: -42,67
+ 3380: -41,67
+ 3381: -40,67
+ 3382: -39,67
+ 3383: -37,67
+ 3384: -38,67
+ 3390: -33,64
+ 3391: -32,64
+ 3392: -31,64
+ 3393: -30,64
+ 3394: -34,64
+ 6225: -44,60
+ 6226: -43,60
+ 6227: -23,58
+ 6228: -22,58
+ 6229: -21,58
+ 6230: -20,58
- node:
color: '#B02E26FF'
id: BrickTileWhiteLineN
decals:
- 642: -27,42
- 643: -26,42
- 644: -25,42
- 645: -24,42
- 646: -23,42
- 647: -22,42
- 674: -10,42
- 675: -8,43
- 676: -7,43
- 677: -6,43
- 737: -8,26
- 738: -9,26
- 739: -10,26
- 740: -11,26
- 766: -22,26
- 767: -21,26
- 768: -20,26
- 769: -19,26
- 770: -18,26
- 771: -17,26
- 772: -16,26
- 773: -15,26
- 786: -7,34
- 787: -17,30
- 788: -18,30
- 789: -19,30
- 790: -20,30
- 791: -21,30
- 792: -22,30
- 793: -16,30
- 794: -15,30
- 795: -11,30
- 796: -10,30
- 818: -30,29
- 819: -29,29
- 820: -28,29
- 821: -27,29
- 822: -26,29
- 842: -34,31
- 843: -35,31
- 844: -36,31
- 845: -36,35
- 846: -35,35
- 847: -34,35
- 850: -14,45
- 851: -15,45
- 852: -16,45
- 862: -18,42
- 1049: -24,22
- 1050: -23,22
- 1051: -22,22
- 1052: -21,22
- 1053: -20,22
- 1054: -19,22
- 1055: -18,22
- 1056: -17,22
- 1057: -16,22
- 1058: -15,22
- 1059: -14,22
- 1060: -13,22
- 1061: -12,22
- 1062: -11,22
- 1063: -25,22
- 1064: -26,22
- 1065: -27,22
- 1066: -28,22
- 1067: -29,22
- 1068: -30,22
- 1069: -31,22
- 1070: -32,22
- 1072: -6,21
- 1073: -9,21
- 1074: -5,21
- 1075: -8,21
- 1076: -7,21
- 4454: -33,51
+ 481: -10,42
+ 482: -8,43
+ 527: -8,26
+ 528: -9,26
+ 529: -10,26
+ 530: -11,26
+ 554: -22,26
+ 555: -21,26
+ 556: -20,26
+ 557: -19,26
+ 558: -18,26
+ 559: -17,26
+ 560: -16,26
+ 561: -15,26
+ 573: -7,34
+ 574: -17,30
+ 575: -18,30
+ 576: -19,30
+ 577: -20,30
+ 578: -21,30
+ 579: -22,30
+ 580: -16,30
+ 581: -15,30
+ 582: -11,30
+ 583: -10,30
+ 607: -36,35
+ 608: -35,35
+ 726: -24,22
+ 727: -23,22
+ 728: -22,22
+ 729: -21,22
+ 730: -20,22
+ 731: -19,22
+ 732: -18,22
+ 733: -17,22
+ 734: -16,22
+ 735: -15,22
+ 736: -14,22
+ 737: -13,22
+ 738: -12,22
+ 739: -11,22
+ 740: -25,22
+ 741: -26,22
+ 742: -27,22
+ 743: -28,22
+ 744: -29,22
+ 745: -30,22
+ 746: -31,22
+ 747: -32,22
+ 749: -6,21
+ 750: -9,21
+ 751: -5,21
+ 752: -8,21
+ 753: -7,21
+ 5213: -12,30
+ 5498: -14,46
+ 5499: -15,46
+ 5500: -16,46
+ 5501: -17,46
+ 5502: -18,46
+ 5503: -19,46
+ 5504: -20,46
+ 5505: -21,46
+ 5506: -22,46
+ 5507: -23,46
+ 5508: -24,46
+ 5509: -25,46
+ 5510: -26,46
+ 5543: -18,51
+ 5544: -19,51
+ 5545: -20,51
+ 6119: -8,34
+ 6415: -34,30
+ 6416: -35,30
- node:
color: '#B04DB5FF'
id: BrickTileWhiteLineN
decals:
- 2346: 49,21
- 2347: 44,21
- 2348: 43,21
- 2349: 42,21
- 2350: 41,21
- 2351: 40,21
- 2352: 34,21
- 2353: 33,21
- 2354: 32,21
- 2355: 31,21
- 2434: 27,30
- 2435: 28,30
- 2436: 29,30
- 2437: 30,30
- 2438: 31,30
- 2439: 35,30
- 2440: 36,30
- 2441: 37,30
- 2442: 38,30
- 2443: 39,30
- 2444: 39,44
- 2445: 40,51
- 2446: 41,51
- 2447: 42,51
- 2448: 43,51
- 2449: 44,51
- 2450: 38,57
- 2451: 39,57
- 2452: 40,57
- 2453: 44,57
- 2454: 45,57
- 2455: 46,57
- 2456: 36,49
- 2457: 37,49
- 2458: 38,49
- 2459: 46,49
- 2460: 47,49
- 2461: 48,49
- 2462: 43,44
- 2463: 44,44
- 2464: 45,44
- 2465: 46,44
- 2466: 47,44
- 2467: 48,44
- 2468: 43,40
- 2469: 45,40
- 2470: 46,40
- 2471: 47,40
- 2472: 49,40
- 2473: 43,34
- 2474: 47,34
- 2475: 48,34
- 2476: 43,30
- 2477: 44,30
- 2478: 45,30
- 2479: 47,28
- 2480: 48,26
- 2481: 47,26
- 2482: 46,26
- 2483: 45,26
- 2484: 44,26
- 2485: 43,26
- 2486: 39,26
- 2487: 38,26
- 2488: 37,26
- 2489: 36,26
- 2490: 27,24
- 2491: 28,24
- 2492: 29,24
- 2493: 30,24
- 2494: 31,24
- 2574: 45,32
- 2663: 52,30
- 2664: 53,30
- 2665: 54,30
- 2666: 55,30
- 2667: 56,30
- 2668: 57,30
- 2669: 58,30
- 2670: 59,30
- 2671: 60,30
- 2672: 61,30
- 2673: 62,30
- 2680: 35,26
- 6116: 44,40
- 6117: 48,40
+ 1652: 49,21
+ 1653: 44,21
+ 1654: 43,21
+ 1655: 42,21
+ 1656: 41,21
+ 1657: 40,21
+ 1658: 34,21
+ 1659: 33,21
+ 1660: 32,21
+ 1661: 31,21
+ 1738: 27,30
+ 1739: 28,30
+ 1740: 29,30
+ 1741: 30,30
+ 1742: 31,30
+ 1743: 35,30
+ 1744: 36,30
+ 1745: 37,30
+ 1746: 38,30
+ 1747: 39,30
+ 1748: 39,44
+ 1749: 40,51
+ 1750: 41,51
+ 1751: 42,51
+ 1752: 43,51
+ 1753: 44,51
+ 1754: 38,57
+ 1755: 39,57
+ 1756: 40,57
+ 1757: 44,57
+ 1758: 45,57
+ 1759: 46,57
+ 1760: 36,49
+ 1761: 37,49
+ 1762: 38,49
+ 1763: 46,49
+ 1764: 47,49
+ 1765: 48,49
+ 1766: 43,44
+ 1767: 44,44
+ 1768: 45,44
+ 1769: 46,44
+ 1770: 47,44
+ 1771: 48,44
+ 1772: 43,40
+ 1773: 45,40
+ 1774: 46,40
+ 1775: 47,40
+ 1776: 49,40
+ 1777: 43,34
+ 1778: 47,34
+ 1779: 48,34
+ 1780: 43,30
+ 1781: 44,30
+ 1782: 45,30
+ 1783: 47,28
+ 1784: 48,26
+ 1785: 47,26
+ 1786: 46,26
+ 1787: 45,26
+ 1788: 44,26
+ 1789: 43,26
+ 1790: 39,26
+ 1791: 38,26
+ 1792: 37,26
+ 1793: 36,26
+ 1794: 27,24
+ 1795: 28,24
+ 1796: 29,24
+ 1797: 30,24
+ 1798: 31,24
+ 1877: 45,32
+ 1965: 52,30
+ 1966: 53,30
+ 1967: 54,30
+ 1968: 55,30
+ 1969: 56,30
+ 1970: 57,30
+ 1971: 58,30
+ 1972: 59,30
+ 1973: 60,30
+ 1974: 61,30
+ 1975: 62,30
+ 1982: 35,26
+ 4411: 44,40
+ 4412: 48,40
- node:
color: '#BA8841FF'
id: BrickTileWhiteLineN
decals:
- 1896: -56,37
- 1897: -55,37
- 1898: -54,37
- 1899: -61,36
- 1900: -62,36
- 1901: -63,36
- 1902: -56,31
- 1903: -55,31
- 1904: -54,31
- 1905: -53,31
- 1906: -52,31
- 1907: -51,31
- 1908: -50,31
- 1909: -49,31
- 1910: -48,31
- 1911: -47,31
- 1912: -46,31
- 1913: -45,31
- 1914: -44,31
- 1915: -43,31
- 1916: -43,35
- 1917: -44,35
- 1918: -45,35
- 1919: -46,35
- 1920: -47,35
- 1921: -48,35
- 1922: -49,35
- 1923: -49,27
- 1924: -50,27
- 1925: -51,27
- 1926: -51,23
- 1927: -50,23
- 1928: -49,23
- 1929: -49,18
- 1930: -50,18
- 1931: -51,18
- 1932: -59,20
- 1933: -60,20
- 1934: -61,20
- 1935: -62,20
- 1936: -63,20
- 2072: -57,9
- 2073: -56,9
- 2074: -55,9
- 2075: -54,9
- 2076: -53,9
- 2077: -52,9
- 2078: -51,9
- 2079: -50,9
- 2080: -48,9
- 2081: -47,9
+ 1377: -55,37
+ 1378: -61,36
+ 1379: -62,36
+ 1380: -63,36
+ 1381: -56,31
+ 1382: -55,31
+ 1383: -54,31
+ 1384: -53,31
+ 1385: -52,31
+ 1386: -51,31
+ 1387: -45,31
+ 1388: -45,35
+ 1389: -46,35
+ 1390: -47,35
+ 1391: -48,35
+ 1392: -49,35
+ 1393: -49,27
+ 1394: -50,27
+ 1395: -51,27
+ 1396: -51,23
+ 1397: -50,23
+ 1398: -49,23
+ 1399: -49,18
+ 1400: -50,18
+ 1401: -51,18
+ 1402: -59,20
+ 1403: -60,20
+ 1404: -61,20
+ 1405: -62,20
+ 1406: -63,20
+ 1522: -57,9
+ 1523: -56,9
+ 1524: -55,9
+ 1525: -54,9
+ 1526: -53,9
+ 1527: -52,9
+ 1528: -51,9
+ 1529: -50,9
+ 1530: -48,9
+ 1531: -47,9
+ 4721: 18,-19
+ 4722: 19,-19
+ 4723: 20,-19
+ 4724: 21,-19
+ 4725: 22,-19
+ 6368: -62,12
+ 6369: -61,12
+ 6370: -59,13
+ 6379: -51,13
+ 6380: -50,13
+ 6381: -49,13
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteLineN
decals:
- 2735: -62,5
- 2736: -61,5
- 2737: -60,5
- 2738: -59,5
- 2739: -58,5
- 2740: -61,-2
- 2741: -62,-2
- 2742: -60,-2
- 2743: -59,-2
- 2744: -57,5
- 2745: -56,5
- 2746: -55,5
- 2747: -54,5
- 2748: -53,5
- 2749: -52,5
- 2750: -51,5
- 2751: -55,-2
- 2752: -54,-2
- 2753: -53,-2
- 2754: -52,-2
- 2755: -51,-2
- 2889: -62,-7
- 2890: -61,-7
- 2891: -60,-7
- 2892: -59,-7
- 2893: -55,-6
- 2907: -59,-12
- 2908: -58,-12
- 2909: -57,-12
- 2910: -55,-11
- 2911: -54,-11
- 2912: -53,-11
- 2913: -52,-11
- 2914: -51,-11
- 3049: -73,11
- 3050: -72,11
- 3051: -71,11
- 3052: -70,11
- 3053: -69,11
- 3054: -77,9
- 3055: -78,9
- 3056: -79,9
- 3057: -80,9
- 3058: -84,10
- 3059: -85,10
- 3060: -86,10
- 3061: -85,17
- 3062: -89,22
- 3063: -88,22
- 3064: -87,22
- 3065: -86,22
- 3066: -85,22
- 3067: -84,22
- 3068: -83,22
- 3069: -82,22
- 3070: -81,22
- 3074: -93,9
- 3075: -92,9
- 3076: -91,9
- 3077: -90,9
- 3081: -85,4
- 3086: -88,-4
- 3087: -86,-3
- 3088: -85,-3
- 3089: -84,-3
- 3090: -82,-4
- 3106: -73,17
- 6188: -95,-5
- 6189: -94,-5
- 6190: -93,-5
- 6196: -94,22
- 6197: -93,22
- 6209: -69,3
- 6383: -54,-6
+ 2035: -62,5
+ 2036: -61,5
+ 2037: -60,5
+ 2038: -59,5
+ 2039: -58,5
+ 2040: -61,-2
+ 2041: -62,-2
+ 2042: -60,-2
+ 2043: -59,-2
+ 2044: -57,5
+ 2045: -56,5
+ 2046: -55,5
+ 2047: -54,5
+ 2048: -53,5
+ 2049: -52,5
+ 2050: -51,5
+ 2051: -55,-2
+ 2052: -54,-2
+ 2053: -53,-2
+ 2054: -52,-2
+ 2055: -51,-2
+ 2188: -62,-7
+ 2189: -61,-7
+ 2190: -60,-7
+ 2191: -59,-7
+ 2201: -59,-12
+ 2202: -58,-12
+ 2203: -57,-12
+ 2204: -55,-11
+ 2205: -54,-11
+ 2206: -53,-11
+ 2207: -52,-11
+ 2208: -51,-11
+ 2320: -73,11
+ 2321: -72,11
+ 2322: -71,11
+ 2323: -70,11
+ 2324: -69,11
+ 2325: -77,9
+ 2326: -78,9
+ 2327: -79,9
+ 2328: -80,9
+ 2329: -84,10
+ 2330: -85,10
+ 2331: -86,10
+ 2332: -85,17
+ 2333: -89,22
+ 2334: -88,22
+ 2335: -87,22
+ 2336: -86,22
+ 2337: -85,22
+ 2338: -84,22
+ 2339: -83,22
+ 2340: -82,22
+ 2341: -81,22
+ 2345: -93,9
+ 2346: -92,9
+ 2347: -91,9
+ 2348: -90,9
+ 2352: -85,4
+ 2357: -88,-4
+ 2358: -86,-3
+ 2359: -85,-3
+ 2360: -84,-3
+ 2361: -82,-4
+ 2377: -73,17
+ 4448: -95,-5
+ 4449: -94,-5
+ 4450: -93,-5
+ 4456: -94,22
+ 4457: -93,22
+ 4469: -69,3
- node:
color: '#FF974DFF'
id: BrickTileWhiteLineN
decals:
- 2210: 18,-2
- 2211: 19,-2
- 2212: 20,-2
- 2213: 21,-2
- 2214: 22,-2
- 2215: 23,-2
- 2216: 24,-2
- 2217: 25,-2
- 2218: 26,-2
- 2219: 27,-2
- 2220: 16,3
- 2221: 15,3
- 2222: 14,3
- 2223: 13,3
- 2236: 16,-8
- 2237: 17,-8
- 2238: 19,-8
- 2239: 18,-8
- 2240: 20,-8
+ 1600: 18,-2
+ 1601: 19,-2
+ 1602: 20,-2
+ 1603: 21,-2
+ 1604: 22,-2
+ 1605: 23,-2
+ 1606: 24,-2
+ 1607: 25,-2
+ 1608: 26,-2
+ 1609: 27,-2
+ 1610: 16,3
+ 1611: 15,3
+ 1612: 14,3
+ 1613: 13,3
+ 1626: 16,-8
+ 1627: 17,-8
+ 1628: 19,-8
+ 1629: 18,-8
+ 1630: 20,-8
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineS
decals:
- 1121: 10,37
- 1122: 11,37
- 1123: 12,37
- 1124: 13,37
- 1125: 6,35
- 1126: 5,35
- 1135: 17,35
- 1136: 18,35
- 1137: 19,35
- 1210: 10,42
- 1211: 11,42
- 1212: 12,42
- 1213: 13,42
- 1214: 14,42
- 1220: 6,47
- 1221: 10,45
- 1222: 11,45
- 1223: 12,45
- 1224: 13,45
- 1225: 14,45
- 1238: 8,52
- 1239: 9,52
- 1240: 10,52
- 1249: 22,45
- 1250: 23,45
- 1251: 24,45
- 1252: 25,45
- 1253: 26,45
- 1271: 22,48
- 1272: 26,48
- 1273: 27,48
- 1274: 28,48
- 1277: 24,49
- 1299: 18,53
- 1305: 17,52
- 1306: 18,52
- 1307: 19,52
- 1336: 27,54
- 1387: 18,24
- 1388: 19,24
- 1389: 8,27
- 1390: 7,27
- 1391: 6,27
- 1392: 5,27
- 1393: 12,27
- 1394: 13,27
- - node:
- color: '#354DA0FF'
+ 794: 10,37
+ 795: 11,37
+ 796: 12,37
+ 797: 13,37
+ 798: 6,35
+ 799: 5,35
+ 808: 17,35
+ 809: 18,35
+ 810: 19,35
+ 880: 10,42
+ 881: 11,42
+ 882: 12,42
+ 883: 13,42
+ 884: 14,42
+ 890: 10,45
+ 891: 11,45
+ 892: 12,45
+ 893: 13,45
+ 894: 14,45
+ 906: 8,52
+ 907: 9,52
+ 908: 10,52
+ 916: 22,45
+ 917: 23,45
+ 918: 24,45
+ 919: 25,45
+ 920: 26,45
+ 925: 26,48
+ 926: 27,48
+ 927: 28,48
+ 942: 18,53
+ 948: 17,52
+ 949: 18,52
+ 950: 19,52
+ 979: 27,54
+ 1030: 18,24
+ 1031: 19,24
+ 1032: 8,27
+ 1033: 7,27
+ 1034: 6,27
+ 1035: 5,27
+ 1036: 12,27
+ 1037: 13,27
+ 5233: 6,48
+ 6104: 28,45
+ 6105: 27,45
+ - node:
+ color: '#7C45B5FF'
id: BrickTileWhiteLineS
decals:
- 5898: 34,1
- 5899: 35,1
+ 1649: 34,-3
+ 1650: 35,-3
- node:
- color: '#7C45B5FF'
+ color: '#80C71FFF'
id: BrickTileWhiteLineS
decals:
- 2296: -41,21
- 2297: -40,21
- 2298: -38,22
- 2322: -41,9
- 2323: -40,9
- 2324: -39,9
- 2325: -38,9
- 2339: 34,-3
- 2340: 35,-3
+ 4627: -8,5
+ 4628: -7,5
- node:
color: '#845606FF'
id: BrickTileWhiteLineS
decals:
- 3155: -27,-17
- 3156: -26,-17
- 3157: -25,-17
- 3158: -24,-17
- 3159: -23,-17
- 3160: -22,-17
- 3161: -21,-17
- 3162: -20,-17
- 3163: -19,-17
- 3164: -18,-17
- 3165: -17,-17
- 3166: -16,-17
- 3167: -15,-17
- 3168: -14,-17
- 3169: -13,-17
- 3170: -12,-17
- 3171: -11,-17
- 3172: -10,-17
- 3173: -9,-17
- 3174: -8,-17
- 3175: -7,-17
- 3382: -30,-22
- 3383: -29,-22
- 3384: -28,-22
- 3385: -27,-22
- 3386: -26,-22
- 3387: -30,-26
- 3388: -29,-26
- 3389: -28,-26
- 3390: -27,-26
- 3391: -26,-26
- 3392: -13,-36
- 3393: -12,-36
- 3394: -11,-36
- 3395: -15,-35
- 3397: -16,-31
- 3398: -15,-31
- 3399: -14,-31
- 3400: -13,-31
- 3401: -12,-31
- 3402: -11,-31
- 3403: -17,-26
- 3404: -16,-26
- 3405: -15,-26
- 3406: -14,-26
- 3407: -18,-26
- 3408: -19,-26
- 3409: -20,-26
- 3410: -21,-26
- 3411: -22,-26
- 3412: -16,-22
- 3413: -15,-22
- 3414: -14,-22
- 3415: -13,-22
- 3416: -12,-22
- 3417: -11,-22
- 3418: -10,-22
- 3419: -9,-22
- 3420: -8,-22
- 3421: -10,-26
- 3422: -9,-26
- 3423: -8,-26
- 3424: -7,-26
- 3425: -6,-26
- 3426: -5,-26
- 3435: -13,-43
- 3436: -12,-43
- 3437: -11,-43
- 3438: -10,-43
- 3439: -9,-43
- 3440: -8,-43
- 4466: -19,-45
- 4467: -18,-45
- 4468: -17,-45
- 4477: -51,-50
- 4478: -50,-50
- 4479: -49,-50
- 4480: -47,-45
- 4481: -46,-45
- 4482: -45,-45
- 4483: -44,-45
- 4484: -44,-45
- 4485: -43,-45
- 4486: -42,-45
- 4487: -41,-45
- 4488: -40,-45
- 4489: -39,-45
- 4490: -38,-45
- 4491: -37,-45
- 4492: -36,-45
- 4493: -33,-45
- 4494: -32,-45
- 4495: -31,-45
- 4496: -28,-45
- 4497: -27,-45
- 4498: -26,-45
- 4499: -25,-45
- 4500: -24,-45
- 4501: -23,-45
- 4534: -22,-36
- 4535: -21,-36
- 4536: -20,-36
- 6020: -17,-36
- 6021: -18,-36
- 6022: -19,-36
- 6023: -20,-36
+ 2421: -27,-17
+ 2422: -26,-17
+ 2423: -25,-17
+ 2424: -24,-17
+ 2425: -23,-17
+ 2426: -22,-17
+ 2427: -21,-17
+ 2428: -20,-17
+ 2429: -19,-17
+ 2430: -18,-17
+ 2431: -17,-17
+ 2432: -16,-17
+ 2433: -15,-17
+ 2434: -14,-17
+ 2435: -13,-17
+ 2436: -12,-17
+ 2437: -11,-17
+ 2438: -10,-17
+ 2439: -9,-17
+ 2440: -8,-17
+ 2441: -7,-17
+ 2522: -30,-22
+ 2523: -29,-22
+ 2524: -28,-22
+ 2525: -27,-22
+ 2526: -26,-22
+ 2527: -30,-26
+ 2528: -29,-26
+ 2529: -28,-26
+ 2530: -27,-26
+ 2531: -26,-26
+ 2532: -11,-36
+ 2533: -16,-31
+ 2534: -15,-31
+ 2535: -14,-31
+ 2536: -13,-31
+ 2537: -12,-31
+ 2538: -11,-31
+ 2539: -17,-26
+ 2540: -16,-26
+ 2541: -15,-26
+ 2542: -14,-26
+ 2543: -18,-26
+ 2544: -20,-26
+ 2545: -12,-22
+ 2546: -11,-22
+ 2547: -10,-22
+ 2548: -9,-22
+ 2549: -8,-22
+ 2550: -10,-26
+ 2551: -9,-26
+ 2552: -8,-26
+ 2553: -7,-26
+ 2554: -6,-26
+ 2555: -5,-26
+ 2564: -11,-43
+ 2565: -10,-43
+ 2566: -9,-43
+ 2567: -8,-43
+ 4341: -18,-36
+ 5944: -13,-40
+ 6715: -22,-26
+ 6723: -22,-40
+ 6724: -21,-40
+ 6725: -20,-40
+ 6733: -25,-47
+ 6734: -24,-47
+ 6735: -22,-47
+ 6736: -21,-47
+ 6737: -20,-47
+ 6738: -18,-47
+ 6739: -17,-47
+ 6777: -31,-46
+ 6778: -29,-46
+ 6930: -15,-35
+ 6936: -13,-36
+ 6937: -12,-36
+ 6947: -21,-26
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteLineS
decals:
- 474: -29,-3
- 475: -28,-3
- 476: -23,-3
- 477: -22,-3
- 478: -21,-3
- 479: -15,-3
- 480: -16,-3
- 481: -17,-3
- 482: -14,1
- 483: -15,1
- 484: -16,1
- 485: -17,1
- 486: -18,1
- 487: -19,1
- 488: -20,1
- 489: -21,1
- 490: -22,1
- 491: -23,1
- 492: -24,1
- 493: -25,1
- 494: -26,1
- 495: -27,1
- 496: -28,1
- 497: -29,1
- 506: -14,12
- 507: -15,12
- 508: -16,12
- 509: -17,12
- 510: -18,12
- 511: -19,12
- 512: -20,12
- 513: -21,12
- 514: -22,12
- 515: -23,12
- 516: -24,12
- 517: -25,12
- 518: -26,12
- 519: -27,12
- 520: -28,12
- 521: -29,12
- 522: -13,12
- 531: -13,1
- 550: -8,1
- 551: -7,1
- 552: -6,1
- 553: -5,1
- 564: -3,-3
- 565: -2,-3
- 566: -1,-3
- 567: 0,-3
- 568: 1,-3
- 569: 2,-3
- 570: 3,-3
- 571: 4,-3
- 572: 5,-3
- 1654: 30,5
- 1655: 29,5
- 1656: 28,5
- 1657: 27,5
- 1658: 26,5
- 1659: 25,5
- 1660: 24,5
- 1661: 23,5
- 1662: 22,5
- 1663: 21,5
- 1664: 20,5
- 1665: 19,5
- 1666: 18,5
- 1667: 17,5
- 1668: 16,5
- 1669: 15,5
- 1670: 14,5
- 1671: 13,5
- 1672: 12,5
- 1673: 11,5
- 1709: 9,-3
- 1710: 6,9
- 1711: 7,9
- 1712: 8,9
- 1713: 9,9
- 1714: 10,9
- 1715: 11,9
- 1716: 12,9
- 1806: 35,18
- 1807: 34,18
- 1808: 33,18
- 1809: 32,18
- 1810: 31,18
- 1811: 30,18
- 1812: 26,18
- 1813: 25,18
- 1814: 24,18
- 1815: 23,18
- 1816: 22,18
- 1817: 21,18
- 1818: 15,18
- 1819: 14,18
- 1820: 13,18
- 1821: 12,18
- 1822: 11,18
- 1823: 10,18
- 1824: 9,18
- 1825: 8,18
- 1826: 7,18
- 1827: 6,18
- 1828: 3,17
- 1829: 4,17
- 1830: -1,17
- 1831: -2,17
- 1832: -4,18
- 1833: -5,18
- 1834: -6,18
- 1835: -7,18
- 1836: -8,18
- 1837: -10,19
- 1838: -16,19
- 1839: -17,19
- 1840: -18,19
- 1841: -19,19
- 1842: -21,19
- 1843: -22,19
- 1844: -23,19
- 1845: -24,19
- 1846: -25,19
- 1847: -26,19
- 1848: -28,19
- 1849: -29,19
- 1850: -30,19
- 1851: -31,19
- 3541: -27,19
- 4234: -20,19
- 6320: 6,-8
- 6321: 11,-6
- 6322: 12,-6
- 6420: -27,-3
- - node:
- color: '#951710FF'
+ 5733: -40,8
+ 5734: -39,8
+ 5735: -38,8
+ 5736: -37,8
+ 5737: -36,8
+ 5753: -40,15
+ 5754: -39,15
+ 5755: -38,15
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteLineS
decals:
- 6137: -24,44
- 6138: -26,44
- 6139: -26,44
- 6140: -27,44
- 6141: -25,44
- 6142: -28,44
- 6150: -22,47
- 6159: -21,47
+ 414: -23,-3
+ 415: -22,-3
+ 416: -21,-3
+ 417: -15,-3
+ 418: -16,-3
+ 419: -17,-3
+ 420: -14,1
+ 421: -15,1
+ 422: -16,1
+ 423: -17,1
+ 424: -18,1
+ 425: -19,1
+ 426: -20,1
+ 427: -21,1
+ 428: -22,1
+ 429: -24,1
+ 438: -14,12
+ 439: -15,12
+ 440: -16,12
+ 441: -17,12
+ 442: -18,12
+ 443: -19,12
+ 444: -20,12
+ 445: -21,12
+ 446: -22,12
+ 447: -23,12
+ 448: -24,12
+ 449: -25,12
+ 450: -26,12
+ 451: -27,12
+ 452: -28,12
+ 453: -29,12
+ 454: -13,12
+ 463: -13,1
+ 467: -8,1
+ 468: -7,1
+ 1191: 30,5
+ 1192: 29,5
+ 1193: 28,5
+ 1194: 27,5
+ 1195: 26,5
+ 1196: 25,5
+ 1197: 24,5
+ 1198: 23,5
+ 1199: 22,5
+ 1200: 21,5
+ 1201: 20,5
+ 1202: 19,5
+ 1232: 9,-3
+ 1309: 35,18
+ 1310: 34,18
+ 1311: 33,18
+ 1312: 32,18
+ 1313: 31,18
+ 1314: 30,18
+ 1315: 26,18
+ 1316: 25,18
+ 1317: 24,18
+ 1318: 23,18
+ 1319: 22,18
+ 1320: 21,18
+ 1321: 3,17
+ 1322: 4,17
+ 1323: -1,17
+ 1324: -2,17
+ 1325: -4,18
+ 1326: -5,18
+ 1327: -6,18
+ 1328: -7,18
+ 1329: -8,18
+ 1330: -10,19
+ 1331: -16,19
+ 1332: -17,19
+ 1333: -18,19
+ 1334: -19,19
+ 1335: -21,19
+ 1336: -22,19
+ 1337: -23,19
+ 1338: -24,19
+ 1339: -25,19
+ 1340: -26,19
+ 1341: -28,19
+ 1342: -29,19
+ 1343: -30,19
+ 1344: -31,19
+ 2633: -27,19
+ 3249: -20,19
+ 4558: 6,-8
+ 4559: 11,-6
+ 4560: 12,-6
+ 4592: -10,1
+ 4593: -9,1
+ 6481: -3,1
+ 6482: -2,1
+ 6483: 1,-3
+ 6484: 4,1
+ 6485: 5,1
+ 6494: -1,1
+ 6495: 3,1
+ 6982: 9,9
+ 6983: 19,9
+ 6990: 11,12
+ 6991: 17,12
+ 6992: 13,13
+ 6993: 14,13
+ 6994: 15,13
+ 7058: 27,18
+ 7059: 28,18
+ 7060: 29,18
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteLineS
decals:
- 988: -23,53
- 989: -22,53
- 990: -21,53
- 991: -20,53
- 992: -24,61
- 993: -23,61
- 994: -24,61
- 995: -25,61
- 996: -22,61
- 997: -21,61
- 998: -20,61
- 999: -19,61
- 1000: -18,61
- 1001: -17,61
- 1002: -13,61
- 1003: -12,61
- 1004: -5,66
- 1005: -4,66
- 1006: -3,66
- 1007: -4,63
- 1008: -3,63
- 1009: -8,63
- 1028: -15,63
- 1032: -31,57
- 4380: -27,53
- 4381: -37,58
- 4382: -38,58
- 4383: -39,58
- 4384: -43,62
- 4393: -42,62
- 4394: -41,62
- 4418: -34,64
- 4419: -33,64
- 4420: -32,64
- 4421: -31,64
- 4422: -30,64
- 6170: -44,62
+ 681: -23,53
+ 682: -22,53
+ 683: -21,53
+ 684: -20,53
+ 685: -17,61
+ 686: -13,61
+ 687: -12,61
+ 688: -4,63
+ 689: -3,63
+ 705: -15,63
+ 709: -31,57
+ 3357: -27,53
+ 3358: -37,58
+ 3359: -38,58
+ 3360: -39,58
+ 3361: -43,62
+ 3370: -42,62
+ 3371: -41,62
+ 3395: -34,64
+ 3396: -33,64
+ 3397: -32,64
+ 3398: -31,64
+ 3399: -30,64
+ 4430: -44,62
+ 6222: -44,58
+ 6223: -43,58
+ 6233: -25,63
+ 6234: -24,63
+ 6235: -23,63
+ 6236: -22,63
+ 6237: -21,63
+ 6238: -20,63
+ 6239: -19,63
- node:
color: '#B02E26FF'
id: BrickTileWhiteLineS
decals:
- 650: -27,39
- 651: -26,39
- 652: -25,39
- 653: -24,39
- 654: -23,39
- 655: -22,39
- 668: -10,39
- 669: -9,39
- 671: -7,38
- 748: -9,24
- 749: -10,24
- 750: -11,24
- 751: -7,23
- 752: -6,23
- 753: -8,32
- 754: -7,32
- 755: -6,32
- 774: -22,24
- 775: -21,24
- 776: -20,24
- 777: -19,24
- 778: -18,24
- 779: -17,24
- 780: -16,24
- 781: -15,24
- 802: -22,28
- 803: -21,28
- 804: -19,29
- 805: -17,28
- 806: -16,28
- 807: -15,28
- 808: -14,28
- 809: -13,28
- 810: -12,28
- 811: -11,28
- 812: -10,28
- 823: -30,29
- 824: -29,29
- 825: -28,29
- 826: -27,29
- 827: -26,29
- 828: -34,29
- 829: -35,29
- 830: -36,29
- 839: -36,33
- 840: -35,33
- 841: -34,33
- 855: -16,44
- 856: -15,44
- 865: -18,39
+ 475: -10,39
+ 476: -9,39
+ 478: -7,38
+ 537: -9,24
+ 538: -10,24
+ 539: -11,24
+ 540: -7,23
+ 541: -6,23
+ 542: -8,32
+ 543: -7,32
+ 544: -6,32
+ 562: -22,24
+ 563: -21,24
+ 564: -20,24
+ 565: -19,24
+ 566: -18,24
+ 567: -17,24
+ 568: -16,24
+ 569: -15,24
+ 588: -22,28
+ 589: -21,28
+ 590: -19,29
+ 591: -17,28
+ 592: -16,28
+ 593: -15,28
+ 594: -14,28
+ 595: -13,28
+ 596: -12,28
+ 597: -11,28
+ 598: -10,28
+ 604: -36,33
+ 605: -35,33
+ 606: -34,33
+ 5480: -15,45
+ 5481: -16,45
+ 5482: -17,45
+ 5483: -18,45
+ 5484: -19,45
+ 5485: -20,45
+ 5486: -21,45
+ 5487: -22,45
+ 5488: -23,45
+ 5489: -24,45
+ 5490: -25,45
+ 5491: -26,45
+ 5548: -20,48
+ 5549: -19,48
+ 5550: -18,48
+ 6413: -34,29
+ 6414: -35,29
- node:
color: '#B04DB5FF'
id: BrickTileWhiteLineS
decals:
- 2575: 43,32
- 2576: 44,32
- 2577: 45,32
- 2578: 46,32
- 2579: 47,32
- 2580: 48,32
- 2581: 48,28
- 2582: 47,28
- 2583: 46,28
- 2584: 45,28
- 2585: 44,28
- 2586: 43,28
- 2587: 43,23
- 2588: 44,23
- 2589: 45,23
- 2590: 46,23
- 2591: 47,23
- 2592: 48,23
- 2593: 49,23
- 2594: 39,23
- 2595: 38,23
- 2596: 37,23
- 2597: 36,23
- 2598: 35,23
- 2599: 31,23
- 2600: 30,23
- 2601: 29,23
- 2602: 28,23
- 2603: 27,23
- 2604: 27,26
- 2605: 28,26
- 2606: 29,26
- 2607: 30,26
- 2608: 31,26
- 2609: 35,28
- 2610: 36,28
- 2611: 37,28
- 2612: 38,28
- 2613: 39,28
- 2614: 39,32
- 2615: 35,46
- 2616: 36,46
- 2617: 37,46
- 2618: 38,46
- 2619: 39,46
- 2620: 40,46
- 2621: 41,46
- 2622: 42,46
- 2623: 43,46
- 2624: 44,46
- 2625: 45,46
- 2626: 46,46
- 2627: 47,46
- 2628: 48,46
- 2629: 49,46
- 2630: 44,53
- 2631: 38,53
- 2632: 45,53
- 2633: 46,53
- 2634: 39,53
- 2635: 40,53
- 2636: 48,42
- 2637: 47,42
- 2638: 46,42
- 2639: 45,42
- 2640: 44,42
- 2641: 43,42
- 2642: 43,36
- 2643: 44,36
- 2644: 45,36
- 2645: 46,36
- 2646: 47,36
- 2647: 48,36
- 2648: 49,36
- 2649: 52,26
- 2650: 53,26
- 2651: 54,26
- 2652: 55,26
- 2653: 56,26
- 2654: 57,26
- 2655: 58,26
- 2656: 59,26
- 2657: 60,26
- 2658: 61,26
- 2659: 62,26
- 2691: 53,46
+ 1878: 43,32
+ 1879: 44,32
+ 1880: 45,32
+ 1881: 46,32
+ 1882: 47,32
+ 1883: 48,32
+ 1884: 48,28
+ 1885: 47,28
+ 1886: 46,28
+ 1887: 45,28
+ 1888: 44,28
+ 1889: 43,28
+ 1890: 43,23
+ 1891: 44,23
+ 1892: 45,23
+ 1893: 46,23
+ 1894: 47,23
+ 1895: 48,23
+ 1896: 49,23
+ 1897: 39,23
+ 1898: 38,23
+ 1899: 37,23
+ 1900: 36,23
+ 1901: 35,23
+ 1902: 31,23
+ 1903: 30,23
+ 1904: 29,23
+ 1905: 28,23
+ 1906: 27,23
+ 1907: 27,26
+ 1908: 28,26
+ 1909: 29,26
+ 1910: 30,26
+ 1911: 31,26
+ 1912: 35,28
+ 1913: 36,28
+ 1914: 37,28
+ 1915: 38,28
+ 1916: 39,28
+ 1917: 39,32
+ 1918: 35,46
+ 1919: 36,46
+ 1920: 37,46
+ 1921: 38,46
+ 1922: 39,46
+ 1923: 40,46
+ 1924: 41,46
+ 1925: 42,46
+ 1926: 43,46
+ 1927: 44,46
+ 1928: 45,46
+ 1929: 46,46
+ 1930: 47,46
+ 1931: 48,46
+ 1932: 49,46
+ 1933: 44,53
+ 1934: 38,53
+ 1935: 45,53
+ 1936: 46,53
+ 1937: 39,53
+ 1938: 40,53
+ 1939: 47,42
+ 1940: 46,42
+ 1941: 45,42
+ 1942: 44,42
+ 1943: 43,42
+ 1944: 43,36
+ 1945: 44,36
+ 1946: 45,36
+ 1947: 46,36
+ 1948: 47,36
+ 1949: 48,36
+ 1950: 49,36
+ 1951: 52,26
+ 1952: 53,26
+ 1953: 54,26
+ 1954: 55,26
+ 1955: 56,26
+ 1956: 57,26
+ 1957: 58,26
+ 1958: 59,26
+ 1959: 60,26
+ 1960: 61,26
+ 1961: 62,26
+ 1993: 53,46
+ 4737: 48,42
- node:
color: '#BA8841FF'
id: BrickTileWhiteLineS
decals:
- 1939: -55,11
- 1940: -49,16
- 1941: -50,16
- 1942: -51,16
- 1943: -51,20
- 1944: -50,20
- 1945: -49,20
- 1946: -59,22
- 1947: -60,22
- 1948: -61,22
- 1949: -62,22
- 1950: -63,22
- 1951: -64,22
- 1952: -65,22
- 1953: -53,29
- 1954: -52,29
- 1955: -51,29
- 1956: -50,29
- 1957: -49,29
- 1958: -48,29
- 1959: -47,29
- 1960: -46,29
- 1961: -45,29
- 1962: -44,29
- 1963: -43,29
- 1964: -57,33
- 1965: -56,33
- 1966: -55,33
- 1967: -54,33
- 1968: -53,33
- 1969: -49,33
- 1970: -48,33
- 1971: -47,33
- 1972: -46,33
- 1973: -45,33
- 1974: -44,33
- 1975: -43,33
- 2012: -63,15
- 2013: -62,15
- 2014: -61,15
- 2015: -60,15
- 2016: -59,15
- 2017: -51,25
- 2018: -50,25
- 2019: -49,25
+ 1409: -55,11
+ 1410: -51,20
+ 1411: -50,20
+ 1412: -49,20
+ 1413: -59,22
+ 1414: -60,22
+ 1415: -61,22
+ 1416: -62,22
+ 1417: -63,22
+ 1418: -64,22
+ 1419: -65,22
+ 1420: -53,29
+ 1421: -52,29
+ 1422: -51,29
+ 1423: -50,29
+ 1424: -49,29
+ 1425: -48,29
+ 1426: -47,29
+ 1427: -46,29
+ 1428: -45,29
+ 1429: -49,33
+ 1430: -48,33
+ 1431: -47,33
+ 1432: -46,33
+ 1433: -45,33
+ 1466: -63,15
+ 1467: -62,15
+ 1468: -61,15
+ 1469: -60,15
+ 1470: -59,15
+ 1471: -51,25
+ 1472: -50,25
+ 1473: -49,25
+ 4711: 22,-22
+ 4712: 21,-22
+ 4715: 18,-24
+ 4716: 19,-24
+ 6026: -55,33
+ 6350: 16,-17
+ 6351: 17,-17
+ 6352: 18,-17
+ 6353: 19,-17
+ 6354: 20,-17
+ 6355: 21,-17
+ 6356: 22,-17
+ 6357: 23,-17
+ 6358: 24,-17
+ 6364: -62,11
+ 6365: -61,11
+ 6366: -60,11
+ 6367: -59,11
+ 6382: -51,11
+ 6383: -50,11
+ 6384: -49,11
+ 6385: -49,15
+ 6386: -50,15
+ 6387: -51,15
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteLineS
decals:
- 2756: -55,-4
- 2757: -54,-4
- 2758: -53,-4
- 2759: -52,-4
- 2760: -51,-4
- 2761: -62,-5
- 2762: -61,-5
- 2763: -60,-5
- 2764: -59,-5
- 2765: -54,0
- 2766: -53,0
- 2767: -52,0
- 2768: -51,0
- 2769: -58,0
- 2770: -59,0
- 2771: -60,0
- 2772: -61,0
- 2773: -62,0
- 2774: -56,2
- 2885: -62,-10
- 2886: -61,-10
- 2887: -60,-10
- 2888: -59,-10
- 2901: -55,-9
- 2940: -59,-13
- 2941: -58,-13
- 2942: -57,-13
- 2943: -56,-13
- 2944: -55,-13
- 2945: -54,-13
- 2947: -52,-12
- 2948: -51,-12
- 2949: -69,5
- 2950: -70,5
- 2951: -71,5
- 2952: -72,5
- 2953: -73,5
- 2954: -73,13
- 2955: -69,13
- 2956: -73,-1
- 2957: -77,7
- 2958: -78,7
- 2959: -79,7
- 2960: -80,7
- 2961: -84,6
- 2962: -85,6
- 2963: -86,6
- 2964: -90,7
- 2965: -91,7
- 2966: -92,7
- 2967: -93,7
- 2968: -85,12
- 2969: -85,-1
- 2970: -89,-6
- 2971: -88,-6
- 2972: -87,-6
- 2973: -86,-6
- 2974: -85,-6
- 2975: -84,-6
- 2976: -83,-6
- 2977: -82,-6
- 2978: -81,-6
- 3099: -88,20
- 3100: -82,20
- 3103: -84,19
- 3104: -85,19
- 3105: -86,19
- 3119: -66,7
- 3120: -65,7
- 3121: -64,7
- 3122: -63,7
- 3123: -62,7
- 3124: -61,7
- 3125: -60,7
- 3126: -59,7
- 3127: -58,7
- 3128: -57,7
- 3129: -56,7
- 3130: -55,7
- 3131: -54,7
- 3132: -53,7
- 3133: -52,7
- 3134: -51,7
- 3135: -50,7
- 6191: -94,-6
- 6192: -93,-6
- 6193: -95,21
- 6194: -94,21
- 6195: -93,21
- 6210: -69,-1
- 6384: -54,-9
+ 2056: -55,-4
+ 2057: -54,-4
+ 2058: -53,-4
+ 2059: -52,-4
+ 2060: -51,-4
+ 2061: -62,-5
+ 2062: -61,-5
+ 2063: -60,-5
+ 2064: -59,-5
+ 2065: -54,0
+ 2066: -53,0
+ 2067: -52,0
+ 2068: -51,0
+ 2069: -58,0
+ 2070: -59,0
+ 2071: -60,0
+ 2072: -61,0
+ 2073: -62,0
+ 2074: -56,2
+ 2184: -62,-10
+ 2185: -61,-10
+ 2186: -60,-10
+ 2187: -59,-10
+ 2211: -59,-13
+ 2212: -58,-13
+ 2213: -57,-13
+ 2214: -56,-13
+ 2215: -55,-13
+ 2216: -54,-13
+ 2218: -52,-12
+ 2219: -51,-12
+ 2220: -69,5
+ 2221: -70,5
+ 2222: -71,5
+ 2223: -72,5
+ 2224: -73,5
+ 2225: -73,13
+ 2226: -69,13
+ 2227: -73,-1
+ 2228: -77,7
+ 2229: -78,7
+ 2230: -79,7
+ 2231: -80,7
+ 2232: -84,6
+ 2233: -85,6
+ 2234: -86,6
+ 2235: -90,7
+ 2236: -91,7
+ 2237: -92,7
+ 2238: -93,7
+ 2239: -85,12
+ 2240: -85,-1
+ 2241: -89,-6
+ 2242: -88,-6
+ 2243: -87,-6
+ 2244: -86,-6
+ 2245: -85,-6
+ 2246: -84,-6
+ 2247: -83,-6
+ 2248: -82,-6
+ 2249: -81,-6
+ 2370: -88,20
+ 2371: -82,20
+ 2374: -84,19
+ 2375: -85,19
+ 2376: -86,19
+ 2390: -66,7
+ 2391: -65,7
+ 2392: -64,7
+ 2393: -63,7
+ 2394: -62,7
+ 2395: -61,7
+ 2396: -60,7
+ 2397: -59,7
+ 2398: -58,7
+ 2399: -57,7
+ 2400: -56,7
+ 2401: -55,7
+ 2402: -54,7
+ 2403: -53,7
+ 2404: -52,7
+ 2405: -51,7
+ 2406: -50,7
+ 4451: -94,-6
+ 4452: -93,-6
+ 4453: -95,21
+ 4454: -94,21
+ 4455: -93,21
+ 4470: -69,-1
- node:
color: '#FF974DFF'
id: BrickTileWhiteLineS
decals:
- 2201: 14,-3
- 2202: 13,-3
- 2203: 22,-3
- 2204: 23,-3
- 2205: 24,-3
- 2206: 25,-3
- 2207: 26,-3
- 2208: 27,-3
- 2241: 16,-12
- 2242: 17,-12
- 2243: 18,-12
- 2244: 19,-12
- 2245: 20,-12
- 2246: 16,-6
- 2247: 17,-6
- 2248: 18,-6
- 2249: 19,-6
- 2250: 20,-6
+ 1591: 14,-3
+ 1592: 13,-3
+ 1593: 22,-3
+ 1594: 23,-3
+ 1595: 24,-3
+ 1596: 25,-3
+ 1597: 26,-3
+ 1598: 27,-3
+ 1631: 16,-12
+ 1632: 17,-12
+ 1633: 18,-12
+ 1634: 19,-12
+ 1635: 20,-12
+ 1636: 16,-6
+ 1637: 17,-6
+ 1638: 18,-6
+ 1639: 19,-6
+ 1640: 20,-6
- node:
color: '#334E6DFF'
id: BrickTileWhiteLineW
decals:
- 1102: 4,41
- 1103: 4,40
- 1104: 4,39
- 1105: 4,38
- 1106: 4,37
- 1107: 4,36
- 1117: 9,38
- 1118: 9,39
- 1138: 16,36
- 1139: 16,37
- 1140: 16,38
- 1141: 16,39
- 1148: 17,41
- 1149: 17,42
- 1150: 17,43
- 1151: 17,44
- 1152: 17,45
- 1153: 17,46
- 1154: 17,47
- 1155: 17,48
- 1156: 17,49
- 1226: 9,46
- 1227: 9,47
- 1228: 9,48
- 1229: 9,49
- 1230: 5,55
- 1231: 5,54
- 1232: 5,53
- 1233: 5,52
- 1234: 5,51
- 1235: 5,50
- 1236: 5,49
- 1237: 5,48
- 1260: 27,42
- 1261: 27,43
- 1262: 27,44
- 1281: 21,49
- 1300: 16,55
- 1310: 14,55
- 1311: 14,56
- 1339: 26,55
- 1378: 6,24
- 1379: 11,29
- 1380: 4,28
- 1381: 11,28
- 1382: 4,29
- 1383: 17,28
- 1384: 17,27
- 1385: 17,26
- 1386: 17,25
- - node:
- color: '#354DA0FF'
- id: BrickTileWhiteLineW
- decals:
- 5901: 33,2
+ 775: 4,41
+ 776: 4,40
+ 777: 4,39
+ 778: 4,38
+ 779: 4,37
+ 780: 4,36
+ 790: 9,38
+ 791: 9,39
+ 811: 16,36
+ 812: 16,37
+ 813: 16,38
+ 814: 16,39
+ 821: 17,41
+ 822: 17,42
+ 823: 17,43
+ 824: 17,44
+ 825: 17,45
+ 826: 17,46
+ 827: 17,47
+ 828: 17,48
+ 829: 17,49
+ 895: 9,46
+ 896: 9,47
+ 897: 9,48
+ 898: 9,49
+ 899: 5,55
+ 900: 5,54
+ 901: 5,53
+ 902: 5,52
+ 903: 5,51
+ 904: 5,50
+ 905: 5,49
+ 943: 16,55
+ 953: 14,55
+ 954: 14,56
+ 982: 26,55
+ 1021: 6,24
+ 1022: 11,29
+ 1023: 4,28
+ 1024: 11,28
+ 1025: 4,29
+ 1026: 17,28
+ 1027: 17,27
+ 1028: 17,26
+ 1029: 17,25
+ 6095: 25,49
+ 6096: 25,50
+ 6444: 5,59
+ 6445: 5,60
+ 6446: 5,61
- node:
color: '#7C45B5FF'
id: BrickTileWhiteLineW
decals:
- 2286: -43,20
- 2287: -43,21
- 2288: -43,22
- 2289: -43,23
- 2309: -40,18
- 2328: -41,11
- 2341: 33,-2
+ 1651: 33,-2
- node:
color: '#80C71FFF'
id: BrickTileWhiteLineW
decals:
- 6371: -15,6
- 6372: -18,6
- 6373: -20,6
- 6374: -22,6
- 6375: -24,6
- 6376: -26,6
- 6377: -28,6
- 6378: -30,6
+ 4573: -24,6
+ 4629: -23,6
+ 4630: -21,6
+ 4631: -19,6
+ 4632: -17,6
+ 4633: -15,6
+ 4634: -9,6
- node:
color: '#845606FF'
id: BrickTileWhiteLineW
decals:
- 3325: -23,-34
- 3326: -23,-33
- 3327: -23,-32
- 3328: -23,-31
- 3329: -23,-30
- 3330: -20,-41
- 3331: -20,-40
- 3332: -20,-39
- 3333: -14,-40
- 3334: -14,-39
- 3335: -14,-41
- 3336: -14,-42
- 3337: -17,-29
- 3338: -17,-30
- 3339: -23,-25
- 3340: -23,-24
- 3341: -23,-23
- 3342: -23,-21
- 3343: -23,-20
- 3344: -31,-21
- 3345: -31,-20
- 3346: -31,-25
- 3347: -11,-25
- 3348: -17,-21
- 3349: -17,-20
- 4469: -20,-44
- 4470: -20,-43
- 4471: -20,-42
- 4472: -52,-42
- 4473: -52,-43
- 4474: -52,-44
- 4475: -52,-45
- 4476: -52,-49
- 4539: -23,-29
- 5850: -52,-48
- 5854: -52,-47
- 5855: -52,-46
- 6019: -23,-35
+ 2494: -14,-41
+ 2495: -17,-29
+ 2496: -17,-30
+ 2497: -23,-21
+ 2498: -31,-21
+ 2499: -31,-20
+ 2500: -31,-25
+ 2501: -11,-25
+ 5943: -12,-41
+ 6710: -17,-20
+ 6752: -26,-46
+ 6753: -26,-45
+ 6754: -26,-44
+ 6755: -26,-43
+ 6756: -26,-42
+ 6758: -17,-41
+ 6759: -17,-40
+ 6771: -32,-42
+ 6772: -32,-43
+ 6773: -32,-44
+ 6774: -32,-45
+ 6823: -12,-42
+ 6928: -17,-35
+ 6929: -17,-34
+ 6948: -23,-20
- node:
- color: '#91D4FFFF'
+ color: '#8932B8FF'
id: BrickTileWhiteLineW
decals:
- 385: -30,2
- 470: -30,-2
- 471: -24,-2
- 472: -18,-2
- 498: -12,-2
- 499: -12,-1
- 500: -12,5
- 501: -12,6
- 502: -12,7
- 503: -12,8
- 504: -12,9
- 505: -12,10
- 523: -12,11
- 524: -15,15
- 525: -15,14
- 528: -12,0
- 529: -12,4
- 547: -4,-2
- 548: -4,-1
- 549: -4,0
- 556: -4,4
- 557: -4,5
- 558: -4,6
- 559: -9,2
- 1694: 8,6
- 1695: 8,5
- 1696: 5,10
- 1697: 5,11
- 1698: 5,12
- 1699: 5,13
- 1700: 5,14
- 1701: 8,4
- 1702: 8,3
- 1703: 8,1
- 1704: 8,2
- 1705: 8,0
- 1706: 8,-1
- 1707: 8,-2
- 1725: 0,16
- 1726: 0,15
- 1727: 0,14
- 1728: 0,13
- 1729: 0,12
- 1730: 0,11
- 1731: 0,10
- 1732: 0,9
- 1733: 0,-5
- 1734: 0,-6
- 1735: 0,-7
- 1736: 0,-12
- 1737: 0,-8
- 1738: 0,-9
- 1739: 0,-10
- 1740: 0,-11
- 6307: 5,-6
- 6308: 5,-7
- 6309: 9,-6
- 6310: 9,-7
- 6311: 9,-8
- 6312: 9,-9
- 6313: 9,-10
- 6314: 9,-11
- 6315: 9,-12
- 6316: 12,-10
- 6317: 12,-11
- 6318: 12,-9
- - node:
- color: '#951710FF'
+ 5728: -41,11
+ 5729: -41,10
+ 5730: -41,9
+ - node:
+ color: '#91D4FFFF'
id: BrickTileWhiteLineW
decals:
- 6151: -29,45
- 6152: -29,46
+ 412: -24,-2
+ 413: -18,-2
+ 430: -12,-2
+ 431: -12,-1
+ 432: -12,5
+ 433: -12,6
+ 434: -12,7
+ 435: -12,8
+ 436: -12,9
+ 437: -12,10
+ 455: -12,11
+ 456: -15,15
+ 457: -15,14
+ 460: -12,0
+ 461: -12,4
+ 1222: 8,6
+ 1223: 8,5
+ 1224: 8,4
+ 1225: 8,3
+ 1226: 8,1
+ 1227: 8,2
+ 1228: 8,0
+ 1229: 8,-1
+ 1230: 8,-2
+ 1241: 0,16
+ 1242: 0,15
+ 1243: 0,14
+ 1244: 0,13
+ 1245: 0,12
+ 1246: 0,11
+ 1247: 0,10
+ 1248: 0,9
+ 1249: 0,-5
+ 1250: 0,-6
+ 1251: 0,-7
+ 1252: 0,-12
+ 1253: 0,-8
+ 1254: 0,-9
+ 1255: 0,-10
+ 1256: 0,-11
+ 4547: 5,-6
+ 4548: 5,-7
+ 4549: 9,-6
+ 4550: 9,-7
+ 4551: 9,-8
+ 4552: 9,-9
+ 4553: 9,-10
+ 4554: 9,-12
+ 4555: 12,-10
+ 4556: 12,-9
+ 4598: -23,2
+ 5386: -12,-5
+ 5387: -12,-4
+ 5388: -12,-3
+ 6469: -4,2
+ 6470: 0,6
+ 6471: 0,5
+ 6476: 0,-1
+ 6477: 0,-2
+ 6490: 0,4
+ 6493: 0,0
+ 6967: 8,15
+ 6968: 8,13
+ 6969: 8,12
+ 6970: 8,11
+ 6971: 8,10
+ 6980: 18,11
+ 6989: 18,10
+ 7055: 18,6
+ 7105: 8,14
+ 7163: 9,-11
- node:
color: '#9DDFBAFF'
id: BrickTileWhiteLineW
decals:
- 974: -32,61
- 975: -32,60
- 976: -32,59
- 977: -32,58
- 978: -28,63
- 979: -28,62
- 980: -28,61
- 981: -28,60
- 982: -28,59
- 983: -28,58
- 984: -28,57
- 985: -28,56
- 986: -28,55
- 987: -28,54
- 1015: -14,62
- 1016: -24,58
- 1017: -24,57
- 1018: -24,56
- 1019: -24,55
- 1020: -24,54
- 1021: 0,68
- 1022: 0,67
- 1023: 0,66
- 1024: 0,65
- 1025: 0,64
- 1026: 0,63
- 1027: -6,67
- 4395: -40,61
- 4396: -40,60
- 4397: -40,59
- 4398: -45,65
- 4399: -45,66
- 6171: -45,63
+ 667: -32,61
+ 668: -32,60
+ 669: -32,59
+ 670: -32,58
+ 671: -28,63
+ 672: -28,62
+ 673: -28,61
+ 674: -28,60
+ 675: -28,59
+ 676: -28,58
+ 677: -28,57
+ 678: -28,56
+ 679: -28,55
+ 680: -28,54
+ 694: -14,62
+ 695: -24,57
+ 696: -24,56
+ 697: -24,55
+ 698: -24,54
+ 699: 0,68
+ 700: 0,67
+ 701: 0,66
+ 702: 0,65
+ 703: 0,64
+ 704: 0,63
+ 3372: -40,61
+ 3373: -40,60
+ 3374: -40,59
+ 3375: -45,65
+ 3376: -45,66
+ 4431: -45,63
+ 6224: -45,59
+ 6243: -18,62
- node:
color: '#B02E26FF'
id: BrickTileWhiteLineW
decals:
- 637: -28,40
- 638: -28,41
- 658: -31,41
- 659: -31,40
- 681: -11,40
- 682: -11,41
- 711: -14,43
- 712: -14,42
- 713: -14,41
- 714: -14,40
- 715: -14,39
- 716: -14,38
- 717: -14,37
- 718: -14,36
- 719: -14,35
- 720: -14,34
- 721: -14,33
- 722: -14,32
- 723: -14,31
- 724: -23,29
- 725: -37,30
- 726: -37,34
- 727: -7,29
- 728: -7,28
- 729: -12,25
- 756: -9,34
- 757: -9,33
- 782: -23,25
- 863: -19,41
- 864: -19,40
- 4441: -34,38
- 4442: -34,39
- 4443: -34,40
- 4444: -34,41
- 4445: -34,42
- 4446: -34,43
- 4447: -34,44
- 4448: -34,45
- 4449: -34,46
- 4450: -34,47
- 4451: -34,48
- 4452: -34,49
- 4453: -34,50
+ 484: -11,40
+ 485: -11,41
+ 504: -14,43
+ 505: -14,42
+ 506: -14,41
+ 507: -14,40
+ 508: -14,39
+ 509: -14,38
+ 510: -14,37
+ 511: -14,36
+ 512: -14,35
+ 513: -14,34
+ 514: -14,33
+ 515: -14,32
+ 516: -14,31
+ 517: -23,29
+ 518: -37,34
+ 519: -7,29
+ 520: -7,28
+ 521: -12,25
+ 545: -9,33
+ 570: -23,25
+ 5478: -14,44
+ 5493: -27,49
+ 5494: -27,50
+ 5546: -21,50
+ 5547: -21,49
+ 6157: -3,39
+ 6158: 0,38
+ 6159: 0,39
+ 6418: -36,30
- node:
color: '#B04DB5FF'
id: BrickTileWhiteLineW
decals:
- 2495: 34,24
- 2496: 34,25
- 2497: 26,27
- 2498: 26,28
- 2499: 26,29
- 2500: 34,29
- 2502: 42,25
- 2503: 42,24
- 2504: 42,29
- 2505: 42,37
- 2506: 42,38
- 2507: 42,39
- 2508: 38,33
- 2509: 38,34
- 2510: 38,35
- 2511: 38,36
- 2512: 38,37
- 2513: 38,38
- 2514: 38,39
- 2515: 38,40
- 2516: 38,41
- 2517: 38,42
- 2518: 38,43
- 2519: 34,47
- 2520: 34,48
- 2521: 34,49
- 2522: 34,50
- 2523: 39,50
- 2524: 49,50
- 2525: 43,54
- 2526: 43,55
- 2527: 43,56
- 2528: 37,56
- 2529: 37,55
- 2530: 37,54
- 2531: 42,43
- 2532: 42,33
- 2533: 42,25
- 2534: 42,24
- 2535: 26,28
- 2674: 51,29
- 2675: 51,28
- 2676: 51,27
- 2693: 53,48
- 2695: 52,50
+ 1799: 34,24
+ 1800: 34,25
+ 1801: 26,27
+ 1802: 26,28
+ 1803: 26,29
+ 1804: 34,29
+ 1806: 42,25
+ 1807: 42,24
+ 1808: 42,29
+ 1809: 42,37
+ 1810: 42,38
+ 1811: 42,39
+ 1812: 38,33
+ 1813: 38,34
+ 1814: 38,35
+ 1815: 38,36
+ 1816: 38,37
+ 1817: 38,38
+ 1818: 38,39
+ 1819: 38,40
+ 1820: 38,41
+ 1821: 38,42
+ 1822: 38,43
+ 1823: 34,47
+ 1824: 34,48
+ 1825: 34,49
+ 1826: 34,50
+ 1827: 39,50
+ 1828: 49,50
+ 1829: 43,54
+ 1830: 43,55
+ 1831: 43,56
+ 1832: 37,56
+ 1833: 37,55
+ 1834: 37,54
+ 1835: 42,43
+ 1836: 42,33
+ 1837: 42,25
+ 1838: 42,24
+ 1839: 26,28
+ 1976: 51,29
+ 1977: 51,28
+ 1978: 51,27
+ 1995: 53,48
+ 1997: 52,50
- node:
color: '#BA8841FF'
id: BrickTileWhiteLineW
decals:
- 2010: -52,22
- 2011: -52,21
- 2020: -64,19
- 2021: -64,18
- 2022: -64,17
- 2023: -64,16
- 2024: -56,12
- 2025: -56,13
- 2026: -56,14
- 2027: -56,15
- 2028: -56,16
- 2029: -56,17
- 2030: -56,18
- 2031: -56,19
- 2032: -56,20
- 2033: -56,21
- 2034: -56,22
- 2035: -56,23
- 2036: -56,24
- 2037: -56,25
- 2038: -56,26
- 2039: -56,27
- 2040: -56,28
- 2041: -66,23
- 2042: -66,24
- 2043: -66,25
- 2044: -66,26
- 2045: -65,29
- 2046: -65,28
- 2047: -64,31
- 2048: -64,32
- 2049: -64,33
- 2050: -64,34
- 2051: -64,35
- 2052: -58,35
- 2053: -58,34
- 2054: -50,34
- 2055: -52,26
- 2056: -52,17
- 2066: -57,30
- 2083: -46,10
- 2084: -46,11
- 2085: -46,12
- 2086: -46,13
- 2087: -46,14
- 2088: -46,15
- 2089: -46,16
- 2090: -46,17
+ 1464: -52,22
+ 1465: -52,21
+ 1474: -64,19
+ 1475: -64,18
+ 1476: -64,17
+ 1477: -64,16
+ 1478: -56,12
+ 1479: -56,13
+ 1480: -56,14
+ 1481: -56,15
+ 1482: -56,16
+ 1483: -56,17
+ 1484: -56,18
+ 1485: -56,19
+ 1486: -56,20
+ 1487: -56,21
+ 1488: -56,22
+ 1489: -56,23
+ 1490: -56,24
+ 1491: -56,25
+ 1492: -56,26
+ 1493: -56,27
+ 1494: -56,28
+ 1495: -66,23
+ 1496: -66,24
+ 1497: -66,25
+ 1498: -66,26
+ 1499: -65,29
+ 1500: -65,28
+ 1501: -64,31
+ 1502: -64,32
+ 1503: -64,33
+ 1504: -64,34
+ 1505: -64,35
+ 1506: -50,34
+ 1507: -52,26
+ 1508: -52,17
+ 1518: -57,30
+ 1533: -46,10
+ 1534: -46,11
+ 1535: -46,12
+ 1536: -46,13
+ 1537: -46,14
+ 1538: -46,15
+ 1539: -46,16
+ 1540: -46,17
+ 4717: 17,-23
+ 4718: 17,-22
+ 4719: 17,-21
+ 4720: 17,-20
+ 6032: -56,36
+ 6033: -56,35
+ 6034: -56,34
+ 6378: -52,12
+ 6389: -52,16
- node:
color: '#D3F4A5FF'
id: BrickTileWhiteLineW
decals:
- 2797: -63,-4
- 2798: -63,-3
- 2799: -56,-3
- 2800: -63,1
- 2801: -63,2
- 2802: -63,3
- 2803: -63,4
- 2806: -55,1
- 2807: -74,6
- 2808: -74,7
- 2809: -74,8
- 2810: -74,9
- 2811: -74,10
- 2839: -81,8
- 2840: -70,14
- 2841: -70,15
- 2842: -70,16
- 2843: -74,16
- 2844: -74,15
- 2845: -74,14
- 2846: -86,13
- 2847: -86,14
- 2848: -86,15
- 2849: -86,16
- 2850: -99,12
- 2851: -99,11
- 2852: -99,10
- 2853: -99,9
- 2854: -99,8
- 2855: -99,6
- 2856: -99,7
- 2857: -99,5
- 2858: -99,4
- 2859: -98,19
- 2860: -98,20
- 2861: -98,21
- 2862: -98,22
- 2863: -98,23
- 2864: -98,24
- 2865: -98,25
- 2866: -98,26
- 2867: -98,27
- 2868: -98,28
- 2869: -94,8
- 2870: -98,-3
- 2871: -98,-4
- 2872: -98,-5
- 2873: -98,-6
- 2874: -98,-7
- 2875: -98,-8
- 2876: -98,-9
- 2877: -98,-10
- 2878: -98,-11
- 2879: -98,-12
- 2896: -63,-8
- 2897: -63,-9
- 2898: -56,-7
- 2899: -56,-8
- 2929: -54,-31
- 2930: -60,-25
- 2931: -60,-24
- 2932: -60,-23
- 2933: -60,-22
- 2934: -60,-21
- 2935: -60,-20
- 2936: -60,-19
- 2937: -60,-18
- 2938: -60,-17
- 2939: -60,-16
- 3078: -87,9
- 3079: -87,8
- 3080: -87,7
- 3082: -86,3
- 3083: -86,2
- 3084: -86,1
- 3085: -86,0
- 3137: -48,6
- 3138: -48,5
- 3139: -48,4
- 3140: -48,3
- 3141: -48,2
- 3142: -48,1
- 3143: -48,0
- 3144: -48,-1
- 6206: -70,2
- 6207: -70,1
- 6208: -70,0
+ 2097: -63,-4
+ 2098: -63,-3
+ 2099: -56,-3
+ 2100: -63,1
+ 2101: -63,2
+ 2102: -63,3
+ 2103: -63,4
+ 2106: -55,1
+ 2107: -74,6
+ 2108: -74,7
+ 2109: -74,8
+ 2110: -74,9
+ 2111: -74,10
+ 2139: -81,8
+ 2140: -70,14
+ 2141: -70,15
+ 2142: -70,16
+ 2143: -74,16
+ 2144: -74,15
+ 2145: -74,14
+ 2146: -86,13
+ 2147: -86,14
+ 2148: -86,15
+ 2149: -86,16
+ 2150: -99,12
+ 2151: -99,11
+ 2152: -99,10
+ 2153: -99,9
+ 2154: -99,8
+ 2155: -99,6
+ 2156: -99,7
+ 2157: -99,5
+ 2158: -99,4
+ 2159: -98,19
+ 2160: -98,20
+ 2161: -98,21
+ 2162: -98,22
+ 2163: -98,23
+ 2164: -98,24
+ 2165: -98,25
+ 2166: -98,26
+ 2167: -98,27
+ 2168: -98,28
+ 2169: -94,8
+ 2170: -98,-3
+ 2171: -98,-4
+ 2172: -98,-5
+ 2173: -98,-6
+ 2174: -98,-7
+ 2175: -98,-8
+ 2176: -98,-9
+ 2177: -98,-10
+ 2178: -98,-11
+ 2179: -98,-12
+ 2194: -63,-8
+ 2195: -63,-9
+ 2210: -54,-31
+ 2349: -87,9
+ 2350: -87,8
+ 2351: -87,7
+ 2353: -86,3
+ 2354: -86,2
+ 2355: -86,1
+ 2356: -86,0
+ 2408: -48,6
+ 2409: -48,5
+ 2410: -48,4
+ 2411: -48,3
+ 2412: -48,2
+ 2413: -48,1
+ 2414: -48,0
+ 2415: -48,-1
+ 4466: -70,2
+ 4467: -70,1
+ 4468: -70,0
- node:
color: '#FF974DFF'
id: BrickTileWhiteLineW
decals:
- 2191: 13,1
- 2192: 15,-4
- 2193: 15,-5
- 2224: 12,-1
- 2225: 12,-2
- 2226: 15,-9
- 2227: 15,-10
- 2228: 15,-11
+ 1582: 13,1
+ 1583: 15,-4
+ 1584: 15,-5
+ 1614: 12,-1
+ 1615: 12,-2
+ 1616: 15,-9
+ 1617: 15,-10
+ 1618: 15,-11
+ - node:
+ color: '#FFFFFFFF'
+ id: BushAOne
+ decals:
+ 5175: 94.47125,44.284866
+ 5176: 92.61969,42.185574
+ 5177: 96.762985,34.00421
+ 5265: -40.488827,72.31972
+ 5278: 45.465385,14.397949
+ 5364: -66.58855,31.839897
+ - node:
+ color: '#FFFFFFFF'
+ id: BushATwo
+ decals:
+ 5225: 4.253884,44.84271
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCOne
+ decals:
+ 5239: -30.284492,4.3149476
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCThree
+ decals:
+ 5171: 100.565,47.89424
+ 5172: 99.85016,42.257523
+ 5173: 102.45172,41.15596
+ 5280: 45.69976,11.483887
+ 5462: -9.563732,46.01986
+ 5837: 19.424809,-28.877602
+ 6905: -23.96835,-29.359528
+ - node:
+ color: '#FFFFFFFF'
+ id: BushCTwo
+ decals:
+ 5838: 20.198246,-32.49479
+ - node:
+ color: '#FFFFFFFF'
+ id: BushDOne
+ decals:
+ 5160: 79.81664,56.801743
+ 5161: 83.39086,53.91893
+ 5178: 93.28252,30.992493
+ 5179: 89.01256,27.561384
- node:
color: '#FFFFFFFF'
id: BushDThree
decals:
- 149: 54,-13
- 150: 68,-9
- 151: 71,-3
- 152: 3,-10
- 226: 37,37
- 3767: -23.84824,-36.039036
- 3788: 70.49607,-5.2800684
- 3789: 73.21482,-5.2683496
+ 143: 54,-13
+ 144: 68,-9
+ 145: 71,-3
+ 146: 3,-10
+ 209: 37,37
+ 2842: -23.84824,-36.039036
+ 2863: 70.49607,-5.2800684
+ 2864: 73.21482,-5.2683496
+ 5003: 73.579414,74.4158
+ 5056: 93.51455,23.22274
+ 5180: 76.32356,37.133736
+ 5181: 72.402985,49.437653
+ 5279: 46.340385,12.897949
- node:
color: '#FFFFFFFF'
id: BushDTwo
decals:
- 200: -1,14
- 352: -106.987564,9.973441
- 366: -101.81569,9.926566
- 3477: -0.88223886,-10.300684
- 6085: -59.517128,9.321603
- 6086: -42.90093,5.449465
- 6087: -30.489948,17.91463
- 6088: 47.184723,21.183506
- 6089: 39.60601,-20.002787
- 6090: 42.520073,-19.752787
- 6091: 40.600338,-30.343527
- 6092: 34.420174,-36.616962
- 6093: 17.789068,-38.879887
- 6094: 1.2919211,-38.75982
- 6095: -3.5219002,-45.90537
- 6096: -10.826588,-52.624638
- 6097: 13.056606,-52.51093
- 6098: 8.8619585,-45.313065
- 6099: -8.990252,-30.680576
- 6100: -23.893175,-32.74724
+ 183: -1,14
+ 329: -106.987564,9.973441
+ 343: -101.81569,9.926566
+ 2590: -0.88223886,-10.300684
+ 4391: -59.517128,9.321603
+ 4392: -30.489948,17.91463
+ 4393: 47.184723,21.183506
+ 4394: 39.60601,-20.002787
+ 4395: 42.520073,-19.752787
+ 4396: 40.600338,-30.343527
+ 4397: 34.420174,-36.616962
+ 4398: 17.789068,-38.879887
+ 4399: 1.2919211,-38.75982
+ 4400: -3.5219002,-45.90537
+ 4401: 13.056606,-52.51093
+ 4402: 8.8619585,-45.313065
+ 4403: -8.990252,-30.680576
+ 4404: -23.893175,-32.74724
+ - node:
+ color: '#FFFFFFFF'
+ id: Busha1
+ decals:
+ 5226: 6.6366963,43.772396
+ 5264: -35.56695,70.99159
+ 5463: -5.43092,46.160484
+ 6938: -10.819955,-50.226284
+ - node:
+ color: '#FFFFFFFF'
+ id: Busha2
+ decals:
+ 5238: -32.261055,0.119635105
+ 5389: 31.206207,57.06866
+ 5836: 14.6279335,-30.455727
+ - node:
+ color: '#FFFFFFFF'
+ id: Busha3
+ decals:
+ 5182: 65.169395,53.750153
+ 5234: 3.7995977,46.303474
+ 5263: -38.7232,72.97597
+ 5277: 41.277885,14.983887
+ 5363: -69.54167,32.207085
+ 6160: -3,27
- node:
color: '#FFFFFFFF'
id: Bushb2
decals:
- 6387: -58.49992,-28.071701
+ 5055: 93.43252,23.97274
+ 6904: -24.335537,-37.467194
- node:
color: '#FFFFFFFF'
id: Bushb3
decals:
- 266: 36,-37
+ 245: 36,-37
+ 5174: 95.572815,40.335648
+ 5365: -67.549484,36.214897
+ 5390: 35.135895,55.59991
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc1
+ decals:
+ 5391: 31.159332,53.357723
+ 5839: 13.901371,-32.71354
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc2
+ decals:
+ 5224: 7.082009,44.522396
+ 5240: -28.768867,3.5180726
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushc3
+ decals:
+ 5266: -36.926327,68.89003
- node:
color: '#FFFFFFFF'
id: Bushd1
decals:
- 3871: 57.006096,-12.356954
- 3872: 57.099846,-6.4928484
- 3873: 57.873283,-6.9615984
- 3874: 63.099846,-6.8826447
- 3875: 65.24438,-12.144363
- 3876: 67.27172,-12.788895
- 3877: 67.48266,-13.257645
- 3878: 69.80284,-5.2769313
- 3879: 71.44347,-3.4839625
- 3880: 66.205185,0.043381214
- 3881: 65.642685,-1.0347438
- 3882: 62.150494,-2.1245875
- 3883: 55.271587,-0.22615004
- 3884: 53.619244,-8.4761505
- 3885: 54.380962,-9.671463
- 3886: 52.400494,-15.636277
- 3887: 48.594856,-24.49732
- 3888: 51.36048,-26.65357
- 6160: -13.54646,71.93295
+ 2946: 57.006096,-12.356954
+ 2947: 57.099846,-6.4928484
+ 2948: 57.873283,-6.9615984
+ 2949: 63.099846,-6.8826447
+ 2950: 65.24438,-12.144363
+ 2951: 67.27172,-12.788895
+ 2952: 67.48266,-13.257645
+ 2953: 69.80284,-5.2769313
+ 2954: 71.44347,-3.4839625
+ 2955: 66.205185,0.043381214
+ 2956: 65.642685,-1.0347438
+ 2957: 62.150494,-2.1245875
+ 2958: 55.271587,-0.22615004
+ 2959: 53.619244,-8.4761505
+ 2960: 54.380962,-9.671463
+ 2961: 52.400494,-15.636277
+ 2962: 48.594856,-24.49732
+ 2963: 51.36048,-26.65357
+ 4420: -13.54646,71.93295
+ 5025: 98.13174,15.125084
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushd2
+ decals:
+ 5162: 86.68383,54.446274
+ 5163: 99.75641,48.140526
+ 5164: 102.08844,41.906906
+ 5165: 96.3111,43.79454
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushd4
+ decals:
+ 6906: -23.90585,-38.226715
- node:
color: '#FFFFFFFF'
id: Bushe1
decals:
- 170: -3,-47
- 201: -1,9
- 257: 66,-4
- 258: 72,-4
- 362: -106.90944,6.957816
- 363: -103.09694,5.285941
- 364: -102.925064,4.629691
- 3546: -1.2123232,14.564764
+ 158: -3,-47
+ 184: -1,9
+ 236: 66,-4
+ 237: 72,-4
+ 339: -106.90944,6.957816
+ 340: -103.09694,5.285941
+ 341: -102.925064,4.629691
+ 2638: -1.2123232,14.564764
+ 5011: 96.186424,43.444447
+ 5012: 99.99502,42.319447
+ 5013: 100.47549,47.90929
+ 5034: 98.75283,16.00399
+ 5035: 95.30752,14.339928
+ 5184: 66.52363,67.10298
- node:
color: '#FFFFFFFF'
id: Bushe2
decals:
- 142: 53,0
- 143: 51,-16
- 144: 63,-26
- 359: -105.75319,9.676566
- 360: -105.893814,8.332816
- 361: -106.737564,7.426566
+ 136: 53,0
+ 137: 51,-16
+ 138: 63,-26
+ 336: -105.75319,9.676566
+ 337: -105.893814,8.332816
+ 338: -106.737564,7.426566
+ 5607: -4.8797646,46.99503
+ 5608: -8.293827,45.260654
- node:
color: '#FFFFFFFF'
id: Bushe3
decals:
- 3457: 42.40303,-11.448524
- 3458: 41.500687,-14.392142
- 3459: 47.430374,-6.8730726
- 3460: 46.15303,3.6802206
- 3461: 45.12178,13.699752
- 3462: 65.732506,-8.308953
- 3463: 59.42782,-10.014526
- 3464: 67.525475,-21.236286
- 3465: 61.443443,-27.3714
- 3466: 49.665607,-26.2464
- 3467: 40.71666,-29.257294
- 3468: 36.59022,-36.651825
- 3469: 13.614435,-38.831512
- 3470: 8.84652,-43.378727
+ 2573: 42.40303,-11.448524
+ 2574: 41.500687,-14.392142
+ 2575: 47.430374,-6.8730726
+ 2576: 46.15303,3.6802206
+ 2577: 65.732506,-8.308953
+ 2578: 59.42782,-10.014526
+ 2579: 67.525475,-21.236286
+ 2580: 61.443443,-27.3714
+ 2581: 49.665607,-26.2464
+ 2582: 40.71666,-29.257294
+ 2583: 36.59022,-36.651825
+ 2584: 13.614435,-38.831512
+ 5004: 99.94814,47.90929
+ 5030: 93.9833,17.293053
+ 5031: 95.30752,18.980553
+ 5032: 96.50283,20.164146
+ 5033: 97.99111,18.851646
+ 5054: 94.05361,21.125084
+ 5155: 84.51586,55.13768
+ 5609: -5.7703896,45.08878
- node:
color: '#FFFFFFFF'
id: Bushe4
decals:
- 164: -32,-3
- 169: 9,-43
- 238: 49,54
- 259: 75,-3
- 260: 75,-3
- 261: 75,-6
- 262: 62,-3
- 263: 41,-29
- 264: 22,-39
- 265: 5,-49
- 356: -102.862564,10.332816
- 357: -102.393814,9.817191
- 358: -105.75319,11.926566
- 3768: -24.176365,-31.187471
- 3769: -8.777928,-28.609346
- 3787: 67.818695,-5.2331934
- 3949: -36.177177,-21.855759
- 3964: -106.47833,9.241646
- 4107: 22.541536,39.08815
- 4108: 9.814974,35.44362
- 4306: 46.1468,-0.7615123
- 4338: 1.3932085,51.47611
- 4339: 0.7525835,54.61237
- 6027: 31.918331,-17.062832
- 6028: 27.27747,-16.844082
- 6084: -60.134315,9.024728
+ 220: 49,54
+ 238: 75,-3
+ 239: 75,-3
+ 240: 75,-6
+ 241: 62,-3
+ 242: 41,-29
+ 243: 22,-39
+ 244: 5,-49
+ 333: -102.862564,10.332816
+ 334: -102.393814,9.817191
+ 335: -105.75319,11.926566
+ 2843: -24.176365,-31.187471
+ 2844: -8.777928,-28.609346
+ 2862: 67.818695,-5.2331934
+ 3018: -106.47833,9.241646
+ 3150: 22.541536,39.08815
+ 3151: 9.814974,35.44362
+ 3317: 46.1468,-0.7615123
+ 3349: 1.3932085,51.47611
+ 3350: 0.7525835,54.61237
+ 4342: 27.27747,-16.844082
+ 4390: -60.134315,9.024728
+ 5005: 100.44033,48.342884
+ 5006: 103.28799,47.850697
+ 5007: 100.22939,42.600697
+ 5008: 99.51455,41.569447
+ 5009: 95.30752,44.80382
+ 5010: 95.68252,43.58507
+ 5026: 98.84658,16.648521
+ 5027: 99.32705,16.050865
+ 5028: 97.780174,19.871178
+ 5029: 94.24111,17.820396
- node:
color: '#FFFFFFFF'
id: Bushf1
decals:
- 171: 13,-52
- 247: 64,8
- 365: -102.300064,6.192191
- 3858: 53.982315,-4.4730234
- 3859: 56.876846,-4.3675547
- 3860: 63.521378,-4.3675547
- 3861: 72.77919,-4.672242
- 3862: 65.326065,-13.215211
- 3863: 63.521378,-11.827433
- 3864: 66.76747,-21.307901
- 3865: 62.021378,-25.593042
- 3866: 67.21278,-24.245386
- 3867: 57.849846,-28.077417
- 3868: 53.478752,-27.608667
- 3869: 49.599846,-25.207119
- 3870: 50.713127,-17.428339
+ 159: 13,-52
+ 226: 64,8
+ 342: -102.300064,6.192191
+ 2933: 53.982315,-4.4730234
+ 2934: 56.876846,-4.3675547
+ 2935: 63.521378,-4.3675547
+ 2936: 72.77919,-4.672242
+ 2937: 65.326065,-13.215211
+ 2938: 63.521378,-11.827433
+ 2939: 66.76747,-21.307901
+ 2940: 62.021378,-25.593042
+ 2941: 67.21278,-24.245386
+ 2942: 57.849846,-28.077417
+ 2943: 53.478752,-27.608667
+ 2944: 49.599846,-25.207119
+ 2945: 50.713127,-17.428339
+ 5036: 96.47939,14.41024
+ 5037: 97.14736,13.894615
+ 5038: 95.13174,20.023521
+ 5039: 95.40127,20.773521
+ 5040: 94.123924,19.683678
+ 5041: 98.76455,20.375084
+ 5042: 97.592674,15.06649
+ 5043: 94.41689,15.898521
+ 5044: 94.66299,16.414146
+ 5158: 82.35961,53.485336
+ 5159: 76.65258,55.536118
- node:
color: '#FFFFFFFF'
id: Bushf2
decals:
- 165: -32,7
- 166: -1,-9
- 167: 19,-39
+ 155: -1,-9
+ 156: 19,-39
+ 5045: 94.44033,19.882896
+ 5046: 96.47939,19.332115
+ 5047: 97.41689,18.804771
+ 5048: 97.81533,15.464928
+ 5049: 95.248924,13.425865
- node:
color: '#FFFFFFFF'
id: Bushf3
decals:
- 3474: 9.066714,-41.41747
- 3475: 13.218527,-38.625637
- 3476: -1.2923951,-11.308496
+ 2588: 13.218527,-38.625637
+ 2589: -1.2923951,-11.308496
+ 5156: 82.230705,54.66893
+ 5157: 84.011955,53.71971
+ 5186: 61.35785,62.907665
+ 5187: 74.36302,75.21933
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushg1
+ decals:
+ 5605: -9.61414,45.510654
+ 5606: -7.731327,46.02628
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushg2
+ decals:
+ 5183: 65.90768,54.61734
- node:
color: '#FFFFFFFF'
id: Bushg4
decals:
- 3471: 5.063496,-47.319897
- 3783: 58.594654,-6.3586936
- 3795: 54.488796,-3.3138347
- 3796: 53.633327,-1.0169597
- 3797: 62.60989,-6.442741
- 3798: 68.45755,-5.177116
- 3799: 74.16458,-5.270866
- 3800: 53.258327,-7.368522
- 3801: 55.461452,-13.006857
- 3802: 65.56302,-22.65142
- 3803: 60.09036,-26.41314
- 3804: 54.301296,-27.374077
- 3805: 50.352077,-26.237358
- 3806: 49.625515,-24.72564
- 3950: -36.001396,-22.922165
- 3951: -35.49749,-22.336227
- 3952: -44.30999,-5.539646
- 3953: -81.8269,13.409887
- 3954: -81.24096,14.968481
- 3955: -81.70971,15.988012
- 3956: -81.006584,17.452856
- 3957: -88.282814,12.964575
- 3958: -88.72281,17.523169
- 3959: -88.874985,3.0756955
- 3960: -88.501915,2.7552567
- 3961: -88.04488,0.95056915
- 3962: -100.76816,3.8184528
- 3963: -100.44003,4.3575153
- 6276: 70.73736,17.2949
+ 2585: 5.063496,-47.319897
+ 2858: 58.594654,-6.3586936
+ 2870: 54.488796,-3.3138347
+ 2871: 53.633327,-1.0169597
+ 2872: 62.60989,-6.442741
+ 2873: 68.45755,-5.177116
+ 2874: 74.16458,-5.270866
+ 2875: 53.258327,-7.368522
+ 2876: 55.461452,-13.006857
+ 2877: 65.56302,-22.65142
+ 2878: 60.09036,-26.41314
+ 2879: 54.301296,-27.374077
+ 2880: 50.352077,-26.237358
+ 2881: 49.625515,-24.72564
+ 3007: -44.30999,-5.539646
+ 3008: -81.8269,13.409887
+ 3009: -81.70971,15.988012
+ 3010: -81.006584,17.452856
+ 3011: -88.282814,12.964575
+ 3012: -88.72281,17.523169
+ 3013: -88.874985,3.0756955
+ 3014: -88.501915,2.7552567
+ 3015: -88.04488,0.95056915
+ 3016: -100.76816,3.8184528
+ 3017: -100.44003,4.3575153
+ 4520: 70.73736,17.2949
+ 5153: 83.461174,54.516586
+ 5154: 84.480705,52.864243
- node:
color: '#FFFFFFFF'
id: Bushh1
decals:
- 145: 69,-20
- 146: 67,-11
- 147: 71,-6
- 148: 58,0
- 208: -24,18
- 3456: 42.906937,-11.0667305
- 3542: -30.793852,18.267889
- 3543: -31.28604,17.857733
- 3770: -24.621677,-29.41794
- 3771: -24.527927,-31.984348
- 3772: -8.508397,-30.390596
- 3773: 14.481334,-38.60922
- 3774: 19.515272,-38.722622
- 3775: 30.546476,-36.59626
- 3776: 33.399643,-36.98298
- 3784: 51.592796,-17.105461
- 3794: 53.281765,-3.1966472
- 3977: -87.86473,16.017628
- 3978: -80.82176,11.740285
- 6059: 37.616062,21.238317
- 6060: 46.427296,21.230505
- 6061: 44.458797,13.420872
- 6062: -0.83810425,34.107063
- 6063: 0.021270752,36.677376
+ 139: 69,-20
+ 140: 67,-11
+ 141: 71,-6
+ 142: 58,0
+ 191: -24,18
+ 2572: 42.906937,-11.0667305
+ 2634: -30.793852,18.267889
+ 2635: -31.28604,17.857733
+ 2845: -24.621677,-29.41794
+ 2846: -24.527927,-31.984348
+ 2847: -8.508397,-30.390596
+ 2848: 14.481334,-38.60922
+ 2849: 19.515272,-38.722622
+ 2850: 30.546476,-36.59626
+ 2851: 33.399643,-36.98298
+ 2859: 51.592796,-17.105461
+ 2869: 53.281765,-3.1966472
+ 3030: -87.86473,16.017628
+ 4367: 37.616062,21.238317
+ 4368: 46.427296,21.230505
+ 4369: -0.83810425,34.107063
+ 4370: 0.021270752,36.677376
+ 5014: 102.33877,48.307728
+ 5015: 100.63955,43.174915
+ 5016: 99.174706,41.194447
+ 5017: 95.424706,43.713978
+ 5018: 95.13174,19.261803
+ 5019: 95.78799,20.117271
+ 5020: 98.95205,17.398521
+ 5021: 97.72158,14.714928
+ 5057: 91.780174,23.000084
+ 5058: 97.34658,20.457115
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushh2
+ decals:
+ 5051: 93.19814,17.31649
+ 5052: 94.66299,19.308678
+ 5053: 94.768456,20.984459
- node:
color: '#FFFFFFFF'
id: Bushh3
decals:
- 138: 55,-8
- 139: 61,-3
- 140: 64,-4
+ 132: 55,-8
+ 133: 61,-3
+ 134: 64,-4
- node:
color: '#FFFFFFFF'
id: Bushi1
decals:
- 172: -3,-48
- 207: -17,18
- 3815: 58.069717,-6.448056
- 3816: 60.39003,-8.088681
- 3817: 66.57753,-6.7879
- 3818: 67.23378,-2.2761812
- 3819: 70.57362,-1.3738375
- 3820: 75.436905,-2.2527437
- 3821: 72.343155,-6.4363375
- 3822: 55.585342,-2.241025
- 3823: 58.611607,-12.025141
- 3824: 55.892857,-12.611078
- 3825: 56.537388,-12.611078
- 3826: 62.560825,-10.2556095
- 3827: 62.865513,-10.8181095
- 3828: 67.16629,-20.122797
- 3829: 66.77957,-20.532953
- 3830: 65.5491,-24.353764
- 3831: 61.22571,-26.02222
- 3832: 61.448368,-26.444096
- 3833: 59.35071,-27.557377
- 3834: 52.460087,-27.194096
- 3835: 50.397587,-26.186283
+ 160: -3,-48
+ 190: -17,18
+ 2890: 58.069717,-6.448056
+ 2891: 60.39003,-8.088681
+ 2892: 66.57753,-6.7879
+ 2893: 67.23378,-2.2761812
+ 2894: 70.57362,-1.3738375
+ 2895: 75.436905,-2.2527437
+ 2896: 72.343155,-6.4363375
+ 2897: 55.585342,-2.241025
+ 2898: 58.611607,-12.025141
+ 2899: 55.892857,-12.611078
+ 2900: 56.537388,-12.611078
+ 2901: 62.560825,-10.2556095
+ 2902: 62.865513,-10.8181095
+ 2903: 67.16629,-20.122797
+ 2904: 66.77957,-20.532953
+ 2905: 65.5491,-24.353764
+ 2906: 61.22571,-26.02222
+ 2907: 61.448368,-26.444096
+ 2908: 59.35071,-27.557377
+ 2909: 52.460087,-27.194096
+ 2910: 50.397587,-26.186283
+ 5050: 92.78799,17.644615
- node:
color: '#FFFFFFFF'
id: Bushi2
decals:
- 256: 66,-3
- 349: -102.331314,7.207816
- 3836: 52.108524,-27.53394
- 3837: 59.6554,-26.948002
- 6161: -13.85896,71.22
+ 235: 66,-3
+ 326: -102.331314,7.207816
+ 2911: 52.108524,-27.53394
+ 2912: 59.6554,-26.948002
+ 4421: -13.85896,71.22
+ 5022: 94.66299,18.605553
+ 5023: 95.21377,15.007896
+ 5166: 95.572815,44.521103
+ 5167: 99.46344,42.423447
+ 5168: 102.54547,43.05626
+ 5169: 103.65875,48.86876
+ 5170: 99.59235,49.114853
- node:
color: '#FFFFFFFF'
id: Bushi3
decals:
- 251: 67,-22
- 252: 60,-28
- 253: 52,-15
- 350: -101.94069,6.645316
- 351: -107.768814,9.239066
- 4213: -17.382242,55.28696
- 4214: -16.433023,49.884617
- 4256: -26.578676,-14.086744
- 4257: -20.547426,-14.055494
- 6026: 30.879269,-17.070644
- 6058: 36.811375,20.988317
+ 230: 67,-22
+ 231: 60,-28
+ 232: 52,-15
+ 327: -101.94069,6.645316
+ 328: -107.768814,9.239066
+ 3237: -17.382242,55.28696
+ 3270: -26.578676,-14.086744
+ 3271: -20.547426,-14.055494
+ 4366: 36.811375,20.988317
+ 5024: 96.01064,14.070396
- node:
color: '#FFFFFFFF'
id: Bushi4
decals:
- 3472: -2.9872854,-48.485737
- 3473: 5.0869336,-47.735737
- 3838: 50.4679,-18.136845
- 3839: 55.29607,-13.119765
- 3840: 63.37029,-11.514297
- 3841: 62.725758,-11.186172
- 3842: 60.288258,-9.13539
- 3843: 60.135914,-8.631484
- 3844: 60.581226,-8.408828
- 3845: 55.905445,-2.656845
+ 2586: -2.9872854,-48.485737
+ 2587: 5.0869336,-47.735737
+ 2913: 50.4679,-18.136845
+ 2914: 55.29607,-13.119765
+ 2915: 63.37029,-11.514297
+ 2916: 62.725758,-11.186172
+ 2917: 60.288258,-9.13539
+ 2918: 60.135914,-8.631484
+ 2919: 60.581226,-8.408828
+ 2920: 55.905445,-2.656845
- node:
color: '#FFFFFFFF'
id: Bushj1
decals:
- 6278: 70.74908,18.630838
+ 4522: 70.74908,18.630838
- node:
color: '#FFFFFFFF'
id: Bushj2
decals:
- 4104: 13.119661,34.4944
- 4105: 21.920443,36.205338
- 4106: 22.752474,39.38112
+ 3147: 13.119661,34.4944
+ 3148: 21.920443,36.205338
+ 3149: 22.752474,39.38112
+ 5059: 98.22549,20.421959
+ 5060: 99.373924,17.937584
+ 5061: 94.768456,14.328209
+ 5062: 95.4833,18.089928
- node:
color: '#FFFFFFFF'
id: Bushj3
decals:
- 3846: 54.428883,-1.0748138
- 3847: 54.428883,-4.063095
- 3848: 56.70232,-3.6998138
- 3849: 62.831226,-9.699814
- 3850: 58.3781,-12.125595
- 3851: 53.363544,-14.035416
- 3852: 49.414326,-20.189419
- 3853: 58.055847,-27.474571
- 3854: 65.59101,-23.30963
- 3855: 67.81218,-14.928173
- 3856: 67.50614,-5.3519297
- 3857: 71.11552,-5.3636484
- 6186: -90.484215,24.691216
+ 2921: 54.428883,-1.0748138
+ 2922: 54.428883,-4.063095
+ 2923: 56.70232,-3.6998138
+ 2924: 62.831226,-9.699814
+ 2925: 58.3781,-12.125595
+ 2926: 53.363544,-14.035416
+ 2927: 49.414326,-20.189419
+ 2928: 58.055847,-27.474571
+ 2929: 65.59101,-23.30963
+ 2930: 67.81218,-14.928173
+ 2931: 67.50614,-5.3519297
+ 2932: 71.11552,-5.3636484
+ 4446: -90.484215,24.691216
- node:
color: '#FFFFFFFF'
id: Bushk1
decals:
- 137: 55,-9
- 267: 31,-37
- 3544: -27.53604,17.799139
- 4142: -13.987451,77.15054
- 4143: 16.034712,73.68179
- 4209: -16.79256,50.545914
- 4210: -16.909748,47.276382
- 4217: -32.315296,-0.5816544
- 4218: -44.33498,-1.2191677
- 4219: -41.3467,-9.703543
- 4220: -10.496473,-53.210663
- 4221: 4.6561537,-46.97945
- 4222: 9.186384,-44.058086
- 4223: 41.453693,-29.955482
- 4224: 60.86173,-28.141144
- 4225: 68.20961,-12.918012
- 4226: 75.13539,0.078846216
- 4227: 68.50344,0.16087747
- 4228: 46.415348,5.7034583
- 4229: 44.259098,12.3333845
- 4230: 58.00519,8.1612835
- 4337: 0.7213335,50.679234
+ 131: 55,-9
+ 246: 31,-37
+ 2636: -27.53604,17.799139
+ 3183: -13.987451,77.15054
+ 3184: 16.034712,73.68179
+ 3239: -44.33498,-1.2191677
+ 3240: -41.3467,-9.703543
+ 3241: 4.6561537,-46.97945
+ 3242: 41.453693,-29.955482
+ 3243: 60.86173,-28.141144
+ 3244: 68.20961,-12.918012
+ 3245: 75.13539,0.078846216
+ 3246: 68.50344,0.16087747
+ 3247: 46.415348,5.7034583
+ 3248: 58.00519,8.1612835
+ 3348: 0.7213335,50.679234
+ 5604: -8.004765,45.112217
+ 6945: -10.984017,-51.702847
- node:
color: '#FFFFFFFF'
id: Bushk2
decals:
- 141: 74,-7
- 254: 52,-16
- 255: 66,-9
- 353: -101.143814,5.270316
- 3785: 63.201508,-6.276162
- 3786: 55.58432,-2.9949121
- 3807: 49.531765,-19.440483
- 3808: 49.520046,-24.842827
- 3809: 60.35989,-26.49517
- 3810: 66.04349,-22.37017
- 3811: 69.066925,-19.405327
- 3812: 66.629425,-13.829832
- 3813: 64.70755,-12.892332
- 3814: 66.93411,-5.1350956
- 4102: 9.451693,35.72487
- 4103: 12.533724,34.799088
- 6064: 0.07595825,34.04807
- 6414: -30.692488,-17.01733
+ 135: 74,-7
+ 233: 52,-16
+ 234: 66,-9
+ 330: -101.143814,5.270316
+ 2860: 63.201508,-6.276162
+ 2861: 55.58432,-2.9949121
+ 2882: 49.531765,-19.440483
+ 2883: 49.520046,-24.842827
+ 2884: 60.35989,-26.49517
+ 2885: 66.04349,-22.37017
+ 2886: 69.066925,-19.405327
+ 2887: 66.629425,-13.829832
+ 2888: 64.70755,-12.892332
+ 2889: 66.93411,-5.1350956
+ 3145: 9.451693,35.72487
+ 3146: 12.533724,34.799088
+ 4371: 0.07595825,34.04807
+ 4574: -30.692488,-17.01733
- node:
color: '#FFFFFFFF'
id: Bushk3
decals:
- 354: -102.06569,2.9734414
- 6041: 1.882721,-38.060734
- 6168: -13.937085,69.75079
- 6277: 71.135796,16.380838
+ 331: -102.06569,2.9734414
+ 4352: 1.882721,-38.060734
+ 4428: -13.937085,69.75079
+ 4521: 71.135796,16.380838
- node:
color: '#FFFFFFFF'
id: Bushl2
decals:
- 239: 49,57
+ 221: 49,57
- node:
color: '#FFFFFFFF'
id: Bushl3
decals:
- 4144: -13.600202,75.158356
- 4145: 15.641865,77.71304
+ 3185: -13.600202,75.158356
+ 3186: 15.641865,77.71304
- node:
color: '#FFFFFFFF'
id: Bushl4
decals:
- 4190: -17.366714,59.025
- 4191: -16.417496,58.0875
+ 3224: -17.366714,59.025
+ 3225: -16.417496,58.0875
+ 5185: 60.289253,65.017044
- node:
color: '#FFFFFFFF'
id: Bushm1
decals:
- 199: 3,9
- 4211: -16.61678,46.93654
- 4212: -17.26131,56.967907
- 6162: -13.405835,69.4075
+ 182: 3,9
+ 3236: -17.26131,56.967907
+ 4422: -13.405835,69.4075
- node:
color: '#FFFFFFFF'
id: Bushm2
decals:
- 355: -101.09694,2.8484414
- 3545: -23.610258,18.150702
- 3792: 53.50442,-6.8880534
- 3793: 53.69192,-3.2786784
- 4146: 15.899677,73.283356
- 4147: -13.56775,73.763824
+ 332: -101.09694,2.8484414
+ 2637: -23.610258,18.150702
+ 2867: 53.50442,-6.8880534
+ 2868: 53.69192,-3.2786784
+ 3187: 15.899677,73.283356
+ 3188: -13.56775,73.763824
- node:
color: '#FFFFFFFF'
id: Bushm3
decals:
- 3790: 59.046852,-6.428506
- 3791: 62.62107,-9.01835
+ 2865: 59.046852,-6.428506
+ 2866: 62.62107,-9.01835
- node:
color: '#FFFFFFFF'
id: Bushm4
decals:
- 3478: -1.3741928,-7.263622
- 3782: 55.043873,-6.253225
- 3889: 58.0147,-3.0305514
- 3890: 47.043705,0.5114244
- 3891: 47.47435,0.95306015
- 3892: 55.576187,8.312037
+ 2591: -1.3741928,-7.263622
+ 2857: 55.043873,-6.253225
+ 2964: 58.0147,-3.0305514
+ 2965: 47.043705,0.5114244
+ 2966: 47.47435,0.95306015
+ 2967: 55.576187,8.312037
+ 5129: 85.4669,54.91986
+ 6946: -10.64808,-52.05441
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Bushn1
decals:
- 79: 64,-9
- 80: 49,-18
- 81: 44,-20
- 82: 41,-31
+ 74: 64,-9
+ 75: 49,-18
+ 76: 44,-20
+ 77: 41,-31
- node:
color: '#FFFFFFFF'
id: Bushn1
decals:
- 153: 3,-9
- 173: -11,-51
- 212: 5,25
- 3766: -23.930271,-30.320284
- 3777: 28.395735,-36.87751
- 3778: 49.579803,-25.76604
- 3779: 64.6325,-5.2884035
- 3780: 65.12469,-5.546216
- 3781: 74.26534,-0.3352561
- 4148: -13.602906,77.607574
- 4208: -16.999838,55.935135
- 4307: 46.30305,-3.6521373
+ 147: 3,-9
+ 195: 5,25
+ 2841: -23.930271,-30.320284
+ 2852: 28.395735,-36.87751
+ 2853: 49.579803,-25.76604
+ 2854: 64.6325,-5.2884035
+ 2855: 65.12469,-5.546216
+ 2856: 74.26534,-0.3352561
+ 3189: -13.602906,77.607574
+ 3235: -16.999838,55.935135
+ 3318: 46.30305,-3.6521373
+ 5602: -8.86414,45.30753
+ 5603: -6.059452,46.604404
- node:
color: '#FFFFFFFF'
- id: Delivery
+ id: Caution
decals:
- 2123: -47,33
- 2124: -46,33
- 2703: 45,36
- 2704: 46,36
- 2705: 47,36
- 4346: -101,52
- 4347: -101,51
- 4348: -101,50
- 4349: -100,51
- 4350: -99,51
- 4351: -98,51
- 4352: -99,52
- 4353: -109,58
- 4354: -106,55
- 4355: -117,58
- 4356: -120,55
- 4357: -120,47
- 4358: -117,44
- 4359: -109,44
- 4360: -106,47
- 4361: -102,52
- 4362: -102,51
- 4363: -102,50
- 5876: 69,-9
- 5877: 70,-9
- 5878: 72,-9
- 5879: 73,-9
- 5880: -43,38
- 5881: -42,38
- 5882: -41,38
- 5883: -40,38
- 5884: 28,38
+ 4754: 69,82
+ 4755: 73,82
+ 4756: 77,82
+ 4810: 81,82
- node:
color: '#FFFFFFFF'
- id: DeliveryGreyscale
- decals:
- 4364: -119,49
- 4365: -119,50
- 4366: -119,51
- 4367: -119,52
- 4368: -119,53
- 4369: -115,57
- 4370: -114,57
- 4371: -113,57
- 4372: -112,57
- 4373: -111,57
- 4374: -115,45
- 4375: -114,45
- 4376: -113,45
- 4377: -112,45
- 4378: -111,45
- 4379: -113,51
+ id: ConcreteTrimCornerNe
+ decals:
+ 5951: 30,-19
+ 5961: -11,59
+ 5971: -9,55
+ 5972: -3,55
+ 5973: -3,50
+ 5974: -9,50
- node:
- color: '#91D4FFFF'
- id: DiagonalOverlay
+ color: '#FFFFFFFF'
+ id: ConcreteTrimCornerNw
+ decals:
+ 5952: 28,-19
+ 5962: -15,59
+ 5967: -11,55
+ 5968: -8,55
+ 5969: -11,50
+ 5970: -8,50
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimCornerSe
+ decals:
+ 5955: 30,-22
+ 5963: -11,56
+ 5975: -3,48
+ 5976: -9,48
+ 5977: -9,53
+ 5978: -3,53
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimCornerSw
+ decals:
+ 5954: 28,-22
+ 5964: -15,56
+ 5965: -11,48
+ 5966: -8,48
+ 6013: -8,53
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimLineE
+ decals:
+ 5956: 30,-21
+ 5957: 30,-20
+ 6006: -3,54
+ 6007: -3,49
+ 6008: -11,57
+ 6009: -11,58
+ 6010: -9,49
+ 6011: -9,54
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimLineN
+ decals:
+ 5960: 29,-19
+ 5993: -14,59
+ 5994: -13,59
+ 5995: -12,59
+ 5996: -10,55
+ 5997: -7,55
+ 5998: -6,55
+ 5999: -5,55
+ 6000: -4,55
+ 6001: -4,50
+ 6002: -5,50
+ 6003: -6,50
+ 6004: -7,50
+ 6005: -10,50
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimLineS
+ decals:
+ 5953: 29,-22
+ 5979: -10,53
+ 5980: -7,53
+ 5981: -6,53
+ 5982: -5,53
+ 5983: -4,53
+ 5984: -4,48
+ 5985: -5,48
+ 5986: -6,48
+ 5987: -7,48
+ 5988: -10,48
+ 5989: -10,53
+ 5990: -12,56
+ 5991: -13,56
+ 5992: -14,56
+ - node:
+ color: '#FFFFFFFF'
+ id: ConcreteTrimLineW
+ decals:
+ 5958: 28,-21
+ 5959: 28,-20
+ 6012: -8,54
+ 6014: -8,49
+ 6015: -11,49
+ 6016: -11,54
+ 6017: -15,57
+ 6018: -15,58
+ - node:
+ color: '#B02E26FF'
+ id: Delivery
decals:
- 2253: 1,3
- 2254: 1,2
- 2255: 0,2
- 2256: 1,1
- 2257: 2,2
+ 5223: -11,35
+ 5452: -7,43
+ 5453: -5,43
+ 5454: -5,42
+ 5455: -5,41
+ 5456: -7,42
+ 5457: -7,41
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 1541: -47,33
+ 1542: -46,33
+ 2005: 45,36
+ 2006: 46,36
+ 2007: 47,36
+ 4331: 69,-9
+ 4332: 70,-9
+ 4333: 72,-9
+ 4334: 73,-9
+ 4335: -43,38
+ 4336: -42,38
+ 4337: -41,38
+ 4338: -40,38
+ 4339: 28,38
+ 4757: 68,82
+ 4758: 70,82
+ 4759: 72,82
+ 4760: 74,82
+ 4761: 76,82
+ 4762: 78,82
+ 4808: 80,82
+ 4809: 82,82
+ 5761: 99,-10
+ 5762: 100,-10
+ 5763: 101,-10
+ 5764: 102,-10
+ 5765: 103,-10
+ 5766: 101,-24
+ 5767: 102,-24
+ 5768: 103,-24
+ 5769: 108,-19
+ 5770: 108,-18
+ 5771: 108,-17
+ 5772: 108,-16
+ 5773: 108,-15
+ 5774: 97,-13
+ 5775: 105,-13
+ 5776: 105,-21
+ 5777: 97,-21
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 4543: -55,9
- 4544: -55,11
- 4545: -55,13
- 4546: -51,13
- 4547: -49,11
- 4548: -49,17
- 4549: -52,21
- 4550: -50,25
- 4551: -48,30
- 4552: -53,30
- 4553: -56,25
- 4554: -59,22
- 4555: -63,22
- 4556: -63,24
- 4557: -64,29
- 4558: -60,32
- 4559: -61,35
- 4560: -70,20
- 4561: -70,19
- 4562: -68,22
- 4563: -70,28
- 4564: -70,32
- 4565: -66,34
- 4566: -62,35
- 4567: -56,36
- 4568: -47,34
- 4569: -41,40
- 4570: -45,40
- 4571: -55,45
- 4572: -55,48
- 4573: -53,53
- 4574: -46,60
- 4575: -42,60
- 4576: -43,64
- 4577: -44,65
- 4578: -42,66
- 4579: -39,67
- 4580: -36,65
- 4581: -40,61
- 4582: -34,64
- 4583: -31,64
- 4584: -26,64
- 4585: -27,59
- 4586: -28,56
- 4587: -26,55
- 4588: -23,54
- 4589: -20,54
- 4590: -21,64
- 4591: -20,63
- 4592: -23,67
- 4593: -18,66
- 4594: -16,67
- 4595: -28,67
- 4596: -5,68
- 4597: -3,66
- 4598: -3,64
- 4599: -9,63
- 4600: -1,61
- 4601: 0,60
- 4602: -4,59
- 4603: -9,58
- 4604: -12,58
- 4605: -20,58
- 4606: 2,58
- 4607: 2,69
- 4608: 5,69
- 4609: 1,71
- 4610: -8,74
- 4611: -4,73
- 4612: 3,78
- 4613: 6,76
- 4614: 14,65
- 4615: 8,65
- 4616: 7,65
- 4617: 5,65
- 4618: 2,63
- 4619: 0,56
- 4620: -1,53
- 4621: 0,52
- 4622: 2,50
- 4623: 7,52
- 4624: 16,56
- 4625: 20,54
- 4626: 17,47
- 4627: 17,45
- 4628: 19,41
- 4629: 16,37
- 4630: 20,36
- 4631: 27,44
- 4632: 22,45
- 4633: 28,39
- 4634: 27,49
- 4635: 6,45
- 4636: 4,41
- 4637: 7,38
- 4638: 4,38
- 4639: 4,37
- 4640: 2,37
- 4641: 1,35
- 4642: 0,42
- 4643: -2,41
- 4644: -2,30
- 4645: -3,26
- 4646: 2,27
- 4647: 0,26
- 4648: 1,23
- 4649: 4,21
- 4650: 7,22
- 4651: 12,21
- 4652: 16,20
- 4653: 19,19
- 4654: 20,23
- 4655: 17,28
- 4656: 26,27
- 4657: 31,26
- 4658: 31,29
- 4659: 36,29
- 4660: 40,28
- 4661: 38,29
- 4662: 35,25
- 4663: 38,23
- 4664: 39,33
- 4665: 38,36
- 4666: 35,35
- 4667: 29,32
- 4668: 21,32
- 4669: 14,32
- 4670: 7,32
- 4671: 35,42
- 4672: 32,44
- 4673: 32,47
- 4674: 29,46
- 4675: 35,49
- 4676: 41,49
- 4677: 43,50
- 4678: 47,48
- 4679: 46,47
- 4680: 42,46
- 4681: 52,50
- 4682: 56,51
- 4683: 58,52
- 4684: 56,53
- 4685: 58,54
- 4686: 58,56
- 4687: 60,58
- 4688: 60,56
- 4689: 55,56
- 4690: 53,61
- 4691: 56,61
- 4692: 56,62
- 4693: 56,65
- 4694: 55,66
- 4695: 56,68
- 4696: 55,70
- 4697: 61,70
- 4698: 64,70
- 4699: 66,70
- 4700: 69,68
- 4701: 74,68
- 4702: 75,68
- 4703: 78,61
- 4704: 72,55
- 4705: 65,55
- 4706: 65,61
- 4707: 75,56
- 4708: 75,50
- 4709: 65,49
- 4710: 63,52
- 4711: 71,48
- 4712: 73,48
- 4713: 72,49
- 4714: 78,47
- 4715: 80,49
- 4716: 75,48
- 4717: 79,44
- 4718: 67,43
- 4719: 66,39
- 4720: 59,43
- 4721: 69,40
- 4722: 61,36
- 4723: 64,38
- 4724: 54,38
- 4725: 64,39
- 4726: 58,43
- 4727: 63,44
- 4728: 60,47
- 4729: 65,47
- 4730: 64,44
- 4731: 70,36
- 4732: 76,35
- 4733: 72,32
- 4734: 77,35
- 4735: 78,32
- 4736: 78,32
- 4737: 73,31
- 4738: 85,30
- 4739: 87,32
- 4740: 85,29
- 4741: 86,30
- 4742: 95,30
- 4743: 90,29
- 4744: 88,29
- 4745: 90,28
- 4746: 95,29
- 4747: 95,35
- 4748: 95,40
- 4749: 97,39
- 4750: 98,35
- 4751: 99,30
- 4752: 100,27
- 4753: 98,25
- 4754: 95,24
- 4755: 91,23
- 4756: 90,23
- 4757: 86,24
- 4758: 85,23
- 4759: 84,25
- 4760: 79,27
- 4761: 77,29
- 4762: 75,28
- 4763: 75,26
- 4764: 71,28
- 4765: 70,32
- 4766: 68,32
- 4767: 64,33
- 4768: 62,33
- 4769: 59,32
- 4770: 55,32
- 4771: 52,32
- 4772: 52,39
- 4773: 58,42
- 4774: 67,47
- 4775: 65,49
- 4776: 66,47
- 4777: 68,48
- 4778: 72,54
- 4779: 75,55
- 4780: 72,58
- 4781: 70,61
- 4782: 71,66
- 4783: 79,66
- 4784: 82,66
- 4785: 87,66
- 4786: 80,68
- 4787: 83,68
- 4788: 88,67
- 4789: 88,65
- 4790: 89,63
- 4791: 93,62
- 4792: 84,62
- 4793: 81,55
- 4794: 81,54
- 4795: 89,55
- 4796: 95,54
- 4797: 93,50
- 4798: 92,49
- 4799: 89,49
- 4800: 86,52
- 4801: 82,50
- 4802: 84,48
- 4803: 87,46
- 4804: 89,46
- 4805: 88,42
- 4806: 94,41
- 4807: 93,37
- 4808: 90,33
- 4809: 90,31
- 4810: 95,31
- 4811: 100,31
- 4812: 99,38
- 4813: 85,20
- 4814: 85,14
- 4815: 84,9
- 4816: 84,7
- 4817: 80,4
- 4818: 78,3
- 4819: 85,11
- 4820: 79,0
- 4821: 80,-3
- 4822: 80,-8
- 4823: 77,-12
- 4824: 72,-15
- 4825: 74,-17
- 4826: 76,-17
- 4827: 68,-18
- 4828: 67,-16
- 4829: 60,-10
- 4830: 60,-12
- 4831: 56,-14
- 4832: 54,-16
- 4833: 49,-22
- 4834: 50,-23
- 4835: 52,-26
- 4836: 55,-27
- 4837: 57,-28
- 4838: 60,-26
- 4839: 64,-23
- 4840: 65,-22
- 4841: 61,-10
- 4842: 61,-8
- 4843: 56,-5
- 4844: 54,-5
- 4845: 54,-2
- 4846: 50,-2
- 4847: 50,-6
- 4848: 49,-7
- 4849: 51,-9
- 4850: 50,2
- 4851: 48,5
- 4852: 49,12
- 4853: 49,14
- 4854: 43,19
- 4855: 41,20
- 4856: 46,18
- 4857: 38,18
- 4858: 34,19
- 4859: 32,16
- 4860: 30,15
- 4861: 33,15
- 4862: 33,12
- 4863: 31,10
- 4864: 27,10
- 4865: 25,12
- 4866: 24,15
- 4867: 25,16
- 4868: 26,16
- 4869: 26,12
- 4870: 23,9
- 4871: 26,9
- 4872: 31,6
- 4873: 21,7
- 4874: 19,5
- 4875: 12,7
- 4876: 9,7
- 4877: 9,9
- 4878: 7,12
- 4879: 6,14
- 4880: 11,15
- 4881: 11,12
- 4882: 8,3
- 4883: 5,3
- 4884: 0,6
- 4885: -3,4
- 4886: -4,6
- 4887: -7,10
- 4888: -8,12
- 4889: -9,14
- 4890: -4,14
- 4891: -12,12
- 4892: -16,12
- 4893: -26,13
- 4894: -28,13
- 4895: -35,14
- 4896: -35,15
- 4897: -33,11
- 4898: -38,11
- 4899: -41,10
- 4900: -40,12
- 4901: -39,9
- 4902: -37,8
- 4903: -40,8
- 4904: -35,7
- 4905: -37,5
- 4906: -33,2
- 4907: -35,-5
- 4908: -32,-5
- 4909: -28,-2
- 4910: -20,-3
- 4911: -17,-2
- 4912: -16,-3
- 4913: -27,6
- 4914: -27,1
- 4915: -28,3
- 4916: -21,3
- 4917: -15,1
- 4918: -12,-2
- 4919: -13,-5
- 4920: -23,-5
- 4921: -20,-6
- 4922: -6,1
- 4923: -2,3
- 4924: 0,-2
- 4925: 0,-6
- 4926: 2,-8
- 4927: 2,-12
- 4928: 0,-11
- 4929: -2,-15
- 4930: -7,-16
- 4931: -13,-16
- 4932: -17,-16
- 4933: -12,-14
- 4934: -22,-15
- 4935: -26,-17
- 4936: -32,-15
- 4937: -33,-11
- 4938: -32,-9
- 4939: -38,-15
- 4940: -40,-16
- 4941: -45,-14
- 4942: -44,-12
- 4943: -46,-10
- 4944: -48,-8
- 4945: -49,-15
- 4946: -50,-20
- 4947: -53,-17
- 4948: -54,-22
- 4949: -49,-25
- 4950: -47,-28
- 4951: -50,-29
- 4952: -56,-24
- 4953: -57,-18
- 4954: -56,-16
- 4955: -56,-25
- 4956: -50,-30
- 4957: -39,-30
- 4958: -36,-30
- 4959: -31,-29
- 4960: -33,-26
- 4961: -33,-20
- 4962: -21,-21
- 4963: -20,-25
- 4964: -22,-25
- 4965: -20,-23
- 4966: -15,-25
- 4967: -14,-21
- 4968: -17,-22
- 4969: -7,-21
- 4970: -12,-19
- 4971: -8,-25
- 4972: -10,-25
- 4973: -4,-24
- 4974: -4,-19
- 4975: -5,-28
- 4976: -7,-29
- 4977: -6,-31
- 4978: -6,-30
- 4979: 0,-29
- 4980: 0,-26
- 4981: 2,-25
- 4982: 1,-23
- 4983: 2,-19
- 4984: -2,-18
- 4985: 3,-16
- 4986: 4,-21
- 4987: 4,-26
- 4988: 8,-28
- 4989: 9,-30
- 4990: 9,-33
- 4991: 11,-34
- 4992: 11,-23
- 4993: 9,-21
- 4994: 8,-26
- 4995: 14,-24
- 4996: 14,-21
- 4997: 13,-22
- 4998: 15,-19
- 4999: 17,-20
- 5000: 18,-22
- 5001: 23,-19
- 5002: 27,-19
- 5003: 29,-22
- 5004: 30,-22
- 5005: 29,-25
- 5006: 32,-23
- 5007: 33,-24
- 5008: 37,-23
- 5009: 38,-26
- 5010: 38,-33
- 5011: 39,-34
- 5012: 33,-35
- 5013: 22,-30
- 5014: 24,-24
- 5015: 24,-25
- 5016: 19,-25
- 5017: 22,-35
- 5018: 17,-34
- 5019: 7,-28
- 5020: 9,-26
- 5021: 6,-37
- 5022: 0,-33
- 5023: 2,-33
- 5024: -4,-38
- 5025: -2,-40
- 5026: -1,-43
- 5027: 1,-40
- 5028: 2,-44
- 5029: -2,-45
- 5030: -1,-45
- 5031: 0,-48
- 5032: 2,-50
- 5033: 6,-52
- 5034: 7,-51
- 5035: 8,-53
- 5036: -3,-52
- 5037: -4,-53
- 5038: -8,-53
- 5039: -8,-51
- 5040: -3,-51
- 5041: -9,-41
- 5042: -12,-42
- 5043: -14,-39
- 5044: -13,-36
- 5045: -14,-34
- 5046: -20,-35
- 5047: -19,-38
- 5048: -17,-43
- 5049: -16,-44
- 5050: -23,-43
- 5051: -31,-42
- 5052: -37,-44
- 5053: -42,-42
- 5054: -46,-43
- 5055: -48,-43
- 5056: -51,-45
- 5057: -50,-49
- 5058: -49,-49
- 5059: -47,-37
- 5060: -52,-37
- 5061: -57,-37
- 5062: -58,-34
- 5063: -60,-33
- 5064: -61,-33
- 5065: -63,-29
- 5066: -62,-26
- 5067: -60,-24
- 5068: -59,-23
- 5069: -59,-19
- 5070: -59,-17
- 5071: -60,-12
- 5072: -57,-12
- 5073: -58,-9
- 5074: -62,-7
- 5075: -62,-8
- 5076: -59,-4
- 5077: -62,-4
- 5078: -61,-5
- 5079: -58,-2
- 5080: -53,-4
- 5081: -52,-3
- 5082: -49,-3
- 5083: -46,-6
- 5084: -44,-11
- 5085: -46,4
- 5086: -49,7
- 5087: -47,10
- 5088: -44,10
- 5089: -45,14
- 5090: -50,13
- 5091: -53,11
- 5092: -54,7
- 5093: -60,8
- 5094: -64,7
- 5095: -66,9
- 5096: -54,14
- 5097: -56,14
- 5098: -62,17
- 5099: -63,15
- 5100: -57,21
- 5101: -59,24
- 5102: -57,26
- 5103: -55,23
- 5104: -65,27
- 5105: -53,31
- 5106: -51,12
- 5107: -58,4
- 5108: -59,1
- 5109: -61,0
- 5110: -60,-2
- 5111: -66,3
- 5112: -65,-2
- 5113: -66,-4
- 5114: -66,-7
- 5115: -69,-7
- 5116: -74,-7
- 5117: -76,-3
- 5118: -75,-3
- 5119: -78,0
- 5120: -79,7
- 5121: -81,9
- 5122: -84,7
- 5123: -84,6
- 5124: -86,6
- 5125: -86,10
- 5126: -86,2
- 5127: -84,0
- 5128: -87,-4
- 5129: -89,-5
- 5130: -87,-6
- 5131: -80,-4
- 5132: -80,-6
- 5133: -97,-3
- 5134: -96,-8
- 5135: -95,-10
- 5136: -97,-13
- 5137: -92,-6
- 5138: -89,-2
- 5139: -97,4
- 5140: -98,4
- 5141: -97,11
- 5142: -99,8
- 5143: -93,8
- 5144: -90,8
- 5145: -90,7
- 5146: -96,17
- 5147: -97,19
- 5148: -96,21
- 5149: -96,24
- 5150: -97,27
- 5151: -89,21
- 5152: -86,20
- 5153: -82,21
- 5154: -78,21
- 5155: -74,24
- 5156: -100,28
- 5157: -100,49
- 5158: -96,50
- 5159: -97,52
- 5160: -102,47
- 5161: -112,50
- 5162: -110,59
- 5163: -87,50
- 5164: -79,51
- 5165: -75,52
- 5166: -68,50
- 5167: -66,47
- 5168: -60,50
- 5169: -42,63
- 5170: -7,71
- 5171: -2,71
- 5172: -9,74
- 5173: 18,11
- 5174: 21,9
- 5175: 15,12
- 5176: 20,2
- 5177: 26,0
- 5178: 27,1
- 5179: 36,3
- 5180: 33,-1
- 5181: 20,-8
- 5182: 15,-3
- 5183: 16,0
- 5184: 7,-8
- 5185: 5,1
- 5186: 0,-2
- 5187: -5,1
- 5188: 0,-9
- 5189: 9,-23
- 5249: -34,46
- 5250: -39,40
- 5251: -33,39
- 5252: -35,34
- 5253: -36,30
- 5254: -28,29
- 5255: -17,30
- 5256: -15,28
- 5257: -13,36
- 5258: -13,41
- 5259: -15,45
- 5260: -8,42
- 5261: -7,39
- 5262: -8,34
- 5263: -5,32
+ 3400: -55,9
+ 3401: -55,11
+ 3402: -55,13
+ 3403: -51,13
+ 3404: -52,21
+ 3405: -50,25
+ 3406: -48,30
+ 3407: -53,30
+ 3408: -56,25
+ 3409: -59,22
+ 3410: -63,22
+ 3411: -63,24
+ 3412: -64,29
+ 3413: -60,32
+ 3414: -61,35
+ 3415: -70,20
+ 3416: -70,19
+ 3417: -68,22
+ 3418: -70,28
+ 3419: -66,34
+ 3420: -62,35
+ 3421: -56,36
+ 3422: -47,34
+ 3423: -41,40
+ 3424: -45,40
+ 3425: -55,45
+ 3426: -55,48
+ 3427: -53,53
+ 3428: -46,60
+ 3429: -43,64
+ 3430: -44,65
+ 3431: -42,66
+ 3432: -39,67
+ 3433: -36,65
+ 3434: -40,61
+ 3435: -34,64
+ 3436: -31,64
+ 3437: -26,64
+ 3438: -27,59
+ 3439: -28,56
+ 3440: -26,55
+ 3441: -23,54
+ 3442: -20,54
+ 3443: -21,64
+ 3444: -20,63
+ 3445: -23,67
+ 3446: -18,66
+ 3447: -16,67
+ 3448: -28,67
+ 3449: -3,64
+ 3450: -1,61
+ 3451: 0,60
+ 3452: -4,59
+ 3453: -9,58
+ 3454: 2,58
+ 3455: 2,69
+ 3456: 5,69
+ 3457: 1,71
+ 3458: -8,74
+ 3459: -4,73
+ 3460: 3,78
+ 3461: 6,76
+ 3462: 14,65
+ 3463: 8,65
+ 3464: 7,65
+ 3465: 5,65
+ 3466: 2,63
+ 3467: 0,56
+ 3468: -1,53
+ 3469: 0,52
+ 3470: 2,50
+ 3471: 7,52
+ 3472: 16,56
+ 3473: 20,54
+ 3474: 17,47
+ 3475: 17,45
+ 3476: 19,41
+ 3477: 16,37
+ 3478: 20,36
+ 3479: 22,45
+ 3480: 28,39
+ 3481: 27,49
+ 3482: 6,45
+ 3483: 4,41
+ 3484: 7,38
+ 3485: 4,38
+ 3486: 4,37
+ 3487: 2,37
+ 3488: 1,35
+ 3489: -2,30
+ 3490: -3,26
+ 3491: 2,27
+ 3492: 0,26
+ 3493: 1,23
+ 3494: 4,21
+ 3495: 7,22
+ 3496: 12,21
+ 3497: 16,20
+ 3498: 19,19
+ 3499: 20,23
+ 3500: 17,28
+ 3501: 26,27
+ 3502: 31,26
+ 3503: 31,29
+ 3504: 36,29
+ 3505: 40,28
+ 3506: 38,29
+ 3507: 35,25
+ 3508: 38,23
+ 3509: 39,33
+ 3510: 38,36
+ 3511: 35,35
+ 3512: 29,32
+ 3513: 21,32
+ 3514: 14,32
+ 3515: 7,32
+ 3516: 35,42
+ 3517: 32,44
+ 3518: 32,47
+ 3519: 29,46
+ 3520: 35,49
+ 3521: 41,49
+ 3522: 43,50
+ 3523: 47,48
+ 3524: 46,47
+ 3525: 42,46
+ 3526: 52,50
+ 3527: 56,51
+ 3528: 58,52
+ 3529: 56,53
+ 3530: 58,54
+ 3531: 58,56
+ 3532: 60,58
+ 3533: 60,56
+ 3534: 63,52
+ 3535: 54,38
+ 3536: 71,28
+ 3537: 62,33
+ 3538: 59,32
+ 3539: 55,32
+ 3540: 52,32
+ 3541: 52,39
+ 3542: 81,55
+ 3543: 81,54
+ 3544: 89,55
+ 3545: 88,42
+ 3546: 85,20
+ 3547: 85,14
+ 3548: 84,9
+ 3549: 84,7
+ 3550: 80,4
+ 3551: 78,3
+ 3552: 85,11
+ 3553: 79,0
+ 3554: 80,-8
+ 3555: 77,-12
+ 3559: 68,-18
+ 3560: 67,-16
+ 3561: 60,-10
+ 3562: 60,-12
+ 3563: 56,-14
+ 3564: 54,-16
+ 3565: 49,-22
+ 3566: 50,-23
+ 3567: 52,-26
+ 3568: 55,-27
+ 3569: 57,-28
+ 3570: 60,-26
+ 3571: 64,-23
+ 3572: 65,-22
+ 3573: 61,-10
+ 3574: 61,-8
+ 3575: 56,-5
+ 3576: 54,-5
+ 3577: 54,-2
+ 3578: 50,-2
+ 3579: 50,-6
+ 3580: 49,-7
+ 3581: 51,-9
+ 3582: 50,2
+ 3583: 48,5
+ 3584: 49,12
+ 3585: 49,14
+ 3586: 43,19
+ 3587: 41,20
+ 3588: 46,18
+ 3589: 38,18
+ 3590: 34,19
+ 3591: 32,16
+ 3592: 30,15
+ 3593: 33,15
+ 3594: 33,12
+ 3595: 31,10
+ 3596: 27,10
+ 3597: 25,12
+ 3598: 26,16
+ 3599: 26,12
+ 3600: 26,9
+ 3601: 31,6
+ 3602: 21,7
+ 3603: 19,5
+ 3604: 9,7
+ 3605: 8,3
+ 3606: -3,4
+ 3607: -7,10
+ 3608: -8,12
+ 3609: -9,14
+ 3610: -4,14
+ 3611: -12,12
+ 3612: -16,12
+ 3613: -26,13
+ 3614: -28,13
+ 3615: -35,14
+ 3616: -35,15
+ 3617: -33,11
+ 3618: -38,11
+ 3619: -40,8
+ 3620: -35,7
+ 3621: -35,-5
+ 3622: -32,-5
+ 3623: -20,-3
+ 3624: -17,-2
+ 3625: -16,-3
+ 3626: -21,3
+ 3627: -15,1
+ 3628: -12,-2
+ 3629: -13,-5
+ 3630: 0,-6
+ 3631: 2,-8
+ 3632: 2,-12
+ 3633: 0,-11
+ 3634: -2,-15
+ 3635: -7,-16
+ 3636: -13,-16
+ 3637: -17,-16
+ 3638: -12,-14
+ 3639: -26,-17
+ 3640: -32,-15
+ 3641: -33,-11
+ 3642: -32,-9
+ 3643: -38,-15
+ 3644: -40,-16
+ 3645: -45,-14
+ 3646: -44,-12
+ 3647: -46,-10
+ 3648: -48,-8
+ 3649: -49,-15
+ 3650: -50,-20
+ 3651: -53,-17
+ 3652: -54,-22
+ 3653: -49,-25
+ 3654: -47,-28
+ 3656: -56,-24
+ 3657: -57,-18
+ 3660: -39,-30
+ 3662: -31,-29
+ 3663: -33,-26
+ 3664: -33,-20
+ 3665: -14,-21
+ 3666: -7,-21
+ 3667: -12,-19
+ 3668: -4,-24
+ 3669: -4,-19
+ 3670: -5,-28
+ 3671: -7,-29
+ 3672: -6,-31
+ 3673: -6,-30
+ 3674: 0,-29
+ 3675: 2,-25
+ 3676: 2,-19
+ 3677: -2,-18
+ 3678: 3,-16
+ 3679: 4,-21
+ 3680: 4,-26
+ 3681: 8,-28
+ 3682: 9,-30
+ 3683: 9,-33
+ 3684: 11,-34
+ 3685: 23,-19
+ 3686: 29,-25
+ 3687: 32,-23
+ 3688: 33,-24
+ 3689: 37,-23
+ 3690: 38,-26
+ 3691: 38,-33
+ 3692: 39,-34
+ 3693: 33,-35
+ 3694: 24,-24
+ 3695: 24,-25
+ 3696: 22,-35
+ 3697: 7,-28
+ 3698: 9,-26
+ 3699: 6,-37
+ 3700: 0,-33
+ 3701: 2,-33
+ 3702: -4,-38
+ 3703: -2,-40
+ 3704: -1,-43
+ 3705: 1,-40
+ 3706: 2,-44
+ 3707: -2,-45
+ 3708: -1,-45
+ 3709: 0,-48
+ 3710: 2,-50
+ 3711: 6,-52
+ 3712: 7,-51
+ 3713: 8,-53
+ 3714: -3,-52
+ 3715: -4,-53
+ 3716: -8,-53
+ 3717: -8,-51
+ 3718: -3,-51
+ 3719: -47,-37
+ 3720: -52,-37
+ 3721: -57,-37
+ 3722: -58,-34
+ 3723: -60,-33
+ 3724: -61,-33
+ 3725: -63,-29
+ 3726: -62,-26
+ 3727: -60,-12
+ 3728: -57,-12
+ 3729: -58,-9
+ 3730: -62,-7
+ 3731: -62,-8
+ 3732: -59,-4
+ 3733: -62,-4
+ 3734: -61,-5
+ 3735: -58,-2
+ 3736: -53,-4
+ 3737: -52,-3
+ 3738: -49,-3
+ 3739: -46,-6
+ 3740: -44,-11
+ 3741: -46,4
+ 3742: -49,7
+ 3743: -47,10
+ 3744: -44,10
+ 3745: -45,14
+ 3746: -50,13
+ 3747: -53,11
+ 3748: -54,7
+ 3749: -60,8
+ 3750: -64,7
+ 3751: -66,9
+ 3752: -54,14
+ 3753: -56,14
+ 3754: -62,17
+ 3755: -63,15
+ 3756: -57,21
+ 3757: -59,24
+ 3758: -57,26
+ 3759: -55,23
+ 3760: -65,27
+ 3761: -53,31
+ 3762: -58,4
+ 3763: -59,1
+ 3764: -61,0
+ 3765: -60,-2
+ 3766: -66,3
+ 3767: -65,-2
+ 3768: -66,-4
+ 3769: -66,-7
+ 3770: -69,-7
+ 3771: -74,-7
+ 3772: -76,-3
+ 3773: -75,-3
+ 3774: -78,0
+ 3775: -79,7
+ 3776: -81,9
+ 3777: -84,7
+ 3778: -84,6
+ 3779: -86,6
+ 3780: -86,10
+ 3781: -86,2
+ 3782: -84,0
+ 3783: -87,-4
+ 3784: -89,-5
+ 3785: -87,-6
+ 3786: -80,-4
+ 3787: -80,-6
+ 3788: -97,-3
+ 3789: -96,-8
+ 3790: -95,-10
+ 3791: -97,-13
+ 3792: -92,-6
+ 3793: -89,-2
+ 3794: -97,4
+ 3795: -98,4
+ 3796: -97,11
+ 3797: -99,8
+ 3798: -93,8
+ 3799: -90,8
+ 3800: -90,7
+ 3801: -96,17
+ 3802: -97,19
+ 3803: -96,21
+ 3804: -96,24
+ 3805: -97,27
+ 3806: -89,21
+ 3807: -86,20
+ 3808: -82,21
+ 3809: -78,21
+ 3810: -74,24
+ 3811: -100,28
+ 3812: -79,51
+ 3813: -75,52
+ 3814: -68,50
+ 3815: -66,47
+ 3816: -60,50
+ 3817: -42,63
+ 3818: -7,71
+ 3819: -2,71
+ 3820: -9,74
+ 3821: 20,2
+ 3822: 33,-1
+ 3823: 20,-8
+ 3824: 7,-8
+ 3825: 0,-9
+ 3876: -39,40
+ 3877: -35,34
+ 3878: -36,30
+ 3879: -17,30
+ 3880: -15,28
+ 3881: -13,36
+ 3882: -13,41
+ 3883: -8,42
+ 3884: -7,39
+ 3885: -5,32
+ 5610: -26,50
+ 5611: -32,51
+ 5612: -21,50
+ 5613: -19,46
+ 5614: -14,45
+ 5615: -14,39
+ 5616: -9,42
+ 5617: -22,45
+ 5618: -21,44
+ 5619: -27,44
+ 5620: -28,41
+ 5621: -24,39
+ 5622: -21,38
+ 5623: -28,38
+ 5624: -31,39
+ 5625: -20,44
+ 5626: -28,44
+ 5627: -14,36
+ 5628: -13,32
+ 5629: -14,44
+ 5630: -13,43
+ 5782: 84,-15
+ 5783: 79,-13
+ 5784: 80,-13
+ 5785: 81,-21
+ 5786: 82,-20
+ 5787: 94,-20
+ 5788: 94,-19
+ 5789: 93,-14
+ 5790: 93,-12
+ 5791: 95,-10
+ 5792: 97,-24
+ 5793: 95,-24
+ 5794: 100,-25
+ 5795: 101,-23
+ 5796: 103,-23
+ 5797: 106,-25
+ 5798: 108,-25
+ 5799: 109,-24
+ 5800: 109,-22
+ 5801: 107,-20
+ 5802: 107,-18
+ 5803: 107,-14
+ 5804: 109,-12
+ 5805: 109,-10
+ 5806: 107,-10
+ 5807: 105,-10
+ 5808: 103,-11
+ 5809: 101,-11
+ 5810: 99,-10
+ 5811: 98,-10
+ 5812: 96,-10
+ 5813: 100,-18
+ 5814: 93,-18
+ 6912: -25,-43
+ 6913: -17,-41
+ 6914: -16,-42
+ 6915: -17,-46
+ 6916: -21,-47
+ 6917: -22,-38
+ 6918: -20,-36
+ 6919: -22,-32
+ 6920: -20,-29
+ 6921: -17,-20
+ 6922: -11,-31
+ 6923: -16,-29
+ 7141: -4,3
+ 7142: 2,6
+ 7143: 2,7
+ 7144: 6,1
+ 7145: 0,-2
+ 7146: 2,-3
+ 7147: 0,-5
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 4640: -55,-25
+ 4642: -55,-29
+ 4643: -60,-29
+ 4644: -47,-30
+ 4646: -42,-31
+ 4647: -46,-33
+ 4648: -39,-33
+ 4649: -38,-36
+ 4650: -38,-38
+ 4651: -44,-38
+ 4652: -43,-38
+ 4654: -38,-22
+ 4655: -44,-16
+ 4656: -51,-15
+ 4657: -54,-16
+ 4658: -52,-11
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtHeavyMonotile
decals:
- 5190: -9,-22
- 5191: -8,-17
- 5192: -5,-16
- 5193: -9,-15
- 5194: -12,-17
- 5195: -16,-15
- 5196: -20,-16
- 5197: -22,-15
- 5198: -25,-15
- 5199: -26,-16
- 5200: -32,-16
- 5201: -33,-14
- 5202: -33,-10
- 5203: -33,-4
- 5204: -33,-4
- 5205: -33,-5
- 5206: -30,-2
- 5207: -29,3
- 5208: -23,1
- 5209: -15,1
- 5210: -27,13
- 5211: -26,12
- 5212: -33,12
- 5213: -35,13
- 5214: -38,10
- 5215: -39,11
- 5216: -44,13
- 5217: -44,13
- 5218: -37,17
- 5219: -35,18
- 5220: -28,20
- 5221: -23,20
- 5222: -18,21
- 5223: -33,24
- 5224: -35,28
- 5225: -12,26
- 5226: -23,31
- 5227: -33,32
- 5228: -19,34
- 5229: -9,36
- 5230: -20,39
- 5231: -7,39
- 5232: -14,40
- 5233: -6,40
- 5234: -8,39
- 5235: -17,29
- 5236: -15,29
- 5237: -27,41
- 5238: -26,45
- 5239: -30,25
- 5240: -30,33
- 5241: -34,31
- 5242: -36,34
- 5243: -36,30
- 5244: -40,39
- 5245: -42,41
- 5246: -38,45
- 5247: -33,50
- 5248: -32,47
- 5264: -15,47
- 5265: -3,53
- 5266: -4,48
- 5267: -15,64
- 5268: -24,63
- 5269: -27,59
- 5270: -31,59
- 5271: -32,58
- 5272: -38,59
- 5273: -42,65
- 5274: -44,71
- 5275: -47,70
- 5276: -14,70
- 5277: -8,71
- 5278: -3,70
- 5279: 1,70
- 5280: 2,60
- 5281: -1,56
- 5282: 1,52
- 5283: 1,48
- 5284: 4,42
- 5285: 1,40
- 5286: 2,35
- 5287: 7,37
- 5288: 3,41
- 5289: 17,43
- 5290: 22,46
- 5291: 32,48
- 5292: 35,41
- 5293: 35,36
- 5294: 39,36
- 5295: 38,43
- 5296: 40,50
- 5297: 37,48
- 5298: 44,46
- 5299: 48,48
- 5300: 45,50
- 5301: 44,55
- 5302: 37,54
- 5303: 36,48
- 5304: 51,43
- 5305: 57,39
- 5306: 64,42
- 5307: 62,48
- 5308: 70,43
- 5309: 61,41
- 5310: 70,49
- 5311: 72,43
- 5312: 72,49
- 5313: 71,47
- 5314: 76,53
- 5315: 70,59
- 5316: 76,54
- 5317: 66,57
- 5318: 74,63
- 5319: 71,56
- 5320: 59,65
- 5321: 55,69
- 5322: 61,68
- 5323: 62,67
- 5324: 63,68
- 5325: 70,66
- 5326: 73,64
- 5327: 78,66
- 5328: 86,65
- 5329: 82,64
- 5330: 81,61
- 5331: 77,56
- 5332: 84,53
- 5333: 85,56
- 5334: 83,50
- 5335: 84,46
- 5336: 96,43
- 5337: 88,39
- 5338: 78,44
- 5339: 77,36
- 5340: 88,35
- 5341: 84,31
- 5342: 77,35
- 5343: 82,30
- 5344: 79,31
- 5345: 79,29
- 5346: 83,25
- 5347: 88,24
- 5348: 93,24
- 5349: 98,24
- 5350: 97,28
- 5351: 93,28
- 5352: 92,29
- 5353: 97,31
- 5354: 89,36
- 5355: 97,38
- 5356: 95,36
- 5357: 98,33
- 5358: 99,34
- 5359: 72,28
- 5360: 74,31
- 5361: 65,35
- 5362: 69,32
- 5363: 65,31
- 5364: 69,15
- 5365: 48,12
- 5366: 46,18
- 5367: 42,18
- 5368: 35,19
- 5369: 28,19
- 5370: 31,19
- 5371: 24,20
- 5372: 22,19
- 5373: 17,22
- 5374: 14,20
- 5375: 15,22
- 5376: 18,19
- 5377: 7,20
- 5378: 9,16
- 5379: 8,17
- 5380: 3,12
- 5381: 9,10
- 5382: 0,17
- 5383: -5,11
- 5384: 3,10
- 5385: -6,12
- 5386: -9,6
- 5387: -5,11
- 5388: -9,2
- 5389: -14,4
- 5390: -13,1
- 5391: -12,5
- 5392: -12,8
- 5393: -16,15
- 5394: -19,13
- 5395: -25,18
- 5396: -15,14
- 5397: -24,17
- 5398: -31,23
- 5399: -27,21
- 5400: -30,22
- 5401: -34,19
- 5402: -32,19
- 5403: -35,18
- 5404: -40,15
- 5405: -43,15
- 5406: -46,13
- 5407: -47,10
- 5408: -48,5
- 5409: -48,-1
- 5410: -48,-5
- 5411: -48,-8
- 5412: -46,-14
- 5413: -42,-15
- 5414: -35,-18
- 5415: -47,-18
- 5416: -45,-24
- 5417: -49,-22
- 5418: -56,-21
- 5419: -50,-23
- 5420: -53,-21
- 5421: -57,-26
- 5422: -57,-26
- 5423: -59,-20
- 5424: -60,-19
- 5425: -59,-24
- 5426: -61,-10
- 5427: -60,-7
- 5428: -62,-6
- 5429: -61,-5
- 5430: -67,-8
- 5431: -65,-4
- 5432: -64,-1
- 5433: -68,3
- 5434: -73,6
- 5435: -78,5
- 5436: -84,2
- 5437: -78,6
- 5438: -81,9
- 5439: -86,14
- 5440: -91,6
- 5441: -88,7
- 5442: -97,8
- 5443: -97,6
- 5444: -97,21
- 5445: -96,25
- 5446: -94,27
- 5447: -86,22
- 5448: -85,19
- 5449: -83,21
- 5450: -87,14
- 5451: -84,13
- 5452: -86,15
- 5453: -87,1
- 5454: -88,-1
- 5455: -83,-6
- 5456: -73,-7
- 5457: -80,0
- 5458: -69,1
- 5459: -66,-2
- 5460: -58,-13
- 5461: -60,-23
- 5462: -42,-37
- 5463: -48,-37
- 5464: -53,-37
- 5465: -56,-37
- 5466: -34,-44
- 5467: -49,-43
- 5468: -20,-43
- 5469: -22,-44
- 5470: -16,-45
- 5471: -17,-40
- 5472: -9,-39
- 5473: -15,-37
- 5474: -12,-31
- 5475: -6,-30
- 5476: -2,-37
- 5477: 2,-39
- 5478: -5,-39
- 5479: 1,-45
- 5480: 2,-46
- 5481: 0,-50
- 5482: -4,-51
- 5483: -5,-52
- 5484: 10,-53
- 5485: 4,-53
- 5486: 6,-42
- 5487: 9,-36
- 5488: 17,-31
- 5489: 8,-33
- 5490: 13,-28
- 5491: 3,-26
- 5492: 7,-22
- 5493: 18,-25
- 5494: 14,-26
- 5495: 20,-25
- 5496: 19,-27
- 5497: 22,-29
- 5498: 22,-28
- 5499: 29,-26
- 5500: 32,-23
- 5501: 36,-24
- 5502: 31,-26
- 5503: 39,-25
- 5504: 37,-24
- 5505: 39,-28
- 5506: 38,-32
- 5507: 33,-35
- 5508: 28,-34
- 5509: 42,-30
- 5510: 44,-29
- 5511: 43,-25
- 5512: 49,-31
- 5513: 56,-33
- 5514: 50,-24
- 5515: 65,-24
- 5516: 68,-17
- 5517: 67,-16
- 5518: 59,-12
- 5519: 64,-10
- 5520: 61,-6
- 5521: 57,-6
- 5522: 55,-3
- 5523: 50,-2
- 5524: 50,1
- 5525: 51,2
- 5526: 78,-6
- 5527: 79,-3
- 5528: 81,3
- 5529: 83,6
- 5530: 85,8
- 5531: 84,11
- 5532: 86,14
- 5533: 85,17
- 5534: 89,18
- 5535: 88,17
- 5536: 75,25
- 5537: 70,31
- 5538: 71,34
- 5539: 77,40
- 5540: 71,41
- 5541: 69,39
- 5542: 60,45
- 5543: 69,48
- 5544: 72,48
- 5545: 70,48
- 5546: 80,51
- 5547: 80,55
- 5548: 77,60
- 5549: 76,60
- 5550: 73,64
- 5551: 54,61
- 5552: 45,56
- 5553: 45,48
- 5554: 39,43
- 5555: 40,34
- 5556: 35,38
- 5557: 27,38
- 5558: 18,40
+ 3826: -9,-22
+ 3827: -8,-17
+ 3828: -5,-16
+ 3829: -9,-15
+ 3830: -12,-17
+ 3831: -20,-16
+ 3832: -26,-16
+ 3833: -32,-16
+ 3834: -33,-14
+ 3835: -33,-10
+ 3836: -33,-4
+ 3837: -33,-4
+ 3838: -33,-5
+ 3839: -15,1
+ 3840: -27,13
+ 3841: -26,12
+ 3842: -33,12
+ 3843: -35,13
+ 3844: -38,10
+ 3845: -39,11
+ 3846: -44,13
+ 3847: -44,13
+ 3848: -37,17
+ 3849: -35,18
+ 3850: -28,20
+ 3851: -23,20
+ 3852: -18,21
+ 3853: -33,24
+ 3854: -35,28
+ 3855: -12,26
+ 3856: -23,31
+ 3857: -33,32
+ 3858: -19,34
+ 3859: -9,36
+ 3860: -7,39
+ 3861: -14,40
+ 3862: -6,40
+ 3863: -8,39
+ 3864: -17,29
+ 3865: -15,29
+ 3866: -27,41
+ 3867: -26,45
+ 3868: -30,25
+ 3869: -30,33
+ 3870: -36,34
+ 3871: -36,30
+ 3872: -40,39
+ 3873: -42,41
+ 3874: -38,45
+ 3875: -33,50
+ 3886: -15,64
+ 3887: -24,63
+ 3888: -27,59
+ 3889: -31,59
+ 3890: -32,58
+ 3891: -38,59
+ 3892: -42,65
+ 3893: -44,71
+ 3894: -47,70
+ 3895: -14,70
+ 3896: -8,71
+ 3897: -3,70
+ 3898: 1,70
+ 3899: 2,60
+ 3900: -1,56
+ 3901: 1,52
+ 3902: 1,48
+ 3903: 4,42
+ 3904: 1,40
+ 3905: 2,35
+ 3906: 7,37
+ 3907: 3,41
+ 3908: 17,43
+ 3909: 22,46
+ 3910: 32,48
+ 3911: 35,41
+ 3912: 35,36
+ 3913: 39,36
+ 3914: 38,43
+ 3915: 40,50
+ 3916: 37,48
+ 3917: 44,46
+ 3918: 48,48
+ 3919: 45,50
+ 3920: 44,55
+ 3921: 37,54
+ 3922: 36,48
+ 3923: 51,43
+ 3924: 81,61
+ 3925: 84,53
+ 3926: 85,56
+ 3927: 88,39
+ 3928: 88,35
+ 3929: 89,36
+ 3930: 72,28
+ 3931: 65,31
+ 3932: 69,15
+ 3933: 48,12
+ 3934: 46,18
+ 3935: 42,18
+ 3936: 35,19
+ 3937: 28,19
+ 3938: 31,19
+ 3939: 24,20
+ 3940: 22,19
+ 3941: 17,22
+ 3942: 14,20
+ 3943: 15,22
+ 3944: 18,19
+ 3945: 7,20
+ 3946: 3,12
+ 3947: 0,17
+ 3948: -5,11
+ 3949: 3,10
+ 3950: -6,12
+ 3951: -5,11
+ 3952: -14,4
+ 3953: -13,1
+ 3954: -12,5
+ 3955: -12,8
+ 3956: -16,15
+ 3957: -19,13
+ 3958: -25,18
+ 3959: -15,14
+ 3960: -24,17
+ 3961: -31,23
+ 3962: -27,21
+ 3963: -30,22
+ 3964: -34,19
+ 3965: -32,19
+ 3966: -35,18
+ 3967: -40,15
+ 3968: -43,15
+ 3969: -46,13
+ 3970: -47,10
+ 3971: -48,5
+ 3972: -48,-1
+ 3973: -48,-5
+ 3974: -48,-8
+ 3975: -46,-14
+ 3976: -42,-15
+ 3977: -35,-18
+ 3978: -47,-18
+ 3979: -45,-24
+ 3980: -49,-22
+ 3982: -50,-23
+ 3983: -53,-21
+ 3984: -57,-26
+ 3985: -57,-26
+ 3986: -61,-10
+ 3987: -60,-7
+ 3988: -62,-6
+ 3989: -61,-5
+ 3990: -67,-8
+ 3991: -65,-4
+ 3992: -64,-1
+ 3993: -68,3
+ 3994: -73,6
+ 3995: -78,5
+ 3996: -84,2
+ 3997: -78,6
+ 3998: -81,9
+ 3999: -86,14
+ 4000: -91,6
+ 4001: -88,7
+ 4002: -97,8
+ 4003: -97,6
+ 4004: -97,21
+ 4005: -96,25
+ 4006: -94,27
+ 4007: -86,22
+ 4008: -85,19
+ 4009: -83,21
+ 4010: -87,14
+ 4011: -84,13
+ 4012: -86,15
+ 4013: -87,1
+ 4014: -88,-1
+ 4015: -83,-6
+ 4016: -73,-7
+ 4017: -80,0
+ 4018: -69,1
+ 4019: -66,-2
+ 4020: -58,-13
+ 4021: -42,-37
+ 4022: -48,-37
+ 4023: -53,-37
+ 4024: -56,-37
+ 4025: -9,-39
+ 4026: -15,-37
+ 4027: -12,-31
+ 4028: -6,-30
+ 4029: -2,-37
+ 4030: 2,-39
+ 4031: -5,-39
+ 4032: 1,-45
+ 4033: 2,-46
+ 4034: 0,-50
+ 4035: -4,-51
+ 4036: -5,-52
+ 4037: 10,-53
+ 4038: 4,-53
+ 4039: 6,-42
+ 4040: 9,-36
+ 4041: 8,-33
+ 4042: 13,-28
+ 4043: 3,-26
+ 4044: 14,-26
+ 4045: 29,-26
+ 4046: 32,-23
+ 4047: 36,-24
+ 4048: 31,-26
+ 4049: 39,-25
+ 4050: 37,-24
+ 4051: 39,-28
+ 4052: 38,-32
+ 4053: 33,-35
+ 4054: 28,-34
+ 4055: 42,-30
+ 4056: 44,-29
+ 4057: 43,-25
+ 4058: 49,-31
+ 4059: 56,-33
+ 4060: 50,-24
+ 4061: 65,-24
+ 4062: 68,-17
+ 4063: 67,-16
+ 4064: 59,-12
+ 4065: 64,-10
+ 4066: 61,-6
+ 4067: 57,-6
+ 4068: 55,-3
+ 4069: 50,-2
+ 4070: 50,1
+ 4071: 51,2
+ 4072: 79,-3
+ 4073: 81,3
+ 4074: 83,6
+ 4075: 85,8
+ 4076: 84,11
+ 4077: 86,14
+ 4078: 85,17
+ 4079: 89,18
+ 4080: 88,17
+ 4081: 70,31
+ 4082: 80,55
+ 4083: 45,56
+ 4084: 45,48
+ 4085: 39,43
+ 4086: 40,34
+ 4087: 35,38
+ 4088: 27,38
+ 4089: 18,40
+ 4665: -21,6
+ 4666: -14,6
+ 4667: -21,-1
+ 4668: -14,-3
+ 4669: -7,-2
+ 4670: -7,-3
+ 4671: -8,6
+ 4672: -6,5
+ 4673: -9,3
+ 4674: -11,9
+ 4675: -15,9
+ 4687: -30,7
+ 4688: -27,5
+ 4689: -25,2
+ 4690: -27,0
+ 4691: -32,-3
+ 4728: 18,-20
+ 4729: 22,-21
+ 4730: 22,-22
+ 4731: 22,-24
+ 4732: 18,-23
+ 4733: 19,-21
+ 4734: 17,-23
+ 5653: -21,49
+ 5654: -17,49
+ 5655: -18,51
+ 5656: -24,50
+ 5657: -26,49
+ 5658: -31,44
+ 5659: -33,45
+ 5660: -30,44
+ 5661: -31,49
+ 5662: -34,48
+ 5663: -34,50
+ 5664: -34,43
+ 5665: -31,43
+ 5666: -26,41
+ 5667: -24,39
+ 5668: -25,38
+ 5669: -22,39
+ 5670: -21,41
+ 5671: -23,42
+ 5672: -24,42
+ 5673: -21,46
+ 5674: -20,49
+ 5675: -17,48
+ 5676: -15,50
+ 5677: -10,52
+ 5678: -13,54
+ 5679: -5,51
+ 5680: -14,55
+ 5681: -22,58
+ 5682: -21,55
+ 5815: 81,-19
+ 5816: 83,-15
+ 5817: 81,-14
+ 5818: 81,-13
+ 5819: 86,-13
+ 5820: 94,-13
+ 5821: 94,-10
+ 5822: 96,-9
+ 5823: 101,-9
+ 5824: 107,-20
+ 5825: 109,-23
+ 5826: 99,-25
+ 5827: 93,-24
+ 5828: 94,-20
+ 6149: 0,46
+ 6150: 2,40
+ 6151: 2,44
+ 7119: 8,15
+ 7120: 15,13
+ 7121: 16,10
+ 7122: 11,10
+ 7123: 13,6
+ 7124: 16,5
+ 7125: 10,6
+ 7126: 25,5
+ 7127: 22,10
+ 7128: 10,12
+ 7129: 7,10
+ 7130: 8,10
+ 7131: 8,9
+ 7132: 20,9
+ 7133: 20,16
+ 7134: 8,17
+ 7135: 11,15
+ 7136: 15,15
+ 7137: 0,5
+ 7138: 4,2
+ 7139: -3,1
+ 7140: 1,-2
+ 7148: 2,-1
+ - node:
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 4659: -59,-13
+ 4660: -50,-11
+ 4661: -57,-17
+ 4662: -54,-18
+ 4663: -54,-21
+ 4664: -57,-24
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtLight
decals:
- 5559: 1,42
- 5560: 1,46
- 5561: -9,52
- 5562: -16,51
- 5563: -16,44
- 5564: -13,38
- 5565: -18,41
- 5566: -59,12
- 5567: -51,10
- 5568: -83,15
- 5569: -80,28
- 5570: -52,34
- 5571: -31,54
- 5572: 17,51
- 5573: 6,19
- 5574: 63,19
- 5575: -9,-23
- 5576: -55,-24
- 5577: -41,-26
- 5578: 20,-19
- 5579: 32,-20
- 5580: 49,23
- 5581: 67,47
- 5582: 63,57
- 5583: 78,36
- 5584: 80,40
- 5585: 50,49
- 5586: 79,54
- 5587: -17,4
- 5588: -9,21
- 5589: 13,4
- 5590: 1,-3
- 5591: -15,-29
- 5592: -58,-31
- 5593: -65,-8
- 5594: -51,33
- 5595: -36,47
- 5596: -23,56
- 5597: -20,64
- 5598: 5,47
- 5599: 17,21
- 5600: 39,23
- 5601: 31,15
- 5602: 65,-10
- 5603: 38,-18
- 5604: 34,-23
- 5605: 1,-36
- 5606: 5,-43
- 5607: -12,-37
- 5608: -29,-23
- 5609: 10,-20
- 5610: 32,-13
- 5611: 15,10
- 5612: -14,11
- 5613: 35,24
- 5614: 58,32
- 5615: 54,42
- 5616: 64,57
- 5617: 78,47
- 5618: 46,48
- 5619: 19,48
- 5620: -12,49
- 5621: -9,54
- 5622: -17,59
- 5623: -48,64
- 5624: -30,63
- 5625: -17,60
- 5626: -20,30
- 5627: -60,13
- 5628: -49,3
- 5629: -27,-24
- 5630: -51,-12
- 5631: -44,-22
- 5632: -86,4
- 5633: -86,16
- 5634: -99,13
- 5635: -105,6
- 5636: -67,-13
- 5637: -46,-20
- 5638: -37,-24
- 5639: -3,-28
- 5640: 25,-26
- 5641: 39,-15
- 5642: 46,-11
- 5643: 31,-23
- 5644: 53,25
- 5645: 32,35
- 5646: -1,49
- 5647: 0,64
- 5648: -1,76
- 5649: -22,61
- 5650: -27,58
+ 4090: 1,42
+ 4091: -9,52
+ 4092: -16,51
+ 4093: -13,38
+ 4094: -18,41
+ 4095: -51,10
+ 4096: -83,15
+ 4097: -80,28
+ 4098: -31,54
+ 4099: 17,51
+ 4100: 6,19
+ 4102: -9,-23
+ 4103: -55,-24
+ 4105: 32,-20
+ 4106: 49,23
+ 4107: 50,49
+ 4108: 79,54
+ 4109: -17,4
+ 4110: -9,21
+ 4111: 13,4
+ 4112: -15,-29
+ 4113: -65,-8
+ 4114: -51,33
+ 4115: -36,47
+ 4116: -23,56
+ 4117: -20,64
+ 4118: 17,21
+ 4119: 39,23
+ 4120: 31,15
+ 4121: 65,-10
+ 4122: 38,-18
+ 4123: 34,-23
+ 4124: 1,-36
+ 4125: 5,-43
+ 4126: -12,-37
+ 4127: -29,-23
+ 4128: 32,-13
+ 4129: -14,11
+ 4130: 35,24
+ 4131: 58,32
+ 4132: 54,42
+ 4133: 46,48
+ 4134: 19,48
+ 4135: -9,54
+ 4136: -17,59
+ 4137: -48,64
+ 4138: -30,63
+ 4139: -17,60
+ 4140: -20,30
+ 4141: -49,3
+ 4142: -27,-24
+ 4143: -51,-12
+ 4144: -44,-22
+ 4145: -86,4
+ 4146: -86,16
+ 4147: -99,13
+ 4148: -105,6
+ 4149: -67,-13
+ 4150: -46,-20
+ 4151: -3,-28
+ 4152: 25,-26
+ 4153: 39,-15
+ 4154: 46,-11
+ 4155: 31,-23
+ 4156: 53,25
+ 4157: 32,35
+ 4158: -1,49
+ 4159: 0,64
+ 4160: -1,76
+ 4161: -27,58
+ 4676: -20,6
+ 4677: -22,1
+ 4678: -19,2
+ 4679: -18,5
+ 4680: -15,6
+ 4681: -7,6
+ 4682: -9,-1
+ 4683: -7,-2
+ 4684: -14,-3
+ 4685: -15,-1
+ 4686: -20,-2
+ 4697: -25,5
+ 4698: -25,7
+ 4699: -31,7
+ 4700: -27,-1
+ 5631: -14,46
+ 5632: -20,48
+ 5633: -23,45
+ 5634: -26,49
+ 5635: -31,48
+ 5636: -26,42
+ 5637: -21,41
+ 5638: -21,38
+ 5639: -22,38
+ 5640: -30,38
+ 5641: -18,40
+ 5642: -14,38
+ 5643: -18,46
+ 5644: -13,46
+ 5645: -26,45
+ 5646: -26,48
+ 5647: -26,53
+ 5648: -21,53
+ 5829: 83,-15
+ 5830: 83,-19
+ 5831: 96,-17
+ 5832: 94,-15
+ 5833: 100,-17
+ 5834: 108,-10
+ 5835: 98,-9
+ 7106: 8,13
+ 7107: 10,15
+ 7108: 14,13
+ 7109: 18,15
+ 7110: 20,10
+ 7111: 15,6
+ 7112: 12,10
+ 7113: 6,10
+ 7114: 6,13
+ 7115: 5,16
+ 7116: 22,14
+ 7117: 23,11
+ 7118: 21,11
+ 7149: -2,2
+ 7150: 1,4
+ 7151: 1,7
+ 7152: 6,3
+ 7153: 10,1
+ 7154: 8,-2
+ 7155: 9,-6
+ 7156: 10,-10
+ 7157: 9,-12
+ 7158: 12,-5
- node:
cleanable: True
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 5651: -63,13
- 5652: -58,-1
- 5653: -38,13
- 5654: -35,15
- 5655: 22,29
- 5656: 7,-3
- 5657: 21,-14
- 5658: -37,-23
- 5659: 36,-14
- 5660: -11,-28
- 5661: -1,-30
- 5662: 43,-27
- 5663: 16,-32
- 5664: 3,-41
- 5665: 3,-40
- 5666: -18,-9
- 5667: 2,9
- 5668: 30,25
- 5669: 15,26
- 5670: -31,22
- 5671: -17,36
- 5672: 2,51
- 5673: 6,66
- 5674: -39,63
- 5675: -35,65
- 5676: 12,76
- 5677: -10,70
- 5678: 1,46
- 5679: 25,47
- 5680: 65,58
- 5681: 58,67
- 5682: 64,52
- 5683: 90,43
- 5684: 73,37
- 5685: 69,28
- 5686: 95,26
- 5687: 92,33
- 5688: 87,37
- 5689: 61,18
- 5690: 39,9
- 5691: 37,-10
- 5692: 62,-13
- 5693: 70,-9
- 5694: 38,-17
- 5695: -5,-18
- 5696: -9,-11
- 5697: -48,-15
- 5698: -34,1
- 5699: -30,18
- 5700: -52,24
- 5701: -48,27
- 5702: -65,34
- 5703: -66,36
- 5704: -63,-32
- 5705: -121,50
- 5706: -120,57
- 5707: -105,57
- 5708: -101,51
- 5709: -89,52
- 5710: -67,49
- 5711: -56,44
- 5712: -32,60
- 5713: -5,66
- 5714: -19,62
- 5715: -31,58
- 5716: -23,55
- 5717: -15,62
- 5718: -4,63
- 5719: -13,37
- 5720: -18,25
- 5721: -2,29
- 5722: -37,21
- 5723: -15,22
- 5724: -10,29
- 5725: -14,34
- 5726: -10,39
- 5727: -27,37
- 5728: -14,43
- 5729: 35,34
- 5730: 3,37
- 5731: -1,46
- 5732: 43,43
- 5733: 33,7
- 5734: 42,17
- 5735: 51,16
- 5736: 41,18
- 5737: 47,-3
- 5738: 49,-7
- 5739: 41,-18
- 5740: 56,-15
- 5741: 21,-23
- 5742: -7,-27
- 5743: -9,-27
- 5744: 51,-18
- 5745: 51,-13
- 5746: 57,-6
- 5747: 50,2
- 5748: 39,29
- 5749: 38,33
- 5750: 28,37
- 5751: 19,41
- 5752: 1,45
- 5753: -13,45
- 5754: -28,41
- 5755: -27,55
- 5756: -30,60
- 5757: -42,64
- 5758: -45,57
- 5759: -56,30
- 5760: -54,23
- 5761: -60,27
- 5762: -42,27
- 5763: -60,33
- 5764: -40,28
- 5765: -46,24
- 5766: -35,27
- 5767: -38,11
- 5768: -35,5
- 5769: -32,2
- 5770: -28,1
- 5771: -58,1
- 5772: -69,-1
- 5773: -66,-6
- 5774: -66,-11
- 5775: -63,-14
- 5776: -63,-20
- 5777: -63,-23
- 5778: -66,-32
- 5779: -43,-37
- 5780: -23,-39
- 5781: -23,-43
- 5782: -1,-43
- 5783: 3,-44
- 5784: 5,-53
- 5785: -2,-53
- 5786: 11,-33
- 5787: 21,-22
- 5788: 28,-21
- 5789: 36,-23
- 5790: 35,-23
- 5791: 44,-17
- 5792: 39,-10
- 5793: 39,-6
- 5794: 39,1
- 5795: 39,8
- 5796: 58,-5
- 5797: 65,-14
- 5798: 72,-12
- 5799: 69,-11
- 5800: 74,-11
- 5801: 74,-12
- 5802: 76,-22
- 5803: 70,-26
- 5804: 58,-30
- 5805: 54,-30
- 5806: 49,-31
- 5807: 46,-31
- 5808: 47,-24
- 5809: 43,-28
- 5810: 50,-34
- 5811: 44,-35
- 5812: 48,-35
- 5813: 63,-12
- 5814: 49,13
- 5815: 43,21
- 5816: 35,26
- 5817: 35,29
- 5818: 31,27
- 5819: 27,27
- 5820: 40,33
- 5821: 39,44
- 5822: 43,48
- 5823: 42,50
- 5824: 43,50
- 5825: 26,45
- 5826: 17,42
- 5827: 6,41
- 5828: -1,47
- 5829: -1,48
- 5830: 3,55
- 5831: 2,60
- 5832: 2,64
- 5833: 2,71
- 5834: -6,71
- 5835: 5,69
- 5836: 6,69
- 5837: 13,65
- 5838: 7,64
- 5839: 9,63
- 5840: -24,58
+ 4162: -58,-1
+ 4163: -35,15
+ 4164: 22,29
+ 4165: 7,-3
+ 4166: 21,-14
+ 4167: -37,-23
+ 4168: 36,-14
+ 4169: -11,-28
+ 4170: -1,-30
+ 4171: 43,-27
+ 4172: 16,-32
+ 4173: 3,-41
+ 4174: 3,-40
+ 4175: -18,-9
+ 4176: 2,9
+ 4177: 30,25
+ 4178: 15,26
+ 4179: -31,22
+ 4180: 2,51
+ 4181: 6,66
+ 4182: -39,63
+ 4183: -35,65
+ 4184: 12,76
+ 4185: -10,70
+ 4186: 25,47
+ 4187: 90,43
+ 4188: 69,28
+ 4189: 87,37
+ 4190: 61,18
+ 4191: 39,9
+ 4192: 37,-10
+ 4193: 62,-13
+ 4194: 70,-9
+ 4195: 38,-17
+ 4196: -5,-18
+ 4197: -9,-11
+ 4198: -48,-15
+ 4199: -30,18
+ 4200: -52,24
+ 4201: -48,27
+ 4202: -65,34
+ 4203: -66,36
+ 4204: -63,-32
+ 4205: -67,49
+ 4206: -56,44
+ 4207: -32,60
+ 4208: -31,58
+ 4209: -23,55
+ 4210: -15,62
+ 4211: -4,63
+ 4212: -13,37
+ 4213: -18,25
+ 4214: -2,29
+ 4215: -37,21
+ 4216: -15,22
+ 4217: -10,29
+ 4218: -14,34
+ 4219: -10,39
+ 4220: -27,37
+ 4221: -14,43
+ 4222: 35,34
+ 4223: 3,37
+ 4224: -1,46
+ 4225: 43,43
+ 4226: 33,7
+ 4227: 42,17
+ 4228: 51,16
+ 4229: 41,18
+ 4230: 47,-3
+ 4231: 49,-7
+ 4232: 41,-18
+ 4233: 56,-15
+ 4234: -7,-27
+ 4235: -9,-27
+ 4236: 51,-18
+ 4237: 51,-13
+ 4238: 57,-6
+ 4239: 50,2
+ 4240: 39,29
+ 4241: 38,33
+ 4242: 28,37
+ 4243: 19,41
+ 4244: 1,45
+ 4245: -27,55
+ 4246: -30,60
+ 4247: -42,64
+ 4248: -45,57
+ 4249: -56,30
+ 4250: -54,23
+ 4251: -60,27
+ 4252: -42,27
+ 4253: -60,33
+ 4254: -40,28
+ 4255: -46,24
+ 4256: -35,27
+ 4257: -38,11
+ 4258: -35,5
+ 4259: -58,1
+ 4260: -69,-1
+ 4261: -66,-6
+ 4262: -66,-11
+ 4263: -63,-14
+ 4264: -63,-20
+ 4265: -63,-23
+ 4266: -66,-32
+ 4267: -43,-37
+ 4268: -1,-43
+ 4269: 3,-44
+ 4270: 5,-53
+ 4271: -2,-53
+ 4272: 11,-33
+ 4273: 36,-23
+ 4274: 35,-23
+ 4275: 44,-17
+ 4276: 39,-10
+ 4277: 39,-6
+ 4278: 39,1
+ 4279: 39,8
+ 4280: 58,-5
+ 4281: 65,-14
+ 4283: 69,-11
+ 4284: 74,-11
+ 4285: 74,-12
+ 4286: 76,-22
+ 4287: 70,-26
+ 4288: 58,-30
+ 4289: 54,-30
+ 4290: 49,-31
+ 4291: 46,-31
+ 4292: 47,-24
+ 4293: 43,-28
+ 4294: 63,-12
+ 4295: 49,13
+ 4296: 43,21
+ 4297: 35,26
+ 4298: 35,29
+ 4299: 31,27
+ 4300: 27,27
+ 4301: 40,33
+ 4302: 39,44
+ 4303: 43,48
+ 4304: 42,50
+ 4305: 43,50
+ 4306: 26,45
+ 4307: 17,42
+ 4308: 6,41
+ 4309: -1,47
+ 4310: -1,48
+ 4311: 3,55
+ 4312: 2,60
+ 4313: 2,64
+ 4314: 2,71
+ 4315: -6,71
+ 4316: 5,69
+ 4317: 6,69
+ 4318: 13,65
+ 4319: 7,64
+ 4320: 9,63
+ 4692: -27,-3
+ 4693: -27,2
+ 4694: -32,7
+ 4695: -25,5
+ 4696: -25,4
+ 5649: -27,46
+ 5650: -20,45
+ 5651: -13,46
+ 5652: -7,40
+ 7159: 2,5
+ 7160: 9,2
+ 7161: 5,3
+ 7162: 11,-5
- node:
color: '#FFFFFFFF'
id: FlowersBROne
decals:
- 188: 9,-46
- 3537: -21.958588,17.400702
- 3538: -21.079681,17.635077
- 4127: 35.455353,53.975224
- 4128: 48.486603,54.127567
- 4129: 44.637413,14.700537
- 4336: 0.8775835,53.575855
- 6127: 35.936924,-11.278788
+ 171: 9,-46
+ 2629: -21.958588,17.400702
+ 2630: -21.079681,17.635077
+ 3170: 48.486603,54.127567
+ 3347: 0.8775835,53.575855
+ 4414: 35.936924,-11.278788
+ 5596: -10.380536,44.619083
+ 5597: -5.7789736,44.29877
- node:
color: '#FFFFFFFF'
id: FlowersBRThree
decals:
- 182: 5,-48
- 189: 21,-39
- 219: 37,43
- 248: 57,8
- 3521: -43.405098,4.6306925
- 3522: -43.28791,2.4392862
- 3552: 3.4106216,14.306513
- 4000: -88.469185,2.5136452
- 4001: -88.68012,5.2206764
- 4002: -81.719185,11.665989
- 4003: -81.332466,10.974583
- 4004: -81.051216,16.516224
- 4005: -81.250435,15.731068
- 4006: -87.7309,15.238881
- 4007: -88.562935,17.828724
- 4008: -88.551216,14.852162
- 4192: -17.354996,58.532814
- 4193: -16.47609,59.153908
- 4194: -17.425308,56.89219
- 4195: -16.440933,55.814064
- 4196: -17.565933,52.427345
- 4197: -17.296402,51.665627
- 4198: -16.405777,48.15
- 6071: -1.2052917,34.102757
- 6083: -62.314003,9.298165
+ 167: 5,-48
+ 172: 21,-39
+ 202: 37,43
+ 227: 57,8
+ 2644: 3.4106216,14.306513
+ 3051: -88.469185,2.5136452
+ 3052: -88.68012,5.2206764
+ 3053: -81.719185,11.665989
+ 3054: -81.332466,10.974583
+ 3055: -81.051216,16.516224
+ 3056: -81.250435,15.731068
+ 3057: -87.7309,15.238881
+ 3058: -88.562935,17.828724
+ 3059: -88.551216,14.852162
+ 3226: -17.354996,58.532814
+ 3227: -16.47609,59.153908
+ 3228: -17.425308,56.89219
+ 3229: -16.440933,55.814064
+ 3230: -17.565933,52.427345
+ 4377: -1.2052917,34.102757
+ 4389: -62.314003,9.298165
+ 5589: -5.495222,46.59599
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: FlowersBRTwo
decals:
- 68: 39,-20
- 69: 43,-20
- 70: 41,-30
+ 63: 39,-20
+ 64: 43,-20
+ 65: 41,-30
- node:
color: '#FFFFFFFF'
id: FlowersBRTwo
decals:
- 158: 3,-8
- 213: 13,24
- 220: 37,36
- 3479: -1.2687241,-6.2440906
- 3547: 3.3168716,10.533075
- 3548: 2.9887466,11.0487
- 3557: -1.2534407,15.759638
- 3558: -1.2300032,9.26745
- 3592: 47.10689,-9.617738
- 3593: 46.520954,-10.027894
- 3605: 45.571735,12.222608
- 3606: 46.456665,4.238405
- 3628: 70.482315,-2.6857786
- 3629: 59.65419,-2.6857786
- 3630: 65.58388,-12.002185
- 3631: 64.92763,-11.181872
- 3632: 67.9745,-20.817688
- 3633: 63.654434,-25.675419
- 3634: 50.523678,-26.812138
- 3670: 55.647358,-7.219159
- 3671: 55.72939,-7.8636904
- 3672: 53.19814,-4.2543154
- 3673: 54.944233,-0.5511904
- 3674: 61.120014,-0.07072163
- 3675: 72.44849,-5.871503
- 3676: 67.77757,-13.922138
- 3677: 66.453354,-25.372675
- 3678: 51.521744,-28.314081
- 3679: 49.85768,-16.8148
- 3680: 54.240494,-12.090313
- 3700: 35.16757,-36.640537
- 3701: 37.335537,-36.956944
- 3756: -24.117771,-35.0781
- 3757: -24.31699,-27.906221
- 3758: -8.731053,-29.523409
- 3901: 58.31439,8.335475
- 3902: 55.736263,8.335475
- 3903: 63.00189,8.370631
- 3916: 40.75803,-15.316414
- 3917: 40.359592,-14.660164
- 3918: 43.46506,-12.058601
- 3919: 49.427353,-17.204317
- 3920: 43.63263,-20.56466
- 3921: 38.28888,-20.400597
- 3947: -35.427177,-23.175499
- 3948: -36.07171,-24.030968
- 4038: -29.275717,17.39725
- 4083: 37.268784,43.60165
- 4084: 36.483627,41.4454
- 4085: 36.507065,36.910244
- 4086: 36.46019,32.72665
- 4087: 36.624252,31.730556
- 4116: 10.025911,35.373306
- 4117: 13.904818,34.635025
- 4118: 21.990755,38.853775
- 4119: 22.682161,35.71315
- 4120: 22.354036,35.302994
- 4170: -2.4699473,57.66812
- 4171: -1.9605174,61.33826
- 4254: -18.422426,-13.633619
- 4255: -14.188051,-13.727369
- 5871: 45.7115,21.249813
- 5872: 45.24275,20.921688
- 6034: 27.056904,-17.133144
- 6035: 30.424091,-16.844082
+ 152: 3,-8
+ 196: 13,24
+ 203: 37,36
+ 2592: -1.2687241,-6.2440906
+ 2639: 3.3168716,10.533075
+ 2640: 2.9887466,11.0487
+ 2649: -1.2534407,15.759638
+ 2650: -1.2300032,9.26745
+ 2681: 47.10689,-9.617738
+ 2682: 46.520954,-10.027894
+ 2688: 46.456665,4.238405
+ 2707: 70.482315,-2.6857786
+ 2708: 59.65419,-2.6857786
+ 2709: 65.58388,-12.002185
+ 2710: 64.92763,-11.181872
+ 2711: 67.9745,-20.817688
+ 2712: 63.654434,-25.675419
+ 2713: 50.523678,-26.812138
+ 2749: 55.647358,-7.219159
+ 2750: 55.72939,-7.8636904
+ 2751: 53.19814,-4.2543154
+ 2752: 54.944233,-0.5511904
+ 2753: 61.120014,-0.07072163
+ 2754: 72.44849,-5.871503
+ 2755: 67.77757,-13.922138
+ 2756: 66.453354,-25.372675
+ 2757: 51.521744,-28.314081
+ 2758: 49.85768,-16.8148
+ 2759: 54.240494,-12.090313
+ 2779: 35.16757,-36.640537
+ 2780: 37.335537,-36.956944
+ 2831: -24.117771,-35.0781
+ 2832: -24.31699,-27.906221
+ 2833: -8.731053,-29.523409
+ 2976: 58.31439,8.335475
+ 2977: 55.736263,8.335475
+ 2978: 63.00189,8.370631
+ 2987: 40.75803,-15.316414
+ 2988: 40.359592,-14.660164
+ 2989: 43.46506,-12.058601
+ 2990: 49.427353,-17.204317
+ 2991: 43.63263,-20.56466
+ 2992: 38.28888,-20.400597
+ 3087: -29.275717,17.39725
+ 3126: 37.268784,43.60165
+ 3127: 36.483627,41.4454
+ 3128: 36.507065,36.910244
+ 3129: 36.46019,32.72665
+ 3130: 36.624252,31.730556
+ 3159: 10.025911,35.373306
+ 3160: 13.904818,34.635025
+ 3161: 21.990755,38.853775
+ 3162: 22.682161,35.71315
+ 3163: 22.354036,35.302994
+ 3211: -2.4699473,57.66812
+ 3212: -1.9605174,61.33826
+ 3268: -18.422426,-13.633619
+ 3269: -14.188051,-13.727369
+ 4326: 45.7115,21.249813
+ 4327: 45.24275,20.921688
+ 4347: 27.056904,-17.133144
+ 4348: 30.424091,-16.844082
+ 5349: -16.198597,54.156445
- node:
color: '#FFFFFFFF'
id: Flowersbr1
decals:
- 130: 55,-13
- 131: 61,-2
- 132: 70,-2
- 133: 67,-12
- 134: 69,-13
- 135: 65,-26
- 136: 49,-19
- 154: -1,-8
- 168: 14,-39
- 240: 49,53
- 271: 28,-37
- 3523: -44.33088,-2.2482138
- 3524: -43.93244,-5.8693075
- 3525: -41.295723,-9.455245
- 3526: -41.97541,-9.349776
- 3527: -41.95248,-8.139395
- 3559: -1.0776595,8.740107
- 3560: 3.4340591,8.447138
- 3561: -1.335472,13.57995
- 4023: -82.396416,14.119084
- 4024: -87.62298,11.845647
- 4025: -87.49407,4.019742
- 4026: -87.54095,-0.7380705
- 4027: -100.824684,4.2680645
- 4028: -107.24656,11.334471
- 4029: -85.634315,30.506989
- 4149: -13.520875,76.02554
- 4150: -13.743531,75.545074
- 4151: -13.4974375,73.295074
- 4152: 15.703373,75.09976
- 4153: 15.808842,74.10367
- 4154: 16.078373,77.53726
- 4239: -24.406801,-13.571119
- 4240: -24.172426,-14.039869
- 4241: -19.906801,-13.727369
- 4242: -28.891176,-13.477369
- 4315: 47.379055,-0.39145994
- 4316: 46.722805,-0.68052244
- 4317: 46.55093,-1.79771
- 4318: 46.246243,-6.219585
- 4319: 46.668118,-7.11021
- 6033: 27.720966,-17.226894
- 6054: 39.272312,21.207067
- 6055: 35.303562,20.972692
- 6069: -0.12716675,37.33713
- 6070: -0.49435425,33.99338
- 6081: -58.423378,9.165353
+ 124: 55,-13
+ 125: 61,-2
+ 126: 70,-2
+ 127: 67,-12
+ 128: 69,-13
+ 129: 65,-26
+ 130: 49,-19
+ 148: -1,-8
+ 157: 14,-39
+ 222: 49,53
+ 250: 28,-37
+ 2620: -44.33088,-2.2482138
+ 2621: -43.93244,-5.8693075
+ 2622: -41.295723,-9.455245
+ 2623: -41.97541,-9.349776
+ 2624: -41.95248,-8.139395
+ 2651: -1.0776595,8.740107
+ 2652: 3.4340591,8.447138
+ 2653: -1.335472,13.57995
+ 3073: -82.396416,14.119084
+ 3074: -87.62298,11.845647
+ 3075: -87.49407,4.019742
+ 3076: -87.54095,-0.7380705
+ 3077: -100.824684,4.2680645
+ 3078: -107.24656,11.334471
+ 3079: -85.634315,30.506989
+ 3190: -13.520875,76.02554
+ 3191: -13.743531,75.545074
+ 3192: -13.4974375,73.295074
+ 3193: 15.703373,75.09976
+ 3194: 15.808842,74.10367
+ 3195: 16.078373,77.53726
+ 3254: -24.406801,-13.571119
+ 3255: -24.172426,-14.039869
+ 3256: -19.906801,-13.727369
+ 3257: -28.891176,-13.477369
+ 3326: 47.379055,-0.39145994
+ 3327: 46.722805,-0.68052244
+ 3328: 46.55093,-1.79771
+ 3329: 46.246243,-6.219585
+ 3330: 46.668118,-7.11021
+ 4346: 27.720966,-17.226894
+ 4362: 39.272312,21.207067
+ 4363: 35.303562,20.972692
+ 4375: -0.12716675,37.33713
+ 4376: -0.49435425,33.99338
+ 4387: -58.423378,9.165353
+ 5227: 7.253884,43.866146
+ 5473: -6.7102385,46.09017
+ 5474: -4.9289885,45.65267
- node:
color: '#FFFFFFFF'
id: Flowersbr2
decals:
- 163: -32,-2
- 180: 13,-50
- 181: -5,-46
- 197: 3,15
- 242: 35,57
- 3539: -22.625883,17.494452
- 6165: -13.98396,70.56375
- 6166: -13.655835,69.18875
- 6259: 35.749958,-5.498374
- 6272: 71.229546,17.978672
- 6273: 70.678764,19.736485
- 6412: -59.929607,-29.48967
+ 165: 13,-50
+ 166: -5,-46
+ 180: 3,15
+ 2631: -22.625883,17.494452
+ 4425: -13.98396,70.56375
+ 4426: -13.655835,69.18875
+ 4503: 35.749958,-5.498374
+ 4516: 71.229546,17.978672
+ 4517: 70.678764,19.736485
+ 6944: -10.562142,-53.976284
- node:
color: '#FFFFFFFF'
id: Flowersbr3
decals:
- 3759: -8.379491,-28.878878
- 3760: -24.50449,-29.347628
- 3761: -24.445896,-35.72263
+ 2834: -8.379491,-28.878878
+ 2835: -24.50449,-29.347628
+ 2836: -24.445896,-35.72263
- node:
color: '#FFFFFFFF'
id: Flowerspv1
decals:
- 162: -32,5
- 187: 9,-42
- 243: 35,53
- 244: 49,56
- 269: 37,-37
- 3528: -42.435295,-8.444082
- 3529: -32.368748,-1.3575978
- 3530: -31.513279,-3.0685353
- 3531: -32.274998,6.4943037
- 3549: 3.586403,9.560419
- 3553: 2.9067154,14.083857
- 3554: 3.4340591,13.451044
- 3556: -1.3120345,15.372919
- 3589: 41.22408,-12.2193
- 3590: 41.716267,-12.5357065
- 3702: 38.132412,-36.9921
- 3703: 37.733974,-36.663975
- 3704: 30.386318,-36.6171
- 3705: 28.663662,-36.499912
- 3706: 34.063217,-36.781162
- 3707: 15.738369,-38.61382
- 3708: 14.2618065,-38.7896
- 3709: 19.769619,-38.813038
- 3710: 20.78915,-38.87163
- 3751: -9.129491,-28.468721
- 3752: -8.414647,-30.660128
- 3753: -24.12949,-31.29294
- 3754: -24.246677,-28.316378
- 3755: -24.375584,-34.269505
- 3897: 55.255795,8.300319
- 3898: 62.3222,8.00735
- 3899: 61.806576,8.558131
- 3900: 64.16205,8.241725
- 4014: -81.4554,17.473248
- 4015: -88.053055,17.238873
- 4016: -88.9554,16.535748
- 4017: -88.66243,15.832623
- 4018: -80.95149,10.61778
- 4019: -88.31087,1.6915169
- 4020: -88.92024,0.19151688
- 4021: -87.60774,-0.9920769
- 4022: -81.97454,14.540959
- 4039: -21.810873,17.643343
- 4040: -16.579916,17.619905
- 4043: 14.210445,23.932573
- 4044: 13.589352,24.389605
- 4088: 36.56566,32.08212
- 4089: 36.94066,31.390713
- 4090: 36.55394,35.937588
- 4160: -13.743439,73.35367
- 4161: 15.932991,73.71695
- 4162: 16.120491,77.607574
- 4163: -13.921142,74.58235
- 4164: -2.2590098,60.890778
- 4165: -1.8840097,60.49234
- 4204: -16.46437,58.884377
- 4323: 47.31596,-8.0932665
- 4324: 46.339397,-1.3552244
- 4325: 47.425335,0.06665063
- 4334: 0.854146,50.630543
- 4335: 1.276021,52.427418
- 6057: 38.577,21.199255
- 6073: 0.14627075,35.12407
- 6074: -1.1427917,36.16313
- 6082: -58.923378,9.040353
+ 223: 49,56
+ 248: 37,-37
+ 2625: -42.435295,-8.444082
+ 2641: 3.586403,9.560419
+ 2645: 2.9067154,14.083857
+ 2646: 3.4340591,13.451044
+ 2648: -1.3120345,15.372919
+ 2678: 41.22408,-12.2193
+ 2679: 41.716267,-12.5357065
+ 2781: 38.132412,-36.9921
+ 2782: 37.733974,-36.663975
+ 2783: 30.386318,-36.6171
+ 2784: 28.663662,-36.499912
+ 2785: 34.063217,-36.781162
+ 2786: 15.738369,-38.61382
+ 2787: 14.2618065,-38.7896
+ 2788: 19.769619,-38.813038
+ 2789: 20.78915,-38.87163
+ 2826: -9.129491,-28.468721
+ 2827: -8.414647,-30.660128
+ 2828: -24.12949,-31.29294
+ 2829: -24.246677,-28.316378
+ 2830: -24.375584,-34.269505
+ 2972: 55.255795,8.300319
+ 2973: 62.3222,8.00735
+ 2974: 61.806576,8.558131
+ 2975: 64.16205,8.241725
+ 3065: -81.4554,17.473248
+ 3066: -88.053055,17.238873
+ 3067: -88.9554,16.535748
+ 3068: -88.66243,15.832623
+ 3069: -88.31087,1.6915169
+ 3070: -88.92024,0.19151688
+ 3071: -87.60774,-0.9920769
+ 3072: -81.97454,14.540959
+ 3088: -21.810873,17.643343
+ 3089: -16.579916,17.619905
+ 3092: 14.210445,23.932573
+ 3093: 13.589352,24.389605
+ 3131: 36.56566,32.08212
+ 3132: 36.94066,31.390713
+ 3133: 36.55394,35.937588
+ 3201: -13.743439,73.35367
+ 3202: 15.932991,73.71695
+ 3203: 16.120491,77.607574
+ 3204: -13.921142,74.58235
+ 3205: -2.2590098,60.890778
+ 3206: -1.8840097,60.49234
+ 3233: -16.46437,58.884377
+ 3334: 47.31596,-8.0932665
+ 3335: 46.339397,-1.3552244
+ 3336: 47.425335,0.06665063
+ 3345: 0.854146,50.630543
+ 3346: 1.276021,52.427418
+ 4365: 38.577,21.199255
+ 4379: 0.14627075,35.12407
+ 4380: -1.1427917,36.16313
+ 4388: -58.923378,9.040353
+ 5188: 81.576515,55.34774
+ 5189: 76.61816,55.675865
+ 5193: 82.46581,56.37899
+ 5204: 97.59068,14.402504
+ 5205: 95.3524,15.28141
+ 5206: 98.24693,18.797035
+ 5228: 4.128884,45.233334
+ 5245: -32.292305,2.369635
+ 5248: -29.542305,-0.2631774
+ 5249: -31.471992,-0.2397399
+ 5250: -32.565742,1.3618226
+ 5251: -32.596992,0.6196351
+ 5301: 41.3515,14.787474
+ 5305: 43.539,10.654661
+ 5324: 45.71438,-29.110764
+ 5325: 46.50344,-31.681076
+ 5326: 45.65188,-32.5717
+ 5327: 50.519066,-31.915451
+ 5328: 49.769066,-28.790451
+ 5331: 48.073753,-31.852951
+ 5413: 34.99527,56.357723
+ 5414: 35.260895,54.303036
+ 5415: 35.424957,57.146786
+ 5416: 30.58902,57.263973
+ 5417: 31.46402,52.701473
+ 5418: 35.471832,52.709286
+ 5471: -7.4827027,46.254234
+ 5595: -9.528974,44.689396
+ 5855: 14.463871,-31.322914
+ 5856: 18.166996,-28.99479
+ 6164: -2.475834,27.088507
+ 6268: 11.387196,-41.660503
+ 6405: -42.067287,21.170424
- node:
color: '#FFFFFFFF'
id: Flowerspv2
decals:
- 194: -1,10
- 206: -28,18
- 222: 37,40
- 6130: 35.530674,-9.257954
- 6131: 36.11401,-8.872538
- 6132: 35.968174,-10.091288
- 6261: 36.20699,-4.830405
- 6270: 70.63189,14.966953
- 6271: 70.960014,14.556797
+ 177: -1,10
+ 189: -28,18
+ 205: 37,40
+ 4417: 35.530674,-9.257954
+ 4418: 36.11401,-8.872538
+ 4419: 35.968174,-10.091288
+ 4505: 36.20699,-4.830405
+ 4514: 70.63189,14.966953
+ 4515: 70.960014,14.556797
+ 5190: 76.99316,59.039146
+ 5194: 82.55956,55.42977
+ 5195: 79.32519,53.507896
+ 5196: 77.22753,56.20321
+ 5197: 80.391594,57.69149
+ 5198: 95.05943,44.495373
+ 5199: 102.442245,41.764904
+ 5200: 95.82115,19.520657
+ 5201: 98.64537,17.551907
+ 5229: 3.7148213,44.803646
+ 5267: -39.44195,73.10878
+ 5268: -39.613827,68.780655
+ 5304: 41.148376,11.060911
+ 5306: 44.359314,11.107786
+ 5307: 45.453064,15.209349
+ 5308: 46.429626,15.107786
+ 5309: 40.515564,12.068724
+ 5329: 46.80813,-32.4467
+ 5372: -69.768234,32.863335
+ 5373: -67.174484,31.699272
+ 5374: -65.674484,35.277397
+ 5409: 32.24527,56.99835
+ 5410: 30.93277,54.084286
+ 5475: -6.0794516,46.074547
+ 5476: -10.267013,45.543297
+ 5857: 18.979496,-31.979164
+ 5862: 15.3154335,-28.479164
+ 5863: 20.057621,-33.268227
+ 5864: 19.409184,-33.59635
+ 6165: -3.2180214,24.682257
+ 6166: -1.3820839,27.236944
+ 6266: 8.777821,-41.855816
+ 6267: 9.480946,-44.293316
+ 6406: -40.871975,18.787611
+ 6943: -10.999642,-53.67941
- node:
color: '#FFFFFFFF'
id: Flowerspv3
decals:
- 155: -1,-5
- 156: 3,-12
- 186: -11,-50
- 205: -16,18
- 217: 14,25
- 3517: -44.096504,-3.1622763
- 3518: -44.565254,-4.7911825
- 3519: -43.66291,2.357255
- 3520: -43.311348,5.451005
- 3595: 45.302204,-10.180238
- 3607: 46.04651,11.659302
- 3608: 45.601196,14.553833
- 3609: 46.169136,15.167618
- 3610: 60.727173,-0.47294283
- 3611: 60.587387,-2.518785
- 3612: 59.35692,-2.1672225
- 3613: 70.58348,-1.7336287
- 3614: 66.320595,-11.504879
- 3615: 67.31259,-21.545208
- 3616: 64.39785,-25.981995
- 3617: 49.421288,-26.192932
- 3681: 54.767838,-12.277813
- 3682: 56.502213,-7.859844
- 3683: 54.63893,-7.250469
- 3684: 57.45143,-2.8077326
- 3685: 69.32832,-2.2803888
- 3686: 75.42234,-3.3819513
- 3687: 76.1489,-0.80382633
- 3688: 68.297264,-21.75607
- 3689: 65.38301,-26.463566
- 3690: 59.2887,-28.432316
- 3691: 41.39664,-30.499702
- 3692: 41.361485,-28.894234
- 3942: -35.544365,-21.370811
- 4121: 22.893099,35.033463
- 4122: 21.932161,39.73268
- 4123: 13.354036,35.103775
- 4124: 8.900911,35.267838
- 4205: -17.249527,56.42344
- 4206: -16.47609,51.970314
- 4207: -17.179214,48.25547
- 4248: -30.141176,-13.477369
- 4249: -23.813051,-13.539869
- 4250: -23.188051,-13.492994
- 4251: -18.969301,-14.164869
- 4252: -17.703676,-13.477369
- 4253: -18.531801,-13.258619
- 5873: 47.695873,20.83575
- 6038: 28.103779,-16.859707
- 6039: 32.252216,-17.49252
- 6040: 0.82022095,-38.51386
- 6126: 36.061924,-11.132954
- 6167: -13.562085,70.26688
+ 149: -1,-5
+ 150: 3,-12
+ 188: -16,18
+ 200: 14,25
+ 2618: -44.096504,-3.1622763
+ 2619: -44.565254,-4.7911825
+ 2684: 45.302204,-10.180238
+ 2689: 60.727173,-0.47294283
+ 2690: 60.587387,-2.518785
+ 2691: 59.35692,-2.1672225
+ 2692: 70.58348,-1.7336287
+ 2693: 66.320595,-11.504879
+ 2694: 67.31259,-21.545208
+ 2695: 64.39785,-25.981995
+ 2696: 49.421288,-26.192932
+ 2760: 54.767838,-12.277813
+ 2761: 56.502213,-7.859844
+ 2762: 54.63893,-7.250469
+ 2763: 57.45143,-2.8077326
+ 2764: 69.32832,-2.2803888
+ 2765: 75.42234,-3.3819513
+ 2766: 76.1489,-0.80382633
+ 2767: 68.297264,-21.75607
+ 2768: 65.38301,-26.463566
+ 2769: 59.2887,-28.432316
+ 2770: 41.39664,-30.499702
+ 2771: 41.361485,-28.894234
+ 3164: 22.893099,35.033463
+ 3165: 21.932161,39.73268
+ 3166: 13.354036,35.103775
+ 3167: 8.900911,35.267838
+ 3234: -17.249527,56.42344
+ 3263: -30.141176,-13.477369
+ 3264: -23.813051,-13.539869
+ 3265: -18.969301,-14.164869
+ 3266: -17.703676,-13.477369
+ 3267: -18.531801,-13.258619
+ 4328: 47.695873,20.83575
+ 4350: 28.103779,-16.859707
+ 4351: 0.82022095,-38.51386
+ 4413: 36.061924,-11.132954
+ 4427: -13.562085,70.26688
+ 5191: 74.93066,57.105553
+ 5192: 80.36816,55.043053
+ 5202: 94.27428,17.106594
+ 5203: 97.766464,15.00016
+ 5246: -31.77668,1.4555726
+ 5247: -28.768867,3.97901
+ 5269: -36.043514,70.71034
+ 5270: -36.957577,72.85097
+ 5271: -40.301327,72.85878
+ 5272: -40.34039,69.405655
+ 5273: -36.7232,68.72597
+ 5302: 45.78119,14.271849
+ 5303: 46.203064,13.467161
+ 5330: 47.55813,-32.329514
+ 5347: -16.089222,58.397556
+ 5348: -16.057972,54.652416
+ 5375: -69.51042,31.824272
+ 5376: -70.57292,35.214897
+ 5377: -67.06511,36.394585
+ 5378: -70.44011,32.105522
+ 5379: -65.424484,32.082085
+ 5380: -68.299484,35.918022
+ 5411: 31.27652,54.763973
+ 5412: 34.674957,53.50616
+ 5858: 13.7998085,-32.0651
+ 5859: 14.370121,-31.80729
+ 5860: 17.713871,-33.3151
+ 5861: 20.331059,-28.690102
+ 6407: -41.551662,18.615736
+ 6408: -43.35635,19.225111
- node:
color: '#FFFFFFFF'
id: Flowersy1
decals:
- 183: 6,-46
- 198: 3,10
- 202: -19,18
- 3515: -43.885567,1.513505
- 3540: -26.30557,17.564764
- 3555: -1.288597,14.376825
- 3908: 43.913097,15.355074
- 4113: 10.471224,35.81862
- 4114: 22.166536,36.615494
- 4115: 22.939974,39.73268
- 6072: -0.31466675,36.571507
+ 168: 6,-46
+ 181: 3,10
+ 185: -19,18
+ 2616: -43.885567,1.513505
+ 2632: -26.30557,17.564764
+ 2647: -1.288597,14.376825
+ 3156: 10.471224,35.81862
+ 3157: 22.166536,36.615494
+ 3158: 22.939974,39.73268
+ 4378: -0.31466675,36.571507
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Flowersy2
decals:
- 129: 59,-2
+ 123: 59,-2
- node:
color: '#FFFFFFFF'
id: Flowersy2
decals:
- 214: 5,23
- 270: 35,-37
- 3516: -44.33088,-4.029464
- 3532: -32.15781,7.1505537
- 3533: -31.724216,7.37321
- 3534: -30.759369,17.623358
- 3535: -30.067963,17.588202
- 3591: 41.727985,-11.668519
- 3698: 29.472256,-36.71085
- 3699: 34.534756,-36.851475
- 3713: 15.53915,-38.68413
- 3714: 18.316494,-38.89507
- 3749: -8.660741,-28.234346
- 3750: -9.059178,-27.695284
- 3911: 44.428345,15.260944
- 3912: 46.44397,8.143846
- 3913: 40.676,-10.025475
- 3914: 40.523655,-10.611412
- 3915: 43.699436,-11.490318
- 3945: -36.118584,-21.019249
- 3946: -35.626396,-23.655968
- 4009: -87.64887,14.13282
- 4010: -88.99653,10.429695
- 4011: -87.612335,1.7390385
- 4012: -87.72952,4.153101
- 4013: -81.05696,17.16856
- 4320: 46.28471,-6.9057665
- 4321: 46.823772,-7.7807665
- 4322: 46.34721,-7.8120165
- 4326: 46.769085,-0.38647437
- 6036: 28.478779,-17.375332
- 6037: 31.135029,-17.289394
- 6080: -61.36869,8.93879
- 6274: 70.573296,19.162266
- 6275: 71.10064,14.076328
+ 197: 5,23
+ 249: 35,-37
+ 2617: -44.33088,-4.029464
+ 2626: -30.759369,17.623358
+ 2627: -30.067963,17.588202
+ 2680: 41.727985,-11.668519
+ 2777: 29.472256,-36.71085
+ 2778: 34.534756,-36.851475
+ 2792: 15.53915,-38.68413
+ 2793: 18.316494,-38.89507
+ 2824: -8.660741,-28.234346
+ 2825: -9.059178,-27.695284
+ 2983: 46.44397,8.143846
+ 2984: 40.676,-10.025475
+ 2985: 40.523655,-10.611412
+ 2986: 43.699436,-11.490318
+ 3060: -87.64887,14.13282
+ 3061: -88.99653,10.429695
+ 3062: -87.612335,1.7390385
+ 3063: -87.72952,4.153101
+ 3064: -81.05696,17.16856
+ 3331: 46.28471,-6.9057665
+ 3332: 46.823772,-7.7807665
+ 3333: 46.34721,-7.8120165
+ 3337: 46.769085,-0.38647437
+ 4349: 28.478779,-17.375332
+ 4386: -61.36869,8.93879
+ 4518: 70.573296,19.162266
+ 4519: 71.10064,14.076328
+ 5477: -9.66545,46.355797
- node:
color: '#FFFFFFFF'
id: Flowersy3
decals:
- 184: -3,-49
- 185: 13,-54
- 193: -1,15
- 203: -30,18
- 241: 35,55
- 249: 63,8
- 3510: -44.448067,-3.31462
- 3511: -43.967598,-4.732589
- 3512: -44.108223,-6.8536825
- 3536: -25.7789,17.857733
- 3550: 3.0356216,9.384638
- 3551: 3.398903,9.290888
- 3594: 47.31783,-10.227113
- 3603: 46.392048,12.57417
- 3604: 46.040485,12.140576
- 3618: 49.1166,-26.603088
- 3619: 49.843163,-27.083557
- 3620: 49.58535,-18.62262
- 3621: 49.468163,-19.325745
- 3622: 65.46426,-11.159059
- 3623: 56.69863,-7.2684336
- 3624: 58.339256,-2.1115599
- 3625: 64.80801,-3.9982786
- 3626: 65.12441,-4.349841
- 3627: 75.4745,-4.54906
- 3715: 18.91415,-38.52007
- 3716: 13.47665,-38.89507
- 3717: 20.437588,-38.80132
- 3718: 8.689707,-45.91225
- 3719: 8.103769,-45.631
- 3720: 5.220957,-45.92397
- 3721: 4.683049,-49.234737
- 3722: 12.569768,-50.476925
- 3723: 12.82758,-51.273796
- 3724: -10.468108,-51.59378
- 3725: -10.608733,-50.585968
- 3726: -5.5732093,-45.661797
- 3727: -4.6239905,-45.954765
- 3762: -24.328709,-34.79685
- 3763: -8.356053,-30.121065
- 3764: -24.481052,-28.363253
- 3765: -24.12949,-31.808565
- 3893: 62.41595,8.417506
- 3894: 63.622986,8.2886
- 3895: 56.90814,8.300319
- 3896: 57.681576,8.347194
- 4041: -17.177572,17.701937
- 4042: 4.425289,24.43648
- 4073: 35.379406,56.384266
- 4074: 35.35597,54.427235
- 4075: 48.516125,53.44286
- 4076: 48.529694,56.54833
- 4077: 36.65941,43.68774
- 4078: 36.600815,42.573784
- 4079: 36.55394,35.679775
- 4080: 37.350815,36.93368
- 4081: 37.327377,32.36337
- 4082: 37.22191,44.375088
- 4109: 13.822786,35.63112
- 4110: 14.16263,35.16237
- 4111: 9.018099,34.85768
- 4112: 9.463411,34.517838
- 4168: -2.2121348,60.257965
- 4169: -1.9660411,57.49234
- 4199: -16.792496,47.845314
- 4200: -17.40187,50.552345
- 4201: -16.897964,51.25547
- 4202: -16.83937,55.439064
- 4203: -17.13234,58.09922
- 4244: -24.656801,-13.586744
- 4245: -19.375551,-13.602369
- 4246: -14.906801,-14.117994
- 4247: -29.344301,-13.664869
- 4332: 0.838521,49.943043
- 5874: 47.8365,20.992
- 5875: 45.039623,21.343563
- 6056: 35.873875,20.83988
- 6413: -53.976482,-28.669357
+ 169: -3,-49
+ 170: 13,-54
+ 176: -1,15
+ 186: -30,18
+ 228: 63,8
+ 2612: -44.448067,-3.31462
+ 2613: -43.967598,-4.732589
+ 2614: -44.108223,-6.8536825
+ 2628: -25.7789,17.857733
+ 2642: 3.0356216,9.384638
+ 2643: 3.398903,9.290888
+ 2683: 47.31783,-10.227113
+ 2697: 49.1166,-26.603088
+ 2698: 49.843163,-27.083557
+ 2699: 49.58535,-18.62262
+ 2700: 49.468163,-19.325745
+ 2701: 65.46426,-11.159059
+ 2702: 56.69863,-7.2684336
+ 2703: 58.339256,-2.1115599
+ 2704: 64.80801,-3.9982786
+ 2705: 65.12441,-4.349841
+ 2706: 75.4745,-4.54906
+ 2794: 18.91415,-38.52007
+ 2795: 13.47665,-38.89507
+ 2796: 20.437588,-38.80132
+ 2797: 8.689707,-45.91225
+ 2798: 8.103769,-45.631
+ 2799: 5.220957,-45.92397
+ 2800: 4.683049,-49.234737
+ 2801: 12.569768,-50.476925
+ 2802: 12.82758,-51.273796
+ 2803: -5.5732093,-45.661797
+ 2804: -4.6239905,-45.954765
+ 2837: -24.328709,-34.79685
+ 2838: -8.356053,-30.121065
+ 2839: -24.481052,-28.363253
+ 2840: -24.12949,-31.808565
+ 2968: 62.41595,8.417506
+ 2969: 63.622986,8.2886
+ 2970: 56.90814,8.300319
+ 2971: 57.681576,8.347194
+ 3090: -17.177572,17.701937
+ 3091: 4.425289,24.43648
+ 3118: 48.516125,53.44286
+ 3119: 48.529694,56.54833
+ 3120: 36.65941,43.68774
+ 3121: 36.600815,42.573784
+ 3122: 36.55394,35.679775
+ 3123: 37.350815,36.93368
+ 3124: 37.327377,32.36337
+ 3125: 37.22191,44.375088
+ 3152: 13.822786,35.63112
+ 3153: 14.16263,35.16237
+ 3154: 9.018099,34.85768
+ 3155: 9.463411,34.517838
+ 3209: -2.2121348,60.257965
+ 3210: -1.9660411,57.49234
+ 3231: -16.83937,55.439064
+ 3232: -17.13234,58.09922
+ 3259: -24.656801,-13.586744
+ 3260: -19.375551,-13.602369
+ 3261: -14.906801,-14.117994
+ 3262: -29.344301,-13.664869
+ 3343: 0.838521,49.943043
+ 4329: 47.8365,20.992
+ 4330: 45.039623,21.343563
+ 4364: 35.873875,20.83988
+ 5472: -6.88114,45.535484
+ 5588: -9.378035,46.87724
+ 5594: -7.6070986,44.556583
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Flowersy4
decals:
- 71: 40,-20
- 72: 50,-18
- 73: 67,-21
- 74: 66,-11
- 75: 56,-7
- 76: 63,0
- 77: 67,-2
- 78: 73,-6
+ 66: 40,-20
+ 67: 50,-18
+ 68: 67,-21
+ 69: 66,-11
+ 70: 56,-7
+ 71: 63,0
+ 72: 67,-2
+ 73: 73,-6
- node:
color: '#FFFFFFFF'
id: Flowersy4
decals:
- 157: -1,-11
- 204: -25,18
- 215: 4,25
- 221: 37,35
- 3480: 3.371901,-10.462841
- 3481: -1.4562241,-11.751904
- 3513: -42.877754,4.46663
- 3514: -44.284004,1.9470987
- 3922: 38.00763,-20.166222
- 4045: 13.50732,24.038042
- 4155: 15.35181,77.65445
- 4156: 15.984623,77.033356
- 4157: 15.375248,74.84195
- 4158: -13.626251,74.72476
- 4159: -13.860626,73.86929
- 4333: 1.182271,50.482105
- 6128: 36.197342,-11.987121
- 6129: 35.874424,-10.112121
- 6260: 36.47652,-7.3850927
+ 151: -1,-11
+ 187: -25,18
+ 198: 4,25
+ 204: 37,35
+ 2593: 3.371901,-10.462841
+ 2594: -1.4562241,-11.751904
+ 2615: -44.284004,1.9470987
+ 2993: 38.00763,-20.166222
+ 3094: 13.50732,24.038042
+ 3196: 15.35181,77.65445
+ 3197: 15.984623,77.033356
+ 3198: 15.375248,74.84195
+ 3199: -13.626251,74.72476
+ 3200: -13.860626,73.86929
+ 3344: 1.182271,50.482105
+ 4415: 36.197342,-11.987121
+ 4416: 35.874424,-10.112121
+ 4504: 36.47652,-7.3850927
+ 5230: 6.660134,44.709896
+ 6910: -23.90585,-39.27359
+ 6911: -24.507412,-33.164215
+ 6942: -10.562142,-52.913784
- node:
- color: '#334E6DFF'
- id: FullTileOverlayGreyscale
- decals:
- 6212: 9,62
- - node:
- color: '#845606FF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassa1
decals:
- 6224: 8,58
+ 5255: -35.81695,69.36659
+ 5256: -39.926327,69.42909
+ 5310: 45.667503,-28.563889
+ 5361: -70.268234,35.699272
+ 5362: -65.8073,31.652397
- node:
- color: '#84FF06FF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassa2
decals:
- 6225: 6,58
+ 5242: -29.128242,-0.2084899
+ 5262: -37.231014,69.405655
+ 5317: 49.417503,-32.399826
- node:
- color: '#91D4FFFF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassa3
decals:
- 6223: 6,62
+ 5397: 30.690582,52.826473
+ 5398: 30.753082,55.72491
- node:
- color: '#95171DFF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassa4
decals:
- 6226: 9,58
+ 5357: -66.90886,35.84771
+ 6259: 11.418446,-41.137066
+ 6260: 10.457508,-44.230816
- node:
- color: '#B04DB5FF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassa5
decals:
- 6221: 7,62
+ 5840: 14.745121,-33.18229
- node:
- color: '#BA8841FF'
- id: FullTileOverlayGreyscale
+ color: '#FFFFFFFF'
+ id: Grassb1
decals:
- 6222: 8,62
+ 4577: -28.1378,-16.970455
+ 4578: -29.0753,-17.282955
+ 5281: 41.316948,11.499512
+ 5284: 40.357212,15.434651
+ 5285: 46.044712,15.309651
+ 5286: 43.56815,15.184651
+ 5287: 44.703064,10.787474
+ 5288: 41.234314,10.748411
+ 5311: 46.331566,-29.345139
+ 5312: 50.24563,-28.798264
+ 5313: 46.33938,-31.993576
+ 5392: 32.21402,52.97491
+ 5393: 34.604645,57.0296
+ 5394: 31.77652,57.2796
+ 5708: -53.45383,-6.482257
+ 5709: -55.375706,-8.771319
+ 5710: -51.57102,-8.044757
+ 6161: -2.5148964,24.69007
- node:
- color: '#D3F4A5FF'
- id: FullTileOverlayGreyscale
+ angle: -0.15707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Grassb2
decals:
- 6211: 7,58
+ 95: -21,-14
+ 110: 55,0
+ 111: 57,-4
+ 112: 63,-8
+ 113: 68,-15
+ 114: 50,-27
- node:
color: '#FFFFFFFF'
- id: Grassb1
+ id: Grassb2
decals:
- 6417: -28.1378,-16.970455
- 6418: -29.0753,-17.282955
+ 5252: -31.210787,0.95500517
+ 5253: -39.99664,73.14003
+ 5254: -36.082577,71.79628
+ 5282: 41.363823,14.171387
+ 5283: 40.496635,14.233887
+ 5314: 47.417503,-32.392014
+ 5315: 50.06594,-31.329514
+ 5316: 49.386253,-30.727951
+ 5358: -65.8698,36.402397
+ 5359: -70.16667,33.800835
+ 5360: -68.38542,31.84771
+ 5395: 35.362457,57.1546
+ 5396: 35.253082,52.990536
+ 5846: 18.323246,-33.21354
+ 5847: 18.666996,-29.471352
+ 5848: 15.4248085,-31.190102
+ 6162: -1.6164589,27.510382
- node:
- angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
- id: Grassb2
+ id: Grassb4
decals:
- 101: -21,-14
- 116: 55,0
- 117: 57,-4
- 118: 63,-8
- 119: 68,-15
- 120: 50,-27
+ 6399: -42.246975,18.748549
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Grassb5
decals:
- 100: -18,-14
+ 94: -18,-14
- node:
color: '#FFFFFFFF'
id: Grassb5
decals:
- 195: 3,14
- 6405: -53.648357,-27.907639
- 6406: -58.066326,-30.122482
- 6407: -60.37492,-30.392014
+ 178: 3,14
+ 5236: 5.8699102,44.97535
+ 5237: 5.6824102,43.584724
+ 5241: -32.24543,1.2524476
+ 5243: -32.33918,2.69776
+ 5261: -38.231014,73.24159
+ 5711: -50.281956,-6.8025694
+ 5841: 15.104496,-32.3776
+ 5842: 14.041996,-30.49479
+ 5843: 15.120121,-29.322914
+ 5844: 20.198246,-29.299477
+ 5845: 18.979496,-32.760414
+ 6258: 8.824696,-43.80113
+ 6400: -41.067287,19.600111
+ 6401: -43.215725,21.357924
- node:
color: '#FFFFFFFF'
id: Grassc1
decals:
- 275: 39,-37
- 320: -106.45246,26.066643
- 327: -101.35871,25.457268
- 3565: -1.2555814,12.724482
- 3566: -1.3258939,11.2362
- 3567: 3.3967624,13.626825
- 3568: 3.2912936,15.536982
- 3569: 42.188217,-12.685484
- 3570: 42.9265,-13.622984
- 3571: 42.668686,-13.037046
- 3572: 40.793686,-14.548765
- 3573: 40.992905,-15.169859
- 3574: 40.84056,-10.646421
- 3575: 47.250717,-9.521421
- 3576: 47.485092,-8.841734
- 3577: 46.38353,6.408603
- 3578: 45.199936,12.368394
- 3579: 45.24681,14.782456
- 3580: 46.27806,13.950425
- 4030: -76.73136,11.083948
- 4031: -81.59464,14.119104
- 4032: -88.25988,13.697229
- 4033: -88.84687,4.3498635
- 4034: -87.53437,0.55515265
- 4035: -17.58807,17.6785
- 4036: -23.674154,17.561312
- 4037: -20.310873,17.631624
- 4096: 22.022528,35.620773
- 4097: 23.018621,37.23796
- 4098: 21.928778,39.60515
- 4099: 13.119661,35.666275
- 4100: 13.41263,34.822525
- 4101: 8.924349,35.4319
- 4243: -23.609926,-14.149244
+ 254: 39,-37
+ 297: -106.45246,26.066643
+ 304: -101.35871,25.457268
+ 2657: -1.2555814,12.724482
+ 2658: -1.3258939,11.2362
+ 2659: 3.3967624,13.626825
+ 2660: 3.2912936,15.536982
+ 2661: 42.188217,-12.685484
+ 2662: 42.9265,-13.622984
+ 2663: 42.668686,-13.037046
+ 2664: 40.793686,-14.548765
+ 2665: 40.992905,-15.169859
+ 2666: 40.84056,-10.646421
+ 2667: 47.250717,-9.521421
+ 2668: 47.485092,-8.841734
+ 2669: 46.38353,6.408603
+ 3080: -81.59464,14.119104
+ 3081: -88.25988,13.697229
+ 3082: -88.84687,4.3498635
+ 3083: -87.53437,0.55515265
+ 3084: -17.58807,17.6785
+ 3085: -23.674154,17.561312
+ 3086: -20.310873,17.631624
+ 3139: 22.022528,35.620773
+ 3140: 23.018621,37.23796
+ 3141: 21.928778,39.60515
+ 3142: 13.119661,35.666275
+ 3143: 13.41263,34.822525
+ 3144: 8.924349,35.4319
+ 3258: -23.609926,-14.149244
+ 5257: -39.94195,72.27284
+ 5258: -37.74664,73.17909
+ 5259: -35.77789,70.75722
+ 5289: 41.390564,11.326536
+ 5290: 43.609314,11.162474
+ 5291: 45.99994,12.514036
+ 5322: 45.823753,-32.337326
+ 5323: 50.573753,-31.829514
+ 5344: -15.917347,53.478382
+ 5366: -70.21355,34.886772
+ 5367: -65.72136,35.34771
+ 5368: -67.94792,36.050835
+ 5369: -69.57292,32.449272
+ 5402: 34.721832,53.209286
+ 5403: 32.27652,52.9671
+ 5404: 35.065582,55.138973
+ 5714: -51.438206,-6.326007
+ 5715: -56.17258,-5.6931944
+ 6909: -24.4996,-38.156403
- node:
color: '#FFFFFFFF'
id: Grassc2
decals:
- 211: -29,18
- 323: -106.37434,22.410393
- 326: -104.74934,19.879143
- 3508: -44.58869,0.31819248
- 3509: -43.979317,-3.6661825
- 6408: -60.37492,-29.67717
- 6409: -53.203045,-28.563889
- 6410: -52.910076,-30.380295
- 6411: -59.33195,-28.610764
+ 194: -29,18
+ 300: -106.37434,22.410393
+ 303: -104.74934,19.879143
+ 2610: -44.58869,0.31819248
+ 2611: -43.979317,-3.6661825
+ 5318: 47.94094,-32.1967
+ 5319: 46.300316,-31.415451
+ 5320: 46.425316,-28.735764
+ 5321: 50.323753,-29.181076
+ 5399: 31.081207,54.826473
+ 5400: 31.948395,56.638973
+ 5401: 34.909332,56.795223
+ 6263: 9.129383,-43.11363
+ 6264: 9.777821,-44.324566
+ 6265: 10.801258,-41.441753
+ 6402: -41.6376,19.100111
+ 6403: -40.770412,20.600111
+ 6404: -43.067287,20.881361
- node:
color: '#FFFFFFFF'
id: Grassc3
decals:
- 250: 55,8
- 3744: -24.094334,-28.66794
- 3745: -24.574802,-30.753878
- 3746: -23.836521,-34.03513
- 3747: -8.473241,-29.031221
- 3748: -9.223241,-28.398409
- 4183: -17.554214,51.091408
- 4184: -16.65187,52.65
- 4185: -16.546402,56.470314
- 4186: -17.179214,58.732033
- 4187: -17.190933,59.353127
- 4188: -16.581558,54.314064
+ 229: 55,8
+ 2819: -24.094334,-28.66794
+ 2820: -24.574802,-30.753878
+ 2821: -23.836521,-34.03513
+ 2822: -8.473241,-29.031221
+ 2823: -9.223241,-28.398409
+ 3219: -16.65187,52.65
+ 3220: -16.546402,56.470314
+ 3221: -17.179214,58.732033
+ 3222: -17.190933,59.353127
+ 3223: -16.581558,54.314064
+ 5260: -39.37945,72.78847
+ 5292: 41.179626,13.912474
+ 5293: 42.734314,15.068724
+ 5294: 44.773376,14.756224
- node:
color: '#FFFFFFFF'
id: Grassc4
decals:
- 321: -106.12434,25.801018
- 322: -100.88996,28.801018
- 324: -104.62434,20.535393
- 325: -103.96809,20.222893
- 3503: -43.95588,-0.5724325
- 3504: -44.530098,-1.1466513
- 3505: -44.33088,-4.779464
- 3506: -42.91291,3.5642862
- 3507: -44.108223,2.451005
+ 298: -106.12434,25.801018
+ 299: -100.88996,28.801018
+ 301: -104.62434,20.535393
+ 302: -103.96809,20.222893
+ 2606: -43.95588,-0.5724325
+ 2607: -44.530098,-1.1466513
+ 2608: -44.33088,-4.779464
+ 2609: -44.108223,2.451005
+ 5370: -68.768234,31.97271
+ 5371: -65.79167,33.06646
+ 5712: -54.836643,-7.138507
+ 5713: -53.024143,-8.279132
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Grassd1
decals:
- 102: -26,-14
- 103: -29,-14
- 107: 61,-27
- 108: 62,-27
- 109: 68,-7
- 110: 60,-2
- 111: 68,0
- 112: 75,-4
- 113: 75,-7
- 114: 60,-9
- 115: 53,-8
+ 96: -26,-14
+ 97: -29,-14
+ 101: 61,-27
+ 102: 62,-27
+ 103: 68,-7
+ 104: 60,-2
+ 105: 68,0
+ 106: 75,-4
+ 107: 75,-7
+ 108: 60,-9
+ 109: 53,-8
- node:
color: '#FFFFFFFF'
id: Grassd1
decals:
- 274: 38,-37
- 329: -106.62434,25.519768
- 3482: -1.3586571,-5.1471586
- 3483: 3.3054054,-6.5651274
- 3484: -17.25638,-13.645953
- 3485: -14.572786,-13.892047
- 3486: -25.641973,-13.575641
- 3596: 44.458454,-9.981019
- 3597: 47.247517,-8.199769
- 3598: 43.145954,-14.37555
- 3599: 46.134235,10.457251
- 3600: 46.310017,11.254126
- 3601: 43.91939,15.433545
- 3602: 45.63033,15.410108
- 3909: 44.217785,14.802733
- 3910: 43.64319,12.132038
- 3979: -87.71239,16.919971
- 3980: -88.017075,17.58794
- 3981: -87.442856,12.91216
- 3982: -82.61473,13.017629
- 3983: -82.005356,11.962941
- 3984: -82.43895,12.44341
- 3985: -82.12254,17.248096
- 3986: -88.41551,4.615285
- 3987: -87.18504,0.6190014
- 3988: -87.7827,0.054658413
- 3989: -100.82238,5.9791574
- 3990: -81.19448,17.579124
- 3991: -85.97573,30.987486
+ 253: 38,-37
+ 306: -106.62434,25.519768
+ 2595: -1.3586571,-5.1471586
+ 2596: 3.3054054,-6.5651274
+ 2597: -17.25638,-13.645953
+ 2598: -14.572786,-13.892047
+ 2599: -25.641973,-13.575641
+ 2685: 44.458454,-9.981019
+ 2686: 47.247517,-8.199769
+ 2687: 43.145954,-14.37555
+ 3031: -87.71239,16.919971
+ 3032: -88.017075,17.58794
+ 3033: -87.442856,12.91216
+ 3034: -82.61473,13.017629
+ 3035: -82.005356,11.962941
+ 3036: -82.43895,12.44341
+ 3037: -82.12254,17.248096
+ 3038: -88.41551,4.615285
+ 3039: -87.18504,0.6190014
+ 3040: -87.7827,0.054658413
+ 3041: -100.82238,5.9791574
+ 3042: -81.19448,17.579124
+ 3043: -85.97573,30.987486
- node:
color: '#FFFFFFFF'
id: Grassd2
decals:
- 159: -19,-14
- 174: 5,-46
- 190: 13,-39
- 191: 8,-46
- 192: -3,-46
- 367: -101.25319,6.801566
- 368: -102.97194,2.1765664
- 369: -107.59694,7.973441
- 3693: 40.67008,-32.269234
- 3694: 41.537266,-31.437202
- 3695: 38.026943,-36.570225
- 3696: 33.128506,-36.72257
- 3697: 29.296474,-36.746006
- 3711: 18.152431,-38.766163
- 3712: 15.6329,-38.80132
- 3728: -4.237272,-45.579765
- 3729: -2.7372718,-46.611015
- 3730: -2.5146155,-48.89617
- 3731: -10.72946,-52.38836
- 3732: 4.4652367,-46.596336
- 3733: 8.613674,-42.547398
- 3734: -8.812107,-29.940277
- 3735: -8.390232,-29.389496
- 3736: -9.280857,-27.549652
- 3737: -9.339451,-30.994965
- 3738: -24.328709,-31.808565
- 3739: -24.188084,-32.35935
- 3740: -24.516209,-35.499973
- 3741: -24.41074,-27.707003
- 3923: 41.46466,-20.506065
- 3924: 43.105286,-20.588097
- 3925: 40.386536,-20.17794
- 3926: 41.46686,-29.405165
- 3927: 32.185696,-36.547718
- 3928: 30.955227,-36.219593
- 3929: 16.974197,-38.411
- 3930: 9.176867,-43.884598
- 3931: 8.344835,-45.18538
- 3932: 13.26671,-52.60527
- 3933: 4.477648,-48.58574
- 3934: -2.3533373,-47.495895
- 3935: -10.527844,-53.8123
- 3936: -8.970274,-31.41587
- 3937: -24.60868,-32.43083
- 3938: -35.703304,-24.180399
- 3939: -35.37518,-23.477274
- 3940: -36.136898,-21.250711
- 3941: -36.136898,-20.723368
- 4091: 36.600815,34.824306
- 4092: 36.589096,38.574306
- 4093: 36.55394,44.316494
- 4094: 37.175034,43.68368
- 4095: 21.518621,34.62468
- 4130: 15.968399,75.1232
- 4131: 15.663712,74.86539
- 4132: 15.628555,77.1857
- 4133: 15.616837,77.9357
- 4134: -13.793809,73.96304
- 4135: -13.430528,74.61929
- 4136: -13.981309,77.63101
- 4172: -17.296402,57.396095
- 4173: -16.921402,56.177345
- 4174: -16.804214,56.89219
- 4175: -16.534683,59.107033
- 4176: -17.366714,52.802345
- 4177: -16.94484,52.040627
- 4178: -17.062027,51.53672
- 4179: -17.612808,49.76719
- 4180: -16.75734,48.407814
- 4181: -16.38234,47.622658
- 5870: 46.664623,20.867
- 6029: 27.660282,-16.74252
- 6030: 26.90247,-17.21127
- 6031: 29.863407,-17.281582
- 6032: 31.94601,-16.703457
- 6075: -58.079628,9.180978
- 6076: -62.696815,9.290353
- 6393: -59.8007,-29.091232
- 6394: -58.87492,-27.263107
- 6395: -55.195232,-28.716232
- 6396: -54.7382,-28.481857
- 6397: -52.734295,-27.638107
+ 153: -19,-14
+ 161: 5,-46
+ 173: 13,-39
+ 174: 8,-46
+ 175: -3,-46
+ 344: -101.25319,6.801566
+ 345: -102.97194,2.1765664
+ 346: -107.59694,7.973441
+ 2772: 40.67008,-32.269234
+ 2773: 41.537266,-31.437202
+ 2774: 38.026943,-36.570225
+ 2775: 33.128506,-36.72257
+ 2776: 29.296474,-36.746006
+ 2790: 18.152431,-38.766163
+ 2791: 15.6329,-38.80132
+ 2805: -4.237272,-45.579765
+ 2806: -2.7372718,-46.611015
+ 2807: -2.5146155,-48.89617
+ 2808: 4.4652367,-46.596336
+ 2809: -8.812107,-29.940277
+ 2810: -8.390232,-29.389496
+ 2811: -9.280857,-27.549652
+ 2812: -9.339451,-30.994965
+ 2813: -24.328709,-31.808565
+ 2814: -24.188084,-32.35935
+ 2815: -24.516209,-35.499973
+ 2816: -24.41074,-27.707003
+ 2994: 41.46466,-20.506065
+ 2995: 43.105286,-20.588097
+ 2996: 40.386536,-20.17794
+ 2997: 41.46686,-29.405165
+ 2998: 32.185696,-36.547718
+ 2999: 30.955227,-36.219593
+ 3000: 16.974197,-38.411
+ 3001: 8.344835,-45.18538
+ 3002: 13.26671,-52.60527
+ 3003: 4.477648,-48.58574
+ 3004: -2.3533373,-47.495895
+ 3005: -8.970274,-31.41587
+ 3006: -24.60868,-32.43083
+ 3134: 36.600815,34.824306
+ 3135: 36.589096,38.574306
+ 3136: 36.55394,44.316494
+ 3137: 37.175034,43.68368
+ 3138: 21.518621,34.62468
+ 3171: 15.968399,75.1232
+ 3172: 15.663712,74.86539
+ 3173: 15.628555,77.1857
+ 3174: 15.616837,77.9357
+ 3175: -13.793809,73.96304
+ 3176: -13.430528,74.61929
+ 3177: -13.981309,77.63101
+ 3213: -17.296402,57.396095
+ 3214: -16.921402,56.177345
+ 3215: -16.804214,56.89219
+ 3216: -16.534683,59.107033
+ 3217: -17.366714,52.802345
+ 3218: -16.94484,52.040627
+ 4325: 46.664623,20.867
+ 4343: 27.660282,-16.74252
+ 4344: 26.90247,-17.21127
+ 4345: 29.863407,-17.281582
+ 4381: -58.079628,9.180978
+ 4382: -62.696815,9.290353
+ 5138: 77.56664,54.84955
+ 5139: 78.773674,55.40033
+ 5140: 79.699455,56.302673
+ 5150: 83.50805,54.63861
+ 5151: 84.75024,54.47455
+ 5152: 82.07836,56.426743
+ 5464: -8.852795,46.17611
+ 5465: -8.032482,45.76986
+ 5466: -4.5481076,46.355797
+ 5586: -7.4717846,46.9163
+ 5590: -10.200849,44.751896
+ 5591: -7.1383486,44.650333
+ 5592: -4.849286,44.69721
+ 5593: -6.1852236,45.587833
+ 5696: -55.438206,-6.466632
+ 5697: -50.930393,-7.3181944
+ 5698: -49.836643,-5.966632
+ 5699: -53.430393,-9.271319
+ 5700: -56.35227,-8.974444
+ 6907: -24.2496,-39.078278
+ 6908: -24.366787,-36.625153
+ 6940: -10.55433,-51.81222
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Grassd3
decals:
- 104: 38,-20
- 105: 51,-27
- 106: 59,-28
+ 98: 38,-20
+ 99: 51,-27
+ 100: 59,-28
- node:
color: '#FFFFFFFF'
id: Grassd3
decals:
- 175: 9,-41
- 176: -6,-46
- 210: -18,18
- 218: 14,24
- 223: 37,33
- 370: -107.893814,7.629691
- 371: -102.268814,10.754691
- 372: -101.143814,10.989066
- 373: -101.112564,5.004691
- 3487: -29.864674,-13.505328
- 3488: -29.153486,-13.317828
- 3489: -32.354507,-2.4801526
- 3490: -32.495132,-3.1949964
- 3491: -31.627947,-0.6754651
- 3492: -32.307632,5.1948705
- 3493: -32.2256,4.644089
- 3494: -43.23399,6.3132153
- 3495: -43.163677,5.8210278
- 3496: -42.85899,5.1296215
- 3497: -43.491802,3.2897778
- 3498: -43.386333,2.856184
- 3499: -44.33712,1.2381024
- 3500: -44.266808,-7.0084305
- 3501: -43.434776,-7.982435
- 3635: 50.054928,-25.94495
- 3636: 48.871334,-26.7887
- 3637: 49.527584,-17.636356
- 3638: 54.777584,-12.405542
- 3639: 55.246334,-9.582343
- 3640: 55.808834,-9.804999
- 3641: 53.441647,-3.8166533
- 3642: 55.445553,-0.44769478
- 3643: 54.566647,-0.78553295
- 3644: 59.992428,-0.29334545
- 3645: 64.832275,-0.69178295
- 3646: 65.582275,-1.4183455
- 3647: 65.46509,-2.2620955
- 3648: 75.81674,-1.0902205
- 3649: 75.514244,-0.4456892
- 3742: -24.141209,-28.10544
- 3904: 58.9472,8.1011
- 3905: 60.587826,8.605006
- 3906: 58.59564,8.75735
- 3907: 56.60129,8.421641
- 3943: -35.333427,-20.620811
- 3944: -36.188896,-24.159874
- 3998: -88.094185,3.6152077
- 4046: 3.733883,24.89351
- 4047: 13.823727,23.838823
- 4048: 13.31982,23.510698
- 4049: 13.530758,25.420855
- 4050: 4.894039,25.807573
- 4051: 4.3666954,25.709267
- 4052: 9.559973,34.656773
- 4053: 10.485754,34.902866
- 4054: 12.267004,34.938023
- 4055: 13.673254,35.88724
- 4056: 14.2591915,34.66849
- 4057: 23.290749,36.60635
- 4058: 22.50695,37.49889
- 4059: 22.342888,36.19811
- 4060: 22.764763,35.23717
- 4061: 22.88195,36.256702
- 4062: 22.13195,39.303577
- 4063: 21.745232,39.807484
- 4064: 22.14367,40.03014
- 4065: 35.47775,54.387238
- 4066: 35.653732,55.652863
- 4067: 35.513107,55.441925
- 4068: 35.1967,54.668488
- 4069: 49.222614,55.898956
- 4070: 48.765583,56.70755
- 4071: 48.917927,54.56302
- 4072: 48.636677,53.660675
- 4125: 12.548815,35.9944
- 4126: 11.330065,34.459244
- 4137: -13.559434,78.08804
- 4138: -13.325059,75.545074
- 4139: -13.922715,72.58023
- 4140: 15.991913,74.02164
- 4141: 15.323944,74.29117
- 4166: -2.059791,57.85562
- 4167: -2.3058848,60.02359
- 4182: -17.261246,47.528908
- 4308: 46.39468,-5.921156
- 4309: 46.668118,-6.296156
- 4310: 46.668118,-7.5852184
- 4311: 46.402493,-2.3352184
- 4312: 46.011868,-1.8117809
- 4313: 46.371243,-1.4367809
- 4314: 47.402493,-0.38990593
- 4327: 0.8775835,53.771168
- 4328: 1.182271,54.169605
- 4329: 1.2369585,52.169605
- 4330: 0.979146,51.607105
- 4331: 1.1744585,49.825855
- 6163: -13.76521,70.095
- 6164: -13.874585,68.9075
- 6388: -57.93742,-28.540451
- 6389: -54.57414,-29.501389
- 6390: -54.08195,-29.091232
- 6391: -59.753826,-30.028732
- 6392: -60.304607,-28.892014
- 6415: -30.036238,-17.26733
- 6416: -28.629988,-16.95483
+ 162: -6,-46
+ 193: -18,18
+ 201: 14,24
+ 206: 37,33
+ 347: -107.893814,7.629691
+ 348: -102.268814,10.754691
+ 349: -101.143814,10.989066
+ 350: -101.112564,5.004691
+ 2600: -29.864674,-13.505328
+ 2601: -29.153486,-13.317828
+ 2602: -44.33712,1.2381024
+ 2603: -44.266808,-7.0084305
+ 2604: -43.434776,-7.982435
+ 2714: 50.054928,-25.94495
+ 2715: 48.871334,-26.7887
+ 2716: 49.527584,-17.636356
+ 2717: 54.777584,-12.405542
+ 2718: 55.246334,-9.582343
+ 2719: 55.808834,-9.804999
+ 2720: 53.441647,-3.8166533
+ 2721: 55.445553,-0.44769478
+ 2722: 54.566647,-0.78553295
+ 2723: 59.992428,-0.29334545
+ 2724: 64.832275,-0.69178295
+ 2725: 65.582275,-1.4183455
+ 2726: 65.46509,-2.2620955
+ 2727: 75.81674,-1.0902205
+ 2728: 75.514244,-0.4456892
+ 2817: -24.141209,-28.10544
+ 2979: 58.9472,8.1011
+ 2980: 60.587826,8.605006
+ 2981: 58.59564,8.75735
+ 2982: 56.60129,8.421641
+ 3049: -88.094185,3.6152077
+ 3095: 3.733883,24.89351
+ 3096: 13.823727,23.838823
+ 3097: 13.31982,23.510698
+ 3098: 13.530758,25.420855
+ 3099: 4.894039,25.807573
+ 3100: 4.3666954,25.709267
+ 3101: 9.559973,34.656773
+ 3102: 10.485754,34.902866
+ 3103: 12.267004,34.938023
+ 3104: 13.673254,35.88724
+ 3105: 14.2591915,34.66849
+ 3106: 23.290749,36.60635
+ 3107: 22.50695,37.49889
+ 3108: 22.342888,36.19811
+ 3109: 22.764763,35.23717
+ 3110: 22.88195,36.256702
+ 3111: 22.13195,39.303577
+ 3112: 21.745232,39.807484
+ 3113: 22.14367,40.03014
+ 3114: 49.222614,55.898956
+ 3115: 48.765583,56.70755
+ 3116: 48.917927,54.56302
+ 3117: 48.636677,53.660675
+ 3168: 12.548815,35.9944
+ 3169: 11.330065,34.459244
+ 3178: -13.559434,78.08804
+ 3179: -13.325059,75.545074
+ 3180: -13.922715,72.58023
+ 3181: 15.991913,74.02164
+ 3182: 15.323944,74.29117
+ 3207: -2.059791,57.85562
+ 3208: -2.3058848,60.02359
+ 3319: 46.39468,-5.921156
+ 3320: 46.668118,-6.296156
+ 3321: 46.668118,-7.5852184
+ 3322: 46.402493,-2.3352184
+ 3323: 46.011868,-1.8117809
+ 3324: 46.371243,-1.4367809
+ 3325: 47.402493,-0.38990593
+ 3338: 0.8775835,53.771168
+ 3339: 1.182271,54.169605
+ 3340: 1.2369585,52.169605
+ 3341: 0.979146,51.607105
+ 3342: 1.1744585,49.825855
+ 4423: -13.76521,70.095
+ 4424: -13.874585,68.9075
+ 4575: -30.036238,-17.26733
+ 4576: -28.629988,-16.95483
+ 5235: 5.7136602,45.303474
+ 5244: -31.24543,-0.1303649
+ 5467: -10.266857,46.24642
+ 5468: -8.563732,45.597984
+ 5469: -6.64967,46.39486
+ 5470: -4.77467,45.535484
+ 5701: -55.000706,-5.8494444
+ 5702: -53.73508,-6.8650694
+ 5703: -50.274143,-7.794757
+ 6261: 8.824696,-42.26988
+ 6262: 11.316883,-41.910503
+ 6939: -10.905892,-51.101284
- node:
color: '#FFFFFFFF'
id: Grasse1
decals:
- 6052: 39.41204,21.035192
- 6053: 37.302666,20.949255
- 6255: 35.843708,-5.1350927
- 6256: 36.160114,-5.6975927
- 6257: 36.48824,-7.97103
- 6262: 70.74908,19.150547
- 6263: 71.06548,18.353672
- 6264: 70.678764,14.369297
+ 4360: 39.41204,21.035192
+ 4361: 37.302666,20.949255
+ 4499: 35.843708,-5.1350927
+ 4500: 36.160114,-5.6975927
+ 4501: 36.48824,-7.97103
+ 4506: 70.74908,19.150547
+ 4507: 71.06548,18.353672
+ 4508: 70.678764,14.369297
+ 5130: 84.99633,55.845642
+ 5131: 83.29711,53.33783
+ 5141: 79.617424,55.728455
+ 5142: 78.46899,53.876892
+ 5143: 76.605705,54.54486
+ 5144: 82.39477,52.833923
+ 5145: 83.51977,52.540955
+ 5146: 84.75024,52.646423
+ 5345: -16.073597,54.181507
+ 5346: -16.370472,54.994007
+ 5587: -6.5811596,46.931927
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Grasse2
decals:
- 121: 53,-14
- 122: 56,-11
- 123: 64,-11
- 124: 66,-8
- 125: 69,-2
- 126: 74,-1
- 127: 76,-3
- 128: 56,-1
+ 115: 53,-14
+ 116: 56,-11
+ 117: 64,-11
+ 118: 66,-8
+ 119: 69,-2
+ 120: 74,-1
+ 121: 76,-3
+ 122: 56,-1
- node:
color: '#FFFFFFFF'
id: Grasse2
decals:
- 196: 3,11
- 3502: -44.459785,-0.31462002
- 3581: 46.219467,7.4113626
- 3582: 46.629623,2.055894
- 3583: 46.711655,1.5519876
- 3584: 46.137436,1.4242432
- 3585: 41.70775,-10.768253
- 3586: 41.930405,-11.225285
- 3743: -24.539646,-28.773409
- 4215: -17.338375,54.89626
- 4216: -17.340744,46.596977
- 6258: 35.656208,-6.7757177
- 6265: 70.59673,18.56461
- 6266: 71.042046,16.666172
- 6267: 71.28814,20.263828
- 6268: 71.241264,13.068516
- 6269: 70.43267,15.306797
+ 179: 3,11
+ 2605: -44.459785,-0.31462002
+ 2670: 46.219467,7.4113626
+ 2671: 46.629623,2.055894
+ 2672: 46.711655,1.5519876
+ 2673: 46.137436,1.4242432
+ 2674: 41.70775,-10.768253
+ 2675: 41.930405,-11.225285
+ 2818: -24.539646,-28.773409
+ 3238: -17.338375,54.89626
+ 4502: 35.656208,-6.7757177
+ 4509: 70.59673,18.56461
+ 4510: 71.042046,16.666172
+ 4511: 71.28814,20.263828
+ 4512: 71.241264,13.068516
+ 4513: 70.43267,15.306797
+ 5132: 81.64477,54.36908
+ 5147: 84.55102,53.6308
+ 5148: 83.59008,55.20111
+ 5149: 84.41039,55.58783
+ 5704: -56.211643,-6.7400694
+ 5705: -52.461643,-8.185382
+ 5706: -49.42258,-8.076007
+ 5707: -49.399143,-6.8181944
+ 6941: -10.944955,-53.351284
- node:
color: '#FFFFFFFF'
id: Grasse3
decals:
- 209: -23,18
- 224: 37,38
- 273: 33,-37
- 328: -101.21809,24.910393
- 3562: 3.4670749,11.869013
- 3563: -1.5719876,13.380732
- 3564: -0.9274564,13.650263
- 3587: 41.285873,-11.225285
- 3588: 40.864,-12.58466
- 3650: 58.428307,-1.5706892
- 3651: 64.08846,-3.082408
- 3652: 64.74471,-3.3519392
- 3653: 66.877525,-8.30897
- 3654: 66.63143,-8.894908
- 3655: 68.658775,-6.6214705
- 3656: 64.920494,-11.695689
- 3657: 64.42831,-11.238658
- 3658: 58.252525,-10.582408
- 3659: 57.64315,-11.086314
- 3660: 68.2198,-20.300789
- 3661: 67.75632,-22.44498
- 3662: 65.436005,-25.25748
- 3663: 65.93991,-24.554356
- 3664: 62.131313,-27.390293
- 3665: 61.170376,-27.777012
- 3666: 58.553608,-27.741856
- 3667: 64.34267,-12.237476
- 3668: 58.319233,-11.185775
- 3669: 55.54189,-6.6506186
- 3992: -84.03042,30.881887
- 3993: -88.42231,16.812563
- 3994: -87.531685,14.527407
- 3995: -82.52778,16.613344
- 3996: -81.08637,10.6485
- 3997: -87.531685,4.165989
- 4189: -17.296402,50.622658
- 4235: -29.594301,-13.758619
- 4236: -20.969301,-13.602369
- 4237: -17.969301,-13.321119
- 4238: -14.281801,-13.399244
- 5867: 45.12556,21.343563
- 5868: 45.43806,21.101376
- 5869: 48.11775,21.08575
- 6042: 0.39834595,-37.841984
- 6043: 2.2253008,-27.95306
- 6044: -0.2825117,-22.79681
- 6045: -31.654049,-1.3245959
- 6046: -28.3777,17.481447
- 6047: -19.469736,17.55176
- 6048: -19.477549,17.98926
- 6049: 35.28704,21.324255
- 6050: 35.677666,21.003942
- 6051: 38.013603,21.324255
- 6065: -1.4631042,35.86057
- 6066: 0.036895752,37.76682
- 6067: -1.3537292,35.21213
- 6068: -1.4865417,33.86838
- 6077: -62.845253,9.079415
- 6078: -60.58744,9.212228
- 6079: -58.634315,8.985665
- 6398: -55.253826,-28.200607
- 6399: -56.226482,-29.325607
- 6400: -56.73039,-27.380295
- 6401: -59.0507,-30.356857
- 6402: -60.410076,-28.048264
- 6403: -54.328045,-27.532639
- 6404: -55.183514,-27.251389
+ 192: -23,18
+ 207: 37,38
+ 252: 33,-37
+ 305: -101.21809,24.910393
+ 2654: 3.4670749,11.869013
+ 2655: -1.5719876,13.380732
+ 2656: -0.9274564,13.650263
+ 2676: 41.285873,-11.225285
+ 2677: 40.864,-12.58466
+ 2729: 58.428307,-1.5706892
+ 2730: 64.08846,-3.082408
+ 2731: 64.74471,-3.3519392
+ 2732: 66.877525,-8.30897
+ 2733: 66.63143,-8.894908
+ 2734: 68.658775,-6.6214705
+ 2735: 64.920494,-11.695689
+ 2736: 64.42831,-11.238658
+ 2737: 58.252525,-10.582408
+ 2738: 57.64315,-11.086314
+ 2739: 68.2198,-20.300789
+ 2740: 67.75632,-22.44498
+ 2741: 65.436005,-25.25748
+ 2742: 65.93991,-24.554356
+ 2743: 62.131313,-27.390293
+ 2744: 61.170376,-27.777012
+ 2745: 58.553608,-27.741856
+ 2746: 64.34267,-12.237476
+ 2747: 58.319233,-11.185775
+ 2748: 55.54189,-6.6506186
+ 3044: -84.03042,30.881887
+ 3045: -88.42231,16.812563
+ 3046: -87.531685,14.527407
+ 3047: -82.52778,16.613344
+ 3048: -87.531685,4.165989
+ 3250: -29.594301,-13.758619
+ 3251: -20.969301,-13.602369
+ 3252: -17.969301,-13.321119
+ 3253: -14.281801,-13.399244
+ 4322: 45.12556,21.343563
+ 4323: 45.43806,21.101376
+ 4324: 48.11775,21.08575
+ 4353: 0.39834595,-37.841984
+ 4354: -28.3777,17.481447
+ 4355: -19.469736,17.55176
+ 4356: -19.477549,17.98926
+ 4357: 35.28704,21.324255
+ 4358: 35.677666,21.003942
+ 4359: 38.013603,21.324255
+ 4372: -1.4631042,35.86057
+ 4373: -1.3537292,35.21213
+ 4374: -1.4865417,33.86838
+ 4383: -62.845253,9.079415
+ 4384: -60.58744,9.212228
+ 4385: -58.634315,8.985665
+ 5133: 82.1018,53.642517
+ 5134: 79.76977,56.677673
+ 5135: 81.011955,57.802673
+ 5136: 74.87133,57.990173
+ 5137: 76.48852,55.154236
- node:
- color: '#91D4FFFF'
- id: HerringboneOverlay
+ color: '#720000FF'
+ id: HalfTileOverlayGreyscale
decals:
- 2258: 0,2
- 2259: 1,2
- 2260: 1,3
- 2261: 2,2
- 2262: 1,1
+ 6637: 33,-28
+ 6638: 34,-28
+ - node:
+ color: '#720000FF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 6631: 33,-33
+ 6632: 34,-33
+ - node:
+ color: '#720000FF'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 6633: 31,-31
+ 6634: 31,-30
+ - node:
+ color: '#720000FF'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 6635: 36,-30
+ 6636: 36,-31
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileCornerOverlayNE
+ decals:
+ 6640: 35,-29
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileCornerOverlayNW
+ decals:
+ 6639: 32,-29
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileCornerOverlaySE
+ decals:
+ 6641: 35,-32
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileCornerOverlaySW
+ decals:
+ 6642: 32,-32
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileInnerOverlayNE
+ decals:
+ 6643: 35,-31
+ 6648: 33,-29
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileInnerOverlayNW
+ decals:
+ 6646: 32,-31
+ 6647: 34,-29
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileInnerOverlaySE
+ decals:
+ 6644: 35,-30
+ 6650: 33,-32
+ - node:
+ color: '#338BA9FF'
+ id: MiniTileInnerOverlaySW
+ decals:
+ 6645: 32,-30
+ 6649: 34,-32
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelCornerNe
+ decals:
+ 6565: 0,-17
+ 6579: 2,-34
+ 6580: 5,-37
+ 6611: 0,19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelCornerNw
+ decals:
+ 6567: 2,-17
+ 6581: 0,-34
+ 6582: -3,-37
+ 6612: 2,19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelCornerSe
+ decals:
+ 6568: 0,-15
+ 6583: 2,-42
+ 6584: 5,-39
+ 6613: 0,21
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelCornerSw
+ decals:
+ 6566: 2,-15
+ 6585: 0,-42
+ 6586: -3,-39
+ 6614: 2,21
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelInnerNe
+ decals:
+ 6571: 0,-18
+ 6572: -1,-17
+ 6607: 2,-37
+ 6625: 0,18
+ 6626: -1,19
- node:
- angle: 3.141592653589793 rad
color: '#FFFFFFFF'
- id: LoadingArea
+ id: MiniTileSteelInnerNw
decals:
- 6118: -23,-22
+ 6575: 2,-18
+ 6576: 3,-17
+ 6610: 0,-37
+ 6623: 2,18
+ 6624: 3,19
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelInnerSe
+ decals:
+ 6577: -1,-15
+ 6578: 0,-14
+ 6609: 2,-39
+ 6621: 0,22
+ 6622: -1,21
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelInnerSw
+ decals:
+ 6573: 2,-14
+ 6574: 3,-15
+ 6608: 0,-39
+ 6619: 2,22
+ 6620: 3,21
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelLineE
+ decals:
+ 6569: -1,-16
+ 6592: 2,-35
+ 6593: 2,-36
+ 6594: 5,-38
+ 6595: 2,-40
+ 6596: 2,-41
+ 6615: -1,20
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelLineN
+ decals:
+ 6563: 1,-18
+ 6587: -2,-37
+ 6588: -1,-37
+ 6589: 3,-37
+ 6590: 4,-37
+ 6591: 1,-34
+ 6617: 1,18
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelLineS
+ decals:
+ 6570: 1,-14
+ 6597: 1,-42
+ 6598: -1,-39
+ 6599: -2,-39
+ 6600: 3,-39
+ 6601: 4,-39
+ 6618: 1,22
+ - node:
+ color: '#FFFFFFFF'
+ id: MiniTileSteelLineW
+ decals:
+ 6564: 3,-16
+ 6602: 0,-35
+ 6603: 0,-36
+ 6604: 0,-40
+ 6605: 0,-41
+ 6606: -3,-38
+ 6616: 3,20
- node:
color: '#91D4FFFF'
- id: MonoOverlay
+ id: MiniTileWhiteCornerNe
+ decals:
+ 6459: 0,1
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteCornerNe
+ decals:
+ 6695: -72,7
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 6460: 2,1
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteCornerNw
+ decals:
+ 6696: -70,7
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 6457: 0,3
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteCornerSe
+ decals:
+ 6694: -72,9
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 6458: 2,3
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteCornerSw
+ decals:
+ 6693: -70,9
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 6500: 0,0
+ 6510: -1,1
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteInnerNe
+ decals:
+ 6701: -72,6
+ 6702: -73,7
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 6501: 2,0
+ 6511: 3,1
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteInnerNw
+ decals:
+ 6703: -70,6
+ 6704: -69,7
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteInnerSe
+ decals:
+ 6508: 0,4
+ 6509: -1,3
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteInnerSe
+ decals:
+ 6707: -72,10
+ 6708: -73,9
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteInnerSw
+ decals:
+ 6506: 3,3
+ 6507: 2,4
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteInnerSw
decals:
- 2263: 0,2
- 2264: 1,2
- 2265: 1,3
- 2266: 2,2
- 2267: 1,1
+ 6705: -69,9
+ 6706: -70,10
- node:
color: '#91D4FFFF'
- id: OffsetCheckerAOverlay
+ id: MiniTileWhiteLineE
decals:
- 2268: 1,3
- 2269: 1,2
- 2270: 0,2
- 2271: 2,2
- 2272: 1,1
+ 6505: -1,2
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteLineE
+ decals:
+ 6700: -73,8
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteLineN
+ decals:
+ 6502: 1,0
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteLineN
+ decals:
+ 6697: -71,6
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteLineS
+ decals:
+ 6503: 1,4
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteLineS
+ decals:
+ 6698: -71,10
+ - node:
+ color: '#91D4FFFF'
+ id: MiniTileWhiteLineW
+ decals:
+ 6504: 3,2
+ - node:
+ color: '#D3F4A5FF'
+ id: MiniTileWhiteLineW
+ decals:
+ 6699: -69,8
+ - node:
+ color: '#334E6DFF'
+ id: MonoOverlay
+ decals:
+ 5752: -36,24
+ 5924: -76,12
+ - node:
+ color: '#845606FF'
+ id: MonoOverlay
+ decals:
+ 5748: -40,24
+ 5923: -80,11
- node:
color: '#91D4FFFF'
- id: PavementOverlay
- decals:
- 601: -29,2
- 602: -12,2
- 603: 9,6
- 604: 30,6
- 2252: 9,-2
- 2273: 0,2
- 2274: 1,2
- 2275: 1,3
- 2276: 2,2
- 2277: 1,1
+ id: MonoOverlay
+ decals:
+ 5745: -43,24
+ 5920: -80,14
+ - node:
+ color: '#9DE9BAFF'
+ id: MonoOverlay
+ decals:
+ 5751: -37,24
+ - node:
+ color: '#9FED58FF'
+ id: MonoOverlay
+ decals:
+ 5925: -76,13
+ - node:
+ color: '#B02E26FF'
+ id: MonoOverlay
+ decals:
+ 5749: -39,24
+ 5919: -76,14
+ - node:
+ color: '#B04DB5FF'
+ id: MonoOverlay
+ decals:
+ 5747: -41,24
+ 5922: -80,12
+ - node:
+ color: '#BA8841FF'
+ id: MonoOverlay
+ decals:
+ 5750: -38,24
+ 5926: -76,11
+ - node:
+ color: '#D3F4A5FF'
+ id: MonoOverlay
+ decals:
+ 5746: -42,24
+ 5921: -80,13
+ - node:
+ color: '#720000FF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6687: 34,-28
+ 6688: 31,-31
+ - node:
+ color: '#DFAA16FF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6653: 31,-31
+ 6655: 34,-28
+ - node:
+ color: '#720000FF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 6689: 36,-30
+ 6690: 33,-33
+ - node:
+ color: '#DFAA16FF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 6658: 33,-33
+ 6659: 36,-30
+ - node:
+ color: '#720000FF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6691: 34,-33
+ 6692: 31,-30
+ - node:
+ color: '#DFAA16FF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6654: 31,-30
+ 6657: 34,-33
+ - node:
+ color: '#720000FF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 6685: 36,-31
+ 6686: 33,-28
+ - node:
+ color: '#DFAA16FF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 6656: 33,-28
+ 6660: 36,-31
- node:
color: '#FFFFFFFF'
id: Remains
decals:
- 4274: -74.38303,-4.395273
- 4275: 58.464054,51.70824
- 4276: 58.432804,56.20824
- 4303: 90.203255,39.535217
- 4304: 89.453255,41.035217
- 4305: 84.484505,39.425842
+ 3288: -74.38303,-4.395273
+ 3289: 58.464054,51.70824
+ 3290: 58.432804,56.20824
+ 3314: 90.203255,39.535217
+ 3315: 89.453255,41.035217
+ 3316: 84.484505,39.425842
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Rock01
decals:
- 83: -32,6
- 84: 3,-5
- 85: -23,-14
- 86: 15,-39
+ 78: 3,-5
+ 79: -23,-14
+ 80: 15,-39
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock01
+ decals:
+ 4827: 102.79387,48.567257
+ 4838: 94.93059,45.47077
+ 4839: 93.95793,44.27546
+ 4847: 100.53215,30.299767
+ 4848: 101.528244,27.686485
+ 4853: 98.64543,22.421034
+ 4859: 88.78036,27.940224
+ 4860: 88.323326,27.307411
+ 4870: 71.137566,47.653687
+ 4877: 68.54636,63.695564
+ 4878: 77.5703,69.92761
+ 4885: 62.59044,75.553635
+ 4886: 61.40715,64.640045
+ 4895: 80.69898,71.55661
+ 4896: 82.550545,70.32614
+ 4897: 82.732,60.92238
+ 4902: 89.51716,60.851997
+ 4903: 94.41016,63.418404
+ 4904: 87.50781,67.52745
+ 4908: 85.515625,75.35539
+ 4909: 96.41406,68.75774
+ 4910: 95.93659,58.3081
+ 4920: 91.25725,8.789104
+ 5274: -39.37945,72.81972
+ 5299: 40.62494,14.185911
+ 5300: 46.242126,10.631224
+ 5332: -69.342834,35.958504
+ 5333: -67.03815,32.021004
+ 5339: -52.728626,-9.140808
+ 5406: 34.05777,53.045223
+ 5600: -10.596394,46.794857
+ 5849: 13.760746,-30.861977
+ 5850: 18.760746,-28.830727
+ 6256: 8.941883,-41.09019
+ 6398: -43.246975,18.998549
- node:
color: '#FFFFFFFF'
id: Rock02
decals:
- 6419: -28.536238,-17.001705
+ 4579: -28.536238,-17.001705
+ 4833: 97.6259,41.16999
+ 4840: 93.39543,43.31452
+ 4843: 100.89543,38.81452
+ 4844: 99.5009,28.354454
+ 4849: 98.72746,27.674767
+ 4850: 101.621994,21.671034
+ 4854: 93.07972,31.502724
+ 4871: 67.680534,52.610718
+ 4872: 66.495575,60.26164
+ 4879: 76.99608,69.49402
+ 4884: 61.406845,75.0966
+ 4891: 61.6884,78.59358
+ 4899: 85.134346,62.574654
+ 4907: 86.265625,71.35948
+ 4911: 95.04975,58.62622
+ 4912: 103.47553,58.778564
+ 4913: 100.46381,55.403564
+ 4914: 97.16203,35.096268
+ 5336: -28.93729,2.9404542
+ 5337: -51.377064,-6.640808
+ 5350: 48.710686,-31.929493
+ 5599: -7.7526436,47.02142
+ 5851: 19.120121,-31.135414
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock03
+ decals:
+ 4816: 80.55664,55.57683
+ 4825: 87.927734,55.377613
+ 4826: 100.47157,49.35293
+ 4834: 97.83684,40.22077
+ 4841: 95.35246,42.330147
+ 4858: 83.741295,28.713661
+ 4861: 89.50692,27.248817
+ 4862: 101.01043,22.149483
+ 4863: 100.3583,35.617542
+ 4864: 103.3167,51.065765
+ 4865: 93.613785,56.79541
+ 4866: 71.430534,50.302124
+ 4873: 64.84323,59.183514
+ 4880: 73.16405,74.56824
+ 4881: 62.414658,70.08098
+ 4887: 60.76262,64.05411
+ 4888: 58.3134,79.320145
+ 4892: 60.10637,79.42561
+ 4893: 80.60222,74.415985
+ 4898: 86.00153,63.44184
+ 4917: 98.792404,9.000042
+ 4921: 88.843185,13.160198
+ 5295: 46.023376,14.014036
+ 5351: 46.304436,-29.085743
+ 5356: -68.58855,36.34771
+ 5405: 30.878082,54.990536
+ 6163: -1.7414589,25.080694
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Rock04
decals:
- 92: 75,-5
- 93: 54,-8
- 94: 49,-20
- 95: 41,-20
- 96: -1,-10
+ 86: 75,-5
+ 87: 54,-8
+ 88: 49,-20
+ 89: 41,-20
+ 90: -1,-10
- node:
color: '#FFFFFFFF'
id: Rock04
decals:
- 3999: -81.68403,16.52927
+ 3050: -81.68403,16.52927
+ 4817: 82.68945,54.486988
+ 4818: 85.51367,53.52605
+ 4819: 74.978516,57.158863
+ 4831: 102.266525,42.672726
+ 4832: 102.653244,41.767647
+ 4835: 98.58684,41.45124
+ 4836: 96.47746,43.255928
+ 4845: 98.57512,28.811485
+ 4851: 102.32512,20.839003
+ 4855: 93.80628,31.022255
+ 4857: 86.28426,28.72538
+ 4867: 71.86413,49.470093
+ 4868: 72.43835,50.454468
+ 4869: 69.69616,48.2865
+ 4874: 64.526825,58.38664
+ 4875: 67.30417,63.73072
+ 4882: 62.68419,69.448166
+ 4890: 61.20793,78.0428
+ 4894: 81.50456,73.97067
+ 4900: 86.58747,60.219185
+ 4905: 88.1875,67.304794
+ 4906: 85.58594,70.70323
+ 4915: 97.806564,34.357986
+ 4916: 97.50334,9.703167
+ 4919: 98.76897,7.7461357
+ 4922: 97.05803,11.437542
+ 5275: -35.738827,71.38222
+ 5296: 41.210876,11.732786
+ 5338: -55.713,-7.578308
+ 5340: -16.277683,57.435253
+ 5352: 47.97631,-31.570118
+ 5353: 50.390373,-32.366993
+ 5598: -6.4664736,44.845646
+ 5852: 15.4091835,-32.854164
+ - node:
+ color: '#FFFFFFFF'
+ id: Rock05
+ decals:
+ 4820: 77.11133,59.268238
+ 4821: 80.9668,56.268238
+ 4822: 79.384766,53.010426
+ 4823: 89.47461,55.002613
+ 4824: 87.38867,55.893238
+ 4828: 99.6884,48.707882
+ 4837: 95.12981,44.591866
+ 4842: 100.41496,39.517647
+ 4846: 100.03996,30.979454
+ 4852: 100.496994,21.530409
+ 4856: 86.729576,29.182411
+ 4876: 67.72604,64.46901
+ 4883: 60.51622,69.99895
+ 4889: 60.422775,77.4803
+ 4901: 89.21247,61.40278
+ 4918: 99.27287,8.437542
+ 5276: -39.481014,68.97597
+ 5297: 42.57025,10.685911
+ 5298: 41.765564,15.373411
+ 5334: -65.83502,32.72413
+ 5335: -31.491978,0.48036456
+ 5341: -17.191746,53.591503
+ 5354: 45.484123,-32.195118
+ 5355: -70.33855,31.832085
+ 5407: 35.206207,54.928036
+ 5408: 33.62027,57.19366
+ 5585: -8.557722,46.736614
+ 5601: -4.432331,44.662045
+ 5853: 16.284184,-32.90885
+ 5854: 15.526371,-29.166664
+ 6257: 9.277821,-41.71519
+ 6397: -41.442287,21.076674
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Rock06
decals:
- 97: 3,-6
+ 91: 3,-6
- node:
color: '#FFFFFFFF'
id: Rock06
decals:
- 278: -104.42121,23.972893
- 279: -101.82746,28.332268
- 280: -101.57746,19.832268
+ 255: -104.42121,23.972893
+ 256: -101.82746,28.332268
+ 257: -101.57746,19.832268
+ 4829: 100.53215,48.62585
+ 4923: 101.083466,10.133084
+ 4928: 98.41568,33.005764
+ 5342: -15.972034,50.921497
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: Rock07
decals:
- 87: 20,-39
- 88: 41,-32
- 89: 50,-26
- 90: 66,-23
- 91: 61,0
+ 81: 20,-39
+ 82: 41,-32
+ 83: 50,-26
+ 84: 66,-23
+ 85: 61,0
- node:
color: '#FFFFFFFF'
id: Rock07
decals:
- 179: 7,-46
- 281: -102.26496,19.644768
- 282: -101.82746,19.051018
- 283: -101.28059,27.691643
- 284: -105.32746,27.394768
+ 164: 7,-46
+ 258: -102.26496,19.644768
+ 259: -101.82746,19.051018
+ 260: -101.28059,27.691643
+ 261: -105.32746,27.394768
+ 4830: 100.16887,48.145382
+ 4924: 102.19242,9.054959
+ 4925: 103.8472,22.671467
+ 4926: 96.681305,25.049057
+ 4927: 99.04849,33.638577
+ 5343: -16.08141,56.36161
- node:
color: '#FFFFFFFF'
+ id: Rust
+ decals:
+ 4763: 76,85
+ 4764: 78,84
+ 4765: 73,84
+ 4766: 69,84
+ 4767: 68,85
+ 4768: 70,85
+ 4769: 68,82
+ 4770: 74,80
+ 4771: 77,81
+ 4772: 78,83
+ 4811: 81,84
+ 4812: 80,85
+ 4813: 82,81
+ 4814: 83,80
+ 4815: 76,78
+ - node:
+ color: '#B02E26FF'
+ id: StandClearGreyscale
+ decals:
+ 5896: 1,-27
+ 5897: 1,-21
+ 6147: 1,40
+ 6148: 1,46
+ - node:
+ color: '#720000FF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 6628: 31,-28
+ - node:
+ color: '#720000FF'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 6630: 36,-33
+ - node:
+ color: '#720000FF'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6629: 31,-33
+ - node:
+ color: '#720000FF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 6627: 36,-28
+ - node:
+ color: '#91D4FFFF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 7067: 28,3
+ - node:
+ color: '#91D4FFFF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 7068: 24,3
+ - node:
+ color: '#91D4FFFF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 7070: 28,0
+ - node:
+ color: '#91D4FFFF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 7069: 24,0
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerNE
+ decals:
+ 5558: -23,51
+ 5911: 8,-21
+ 6168: -2,45
+ 6247: -20,61
+ 6271: -25,34
+ 6272: -29,34
+ 6273: -29,25
+ 6274: -25,25
+ 6324: -17,42
+ - node:
+ color: '#BA8841FF'
id: WarnCornerNE
decals:
- 2125: -59,19
- 2147: 28,3
- 5938: -17,-34
+ 6055: -51,38
+ 6056: -57,37
+ 6060: -52,35
+ 6072: -42,31
+ 6092: -42,35
+ 6109: -46,37
+ 6342: 88,-14
+ 6343: 88,-19
- node:
color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 1543: -59,19
+ - node:
+ color: '#B02E26FF'
+ id: WarnCornerNW
+ decals:
+ 5557: -24,51
+ 5910: 6,-21
+ 6167: -3,45
+ 6246: -24,61
+ 6275: -31,34
+ 6276: -31,25
+ 6277: -27,25
+ 6278: -27,34
+ 6325: -19,42
+ - node:
+ color: '#BA8841FF'
id: WarnCornerNW
decals:
- 2128: -63,19
- 2148: 24,3
- 6016: -51,-42
+ 6057: -58,37
+ 6058: -53,38
+ 6059: -53,35
+ 6073: -43,31
+ 6093: -43,35
+ 6108: -49,37
+ 6340: 86,-14
+ 6341: 86,-19
- node:
color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 1546: -63,19
+ - node:
+ color: '#B02E26FF'
id: WarnCornerSE
decals:
- 2126: -59,16
- 2146: 28,0
- 6120: -17,-44
+ 5564: -23,48
+ 5908: 8,-26
+ 5909: 11,-25
+ 5917: 15,-25
+ 6176: -2,41
+ 6248: -20,60
+ 6283: -25,24
+ 6284: -25,33
+ 6285: -29,33
+ 6286: -29,24
+ 6326: -17,39
+ - node:
+ color: '#BA8841FF'
+ id: WarnCornerSE
+ decals:
+ 6052: -52,33
+ 6053: -51,37
+ 6054: -57,33
+ 6074: -42,29
+ 6091: -42,33
+ 6110: -46,36
+ 6344: 88,-20
+ 6345: 88,-15
- node:
color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 1544: -59,16
+ - node:
+ color: '#B02E26FF'
id: WarnCornerSW
decals:
- 2127: -63,16
- 2149: 24,0
- 5943: -22,-35
+ 5563: -24,48
+ 5906: 6,-26
+ 5907: 10,-25
+ 5916: 13,-25
+ 6175: -3,41
+ 6249: -24,60
+ 6279: -31,33
+ 6280: -27,33
+ 6281: -31,24
+ 6282: -27,24
+ 6323: -19,39
+ - node:
+ color: '#BA8841FF'
+ id: WarnCornerSW
+ decals:
+ 6049: -53,33
+ 6050: -58,33
+ 6051: -53,37
+ 6069: -43,29
+ 6090: -43,33
+ 6111: -49,36
+ 6338: 86,-20
+ 6339: 86,-15
- node:
color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 1545: -63,16
+ - node:
+ color: '#845606FF'
id: WarnCornerSmallNE
decals:
- 3248: 15,12
- 5937: -20,-34
- 5983: -21,-21
- 6113: 44,38
+ 6858: -21,-20
+ 6866: -24,-43
+ 6867: -20,-43
- node:
color: '#FFFFFFFF'
+ id: WarnCornerSmallNE
+ decals:
+ 4408: 44,38
+ - node:
+ color: '#845606FF'
id: WarnCornerSmallNW
decals:
- 2708: 48,38
- 3249: 21,12
- 5951: -19,-42
- 5984: -15,-21
+ 6864: -18,-43
+ 6865: -22,-43
+ 6950: -15,-20
- node:
color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 2010: 48,38
+ - node:
+ color: '#845606FF'
id: WarnCornerSmallSE
decals:
- 3251: 15,16
- 5986: -21,-19
- 6018: -49,-44
+ 6874: -24,-46
+ 6875: -20,-46
- node:
- color: '#FFFFFFFF'
+ color: '#B02E26FF'
+ id: WarnCornerSmallSE
+ decals:
+ 4701: 7,-14
+ - node:
+ color: '#845606FF'
id: WarnCornerSmallSW
decals:
- 3250: 21,16
- 5946: -19,-35
- 5985: -15,-19
+ 6859: -22,-22
+ 6876: -22,-46
+ 6877: -18,-46
- node:
- color: '#FFFFFFFF'
+ color: '#845606FF'
+ id: WarnEndE
+ decals:
+ 6869: -20,-49
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndE
+ decals:
+ 6270: -33,35
+ 6435: -33,31
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndN
+ decals:
+ 6177: 4,-22
+ 6438: -37,31
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndS
+ decals:
+ 6178: 4,-26
+ 6437: -37,29
+ - node:
+ color: '#845606FF'
+ id: WarnEndW
+ decals:
+ 6868: -22,-49
+ - node:
+ color: '#B02E26FF'
+ id: WarnEndW
+ decals:
+ 6269: -34,35
+ 6436: -35,31
+ - node:
+ color: '#B02E26FF'
id: WarnFull
decals:
- 3196: -104,53
- 3197: -104,52
- 3198: -104,51
- 3199: -104,50
- 3200: -104,49
+ 5522: -34,46
+ 5523: -33,46
+ 5524: -32,46
+ 5525: -31,46
+ 5526: -30,46
+ 5887: 12,-23
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#91D4FFFF'
+ id: WarnFullGreyscale
+ decals:
+ 7172: 23,2
+ 7173: 23,1
+ - node:
+ color: '#845606FF'
+ id: WarnLineE
+ decals:
+ 6797: -14,-42
+ 6798: -14,-43
+ 6799: -14,-44
+ 6800: -14,-45
+ 6801: -14,-46
+ 6841: -20,-40
+ 6842: -20,-39
+ 6843: -20,-38
+ 6844: -20,-37
+ 6845: -20,-36
+ 6846: -20,-35
+ 6847: -20,-34
+ 6848: -20,-33
+ 6849: -20,-32
+ 6850: -20,-31
+ 6851: -20,-30
+ 6852: -20,-29
+ 6853: -20,-28
+ 6861: -20,-42
+ 6863: -24,-42
+ 6872: -24,-47
+ 6873: -20,-47
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineE
+ decals:
+ 5520: -7,63
+ 5521: -7,64
+ 5561: -23,50
+ 5562: -23,49
+ 5888: 2,-23
+ 5889: 2,-24
+ 5890: 2,-25
+ 5912: 8,-22
+ 5913: 8,-25
+ 6066: -3,68
+ 6067: -3,67
+ 6068: -3,66
+ 6129: -11,37
+ 6130: -11,36
+ 6131: -11,35
+ 6132: -11,34
+ 6133: -11,33
+ 6134: -11,32
+ 6135: -11,31
+ 6142: 2,42
+ 6143: 2,43
+ 6144: 2,44
+ 6169: -2,44
+ 6170: -2,43
+ 6171: -2,42
+ 6179: 4,-25
+ 6180: 4,-24
+ 6181: 4,-23
+ 6194: -32,39
+ 6195: -32,38
+ 6321: -17,41
+ 6322: -17,40
+ 6420: -37,30
+ 6426: -6,68
+ 6427: -6,67
+ 6428: -6,66
+ 6429: -2,68
+ 6430: -2,67
+ 6431: -2,66
+ - node:
+ color: '#BA8841FF'
+ id: WarnLineE
+ decals:
+ 6040: -57,36
+ 6041: -57,35
+ 6042: -57,34
+ 6046: -52,34
+ 6047: -46,31
+ 6071: -42,30
+ 6089: -42,34
+ 6327: 77,-18
+ 6328: 77,-17
+ 6329: 77,-16
+ 6330: 91,-12
+ 6331: 91,-13
+ 6332: 91,-21
+ 6333: 91,-22
- node:
color: '#FFFFFFFF'
id: WarnLineE
decals:
- 2129: -59,18
- 2130: -59,17
- 2144: 28,2
- 2145: 28,1
- 2167: -19,44
- 2168: -19,45
- 2174: 29,56
- 2175: 29,55
- 2176: 29,54
- 3181: -65,-19
- 3182: -65,-18
- 3183: -65,-16
- 3184: -65,-15
- 3222: 77,-16
- 3223: 77,-17
- 3224: 77,-18
- 3229: 80,-3
- 3230: 80,-4
- 3231: 80,-5
- 3237: 15,15
- 3238: 15,14
- 3239: 15,13
- 5924: -20,-28
- 5925: -20,-29
- 5926: -20,-31
- 5927: -20,-32
- 5928: -20,-33
- 5929: -17,-38
- 5930: -17,-39
- 5931: -17,-40
- 5932: -17,-41
- 5933: -17,-42
- 5934: -17,-43
- 5935: -20,-30
- 5941: -17,-35
- 5942: -17,-36
- 5977: -21,-20
- 6015: -49,-45
- 6025: -17,-36
- 6110: 44,39
- 6111: 44,40
+ 1547: -59,18
+ 1548: -59,17
+ 1566: 29,56
+ 1567: 29,55
+ 1568: 29,54
+ 2447: -65,-19
+ 2448: -65,-18
+ 2449: -65,-16
+ 2450: -65,-15
+ 4405: 44,39
+ 4406: 44,40
+ 5757: 88,-22
+ 5758: 88,-21
+ 5759: 88,-13
+ 5760: 88,-12
+ - node:
+ color: '#91D4FFFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 6019: 33,3
+ 6020: 33,2
+ 6021: 33,1
+ 7065: 32,9
+ 7066: 32,10
+ 7079: 28,1
+ 7080: 28,2
+ - node:
+ color: '#91D4FFFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 7008: 30,3
+ 7009: 31,3
+ 7015: 12,18
+ 7016: 13,18
+ 7017: 14,18
+ 7018: 15,18
+ 7019: 16,18
+ 7020: 10,17
+ 7021: 9,17
+ 7022: 8,17
+ 7027: 18,17
+ 7030: 19,17
+ 7031: 20,17
+ 7061: 26,10
+ 7062: 27,10
+ 7063: 28,10
+ 7073: 25,3
+ 7074: 26,3
+ 7075: 27,3
+ - node:
+ color: '#91D4FFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 7010: 12,17
+ 7011: 13,17
+ 7012: 14,17
+ 7013: 15,17
+ 7014: 16,17
+ 7023: 8,17
+ 7024: 9,17
+ 7025: 10,17
+ 7026: 18,17
+ 7028: 19,17
+ 7029: 20,17
+ 7076: 25,0
+ 7077: 26,0
+ 7078: 27,0
+ 7164: 30,0
+ 7165: 31,0
+ - node:
+ color: '#91D4FFFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 6022: 36,3
+ 6023: 36,2
+ 6024: 36,1
+ 7071: 24,1
+ 7072: 24,2
+ - node:
+ color: '#845606FF'
+ id: WarnLineN
+ decals:
+ 6782: -32,-47
+ 6783: -31,-47
+ 6784: -29,-47
+ 6785: -28,-47
+ 6791: -21,-49
+ 6802: -14,-38
+ 6803: -13,-38
+ 6804: -12,-38
+ 6805: -11,-38
+ 6806: -10,-38
+ 6807: -16,-38
+ 6808: -17,-38
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineN
+ decals:
+ 5527: -34,47
+ 5528: -33,47
+ 5529: -32,47
+ 5530: -31,47
+ 5531: -30,47
+ 5551: -28,41
+ 5552: -27,41
+ 5553: -26,41
+ 5568: -23,41
+ 5569: -22,41
+ 5570: -21,41
+ 5571: -31,28
+ 5572: -30,28
+ 5573: -29,28
+ 5574: -28,28
+ 5575: -27,28
+ 5576: -26,28
+ 5577: -25,28
+ 5683: -28,44
+ 5684: -27,44
+ 5685: -26,44
+ 5686: -25,44
+ 5687: -24,44
+ 5688: -23,44
+ 5689: -22,44
+ 5690: -21,44
+ 5691: -20,44
+ 5692: -19,44
+ 5693: -18,44
+ 5694: -17,44
+ 5695: -16,44
+ 5884: 13,-24
+ 5885: 14,-24
+ 5886: 15,-24
+ 5904: 7,-26
+ 5918: 14,-25
+ 6192: -31,40
+ 6193: -30,40
+ 6196: -21,37
+ 6197: -22,37
+ 6198: -24,37
+ 6199: -25,37
+ 6200: -27,37
+ 6201: -30,37
+ 6202: -31,37
+ 6207: -34,54
+ 6208: -33,54
+ 6209: -32,54
+ 6210: -31,54
+ 6211: -30,54
+ 6250: -23,60
+ 6251: -22,60
+ 6252: -21,60
+ 6287: -30,24
+ 6288: -26,24
+ 6289: -26,31
+ 6290: -30,31
+ 6291: -30,33
+ 6292: -26,33
+ 6297: -30,26
+ 6298: -26,26
+ 6299: -26,31
+ 6300: -30,31
+ 6311: -23,33
+ 6312: -22,33
+ 6313: -21,33
+ 6314: -19,33
+ 6315: -18,33
+ 6316: -17,33
+ 6318: -18,39
+ 6421: -34,31
+ - node:
+ color: '#BA8841FF'
+ id: WarnLineN
+ decals:
+ 6061: -52,37
+ 6112: -48,36
+ 6113: -47,36
+ 6346: 87,-15
+ 6347: 87,-20
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 2136: -62,16
- 2137: -61,16
- 2138: -60,16
- 2150: 25,0
- 2151: 26,0
- 2152: 27,0
- 2718: 37,50
- 2719: 47,50
- 3211: 41,-35
- 3212: 42,-35
- 3213: 44,-35
- 3214: 45,-35
- 3215: 46,-35
- 3216: 47,-35
- 3217: 48,-35
- 3218: 50,-35
- 3232: 16,16
- 3233: 17,16
- 3234: 18,16
- 3235: 19,16
- 3236: 20,16
- 5944: -21,-35
- 5945: -20,-35
- 5960: -28,-44
- 5961: -27,-44
- 5962: -26,-44
- 5963: -25,-44
- 5964: -24,-44
- 5965: -23,-44
- 5966: -22,-44
- 5967: -20,-44
- 5968: -19,-44
- 5973: -16,-19
- 5974: -17,-19
- 5975: -19,-19
- 5976: -20,-19
- 6002: -36,-44
- 6003: -37,-44
- 6004: -38,-44
- 6005: -39,-44
- 6006: -40,-44
- 6007: -41,-44
- 6008: -42,-44
- 6009: -43,-44
- 6010: -44,-44
- 6011: -45,-44
- 6012: -46,-44
- 6013: -47,-44
- 6014: -48,-44
- 6121: -18,-44
+ 1554: -62,16
+ 1555: -61,16
+ 1556: -60,16
+ 2018: 37,50
+ 2019: 47,50
+ 5930: -79,11
+ 5931: -78,11
+ 5932: -77,11
+ - node:
+ color: '#845606FF'
+ id: WarnLineS
+ decals:
+ 6792: -14,-42
+ 6793: -14,-43
+ 6794: -14,-44
+ 6795: -14,-45
+ 6796: -14,-46
+ 6824: -22,-23
+ 6825: -22,-24
+ 6826: -22,-25
+ 6827: -22,-26
+ 6828: -22,-28
+ 6829: -22,-29
+ 6830: -22,-30
+ 6831: -22,-31
+ 6832: -22,-32
+ 6833: -22,-33
+ 6834: -22,-34
+ 6835: -22,-35
+ 6836: -22,-36
+ 6837: -22,-37
+ 6838: -22,-38
+ 6839: -22,-39
+ 6840: -22,-40
+ 6860: -22,-42
+ 6862: -18,-42
+ 6870: -22,-47
+ 6871: -18,-47
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineS
+ decals:
+ 5518: -9,63
+ 5519: -9,64
+ 5559: -24,50
+ 5560: -24,49
+ 5891: 0,-23
+ 5892: 0,-24
+ 5893: 0,-25
+ 5914: 6,-25
+ 5915: 6,-22
+ 6063: -5,68
+ 6064: -5,67
+ 6065: -5,66
+ 6122: -12,31
+ 6123: -12,32
+ 6124: -12,33
+ 6125: -12,34
+ 6126: -12,35
+ 6127: -12,36
+ 6128: -12,37
+ 6139: 0,42
+ 6140: 0,43
+ 6141: 0,44
+ 6172: -3,42
+ 6173: -3,43
+ 6174: -3,44
+ 6182: 4,-23
+ 6183: 4,-24
+ 6184: 4,-25
+ 6203: -32,38
+ 6204: -32,39
+ 6319: -19,40
+ 6320: -19,41
+ 6419: -37,30
+ 6423: -6,68
+ 6424: -6,67
+ 6425: -6,66
+ 6432: -2,66
+ 6433: -2,67
+ 6434: -2,68
+ - node:
+ color: '#BA8841FF'
+ id: WarnLineS
+ decals:
+ 6039: -53,34
+ 6043: -58,34
+ 6044: -58,35
+ 6045: -58,36
+ 6048: -50,31
+ 6070: -43,30
+ 6088: -43,34
+ 6334: 90,-22
+ 6335: 90,-21
+ 6336: 90,-13
+ 6337: 90,-12
- node:
color: '#FFFFFFFF'
id: WarnLineS
decals:
- 2134: -63,18
- 2135: -63,17
- 2142: 24,2
- 2143: 24,1
- 2169: -21,45
- 2170: -21,44
- 2171: 25,56
- 2172: 25,55
- 2173: 25,54
- 2706: 48,39
- 3177: -66,-15
- 3178: -66,-16
- 3179: -66,-18
- 3180: -66,-19
- 3185: -102,53
- 3186: -102,52
- 3187: -102,51
- 3188: -102,50
- 3189: -102,49
- 3190: -102,48
- 3191: -102,47
- 3192: -102,45
- 3193: -102,54
- 3194: -102,55
- 3195: -102,57
- 3225: 78,-2
- 3226: 78,-3
- 3227: 78,-5
- 3228: 78,-6
- 3245: 21,13
- 3246: 21,14
- 3247: 21,15
- 5914: -22,-25
- 5915: -22,-24
- 5916: -22,-23
- 5917: -22,-26
- 5918: -22,-28
- 5919: -22,-29
- 5920: -22,-31
- 5921: -22,-32
- 5922: -22,-33
- 5923: -22,-34
- 5936: -22,-30
- 5947: -19,-36
- 5948: -19,-38
- 5949: -19,-39
- 5950: -19,-40
- 5969: -15,-40
- 5970: -15,-34
- 5971: -15,-35
- 5972: -15,-20
- 6017: -51,-43
- 6024: -19,-36
- 6112: 48,40
- 6119: -19,-41
+ 1552: -63,18
+ 1553: -63,17
+ 1563: 25,56
+ 1564: 25,55
+ 1565: 25,54
+ 2008: 48,39
+ 2443: -66,-15
+ 2444: -66,-16
+ 2445: -66,-18
+ 2446: -66,-19
+ 4407: 48,40
+ 5946: -13,-42
+ 5947: -13,-43
+ 5948: -13,-44
+ 5949: -13,-45
+ 5950: -13,-46
+ 6394: -42,10
+ 6395: -42,9
+ 6396: -42,8
+ - node:
+ color: '#845606FF'
+ id: WarnLineW
+ decals:
+ 6786: -32,-47
+ 6787: -31,-47
+ 6788: -29,-47
+ 6789: -28,-47
+ 6790: -21,-49
+ 6809: -17,-38
+ 6810: -16,-38
+ 6811: -14,-38
+ 6812: -13,-38
+ 6813: -12,-38
+ 6814: -11,-38
+ 6815: -10,-38
+ 6854: -20,-20
+ 6855: -19,-20
+ 6856: -17,-20
+ 6857: -16,-20
+ - node:
+ color: '#B02E26FF'
+ id: WarnLineW
+ decals:
+ 5419: -18,42
+ 5532: -34,45
+ 5533: -33,45
+ 5534: -32,45
+ 5535: -31,45
+ 5536: -30,45
+ 5554: -28,42
+ 5555: -27,42
+ 5556: -26,42
+ 5565: -21,42
+ 5566: -22,42
+ 5567: -23,42
+ 5578: -31,30
+ 5579: -30,30
+ 5580: -29,30
+ 5581: -28,30
+ 5582: -27,30
+ 5583: -26,30
+ 5584: -25,30
+ 5881: 13,-22
+ 5882: 14,-22
+ 5883: 15,-22
+ 5905: 7,-21
+ 6120: -9,35
+ 6121: -8,35
+ 6136: -7,40
+ 6137: -6,40
+ 6138: -5,40
+ 6185: -31,37
+ 6186: -30,37
+ 6187: -27,37
+ 6188: -25,37
+ 6189: -24,37
+ 6190: -22,37
+ 6191: -21,37
+ 6205: -31,40
+ 6206: -30,40
+ 6212: -34,52
+ 6213: -33,52
+ 6214: -32,52
+ 6215: -31,52
+ 6216: -30,52
+ 6253: -23,61
+ 6254: -22,61
+ 6255: -21,61
+ 6293: -30,25
+ 6294: -26,25
+ 6295: -30,27
+ 6296: -26,27
+ 6301: -30,32
+ 6302: -26,32
+ 6303: -30,34
+ 6304: -26,34
+ 6305: -23,34
+ 6306: -22,34
+ 6307: -21,34
+ 6308: -19,34
+ 6309: -18,34
+ 6310: -17,34
+ 6317: -7,35
+ 6422: -34,31
+ - node:
+ color: '#BA8841FF'
+ id: WarnLineW
+ decals:
+ 6062: -52,38
+ 6114: -48,37
+ 6115: -47,37
+ 6116: -63,13
+ 6117: -62,13
+ 6348: 87,-19
+ 6349: 87,-14
- node:
color: '#FFFFFFFF'
id: WarnLineW
decals:
- 2131: -62,19
- 2132: -61,19
- 2133: -60,19
- 2139: 25,3
- 2140: 26,3
- 2141: 27,3
- 2707: 47,38
- 2711: 38,57
- 2712: 39,57
- 2713: 40,57
- 2714: 44,57
- 2715: 45,57
- 2716: 46,57
- 2717: 37,52
- 2720: 47,52
- 3219: 41,-34
- 3220: 42,-34
- 3221: 50,-34
- 3240: 16,12
- 3241: 17,12
- 3242: 18,12
- 3243: 19,12
- 3244: 20,12
- 4231: -34,44
- 4232: -33,44
- 4233: -32,44
- 5939: -18,-34
- 5940: -19,-34
- 5952: -20,-42
- 5953: -22,-42
- 5954: -23,-42
- 5955: -24,-42
- 5956: -25,-42
- 5957: -26,-42
- 5958: -27,-42
- 5959: -28,-42
- 5978: -20,-21
- 5979: -19,-21
- 5980: -18,-21
- 5981: -17,-21
- 5982: -16,-21
- 5987: -36,-42
- 5988: -37,-42
- 5989: -38,-42
- 5990: -39,-42
- 5991: -40,-42
- 5992: -41,-42
- 5993: -42,-42
- 5994: -43,-42
- 5995: -44,-42
- 5996: -45,-42
- 5997: -46,-42
- 5998: -47,-42
- 5999: -48,-42
- 6000: -49,-42
- 6001: -50,-42
- 6114: 45,38
- 6115: 46,38
+ 1549: -62,19
+ 1550: -61,19
+ 1551: -60,19
+ 2009: 47,38
+ 2011: 38,57
+ 2012: 39,57
+ 2013: 40,57
+ 2014: 44,57
+ 2015: 45,57
+ 2016: 46,57
+ 2017: 37,52
+ 2020: 47,52
+ 4409: 45,38
+ 4410: 46,38
+ 5927: -79,14
+ 5928: -78,14
+ 5929: -77,14
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 6527: -1,0
+ 6528: 6,0
+ 6529: 6,7
+ 6530: -1,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 6531: -4,7
+ 6532: 4,7
+ 6533: 3,0
+ 6534: -4,0
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 6519: -1,4
+ 6520: 6,-3
+ 6521: -1,-3
+ 6522: 6,5
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 6523: -4,-3
+ 6524: -4,4
+ 6525: 4,5
+ 6526: 3,-3
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 5940: -13,-44
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 5938: -13,-43
+ 5939: -13,-42
+ 6542: -1,-1
+ 6543: -1,-2
+ 6544: 6,-1
+ 6545: 6,-2
+ 6546: 6,6
+ 6547: -1,6
+ 6548: -1,5
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 5933: -12,-44
+ 5934: -11,-44
+ 5935: -10,-44
+ 5936: -9,-44
+ 5937: -8,-44
+ 6535: -3,0
+ 6536: -2,0
+ 6537: 4,0
+ 6538: 5,0
+ 6539: 5,7
+ 6540: -2,7
+ 6541: -3,7
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 6549: -3,-3
+ 6550: -2,-3
+ 6551: 4,-3
+ 6552: 5,-3
+ 6553: 5,5
+ 6554: -2,4
+ 6555: -3,4
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 6556: -4,-2
+ 6557: -4,-1
+ 6558: -4,5
+ 6559: -4,6
+ 6560: 4,6
+ 6561: 3,-2
+ 6562: 3,-1
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: body
decals:
- 4285: -75.583534,-5.7699175
+ 3299: -75.583534,-5.7699175
- node:
color: '#FFFFFFFF'
id: bushsnowa1
decals:
- 160: -25,-14
- 161: -32,-1
- 268: 29,-37
+ 154: -25,-14
+ 247: 29,-37
+ - node:
+ color: '#000000FF'
+ id: clawprint
+ decals:
+ 4773: 76.23013,83.76755
+ 4774: 76.38638,84.08786
+ 4775: 76.15201,84.322235
- node:
cleanable: True
angle: -0.5061454830783556 rad
color: '#B60000FF'
id: danger
decals:
- 17: 53.961716,46.977074
+ 12: 53.961716,46.977074
- node:
color: '#FFFFFFFF'
id: grasssnow
decals:
- 335: -90.745636,-9.283487
+ 312: -90.745636,-9.283487
- node:
color: '#FFFFFFFF'
id: grasssnow01
decals:
- 336: -89.91751,-9.111612
+ 313: -89.91751,-9.111612
- node:
color: '#FFFFFFFF'
id: grasssnow02
decals:
- 337: -90.91751,-8.783487
- 338: -86.94876,-12.533487
- 348: -83.308136,-8.111612
+ 314: -90.91751,-8.783487
+ 315: -86.94876,-12.533487
+ 325: -83.308136,-8.111612
- node:
color: '#FFFFFFFF'
id: grasssnow10
decals:
- 330: -85.73001,-9.877237
- 331: -85.19876,-10.189737
+ 307: -85.73001,-9.877237
+ 308: -85.19876,-10.189737
- node:
color: '#FFFFFFFF'
id: grasssnow12
decals:
- 332: -82.870636,-10.658487
+ 309: -82.870636,-10.658487
- node:
color: '#FFFFFFFF'
id: grasssnow13
decals:
- 333: -82.35501,-10.799112
- 334: -79.526886,-8.767862
+ 310: -82.35501,-10.799112
+ 311: -79.526886,-8.767862
- node:
color: '#FFFFFFFF'
id: grasssnowa2
decals:
- 344: -81.901886,-13.220987
- 345: -78.745636,-10.470987
+ 321: -81.901886,-13.220987
+ 322: -78.745636,-10.470987
- node:
color: '#FFFFFFFF'
id: grasssnowb1
decals:
- 272: 30,-37
- 342: -87.85501,-13.408487
- 343: -90.870636,-10.908487
+ 251: 30,-37
+ 319: -87.85501,-13.408487
+ 320: -90.870636,-10.908487
- node:
angle: -0.15707963267948966 rad
color: '#FFFFFFFF'
id: grasssnowb2
decals:
- 98: -1,-7
- 99: 3,-11
+ 92: -1,-7
+ 93: 3,-11
- node:
color: '#FFFFFFFF'
id: grasssnowb2
decals:
- 177: -11,-54
- 346: -79.07376,-11.033487
- 347: -84.151886,-8.111612
+ 323: -79.07376,-11.033487
+ 324: -84.151886,-8.111612
- node:
color: '#FFFFFFFF'
id: grasssnowb3
decals:
- 216: 13,23
- 225: 37,42
+ 199: 13,23
+ 208: 37,42
- node:
color: '#FFFFFFFF'
id: grasssnowc2
decals:
- 339: -87.370636,-13.033487
- 340: -82.214386,-13.689737
- 341: -79.29251,-10.330362
+ 316: -87.370636,-13.033487
+ 317: -82.214386,-13.689737
+ 318: -79.29251,-10.330362
- node:
color: '#FFFFFFFF'
id: grasssnowc3
decals:
- 178: 13,-51
+ 163: 13,-51
- node:
color: '#9F0000FF'
id: guy
decals:
- 4273: -69.00803,-6.582773
+ 3287: -69.00803,-6.582773
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: h
decals:
- 4280: -75.84916,-3.2699175
- 4281: -68.97416,-7.1761675
+ 3294: -75.84916,-3.2699175
+ 3295: -68.97416,-7.1761675
+ - node:
+ color: '#181719FF'
+ id: i
+ decals:
+ 4776: 76.73013,84.90036
+ 4777: 76.862946,84.759735
+ 4778: 77.00357,84.77536
+ 4779: 76.02701,82.540985
+ 4780: 76.12076,82.33786
+ 4781: 76.27701,82.50192
+ 4782: 78.10513,84.21286
+ 4783: 78.175446,84.0488
+ 4784: 78.331696,84.22067
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: k
decals:
- 4282: -67.896034,-7.0042925
+ 3296: -67.896034,-7.0042925
- node:
angle: 0.15707963267948966 rad
color: '#9F0000FF'
id: k
decals:
- 4277: -73.927284,-3.1136675
+ 3291: -73.927284,-3.1136675
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: n
decals:
- 4279: -74.583534,-3.3480425
- 4284: -68.271034,-6.7699175
+ 3293: -74.583534,-3.3480425
+ 3298: -68.271034,-6.7699175
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: o
decals:
- 4283: -68.583534,-7.0511675
+ 3297: -68.583534,-7.0511675
- node:
angle: 0.3490658503988659 rad
color: '#9F0000FF'
id: o
decals:
- 4278: -75.271034,-3.1605425
+ 3292: -75.271034,-3.1605425
- node:
cleanable: True
angle: 0.15707963267948966 rad
color: '#B60000FF'
id: radiation
decals:
- 19: 53.149216,50.96145
+ 14: 53.149216,50.96145
- node:
cleanable: True
angle: 0.5061454830783556 rad
color: '#B60000FF'
id: radiation
decals:
- 18: 52.75859,50.414574
+ 13: 52.75859,50.414574
- node:
angle: -0.2617993877991494 rad
color: '#840400FF'
id: rune1
decals:
- 4296: -73.083725,-5.0936604
- 4298: -75.864975,-7.1874104
- 4299: -67.583725,-6.4686604
+ 3310: -73.083725,-5.0936604
+ 3312: -75.864975,-7.1874104
+ 3313: -67.583725,-6.4686604
- node:
angle: -0.2617993877991494 rad
color: '#840400FF'
id: rune4
decals:
- 4294: -76.833725,-6.2342854
- 4295: -72.958725,-6.0936604
+ 3308: -76.833725,-6.2342854
+ 3309: -72.958725,-6.0936604
- node:
angle: -0.2617993877991494 rad
color: '#840400FF'
id: rune6
decals:
- 4293: -76.8181,-5.0936604
- 4297: -74.177475,-7.1717854
+ 3307: -76.8181,-5.0936604
+ 3311: -74.177475,-7.1717854
- node:
cleanable: True
angle: -0.15707963267948966 rad
color: '#B60000FF'
id: shotgun
decals:
- 22: 52.85234,47.164574
+ 17: 52.85234,47.164574
- node:
cleanable: True
angle: -0.15707963267948966 rad
color: '#B60000FF'
id: skull
decals:
- 20: 55.94609,51.1177
- 21: 52.711716,46.6802
+ 15: 55.94609,51.1177
+ 16: 52.711716,46.6802
- node:
cleanable: True
color: '#5D0000FF'
id: splatter
decals:
- 6434: -17.416376,-1.2267087
- 6435: -17.072626,-1.4142087
- 6436: -27.439606,-2.1095212
- 6440: -27.556793,-2.0548337
+ 4588: -17.416376,-1.2267087
+ 4589: -17.072626,-1.4142087
- node:
cleanable: True
color: '#7A0000FF'
id: splatter
decals:
- 6431: -27.692415,-2.2579587
- 6432: -17.260126,-1.3907712
- 6433: -17.650751,-1.3907712
+ 4586: -17.260126,-1.3907712
+ 4587: -17.650751,-1.3907712
- node:
cleanable: True
- color: '#7E0000FF'
+ color: '#7C1719FF'
id: splatter
decals:
- 6437: -27.728668,-1.7657712
- 6438: -27.259918,-1.6251462
- 6439: -27.556793,-2.5079587
- - node:
- cleanable: True
- color: '#820000FF'
- id: splatter
- decals:
- 6441: -26.81977,-1.9907563
- 6442: -26.780708,-2.6313813
- 6443: -28.10102,-2.5220063
+ 4790: 75.44107,83.09567
+ 4791: 78.12857,85.478485
+ 4792: 78.66763,85.37692
+ 4793: 81.664444,83.50258
+ 4794: 81.81288,83.87758
+ 4795: 82.08632,83.68227
+ 4796: 81.40663,83.67445
+ 4797: 82.52382,83.54164
+ 4798: 82.62538,83.77602
+ 4799: 79.74257,85.41664
+ 4800: 80.226944,85.60414
+ 4801: 79.70351,83.58852
- node:
cleanable: True
color: '#930000FF'
id: splatter
decals:
- 6421: -27.535955,-1.9923337
- 6422: -27.231268,-2.4376462
- 6423: -26.36408,-1.7032712
- 6424: -17.797201,-1.5470212
- 6425: -17.469076,-1.2892087
- 6426: -16.719076,-1.6485837
- 6427: -17.500326,-2.7657712
- 6428: -17.187826,-1.6407712
- 6429: -17.500326,-1.8204587
- 6430: -27.098665,-2.0313962
+ 4580: -17.797201,-1.5470212
+ 4581: -17.469076,-1.2892087
+ 4582: -16.719076,-1.6485837
+ 4583: -17.500326,-2.7657712
+ 4584: -17.187826,-1.6407712
+ 4585: -17.500326,-1.8204587
- node:
angle: -0.2617993877991494 rad
color: '#9F0000FF'
id: splatter
decals:
- 4286: -73.506905,-3.9139376
- 4287: -73.444405,-4.2108126
- 4288: -76.506905,-4.1014376
- 4289: -73.30378,-4.6326876
- 4290: -72.77253,-4.2733126
- 4291: -72.444405,-3.6326876
- 4292: -73.538155,-7.6326876
+ 3300: -73.506905,-3.9139376
+ 3301: -73.444405,-4.2108126
+ 3302: -76.506905,-4.1014376
+ 3303: -73.30378,-4.6326876
+ 3304: -72.77253,-4.2733126
+ 3305: -72.444405,-3.6326876
+ 3306: -73.538155,-7.6326876
- node:
color: '#9F0000FF'
id: splatter
decals:
- 4258: -75.44553,-4.785898
- 4259: -75.10178,-4.551523
- 4260: -74.49241,-5.379648
- 4261: -70.36741,-5.629648
- 4262: -69.86741,-5.395273
- 4263: -69.92991,-5.926523
- 4264: -70.32053,-7.364023
- 4265: -68.13303,-7.707773
- 4266: -74.97678,-7.567148
- 4267: -77.25803,-7.270273
- 4268: -76.85178,-7.598398
- 4269: -77.69553,-4.973398
- 4270: -77.50803,-2.3483982
- 4271: -77.16428,-2.5671482
- 4272: -72.47678,-4.723398
+ 3272: -75.44553,-4.785898
+ 3273: -75.10178,-4.551523
+ 3274: -74.49241,-5.379648
+ 3275: -70.36741,-5.629648
+ 3276: -69.86741,-5.395273
+ 3277: -69.92991,-5.926523
+ 3278: -70.32053,-7.364023
+ 3279: -68.13303,-7.707773
+ 3280: -74.97678,-7.567148
+ 3281: -77.25803,-7.270273
+ 3282: -76.85178,-7.598398
+ 3283: -77.69553,-4.973398
+ 3284: -77.50803,-2.3483982
+ 3285: -77.16428,-2.5671482
+ 3286: -72.47678,-4.723398
+ - node:
+ cleanable: True
+ color: '#A51719FF'
+ id: splatter
+ decals:
+ 4802: 79.90663,83.69789
+ 4803: 81.758194,84.09633
+ 4804: 79.68788,85.7682
+ 4805: 82.414444,83.47133
+ 4806: 81.96913,83.16664
+ 4807: 82.539444,84.12758
+ - node:
+ cleanable: True
+ color: '#A91719FF'
+ id: splatter
+ decals:
+ 4785: 77.800446,85.4863
+ 4786: 78.25357,85.21286
+ 4787: 78.56607,85.61911
+ 4788: 75.52701,83.43942
+ 4789: 75.66763,83.09567
- node:
cleanable: True
angle: -0.15707963267948966 rad
color: '#B60000FF'
id: splatter
decals:
- 23: 59.03984,56.71145
- 24: 58.57109,56.477074
- 25: 59.336716,56.4927
- 26: 58.961716,56.289574
- 27: 53.35234,51.352074
- 28: 52.94609,51.52395
- 29: 53.524216,50.77395
- 30: 51.524216,49.6177
- 31: 51.774216,49.227074
- 32: 51.461716,49.227074
- 33: 51.555466,48.914574
- 34: 54.35234,48.3052
- 35: 54.242966,48.570824
- 36: 54.430466,48.58645
- 37: 55.305466,49.570824
- 38: 55.69609,49.64895
- 39: 55.524216,50.070824
- 40: 61.492966,51.7427
- 41: 61.555466,52.14895
- 42: 61.899216,51.570824
- 43: 61.07109,51.820824
- 44: 61.13359,51.52395
- 45: 62.10234,54.258324
- 46: 62.28984,54.14895
- 47: 61.88359,54.258324
- 48: 59.50859,56.83645
- 49: 56.78984,57.3677
- 50: 56.617966,57.08645
- 51: 60.492966,56.4302
- 52: 55.88359,53.0552
- 53: 56.274216,52.77395
- 54: 55.75859,52.6802
- 55: 58.774216,51.258324
- 56: 58.72734,50.8677
- 57: 59.41484,50.820824
- 58: 58.336716,54.9927
- 59: 57.85234,54.758324
- 60: 54.149216,51.539574
- 61: 54.53984,51.289574
- 62: 54.22734,50.8052
- 63: 54.867966,51.914574
- 64: 54.520893,54.338776
- 65: 54.94277,54.51065
- 66: 54.72402,54.26065
- 67: 54.75527,53.82315
+ 18: 59.03984,56.71145
+ 19: 58.57109,56.477074
+ 20: 59.336716,56.4927
+ 21: 58.961716,56.289574
+ 22: 53.35234,51.352074
+ 23: 52.94609,51.52395
+ 24: 53.524216,50.77395
+ 25: 51.524216,49.6177
+ 26: 51.774216,49.227074
+ 27: 51.461716,49.227074
+ 28: 51.555466,48.914574
+ 29: 54.35234,48.3052
+ 30: 54.242966,48.570824
+ 31: 54.430466,48.58645
+ 32: 55.305466,49.570824
+ 33: 55.69609,49.64895
+ 34: 55.524216,50.070824
+ 35: 61.492966,51.7427
+ 36: 61.555466,52.14895
+ 37: 61.899216,51.570824
+ 38: 61.07109,51.820824
+ 39: 61.13359,51.52395
+ 40: 62.10234,54.258324
+ 41: 62.28984,54.14895
+ 42: 61.88359,54.258324
+ 43: 59.50859,56.83645
+ 44: 56.78984,57.3677
+ 45: 56.617966,57.08645
+ 46: 60.492966,56.4302
+ 47: 55.88359,53.0552
+ 48: 56.274216,52.77395
+ 49: 55.75859,52.6802
+ 50: 58.774216,51.258324
+ 51: 58.72734,50.8677
+ 52: 59.41484,50.820824
+ 53: 58.336716,54.9927
+ 54: 57.85234,54.758324
+ 55: 54.149216,51.539574
+ 56: 54.53984,51.289574
+ 57: 54.22734,50.8052
+ 58: 54.867966,51.914574
+ 59: 54.520893,54.338776
+ 60: 54.94277,54.51065
+ 61: 54.72402,54.26065
+ 62: 54.75527,53.82315
+ - node:
+ color: '#FFFFFFFF'
+ id: w
+ decals:
+ 5461: 82,34
- type: RadiationGridResistance
- type: GridAtmosphere
version: 2
@@ -8666,8 +10259,7 @@ entities:
0,2:
0: 65535
1,0:
- 0: 65531
- 1: 4
+ 0: 65535
1,1:
0: 65535
1,2:
@@ -8919,9 +10511,9 @@ entities:
10,0:
0: 39931
10,1:
- 0: 39833
+ 0: 64411
10,2:
- 0: 64443
+ 0: 65535
10,3:
0: 65535
11,0:
@@ -9149,15 +10741,15 @@ entities:
-12,3:
0: 65535
-11,0:
- 0: 32691
+ 0: 65535
-11,1:
- 0: 62259
+ 0: 65535
-11,2:
0: 65535
-11,3:
0: 65535
-9,0:
- 0: 65518
+ 0: 65535
-9,1:
0: 65535
-9,2:
@@ -9177,9 +10769,9 @@ entities:
-11,-3:
0: 65535
-11,-2:
- 0: 13111
+ 0: 13247
-11,-1:
- 0: 13107
+ 0: 45875
-10,-4:
0: 65535
-9,-4:
@@ -9623,7 +11215,7 @@ entities:
1,-9:
0: 65535
2,-12:
- 0: 62208
+ 0: 64256
2,-11:
0: 65535
2,-10:
@@ -9631,7 +11223,7 @@ entities:
2,-9:
0: 65535
3,-12:
- 0: 61440
+ 0: 61696
3,-11:
0: 65535
3,-10:
@@ -9703,7 +11295,7 @@ entities:
-5,-9:
0: 65535
-4,-12:
- 0: 63479
+ 0: 65527
-4,-11:
0: 65535
-4,-10:
@@ -9711,7 +11303,7 @@ entities:
-4,-9:
0: 65535
-3,-12:
- 0: 61664
+ 0: 65520
-3,-11:
0: 65535
-3,-10:
@@ -9719,7 +11311,7 @@ entities:
-3,-9:
0: 65535
-2,-12:
- 0: 64785
+ 0: 65393
-2,-11:
0: 65535
-2,-10:
@@ -9775,7 +11367,7 @@ entities:
8,-9:
0: 65535
9,-12:
- 0: 63626
+ 0: 64650
9,-11:
0: 65535
9,-10:
@@ -10191,7 +11783,7 @@ entities:
19,-7:
0: 30583
19,-6:
- 0: 65527
+ 0: 65535
19,-5:
0: 65535
20,8:
@@ -10209,26 +11801,25 @@ entities:
20,7:
0: 65535
20,0:
- 0: 32759
+ 0: 32767
20,1:
0: 65535
20,2:
- 0: 40413
+ 0: 40415
20,3:
- 0: 37273
+ 0: 39321
20,-4:
- 0: 4915
+ 0: 65535
20,-3:
- 0: 65521
- 2: 8
+ 0: 65535
20,-2:
0: 14143
20,-1:
0: 63359
20,-6:
- 0: 4383
+ 0: 65535
20,-5:
- 0: 13105
+ 0: 65535
16,-10:
0: 63503
16,-9:
@@ -10258,9 +11849,9 @@ entities:
-11,-13:
0: 61440
-10,-13:
- 0: 61440
+ 0: 61448
-9,-13:
- 0: 61440
+ 0: 63359
-15,-12:
0: 65535
-15,-11:
@@ -10332,7 +11923,7 @@ entities:
8,12:
0: 65535
8,13:
- 0: 35039
+ 0: 65535
9,12:
0: 65535
9,13:
@@ -10362,17 +11953,17 @@ entities:
7,13:
0: 65535
-10,0:
- 0: 65312
+ 0: 65535
-10,2:
0: 65535
-10,3:
0: 65535
-10,-3:
- 0: 61439
+ 0: 65535
-10,-1:
- 0: 232
+ 0: 64744
-10,-2:
- 0: 12
+ 0: 1279
-16,4:
0: 65535
-16,5:
@@ -10417,19 +12008,19 @@ entities:
0: 65535
-16,-3:
0: 4607
- 3: 60928
+ 1: 60928
-16,-2:
0: 65297
- 3: 238
+ 1: 238
-16,-1:
0: 65535
-15,-4:
0: 65535
-15,-3:
0: 35071
- 3: 30464
+ 1: 30464
-15,-2:
- 3: 119
+ 1: 119
0: 65416
-15,-1:
0: 65535
@@ -10482,7 +12073,7 @@ entities:
-17,9:
0: 65535
-19,4:
- 0: 61166
+ 0: 65535
-18,4:
0: 65535
-17,4:
@@ -10604,7 +12195,7 @@ entities:
-16,-10:
0: 64655
8,14:
- 0: 34952
+ 0: 65535
8,15:
0: 136
9,14:
@@ -10664,7 +12255,7 @@ entities:
21,12:
0: 65535
22,12:
- 0: 16383
+ 0: 65535
21,7:
0: 65535
15,14:
@@ -10710,7 +12301,7 @@ entities:
21,-1:
0: 47247
21,0:
- 0: 16377
+ 0: 16383
-7,-14:
0: 58368
-6,-14:
@@ -10720,7 +12311,7 @@ entities:
-20,5:
0: 65535
-20,6:
- 0: 30719
+ 0: 32767
-20,7:
0: 4919
-20,1:
@@ -10734,7 +12325,7 @@ entities:
-24,2:
0: 65535
-24,3:
- 0: 64991
+ 0: 65503
-23,1:
0: 65535
-23,2:
@@ -10822,9 +12413,9 @@ entities:
-27,3:
0: 36607
-27,0:
- 0: 65152
+ 0: 65160
-26,0:
- 0: 65532
+ 0: 65535
-26,1:
0: 65535
-26,2:
@@ -10844,7 +12435,7 @@ entities:
-32,2:
0: 2184
-31,1:
- 0: 65521
+ 0: 65529
-31,2:
0: 65535
-30,1:
@@ -10852,7 +12443,7 @@ entities:
-30,2:
0: 65535
-30,0:
- 0: 57309
+ 0: 57311
-30,3:
0: 57309
-29,0:
@@ -10932,19 +12523,19 @@ entities:
-21,-5:
0: 13119
-28,8:
- 0: 61713
+ 0: 65425
-28,9:
0: 65535
-27,8:
- 0: 61440
+ 0: 63347
-27,9:
0: 65535
-26,8:
- 0: 61440
+ 0: 63044
-26,9:
0: 65535
-25,8:
- 0: 61440
+ 0: 61713
-25,9:
0: 65535
-28,4:
@@ -10958,7 +12549,7 @@ entities:
-30,4:
0: 63997
-30,5:
- 0: 6425
+ 0: 39321
-29,4:
0: 65535
-29,5:
@@ -10998,7 +12589,7 @@ entities:
-18,10:
0: 12544
-18,11:
- 0: 13107
+ 0: 49147
-17,10:
0: 65535
-17,11:
@@ -11006,9 +12597,9 @@ entities:
-19,5:
0: 65535
-19,6:
- 0: 61183
+ 0: 65279
-19,7:
- 0: 61166
+ 0: 61167
-18,5:
0: 65535
-18,6:
@@ -11016,7 +12607,7 @@ entities:
-18,7:
0: 65535
-23,10:
- 0: 10
+ 0: 4362
-22,10:
0: 24719
-22,11:
@@ -11049,35 +12640,36 @@ entities:
0: 65535
-13,12:
0: 48059
- 2: 17476
+ 3: 17476
-13,13:
0: 65535
-13,14:
0: 65471
-12,12:
- 2: 21845
+ 4: 4369
+ 2: 17476
0: 43690
-12,13:
0: 65535
-12,14:
0: 65535
-11,12:
- 2: 21845
+ 2: 4369
+ 5: 17476
0: 43690
-11,13:
0: 65487
-11,14:
0: 65535
-10,12:
- 2: 21845
- 0: 43690
+ 2: 4369
+ 0: 61166
-10,13:
0: 65535
-10,14:
0: 65535
-9,12:
- 2: 4369
- 0: 61166
+ 0: 65535
-9,13:
0: 65535
-9,14:
@@ -11123,11 +12715,11 @@ entities:
-22,12:
0: 65319
-22,13:
- 0: 65327
+ 0: 65343
-22,14:
- 0: 62575
+ 0: 63359
-21,12:
- 0: 65358
+ 0: 65518
-21,13:
0: 65231
-21,14:
@@ -11169,7 +12761,7 @@ entities:
-21,-10:
0: 20223
-20,4:
- 0: 4096
+ 0: 65535
-24,0:
0: 65535
-24,4:
@@ -11195,7 +12787,7 @@ entities:
-27,-4:
0: 60416
-27,-1:
- 0: 3310
+ 0: 36078
-26,-4:
0: 65520
-26,-3:
@@ -11219,7 +12811,7 @@ entities:
-27,4:
0: 60416
-27,7:
- 0: 3310
+ 0: 44783
-26,4:
0: 65532
-26,5:
@@ -11285,29 +12877,27 @@ entities:
21,-13:
0: 4096
21,-3:
- 0: 61680
- 2: 3
+ 0: 65535
21,-2:
- 0: 34952
+ 0: 34959
22,-2:
- 0: 496
- 2: 32768
+ 0: 65535
22,-1:
0: 4111
21,1:
- 0: 30583
+ 0: 65527
21,2:
- 0: 65407
+ 0: 65535
21,3:
0: 65535
22,0:
- 0: 4368
+ 0: 39327
22,1:
- 0: 23825
+ 0: 65497
22,2:
- 0: 56693
+ 0: 65535
22,3:
- 0: 65516
+ 0: 65535
21,6:
0: 65535
21,4:
@@ -11319,7 +12909,7 @@ entities:
22,6:
0: 65535
22,5:
- 0: 65071
+ 0: 65535
0,14:
0: 65535
0,15:
@@ -11333,7 +12923,7 @@ entities:
3,14:
0: 65535
3,15:
- 0: 61919
+ 0: 64511
-4,14:
0: 65535
-4,15:
@@ -11359,11 +12949,11 @@ entities:
5,15:
0: 32879
6,14:
- 0: 16383
+ 0: 65535
6,15:
- 0: 55297
+ 0: 55535
7,14:
- 0: 25463
+ 0: 32767
-8,15:
0: 65535
-7,15:
@@ -11397,7 +12987,7 @@ entities:
-1,16:
0: 65535
-10,1:
- 0: 65262
+ 0: 65535
-9,15:
0: 65535
0,17:
@@ -11417,9 +13007,9 @@ entities:
-4,17:
0: 65535
-4,18:
- 0: 64751
+ 0: 64767
-4,19:
- 0: 52428
+ 0: 65484
-3,17:
0: 65535
-3,18:
@@ -11459,59 +13049,59 @@ entities:
-9,17:
0: 65535
-20,3:
- 0: 1
+ 0: 65535
-24,10:
- 0: 15
+ 0: 65535
-24,11:
- 0: 65280
+ 0: 65535
-28,10:
0: 65535
-28,11:
- 0: 61695
+ 0: 65535
-27,10:
0: 65535
-27,11:
- 0: 61183
+ 0: 65535
-26,10:
- 0: 62463
+ 0: 65535
-26,11:
0: 65535
-25,10:
- 0: 28703
+ 0: 65535
-25,11:
- 0: 65399
+ 0: 65535
-30,7:
0: 56825
-30,6:
- 0: 39345
+ 0: 63935
-32,8:
0: 502
-32,10:
0: 28262
-32,11:
- 0: 17526
+ 0: 52478
-32,9:
0: 17600
-31,8:
- 0: 4596
+ 0: 39420
-31,9:
- 0: 3825
+ 0: 61177
-31,10:
- 0: 61408
+ 0: 65535
-31,11:
- 0: 61166
+ 0: 65535
-30,8:
- 0: 52479
+ 0: 60671
-30,9:
- 0: 52476
+ 0: 65535
-30,10:
0: 65535
-30,11:
- 0: 46079
+ 0: 65535
-29,10:
0: 65535
-29,11:
- 0: 63743
+ 0: 65535
-10,15:
0: 65535
-24,12:
@@ -11519,29 +13109,29 @@ entities:
-24,13:
0: 65535
-24,14:
- 0: 255
+ 0: 65535
-23,12:
- 0: 65328
+ 0: 65399
-23,13:
- 0: 51231
+ 0: 65535
-10,16:
0: 65535
-28,12:
- 0: 63880
+ 0: 65535
-28,13:
- 0: 64649
+ 0: 65535
-28,14:
- 0: 65529
+ 0: 65535
-28,15:
- 0: 255
+ 0: 65535
-27,12:
- 0: 65262
+ 0: 65535
-27,14:
0: 65535
-27,15:
- 0: 35071
+ 0: 65535
-27,13:
- 0: 61166
+ 0: 65535
-26,12:
0: 65535
-26,13:
@@ -11549,7 +13139,7 @@ entities:
-26,14:
0: 65535
-26,15:
- 0: 61875
+ 0: 65535
-25,12:
0: 65535
-25,13:
@@ -11557,39 +13147,39 @@ entities:
-25,14:
0: 65535
-25,15:
- 0: 4927
+ 0: 65535
-32,13:
- 0: 65382
+ 0: 65535
-32,12:
- 0: 26180
+ 0: 61420
-32,14:
- 0: 26214
+ 0: 26222
-32,15:
0: 60486
-31,13:
0: 65535
-31,14:
- 0: 61167
+ 0: 61183
-31,12:
- 0: 61166
+ 0: 65535
-31,15:
0: 59118
-30,12:
- 0: 64443
+ 0: 65535
-30,13:
- 0: 48059
+ 0: 65535
-30,14:
- 0: 65523
+ 0: 65535
-30,15:
- 0: 255
+ 0: 36095
-29,12:
- 0: 64648
+ 0: 65535
-29,13:
- 0: 63628
+ 0: 65535
-29,14:
- 0: 65528
+ 0: 65535
-29,15:
- 0: 20479
+ 0: 65535
-32,16:
0: 12
-32,17:
@@ -11623,9 +13213,9 @@ entities:
-25,17:
0: 4539
-33,12:
- 0: 17476
+ 0: 19524
-33,13:
- 0: 60484
+ 0: 60612
-33,14:
0: 17476
-33,15:
@@ -11667,7 +13257,7 @@ entities:
2,15:
0: 65535
7,15:
- 0: 29558
+ 0: 29559
16,15:
0: 65535
16,14:
@@ -11677,15 +13267,15 @@ entities:
-32,3:
0: 34952
-31,0:
- 0: 4369
+ 0: 56797
-31,3:
- 0: 39321
+ 0: 39325
-31,-1:
- 0: 65152
+ 0: 65228
-30,-1:
0: 65433
-31,4:
- 0: 1279
+ 0: 36095
1,17:
0: 65535
2,16:
@@ -11713,9 +13303,9 @@ entities:
-6,19:
0: 32431
-5,19:
- 0: 4966
+ 0: 64358
-5,18:
- 0: 63355
+ 0: 63359
-3,20:
0: 2254
-2,20:
@@ -11729,7 +13319,7 @@ entities:
2,20:
0: 4095
3,20:
- 0: 3
+ 0: 11
4,16:
0: 4095
4,18:
@@ -11745,15 +13335,15 @@ entities:
12,16:
0: 8
-9,19:
- 0: 3793
+ 0: 3825
-9,18:
- 0: 65278
+ 0: 65535
-8,20:
0: 79
-7,20:
- 0: 69
+ 0: 255
-6,20:
- 0: 3
+ 0: 31
23,9:
0: 65535
23,10:
@@ -11771,11 +13361,11 @@ entities:
21,15:
0: 65535
22,13:
- 0: 65527
+ 0: 65535
22,14:
- 0: 5119
+ 0: 65535
23,13:
- 0: 52684
+ 0: 65535
-16,-12:
0: 8178
23,8:
@@ -11785,15 +13375,15 @@ entities:
17,15:
0: 65535
23,3:
- 0: 12544
+ 0: 65535
23,12:
0: 65535
22,7:
0: 65535
23,4:
- 0: 4403
+ 0: 65535
23,5:
- 0: 63233
+ 0: 65535
23,6:
0: 65535
23,7:
@@ -11809,53 +13399,53 @@ entities:
24,10:
0: 65535
25,11:
- 0: 13951
+ 0: 65535
25,8:
- 0: 22359
+ 0: 65535
25,9:
- 0: 24447
+ 0: 65535
25,10:
- 0: 56663
+ 0: 65535
24,12:
- 0: 62937
+ 0: 65535
24,13:
- 0: 32597
+ 0: 65535
24,14:
- 0: 30583
+ 0: 65535
24,15:
- 0: 26197
+ 0: 65535
25,12:
- 0: 34817
+ 0: 65535
24,6:
0: 65535
24,7:
0: 65535
25,7:
- 0: 62259
+ 0: 65535
24,16:
- 0: 5495
+ 0: 65535
24,17:
- 0: 4369
+ 0: 65535
20,16:
0: 65535
20,17:
- 0: 61183
+ 0: 65535
21,16:
0: 65535
22,16:
- 0: 63351
+ 0: 65535
23,16:
- 0: 30408
+ 0: 65535
17,16:
0: 65535
18,16:
0: 65535
18,17:
- 0: 255
+ 0: 65535
19,16:
0: 65535
19,17:
- 0: 255
+ 0: 65535
-12,16:
0: 65535
-12,17:
@@ -11867,11 +13457,11 @@ entities:
-11,17:
0: 65535
-11,18:
- 0: 2300
+ 0: 36092
-10,17:
0: 65535
-10,18:
- 0: 4081
+ 0: 4095
-13,17:
0: 57309
-13,16:
@@ -11887,11 +13477,11 @@ entities:
19,15:
0: 65535
22,15:
- 0: 65520
+ 0: 65535
23,15:
- 0: 65534
+ 0: 65535
23,14:
- 0: 60620
+ 0: 65535
-17,14:
0: 65535
-17,15:
@@ -11909,25 +13499,25 @@ entities:
15,17:
0: 65535
24,11:
- 0: 6143
+ 0: 65535
24,5:
- 0: 61440
+ 0: 65535
25,6:
- 0: 13081
+ 0: 65535
20,18:
- 0: 17646
+ 0: 65535
21,17:
- 0: 13311
+ 0: 65535
21,18:
- 0: 51
+ 0: 65535
22,17:
- 0: 119
+ 0: 65535
16,16:
0: 65535
16,17:
0: 65535
17,17:
- 0: 13311
+ 0: 65535
-16,16:
0: 47
-15,16:
@@ -11939,7 +13529,7 @@ entities:
-14,18:
0: 15
-24,16:
- 0: 40947
+ 0: 40959
-23,16:
0: 15304
-23,17:
@@ -11969,11 +13559,11 @@ entities:
-19,15:
0: 255
-23,15:
- 0: 140
+ 0: 16383
-23,14:
- 0: 32776
+ 0: 65535
-22,15:
- 0: 255
+ 0: 511
-21,15:
0: 52447
-20,-6:
@@ -12241,21 +13831,17 @@ entities:
-16,-11:
0: 57344
22,-3:
- 0: 240
- 2: 512
+ 0: 65535
23,-3:
- 0: 4368
- 2: 8192
+ 0: 65535
23,-2:
- 0: 7967
+ 0: 65535
23,-1:
- 0: 61713
+ 0: 61725
23,0:
- 0: 6417
- 2: 8738
+ 0: 15295
23,1:
- 0: 3857
- 2: 32832
+ 0: 65393
20,-7:
0: 4972
20,-8:
@@ -12263,7 +13849,7 @@ entities:
21,-7:
0: 9807
21,-6:
- 0: 3
+ 0: 65535
21,-8:
0: 52420
-19,-16:
@@ -12283,15 +13869,15 @@ entities:
-31,-8:
0: 2048
-31,-7:
- 0: 34824
+ 0: 43528
-30,-8:
- 0: 4383
+ 0: 13087
-30,-7:
- 0: 4895
+ 0: 22399
-30,-6:
- 0: 40721
+ 0: 40925
-30,-5:
- 0: 4369
+ 0: 39321
-29,-8:
0: 575
-29,-7:
@@ -12315,13 +13901,13 @@ entities:
-18,-18:
0: 68
-31,-4:
- 0: 128
+ 0: 34952
-30,-4:
- 0: 13107
+ 0: 64443
-30,-3:
- 0: 7953
+ 0: 57241
-30,-2:
- 0: 4895
+ 0: 39871
-28,-8:
0: 15
-28,-7:
@@ -12363,7 +13949,7 @@ entities:
5,18:
0: 62434
5,19:
- 0: 37170
+ 0: 37246
5,17:
0: 9796
6,17:
@@ -12371,7 +13957,7 @@ entities:
6,18:
0: 63014
6,19:
- 0: 4966
+ 0: 4975
7,17:
0: 36642
12,17:
@@ -12379,89 +13965,89 @@ entities:
12,18:
0: 58146
12,19:
- 0: 49164
+ 0: 49404
13,18:
- 0: 39185
+ 0: 39313
13,19:
- 0: 4111
+ 0: 56575
14,18:
- 0: 32769
+ 0: 65519
14,19:
- 0: 4127
+ 0: 65535
15,18:
- 0: 61440
+ 0: 65535
15,19:
- 0: 61455
+ 0: 65535
26,9:
- 0: 18375
+ 0: 30679
26,8:
0: 19532
26,10:
- 0: 52420
+ 0: 65527
26,11:
- 0: 17484
+ 0: 65535
25,13:
- 0: 18252
+ 0: 65535
25,14:
- 0: 61124
+ 0: 65535
25,15:
- 0: 50926
+ 0: 65535
26,12:
- 0: 374
+ 0: 30719
24,4:
- 0: 50786
+ 0: 65535
25,4:
- 0: 36878
+ 0: 65535
25,5:
- 0: 35023
+ 0: 65535
26,4:
- 0: 55089
+ 0: 65535
26,5:
- 0: 55048
+ 0: 65535
26,6:
- 0: 5105
+ 0: 13311
26,7:
0: 63889
27,5:
- 0: 4369
+ 0: 4371
27,6:
0: 13105
27,7:
0: 17
24,18:
- 0: 34969
+ 0: 65535
24,19:
- 0: 29772
+ 0: 65535
25,17:
- 0: 13075
+ 0: 62227
25,18:
- 0: 4883
+ 0: 65535
25,16:
- 0: 8742
+ 0: 8759
20,19:
- 0: 26356
+ 0: 65535
21,19:
- 0: 4592
+ 0: 65535
22,19:
- 0: 753
+ 0: 65535
23,19:
- 0: 372
+ 0: 65535
23,18:
- 0: 51328
+ 0: 65535
23,17:
- 0: 34816
+ 0: 65535
16,19:
- 0: 62943
+ 0: 65535
17,18:
- 0: 45056
+ 0: 65535
17,19:
- 0: 4111
+ 0: 65535
18,18:
- 0: 4096
+ 0: 65535
18,19:
- 0: 8751
+ 0: 65535
19,19:
- 0: 241
+ 0: 65535
-16,17:
0: 62720
-16,18:
@@ -12477,7 +14063,7 @@ entities:
-14,19:
0: 3312
-13,19:
- 0: 24567
+ 0: 57335
-24,17:
0: 36057
-24,19:
@@ -12515,7 +14101,7 @@ entities:
-27,-12:
0: 25676
-27,-11:
- 0: 61158
+ 0: 61414
-27,-10:
0: 17478
-26,-11:
@@ -12587,20 +14173,17 @@ entities:
9,-14:
0: 63628
9,-13:
- 0: 61448
- 2: 128
+ 0: 62600
9,-16:
- 0: 50244
+ 0: 52420
9,-15:
0: 17484
10,-14:
0: 35208
10,-13:
- 0: 63624
- 2: 272
+ 0: 63896
10,-16:
- 0: 52424
- 2: 12288
+ 0: 64712
10,-15:
0: 34956
11,-14:
@@ -12618,8 +14201,7 @@ entities:
18,-14:
0: 26342
9,-17:
- 0: 25668
- 2: 32768
+ 0: 58436
9,-18:
0: 17608
9,-20:
@@ -12633,8 +14215,7 @@ entities:
10,-18:
0: 34952
10,-17:
- 0: 34952
- 2: 28672
+ 0: 63624
11,-20:
0: 305
11,-17:
@@ -12680,11 +14261,9 @@ entities:
12,-23:
0: 3968
13,-24:
- 0: 248
- 2: 43520
+ 0: 43768
13,-23:
- 0: 61424
- 2: 10
+ 0: 61434
13,-22:
0: 4
14,-24:
@@ -12692,11 +14271,9 @@ entities:
14,-23:
0: 40848
15,-24:
- 0: 3632
- 2: 16384
+ 0: 20016
15,-23:
- 0: 8048
- 2: 4
+ 0: 8052
16,-24:
0: 3952
16,-23:
@@ -12724,11 +14301,11 @@ entities:
-32,4:
0: 140
-31,6:
- 0: 34952
+ 0: 35016
-31,7:
- 0: 136
+ 0: 52424
-30,-9:
- 0: 45056
+ 0: 45331
-29,-9:
0: 61440
-25,22:
@@ -12828,8 +14405,7 @@ entities:
10,-24:
0: 11776
10,-22:
- 0: 34952
- 2: 28672
+ 0: 63624
11,-24:
0: 1984
11,-23:
@@ -12843,22 +14419,21 @@ entities:
22,-9:
0: 17
24,0:
- 0: 62225
+ 0: 62431
24,1:
- 0: 18261
- 2: 12288
+ 0: 65525
24,2:
- 0: 27716
+ 0: 65535
24,3:
- 0: 8750
+ 0: 65535
25,0:
- 0: 12288
+ 0: 12607
25,1:
- 0: 34959
+ 0: 65439
25,3:
- 0: 17479
+ 0: 65535
25,2:
- 0: 17640
+ 0: 65535
8,16:
0: 53024
8,17:
@@ -12878,47 +14453,47 @@ entities:
11,18:
0: 16163
11,19:
- 0: 50274
+ 0: 50418
4,20:
- 0: 12
+ 0: 15
5,20:
- 0: 125
+ 0: 253
6,20:
- 0: 561
+ 0: 753
11,20:
- 0: 8
+ 0: 249
12,20:
0: 159
13,20:
- 0: 15
+ 0: 61135
14,20:
- 0: 239
+ 0: 65535
15,20:
- 0: 31
+ 0: 65535
16,20:
- 0: 15
+ 0: 65535
17,20:
- 0: 15
+ 0: 65535
18,20:
- 0: 251
+ 0: 65535
19,20:
- 0: 247
+ 0: 65535
20,20:
- 0: 2550
+ 0: 65535
21,20:
- 0: 2033
+ 0: 65535
22,20:
- 0: 2815
+ 0: 4095
23,20:
- 0: 243
+ 0: 60671
24,20:
- 0: 19
+ 0: 65331
24,-3:
- 0: 4096
+ 0: 65521
24,-2:
- 0: 8995
+ 0: 65535
24,-1:
- 0: 4402
+ 0: 37171
20,-20:
0: 4369
20,-19:
@@ -12931,6 +14506,256 @@ entities:
0: 13075
20,-21:
0: 4919
+ 23,2:
+ 0: 65535
+ 26,13:
+ 0: 65535
+ 26,14:
+ 0: 13119
+ 27,13:
+ 0: 12560
+ 25,19:
+ 0: 65395
+ 22,18:
+ 0: 65535
+ 16,18:
+ 0: 65535
+ 19,18:
+ 0: 65535
+ 26,2:
+ 0: 65399
+ 26,3:
+ 0: 65535
+ 27,11:
+ 0: 4369
+ 27,4:
+ 0: 13107
+ 26,1:
+ 0: 12288
+ 27,3:
+ 0: 13072
+ 24,21:
+ 0: 127
+ 25,20:
+ 0: 4207
+ 23,21:
+ 0: 142
+ 13,21:
+ 0: 65534
+ 13,22:
+ 0: 52975
+ 14,21:
+ 0: 65535
+ 14,22:
+ 0: 8191
+ 15,21:
+ 0: 65527
+ 16,21:
+ 0: 40860
+ 26,15:
+ 0: 307
+ 15,22:
+ 0: 55
+ 17,21:
+ 0: 65535
+ 17,22:
+ 0: 36607
+ 18,21:
+ 0: 65535
+ 18,22:
+ 0: 65399
+ 18,23:
+ 0: 6
+ 19,21:
+ 0: 61439
+ 19,22:
+ 0: 206
+ 20,21:
+ 0: 40959
+ 21,21:
+ 0: 4983
+ -13,20:
+ 0: 8
+ -12,20:
+ 0: 15
+ -11,20:
+ 0: 15
+ -10,20:
+ 0: 15
+ -9,20:
+ 0: 15
+ -31,-12:
+ 0: 16384
+ -31,-11:
+ 0: 52428
+ -31,-10:
+ 0: 34952
+ -31,-9:
+ 0: 34816
+ -30,-10:
+ 0: 4368
+ 24,-4:
+ 0: 62334
+ 25,-1:
+ 0: 38913
+ 26,-2:
+ 0: 65535
+ 26,-1:
+ 0: 4383
+ 24,-5:
+ 0: 63094
+ 7,19:
+ 0: 16527
+ 8,19:
+ 0: 31
+ 9,19:
+ 0: 35503
+ 10,19:
+ 0: 231
+ 7,20:
+ 0: 254
+ 8,20:
+ 0: 240
+ 9,20:
+ 0: 250
+ 10,20:
+ 0: 240
+ -5,20:
+ 0: 23
+ 21,-4:
+ 0: 65535
+ 22,-4:
+ 0: 65331
+ 23,-4:
+ 0: 65535
+ 21,-5:
+ 0: 65535
+ 22,-8:
+ 0: 61688
+ 22,-6:
+ 0: 65535
+ 22,-5:
+ 0: 13119
+ 22,-7:
+ 0: 61438
+ 23,-8:
+ 0: 63735
+ 23,-7:
+ 0: 65535
+ 23,-6:
+ 0: 65535
+ 23,-5:
+ 0: 65535
+ 24,-8:
+ 0: 65526
+ 24,-7:
+ 0: 65535
+ 24,-6:
+ 0: 59647
+ 25,-8:
+ 0: 61936
+ 25,-7:
+ 0: 65535
+ 25,-6:
+ 0: 62207
+ 25,-5:
+ 0: 63266
+ 26,-8:
+ 0: 63476
+ 26,-7:
+ 0: 65535
+ 26,-6:
+ 0: 63743
+ 26,-5:
+ 0: 64174
+ 27,-8:
+ 0: 61692
+ 27,-7:
+ 0: 65535
+ 27,-6:
+ 0: 65535
+ 27,-5:
+ 0: 65535
+ 25,-4:
+ 0: 61991
+ 25,-3:
+ 0: 65531
+ 25,-2:
+ 0: 65535
+ 26,-4:
+ 0: 64170
+ 26,-3:
+ 0: 65528
+ 27,-4:
+ 0: 65535
+ 27,-3:
+ 0: 65535
+ 27,-2:
+ 0: 65535
+ 28,-4:
+ 0: 64443
+ 28,-3:
+ 0: 65535
+ 28,-2:
+ 0: 48123
+ 28,-1:
+ 0: 34953
+ 29,-2:
+ 0: 4096
+ 29,-1:
+ 0: 273
+ 28,-8:
+ 0: 47359
+ 28,-7:
+ 0: 48127
+ 28,-6:
+ 0: 64507
+ 28,-5:
+ 0: 48063
+ 29,-8:
+ 0: 256
+ 29,-7:
+ 0: 4352
+ 29,-6:
+ 0: 4097
+ 29,-5:
+ 0: 4368
+ 28,0:
+ 0: 34952
+ 28,1:
+ 0: 136
+ 29,1:
+ 0: 12561
+ 29,2:
+ 0: 35
+ 27,-1:
+ 0: 3
+ -23,11:
+ 0: 29491
+ -31,-2:
+ 0: 52360
+ -31,-3:
+ 0: 34952
+ -24,15:
+ 0: 65535
+ -31,-6:
+ 0: 26215
+ -31,-5:
+ 0: 35020
+ -31,5:
+ 0: 35976
+ -28,-11:
+ 0: 3936
+ -30,-11:
+ 0: 2288
+ -29,-11:
+ 0: 3312
+ -10,-14:
+ 0: 52834
+ -9,-14:
+ 0: 65399
+ -8,-14:
+ 0: 4914
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -12948,10 +14773,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.14975
+ temperature: 235
moles:
- - 20.078888
- - 75.53487
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -12978,10 +14803,12 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ temperature: 293.15
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 6666.982
+ - 0
+ - 0
- 0
- 0
- 0
@@ -12990,6 +14817,34 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- 0
- 0
chunkSize: 4
@@ -13017,82 +14872,22 @@ entities:
parent: 5116
- type: InstantAction
container: 5116
- - uid: 28913
- components:
- - type: Transform
- parent: 15524
- - type: InstantAction
- container: 15524
- - uid: 32473
- components:
- - type: Transform
- parent: 32472
- - type: InstantAction
- container: 32472
- proto: ActionToggleInternals
entities:
- - uid: 1304
- components:
- - type: Transform
- parent: 744
- - type: InstantAction
- container: 744
- - uid: 1779
- components:
- - type: Transform
- parent: 1478
- - type: InstantAction
- container: 1478
- - uid: 6825
- components:
- - type: Transform
- parent: 6829
- - type: InstantAction
- container: 6829
- - uid: 12982
- components:
- - type: Transform
- parent: 10415
- - type: InstantAction
- container: 10415
- - uid: 17999
+ - uid: 20874
components:
- type: Transform
- parent: 6830
+ parent: 9229
- type: InstantAction
- container: 6830
+ container: 9229
- proto: ActionToggleJetpack
entities:
- - uid: 1153
- components:
- - type: Transform
- parent: 744
- - type: InstantAction
- container: 744
- - uid: 1652
- components:
- - type: Transform
- parent: 1478
- - type: InstantAction
- container: 1478
- - uid: 6789
- components:
- - type: Transform
- parent: 6829
- - type: InstantAction
- container: 6829
- - uid: 12246
- components:
- - type: Transform
- parent: 10415
- - type: InstantAction
- container: 10415
- - uid: 15781
+ - uid: 20873
components:
- type: Transform
- parent: 6830
+ parent: 9229
- type: InstantAction
- container: 6830
+ container: 9229
- proto: ActionToggleLight
entities:
- uid: 2568
@@ -13107,12 +14902,6 @@ entities:
parent: 14212
- type: InstantAction
container: 14212
- - uid: 15584
- components:
- - type: Transform
- parent: 15583
- - type: InstantAction
- container: 15583
- uid: 16291
components:
- type: Transform
@@ -13125,8 +14914,45 @@ entities:
parent: 8031
- type: InstantAction
container: 8031
+ - uid: 20807
+ components:
+ - type: Transform
+ parent: 15109
+ - type: InstantAction
+ container: 15109
+ - uid: 36619
+ components:
+ - type: Transform
+ parent: 36618
+ - type: InstantAction
+ container: 36618
- proto: AirAlarm
entities:
+ - uid: 21
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,8.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27333
+ - 33895
+ - 27339
+ - 242
+ - 362
+ - 1347
+ - 1348
+ - 788
+ - 789
+ - 27334
+ - 34963
+ - 34961
+ - 28654
+ - 31773
+ - 28485
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 22
components:
- type: Transform
@@ -13158,17 +14984,10 @@ entities:
- 3568
- 28755
- 28397
- - 11389
- - 23460
- - 28400
- - 28398
- 7529
- 7530
- 7889
- 5062
- - 28399
- - 300
- - 26711
- type: AtmosDevice
joinedGrid: 2
- uid: 398
@@ -13198,13 +15017,33 @@ entities:
- type: DeviceList
devices:
- 28409
- - 26700
- - 11856
- - 6630
+ - 28160
+ - 28158
+ - 26633
- 6628
- 28404
- - 28247
- - 26633
+ - 1090
+ - 6614
+ - 23230
+ - 6754
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 792
+ components:
+ - type: Transform
+ pos: 9.5,-21.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 771
+ - 11975
+ - 36732
+ - 776
+ - 1383
+ - 17962
+ - 4614
+ - 20189
+ - 12060
- type: AtmosDevice
joinedGrid: 2
- uid: 1256
@@ -13220,14 +15059,35 @@ entities:
- 1254
- type: AtmosDevice
joinedGrid: 2
- - uid: 1655
+ - uid: 1320
components:
- type: Transform
- pos: 34.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,-36.5
parent: 2
- type: DeviceList
devices:
- - 28435
+ - 38182
+ - 38180
+ - 38178
+ - 38221
+ - 38183
+ - 38184
+ - 7289
+ - 18
+ - 16553
+ - 1729
+ - 3548
+ - 17737
+ - 28211
+ - 7610
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 34.5,-3.5
+ parent: 2
- type: AtmosDevice
joinedGrid: 2
- uid: 1690
@@ -13238,9 +15098,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 2609
- - 2610
- - 2611
- 4642
- 4212
- 5244
@@ -13249,7 +15106,6 @@ entities:
- 18374
- 18375
- 28487
- - 28595
- 28602
- 28603
- 28588
@@ -13258,12 +15114,16 @@ entities:
- 28591
- 28055
- 27496
- - 27010
- 13000
- 23234
- 23235
- 23236
- 30495
+ - 38842
+ - 19824
+ - 38929
+ - 38927
+ - 38928
- type: AtmosDevice
joinedGrid: 2
- uid: 2285
@@ -13278,25 +15138,63 @@ entities:
- 1253
- type: AtmosDevice
joinedGrid: 2
- - uid: 2995
+ - uid: 2594
components:
- type: Transform
- pos: -6.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,34.5
parent: 2
- type: DeviceList
devices:
- - 28596
- - 16312
- - 16315
- - 16309
- - 16311
- - 28597
- - 28595
- - 28598
- - 28599
- - 28601
- - 25773
- - 24464
+ - 25310
+ - 28518
+ - 25311
+ - 28588
+ - 28487
+ - 28524
+ - 1859
+ - 1860
+ - 1861
+ - 13915
+ - 13914
+ - 16102
+ - 27009
+ - 13002
+ - 2462
+ - 30719
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 3405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,19.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 4548
+ - 4546
+ - 28430
+ - 4631
+ - 10351
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 3525
+ components:
+ - type: Transform
+ pos: 76.5,28.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 4755
+ - 6197
+ - 6094
+ - 4545
+ - 4544
+ - 4546
+ - 10351
+ - 4631
+ - 4548
- type: AtmosDevice
joinedGrid: 2
- uid: 3897
@@ -13311,7 +15209,6 @@ entities:
- 28409
- 28301
- 28302
- - 28403
- 6493
- type: AtmosDevice
joinedGrid: 2
@@ -13327,7 +15224,8 @@ entities:
- 27007
- 3086
- 3092
- - 28372
+ - 1691
+ - 28394
- type: AtmosDevice
joinedGrid: 2
- uid: 4870
@@ -13339,9 +15237,28 @@ entities:
- type: DeviceList
devices:
- 2681
- - 25848
- - 25847
- - 28520
+ - 38832
+ - 38833
+ - 38831
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 6114
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 6192
+ - 4755
+ - 4480
+ - 6094
+ - 6197
+ - 28490
+ - 4546
+ - 28529
+ - 28537
+ - 28513
- type: AtmosDevice
joinedGrid: 2
- uid: 6298
@@ -13357,38 +15274,42 @@ entities:
- 27271
- type: AtmosDevice
joinedGrid: 2
- - uid: 7137
+ - uid: 6715
components:
- type: Transform
- pos: -33.5,-39.5
+ pos: -22.5,-17.5
parent: 2
- type: DeviceList
devices:
- - 26790
- - 6667
- - 26697
- - 26699
- - 31773
+ - 6553
+ - 28258
+ - 6955
+ - 28782
+ - 28783
+ - 6628
+ - 6498
+ - 28408
+ - 28404
+ - 28779
+ - 26695
+ - 26633
+ - 17693
+ - 6614
- type: AtmosDevice
joinedGrid: 2
- - uid: 7404
+ - uid: 7120
components:
- type: Transform
- pos: -19.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-28.5
parent: 2
- type: DeviceList
devices:
- - 28605
- - 28384
- - 28383
- - 28382
- - 15643
- - 3734
- - 17030
- - 9039
- - 28606
- - 25752
- - 23952
+ - 28402
+ - 4456
+ - 20795
+ - 1729
+ - 16553
- type: AtmosDevice
joinedGrid: 2
- uid: 7552
@@ -13402,7 +15323,6 @@ entities:
- 28547
- 28545
- 28546
- - 28587
- 28654
- 28585
- 2006
@@ -13421,6 +15341,22 @@ entities:
- 8664
- type: AtmosDevice
joinedGrid: 2
+ - uid: 9212
+ components:
+ - type: Transform
+ pos: 43.5,-25.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 28433
+ - 28421
+ - 37408
+ - 37411
+ - 37412
+ - 37407
+ - 28434
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 11473
components:
- type: Transform
@@ -13433,24 +15369,36 @@ entities:
- 16497
- type: AtmosDevice
joinedGrid: 2
- - uid: 15565
+ - uid: 12404
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,-30.5
+ pos: -54.5,-26.5
parent: 2
- type: DeviceList
devices:
- - 28367
+ - 3548
+ - 3558
+ - 3550
+ - 28211
+ - 7610
+ - 38182
+ - 38221
- 28368
- - 28369
- - 7235
- - 7225
- - 7190
- - 7192
- - 28371
- - 28111
- - 27253
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 12411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-19.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19948
+ - 28434
+ - 4778
+ - 4814
+ - 5959
- type: AtmosDevice
joinedGrid: 2
- uid: 15850
@@ -13475,20 +15423,6 @@ entities:
- 26032
- type: AtmosDevice
joinedGrid: 2
- - uid: 16607
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,52.5
- parent: 2
- - type: DeviceList
- devices:
- - 18278
- - 16550
- - 16481
- - 16416
- - type: AtmosDevice
- joinedGrid: 2
- uid: 17901
components:
- type: Transform
@@ -13502,20 +15436,20 @@ entities:
- 9552
- 1866
- 1867
- - 25215
- - 25214
- - 25216
+ - 3163
+ - 3605
+ - 3562
- 28609
- 28392
- 27853
- 28378
- 28393
- 28474
- - 28475
- 28617
- 28388
- 27008
- 27497
+ - 583
- type: AtmosDevice
joinedGrid: 2
- uid: 18239
@@ -13527,10 +15461,116 @@ entities:
- type: DeviceList
devices:
- 18278
- - 16550
- 19759
- type: AtmosDevice
joinedGrid: 2
+ - uid: 18513
+ components:
+ - type: Transform
+ pos: 81.5,-10.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 37889
+ - 37891
+ - 37890
+ - 28426
+ - 37892
+ - 37893
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 19822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-27.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19727
+ - 19726
+ - 19725
+ - 28414
+ - 19729
+ - 4814
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 20000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,41.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 28343
+ - 28344
+ - 28346
+ - 9083
+ - 28342
+ - 15267
+ - 15103
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 20237
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 1870
+ - 1871
+ - 1860
+ - 1861
+ - 1859
+ - 1866
+ - 1867
+ - 221
+ - 218
+ - 214
+ - 28392
+ - 28654
+ - 28588
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 21100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,32.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 9082
+ - 9083
+ - 28342
+ - 28343
+ - 28346
+ - 28344
+ - 25186
+ - 23698
+ - 26212
+ - 15376
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 21934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-23.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 7477
+ - 17766
+ - 3409
+ - 4019
+ - 28397
+ - 28396
+ - 28402
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 22045
components:
- type: Transform
@@ -13549,6 +15589,23 @@ entities:
- 26376
- type: AtmosDevice
joinedGrid: 2
+ - uid: 22060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-26.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 25324
+ - 25325
+ - 28402
+ - 27482
+ - 27483
+ - 28755
+ - 28627
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 22065
components:
- type: Transform
@@ -13562,6 +15619,26 @@ entities:
- 4243
- type: AtmosDevice
joinedGrid: 2
+ - uid: 22157
+ components:
+ - type: Transform
+ pos: -8.5,56.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 15721
+ - 4212
+ - 4642
+ - 28604
+ - 28602
+ - 28603
+ - 25886
+ - 25887
+ - 28487
+ - 28383
+ - 28382
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 22291
components:
- type: Transform
@@ -13580,22 +15657,6 @@ entities:
- 28597
- type: AtmosDevice
joinedGrid: 2
- - uid: 22348
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,61.5
- parent: 2
- - type: DeviceList
- devices:
- - 22340
- - 22365
- - 22349
- - 23231
- - 28487
- - 30495
- - type: AtmosDevice
- joinedGrid: 2
- uid: 23688
components:
- type: Transform
@@ -13604,8 +15665,6 @@ entities:
- type: DeviceList
devices:
- 28395
- - 28371
- - 28372
- 5194
- 7190
- 7192
@@ -13639,17 +15698,20 @@ entities:
- 28488
- type: AtmosDevice
joinedGrid: 2
- - uid: 24937
+ - uid: 25098
components:
- type: Transform
- pos: 47.5,-32.5
+ pos: -53.5,38.5
parent: 2
- type: DeviceList
devices:
- - 27696
- - 27697
- - 28424
- - 28423
+ - 28737
+ - 9084
+ - 9081
+ - 6973
+ - 28333
+ - 6966
+ - 25186
- type: AtmosDevice
joinedGrid: 2
- uid: 25103
@@ -13696,20 +15758,6 @@ entities:
- 2458
- type: AtmosDevice
joinedGrid: 2
- - uid: 25120
- components:
- - type: Transform
- pos: -38.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 26248
- - 28377
- - 26249
- - 28393
- - 3758
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25133
components:
- type: Transform
@@ -13739,88 +15787,6 @@ entities:
- 28365
- type: AtmosDevice
joinedGrid: 2
- - uid: 25140
- components:
- - type: Transform
- pos: -45.5,36.5
- parent: 2
- - type: DeviceList
- devices:
- - 9082
- - 9083
- - 28342
- - 28345
- - 28343
- - 28346
- - 28344
- - 25186
- - 23698
- - 10984
- - 26212
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25144
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,41.5
- parent: 2
- - type: DeviceList
- devices:
- - 28343
- - 28345
- - 28344
- - 28346
- - 9083
- - 28342
- - 25777
- - 26084
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25145
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,43.5
- parent: 2
- - type: DeviceList
- devices:
- - 26010
- - 26009
- - 9039
- - 28386
- - 28605
- - 17030
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25146
- components:
- - type: Transform
- pos: -21.5,43.5
- parent: 2
- - type: DeviceList
- devices:
- - 28606
- - 25990
- - 25973
- - 28605
- - 3734
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25155
- components:
- - type: Transform
- pos: -22.5,49.5
- parent: 2
- - type: DeviceList
- devices:
- - 28385
- - 25959
- - 25958
- - 9039
- - 28386
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25158
components:
- type: Transform
@@ -13830,13 +15796,7 @@ entities:
- type: DeviceList
devices:
- 28733
- - 3382
- - 28385
- - 16411
- 28603
- - 15917
- - 16288
- - 8823
- 25573
- 16331
- 16289
@@ -13847,7 +15807,7 @@ entities:
- 15295
- 15296
- 15297
- - 28381
+ - 34366
- 15415
- 28382
- 25770
@@ -13862,32 +15822,14 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 28381
- 28382
- 28383
- - 28384
- 28380
- 15415
- 15520
- 26067
- 25757
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,33.5
- parent: 2
- - type: DeviceList
- devices:
- - 28380
- - 28379
- - 26078
- - 26079
- - 15503
- - 26059
- - 25753
+ - 34366
- type: AtmosDevice
joinedGrid: 2
- uid: 25185
@@ -13925,22 +15867,6 @@ entities:
- 11644
- type: AtmosDevice
joinedGrid: 2
- - uid: 25189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,30.5
- parent: 2
- - type: DeviceList
- devices:
- - 15520
- - 15503
- - 28380
- - 28379
- - 28381
- - 28378
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25190
components:
- type: Transform
@@ -13964,7 +15890,6 @@ entities:
- 27455
- 28382
- 28383
- - 28384
- type: AtmosDevice
joinedGrid: 2
- uid: 25191
@@ -13981,7 +15906,6 @@ entities:
- 28392
- 28383
- 28382
- - 28384
- 28389
- 24315
- 27511
@@ -14008,7 +15932,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 28384
- 28383
- 28382
- 16289
@@ -14018,18 +15941,6 @@ entities:
- 26128
- type: AtmosDevice
joinedGrid: 2
- - uid: 25194
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,42.5
- parent: 2
- - type: DeviceList
- devices:
- - 28588
- - 28387
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25195
components:
- type: Transform
@@ -14071,10 +15982,8 @@ entities:
- 14122
- 28526
- 28519
- - 28520
- 28522
- 28525
- - 28521
- 25727
- 26014
- type: AtmosDevice
@@ -14089,9 +15998,6 @@ entities:
devices:
- 14170
- 14173
- - 25790
- - 28521
- - 25791
- 28526
- type: AtmosDevice
joinedGrid: 2
@@ -14105,7 +16011,6 @@ entities:
- 2606
- 2208
- 14015
- - 14020
- 28522
- 28526
- 28523
@@ -14122,7 +16027,6 @@ entities:
- type: DeviceList
devices:
- 14015
- - 14020
- 28523
- 25835
- 25834
@@ -14139,9 +16043,9 @@ entities:
- 14122
- 14105
- 28519
- - 25808
- - 25807
- 28526
+ - 38808
+ - 38809
- type: AtmosDevice
joinedGrid: 2
- uid: 25204
@@ -14152,7 +16056,6 @@ entities:
- type: DeviceList
devices:
- 28654
- - 28587
- 28585
- 28584
- 28583
@@ -14169,7 +16072,6 @@ entities:
- type: DeviceList
devices:
- 28654
- - 28587
- 2009
- 2010
- 28566
@@ -14185,8 +16087,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 27011
- - 24059
- 24040
- 28079
- 28654
@@ -14198,29 +16098,10 @@ entities:
- 28532
- 1845
- 25310
- - 781
- - 28483
- 1871
- 1870
- type: AtmosDevice
joinedGrid: 2
- - uid: 25220
- components:
- - type: Transform
- pos: -47.5,15.5
- parent: 2
- - type: DeviceList
- devices:
- - 28337
- - 26283
- - 26282
- - 8704
- - 8783
- - 23698
- - 25186
- - 28393
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25221
components:
- type: Transform
@@ -14235,7 +16116,6 @@ entities:
- 8857
- 23698
- 25186
- - 27444
- 28393
- type: AtmosDevice
joinedGrid: 2
@@ -14438,11 +16318,10 @@ entities:
- 28367
- 27130
- 27129
- - 25322
- 25323
- 28368
- - 28371
- 28375
+ - 1518
- type: AtmosDevice
joinedGrid: 2
- uid: 25241
@@ -14456,7 +16335,6 @@ entities:
- 27152
- 27149
- 28374
- - 28372
- type: AtmosDevice
joinedGrid: 2
- uid: 25243
@@ -14472,6 +16350,9 @@ entities:
- 26945
- 28374
- 7189
+ - 21918
+ - 777
+ - 28395
- type: AtmosDevice
joinedGrid: 2
- uid: 25244
@@ -14493,12 +16374,11 @@ entities:
- 2353
- 7180
- 28396
- - 25215
- - 25216
+ - 3163
+ - 3562
- 28392
- - 6318
- - 27444
- 28338
+ - 3605
- type: AtmosDevice
joinedGrid: 2
- uid: 25246
@@ -14582,44 +16462,15 @@ entities:
- 25218
- 25219
- 3892
- - 777
- - 774
- - 1097
- - 27445
- - 27446
- - 27447
- - 27448
- - 27449
- - 27450
- - 27452
- - 27451
- 25783
- 26152
- 13382
- 25622
- 28098
- 27017
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-24.5
- parent: 2
- - type: DeviceList
- devices:
- - 1862
- - 1863
- - 1864
- - 2462
- - 2463
- - 2461
- - 28411
- - 28412
- - 26696
- - 27112
- - 28099
+ - 271
+ - 12292
+ - 20931
- type: AtmosDevice
joinedGrid: 2
- uid: 25250
@@ -14634,9 +16485,6 @@ entities:
- 26896
- 26895
- 28411
- - 2461
- - 2463
- - 2462
- 28619
- 28414
- 24173
@@ -14664,64 +16512,6 @@ entities:
- 29289
- type: AtmosDevice
joinedGrid: 2
- - uid: 25252
- components:
- - type: Transform
- pos: 6.5,-26.5
- parent: 2
- - type: DeviceList
- devices:
- - 28414
- - 28419
- - 28417
- - 28411
- - 28412
- - 28211
- - 26235
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25253
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-21.5
- parent: 2
- - type: DeviceList
- devices:
- - 28117
- - 28612
- - 28415
- - 28419
- - 28417
- - 3172
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25254
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-22.5
- parent: 2
- - type: DeviceList
- devices:
- - 28415
- - 28414
- - 28419
- - 28416
- - 28417
- - 28108
- - 28109
- - 1097
- - 3172
- - 3365
- - 3358
- - 28434
- - 28420
- - 28433
- - 26870
- - 28244
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25256
components:
- type: Transform
@@ -14731,63 +16521,16 @@ entities:
- type: DeviceList
devices:
- 3892
- - 3424
- 28421
- 27559
- 27558
- 28422
- 28434
- 28420
- - 28418
- - 28423
- 28433
- 25793
- 26211
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25257
- components:
- - type: Transform
- pos: 46.5,-28.5
- parent: 2
- - type: DeviceList
- devices:
- - 27560
- - 27561
- - 28423
- - 28424
- - 28421
- - 28422
- - 28433
- - 28434
- - 28425
- - 25295
- - 25296
- - 25297
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25260
- components:
- - type: Transform
- pos: -16.5,-22.5
- parent: 2
- - type: DeviceList
- devices:
- - 6553
- - 2904
- - 2923
- - 6955
- - 28782
- - 28783
- - 6628
- - 6498
- - 28406
- - 28408
- - 28404
- - 28779
- - 8968
- - 27507
- - 27504
+ - 271
- type: AtmosDevice
joinedGrid: 2
- uid: 25261
@@ -14799,49 +16542,19 @@ entities:
- type: DeviceList
devices:
- 6553
- - 2904
- - 2923
- 6955
- 28782
- 763
- 766
- 765
- 5250
- - 28265
- - 28406
- - 28266
- 28407
- 28627
- 28755
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25262
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-8.5
- parent: 2
- - type: DeviceList
- devices:
- - 28396
- - 28397
- - 28755
- - 28627
- - 28406
- - 28779
- - 3080
- - 7107
- - 3568
- - 84
- - 2147
- - 766
- - 765
- - 763
- - 28402
- - 25631
- - 25936
- - 27122
- - 28610
+ - 2904
+ - 6739
+ - 28258
+ - 22858
- type: AtmosDevice
joinedGrid: 2
- uid: 25263
@@ -14870,7 +16583,6 @@ entities:
- 28477
- 27295
- 27294
- - 580
- 28790
- type: AtmosDevice
joinedGrid: 2
@@ -14882,7 +16594,6 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 583
- 28478
- 27293
- 27296
@@ -14912,11 +16623,9 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 27312
- 28627
- 28479
- 28480
- - 2069
- 84
- 2147
- 101
@@ -14953,6 +16662,7 @@ entities:
- 28474
- 24245
- 27257
+ - 583
- type: AtmosDevice
joinedGrid: 2
- uid: 25275
@@ -14962,22 +16672,14 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 4793
- - 18090
- 18950
- 18113
- 27311
- - 258
- - 260
- - 396
- 345
- 346
- - 682
- - 681
- 28472
- 28790
- - 28475
- - 27312
+ - 28080
- type: AtmosDevice
joinedGrid: 2
- uid: 25276
@@ -14988,72 +16690,21 @@ entities:
- type: DeviceList
devices:
- 27311
- - 27312
- - 28465
+ - 39208
- 214
- 221
- 218
- 384
- 390
- - 258
- - 260
- 68
- 65
- 66
- - 25784
- - 26168
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25277
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,9.5
- parent: 2
- - type: DeviceList
- devices:
- - 28481
- - 1441
- - 1489
- - 28465
- - 25789
- - 26209
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25278
- components:
- - type: Transform
- pos: 20.5,11.5
- parent: 2
- - type: DeviceList
- devices:
- - 1494
- - 1495
- - 1496
- - 28482
- - 27350
- - 27351
- - 28465
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25279
- components:
- - type: Transform
- pos: 31.5,14.5
- parent: 2
- - type: DeviceList
- devices:
- - 28465
- - 28483
- - 15931
- - 28654
- - 28587
- - 27373
- - 883
- - 781
- - 1347
- - 1348
- - 25788
+ - 39211
+ - 39209
+ - 3511
+ - 39210
+ - 4607
+ - 36885
- type: AtmosDevice
joinedGrid: 2
- uid: 25280
@@ -15067,9 +16718,7 @@ entities:
- 28485
- 28071
- 28070
- - 28483
- 28654
- - 28587
- 28486
- 8659
- 6682
@@ -15087,41 +16736,6 @@ entities:
- 27421
- 28484
- 1082
- - 28465
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25283
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 28440
- - 28452
- - 28451
- - 28439
- - 1316
- - 1313
- - 968
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,3.5
- parent: 2
- - type: DeviceList
- devices:
- - 28465
- - 1395
- - 28439
- - 28449
- - 28450
- - 1313
- - 1316
- type: AtmosDevice
joinedGrid: 2
- uid: 25285
@@ -15132,12 +16746,9 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 27389
- - 28438
- 27396
- 27395
- 28463
- - 28465
- 1012
- 1080
- 2012
@@ -15151,6 +16762,8 @@ entities:
- 2019
- 1531
- 151
+ - 36885
+ - 20931
- type: AtmosDevice
joinedGrid: 2
- uid: 25286
@@ -15175,42 +16788,6 @@ entities:
- 27437
- 28420
- 28434
- - 28438
- - 151
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25287
- components:
- - type: Transform
- pos: 14.5,8.5
- parent: 2
- - type: DeviceList
- devices:
- - 1489
- - 1441
- - 384
- - 390
- - 1012
- - 1080
- - 2012
- - 2013
- - 1494
- - 1495
- - 1496
- - 1395
- - 883
- - 1082
- - 28484
- - 28483
- - 28438
- - 28439
- - 28482
- - 28481
- - 27312
- - 13036
- - 28465
- - 26210
- - 25792
- 151
- type: AtmosDevice
joinedGrid: 2
@@ -15221,19 +16798,21 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 7844
- - 13035
- - 13036
+ - 39177
+ - 39186
+ - 39183
- 28420
- 28434
- - 28465
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25289
- components:
- - type: Transform
- pos: -38.5,14.5
- parent: 2
+ - 39196
+ - 39185
+ - 12303
+ - 39184
+ - 39178
+ - 39190
+ - 39197
+ - 39198
+ - 39199
+ - 36885
- type: AtmosDevice
joinedGrid: 2
- uid: 25290
@@ -15244,8 +16823,7 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 28792
- - 28475
+ - 28080
- 28474
- 8835
- 26198
@@ -15260,15 +16838,12 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 28755
- - 28790
- - 28475
- - 27166
- - 27165
- - 28792
+ - 14851
+ - 13238
+ - 28396
- 27311
- 28474
- - 28627
+ - 28080
- type: AtmosDevice
joinedGrid: 2
- uid: 25293
@@ -15282,15 +16857,14 @@ entities:
- 2019
- 148
- 144
- - 1178
- - 1079
- - 27405
- - 28435
- 28434
- 28420
- - 28438
- 151
- - 2112
+ - 20931
+ - 28452
+ - 22808
+ - 24737
+ - 25156
- type: AtmosDevice
joinedGrid: 2
- uid: 25294
@@ -15303,10 +16877,7 @@ entities:
- 28425
- 27695
- 4430
- - 25295
- - 25296
- - 25297
- - 28423
+ - 37407
- 28426
- 28428
- 28427
@@ -15384,26 +16955,6 @@ entities:
- 25794
- type: AtmosDevice
joinedGrid: 2
- - uid: 25301
- components:
- - type: Transform
- pos: 56.5,25.5
- parent: 2
- - type: DeviceList
- devices:
- - 28633
- - 28488
- - 28490
- - 28637
- - 4377
- - 4376
- - 4375
- - 5704
- - 9340
- - 18220
- - 25633
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25302
components:
- type: Transform
@@ -15518,27 +17069,9 @@ entities:
- 29026
- 29030
- 29040
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25317
- components:
- - type: Transform
- pos: -4.5,65.5
- parent: 2
- - type: DeviceList
- devices:
- - 28595
- - 15258
- - 16309
- - 16311
- - 7752
- - 28487
- - 28594
- - 28596
- - 26219
- - 26220
- - 25774
- - 25837
+ - 26010
+ - 34114
+ - 3836
- type: AtmosDevice
joinedGrid: 2
- uid: 25318
@@ -15555,28 +17088,6 @@ entities:
- 5244
- type: AtmosDevice
joinedGrid: 2
- - uid: 25319
- components:
- - type: Transform
- pos: -8.5,57.5
- parent: 2
- - type: DeviceList
- devices:
- - 15721
- - 4212
- - 4642
- - 15917
- - 28604
- - 28602
- - 28603
- - 25886
- - 25887
- - 28487
- - 28384
- - 28383
- - 28382
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25320
components:
- type: Transform
@@ -15593,13 +17104,11 @@ entities:
- type: DeviceList
devices:
- 25323
- - 25322
- 28367
- - 28371
- 28368
- 27134
- 27135
- - 28369
+ - 1518
- type: AtmosDevice
joinedGrid: 2
- uid: 25329
@@ -15610,12 +17119,7 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 28371
- 28368
- - 27136
- - 28369
- - 27137
- - 25326
- 25324
- 25325
- 28402
@@ -15624,65 +17128,6 @@ entities:
- 28754
- type: AtmosDevice
joinedGrid: 2
- - uid: 25330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-29.5
- parent: 2
- - type: DeviceList
- devices:
- - 28371
- - 28396
- - 28397
- - 28754
- - 28402
- - 28116
- - 27256
- - 18025
- - 18359
- - 2655
- - 300
- - 26711
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-29.5
- parent: 2
- - type: DeviceList
- devices:
- - 28371
- - 28396
- - 28397
- - 11389
- - 23460
- - 28400
- - 27256
- - 28116
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25332
- components:
- - type: Transform
- pos: -54.5,-18.5
- parent: 2
- - type: DeviceList
- devices:
- - 28371
- - 28396
- - 28397
- - 7530
- - 7529
- - 6945
- - 7235
- - 27114
- - 28398
- - 27115
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25333
components:
- type: Transform
@@ -15690,15 +17135,18 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 27113
- - 28399
- - 28371
- - 28397
+ - 17836
+ - 1429
+ - 27253
+ - 18241
- 28396
- - 7225
+ - 3321
- 5062
- 7889
- - 28113
+ - 12414
+ - 28367
+ - 31
+ - 1691
- type: AtmosDevice
joinedGrid: 2
- uid: 25334
@@ -15706,6 +17154,19 @@ entities:
- type: Transform
pos: -52.5,-9.5
parent: 2
+ - type: DeviceList
+ devices:
+ - 1691
+ - 27252
+ - 28110
+ - 7190
+ - 7192
+ - 5194
+ - 3092
+ - 3086
+ - 28395
+ - 28396
+ - 3321
- type: AtmosDevice
joinedGrid: 2
- uid: 25336
@@ -15726,23 +17187,6 @@ entities:
- 6553
- type: AtmosDevice
joinedGrid: 2
- - uid: 25337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-23.5
- parent: 2
- - type: DeviceList
- devices:
- - 25324
- - 25325
- - 28402
- - 27482
- - 27483
- - 28755
- - 28627
- - type: AtmosDevice
- joinedGrid: 2
- uid: 25338
components:
- type: Transform
@@ -15771,7 +17215,6 @@ entities:
- 3349
- 28407
- 28290
- - 28406
- 28408
- 26696
- type: AtmosDevice
@@ -15786,26 +17229,6 @@ entities:
- 28410
- 28619
- 3815
- - 28245
- - 27301
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25341
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-39.5
- parent: 2
- - type: DeviceList
- devices:
- - 28404
- - 6630
- - 11856
- - 28410
- - 3815
- - 26629
- - 27302
- - 26700
- type: AtmosDevice
joinedGrid: 2
- uid: 25342
@@ -15861,7 +17284,6 @@ entities:
- 25499
- 28531
- 28654
- - 28587
- type: AtmosDevice
joinedGrid: 2
- uid: 25345
@@ -15959,24 +17381,50 @@ entities:
- 391
- type: AtmosDevice
joinedGrid: 2
- - uid: 27409
+ - uid: 26091
+ components:
+ - type: Transform
+ pos: -24.5,40.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 10269
+ - 8450
+ - 10258
+ - 15608
+ - 15573
+ - 15482
+ - 15933
+ - 15975
+ - 16166
+ - 9655
+ - 15683
+ - 15557
+ - 15618
+ - 34069
+ - 34071
+ - 34104
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 26732
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,15.5
+ pos: -60.5,-23.5
parent: 2
- type: DeviceList
devices:
- - 788
- - 789
- - 15931
- - 27383
- - 27382
- - 1347
- - 1348
- - 28483
- - 28654
- - 28587
+ - 15994
+ - 17907
+ - 18241
+ - 17836
+ - 12414
+ - 7529
+ - 7530
+ - 6945
+ - 28367
+ - 3321
+ - 28396
- type: AtmosDevice
joinedGrid: 2
- uid: 27411
@@ -15996,111 +17444,19 @@ entities:
- 28420
- type: AtmosDevice
joinedGrid: 2
- - uid: 28618
- components:
- - type: Transform
- pos: 24.5,-22.5
- parent: 2
- - type: DeviceList
- devices:
- - 28149
- - 28150
- - 28416
- - 28418
- - 28419
- - 28417
- - 3358
- - 3531
- - 27445
- - 27446
- - 27447
- - 27448
- - 774
- - 777
- - 27449
- - 27450
- - 27452
- - 27451
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28622
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-22.5
- parent: 2
- - type: DeviceList
- devices:
- - 774
- - 777
- - 3365
- - 3424
- - 3531
- - 28418
- - 28419
- - 28422
- - 28421
- - 28416
- - 28417
- - 28434
- - 28420
- - 28433
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28655
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,41.5
- parent: 2
- - type: DeviceList
- devices:
- - 25310
- - 28518
- - 25311
- - 28588
- - 28487
- - 28524
- - 1859
- - 1860
- - 1861
- - 13915
- - 13914
- - 2609
- - 2610
- - 2611
- - 27009
- - 13002
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28656
+ - uid: 28192
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,17.5
+ pos: -23.5,-40.5
parent: 2
- type: DeviceList
devices:
- - 2010
- - 2008
- - 2007
- - 3976
- - 781
- - 788
- - 789
- - 28654
- - 28587
- - 28547
- - 28585
- - 28586
- - 25310
- - 28518
- - 25311
- - 28532
- - 28485
- - 28486
- - 28483
- - 15931
+ - 6754
+ - 23230
+ - 6614
+ - 6760
+ - 28160
+ - 23613
- type: AtmosDevice
joinedGrid: 2
- uid: 28658
@@ -16109,28 +17465,6 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,53.5
parent: 2
- - type: DeviceList
- devices:
- - 28521
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28735
- components:
- - type: Transform
- pos: -51.5,37.5
- parent: 2
- - type: DeviceList
- devices:
- - 9084
- - 9081
- - 28333
- - 6973
- - 6966
- - 25186
- - 23698
- - 28737
- - 28334
- - 24108
- type: AtmosDevice
joinedGrid: 2
- uid: 28738
@@ -16159,7 +17493,6 @@ entities:
devices:
- 8873
- 8874
- - 24108
- 28333
- 28347
- 28348
@@ -16203,28 +17536,6 @@ entities:
- 27484
- type: AtmosDevice
joinedGrid: 2
- - uid: 28791
- components:
- - type: Transform
- pos: -12.5,-3.5
- parent: 2
- - type: DeviceList
- devices:
- - 28790
- - 681
- - 682
- - 592
- - 583
- - 580
- - 27311
- - 28479
- - 28478
- - 28477
- - 28475
- - 25696
- - 26869
- - type: AtmosDevice
- joinedGrid: 2
- uid: 29087
components:
- type: Transform
@@ -16238,31 +17549,27 @@ entities:
- 28426
- 16551
- 28427
+ - 37892
+ - 37893
+ - 37891
- type: AtmosDevice
joinedGrid: 2
- - uid: 30628
+ - uid: 29631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,43.5
parent: 2
- type: DeviceList
devices:
- - 1870
- - 1871
- - 1860
- - 1861
- - 1859
- - 1866
- - 1867
- - 221
- - 218
- - 214
- - 28392
- - 27312
- - 28587
- - 28654
- 28588
+ - 2749
+ - 5243
+ - 5766
+ - 2462
+ - 2593
+ - 16102
+ - 16063
- type: AtmosDevice
joinedGrid: 2
- uid: 30714
@@ -16323,6 +17630,237 @@ entities:
- 25475
- type: AtmosDevice
joinedGrid: 2
+ - uid: 31752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,4.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 1481
+ - 20
+ - 18356
+ - 1496
+ - 28441
+ - 242
+ - 8459
+ - 20930
+ - 27333
+ - 33915
+ - 781
+ - 28484
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 33892
+ components:
+ - type: Transform
+ pos: 23.5,22.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 2010
+ - 2008
+ - 2007
+ - 3976
+ - 788
+ - 789
+ - 28654
+ - 33928
+ - 28547
+ - 28585
+ - 28586
+ - 25310
+ - 28518
+ - 25311
+ - 28532
+ - 28485
+ - 28486
+ - 15931
+ - 31773
+ - 893
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 34109
+ components:
+ - type: Transform
+ pos: -15.5,47.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 23340
+ - 15617
+ - 15619
+ - 15814
+ - 9132
+ - 15618
+ - 2527
+ - 23423
+ - 26090
+ - 30723
+ - 26504
+ - 28720
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 34110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,44.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 25970
+ - 15479
+ - 25978
+ - 28720
+ - 15618
+ - 3836
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 35889
+ components:
+ - type: Transform
+ pos: -17.5,52.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 34760
+ - 35715
+ - 35888
+ - 15618
+ - 34123
+ - 34120
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 36760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,8.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 33929
+ - 20241
+ - 33931
+ - 33921
+ - 28548
+ - 33944
+ - 34059
+ - 33915
+ - 27320
+ - 241
+ - 1496
+ - 1481
+ - 36885
+ - 1012
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 37193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,1.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 782
+ - 36885
+ - 25254
+ - 26679
+ - 241
+ - 39190
+ - 33921
+ - 33915
+ - 248
+ - 12130
+ - 20241
+ - 31749
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 37414
+ components:
+ - type: Transform
+ pos: 50.5,-32.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 37409
+ - 37410
+ - 37407
+ - 37408
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 37709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,13.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 19125
+ - 28474
+ - 19126
+ - 27191
+ - 28616
+ - 27190
+ - 28393
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 38117
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 28449
+ - 1079
+ - 1307
+ - 11529
+ - 28450
+ - 781
+ - 1395
+ - 1407
+ - 1178
+ - 20931
+ - 1481
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 39141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,24.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 39156
+ - 39153
+ - 28488
+ - 39155
+ - 39157
+ - 4375
+ - 4376
+ - 4377
+ - 28637
+ - 28490
+ - 4315
+ - 28633
+ - 5704
+ - 9340
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: AirAlarmAssembly
+ entities:
+ - uid: 4514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,71.5
+ parent: 2
- proto: AirCanister
entities:
- uid: 3630
@@ -16332,13 +17870,19 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
+ - uid: 30175
+ components:
+ - type: Transform
+ pos: 97.5,74.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 1068
+ - uid: 26514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,38.5
+ pos: -17.5,47.5
parent: 2
- proto: AirlockAtmosphericsGlassLocked
entities:
@@ -16347,6 +17891,13 @@ entities:
- type: Transform
pos: -53.5,53.5
parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 26617
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26617:
+ - DoorStatus: DoorBolt
- uid: 22715
components:
- type: Transform
@@ -16365,24 +17916,20 @@ entities:
parent: 2
- proto: AirlockBarGlassLocked
entities:
- - uid: 22996
- components:
- - type: Transform
- pos: 20.5,-26.5
- parent: 2
- - uid: 22998
+ - uid: 6205
components:
- type: Transform
- pos: 25.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-30.5
parent: 2
- proto: AirlockBoxerGlassLocked
entities:
- - uid: 15952
+ - uid: 200
components:
- type: Transform
pos: 40.5,-23.5
parent: 2
- - uid: 17830
+ - uid: 206
components:
- type: Transform
pos: 40.5,-22.5
@@ -16416,16 +17963,15 @@ entities:
parent: 2
- proto: AirlockCargoGlassLocked
entities:
- - uid: 708
+ - uid: 17694
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-36.5
+ pos: -19.5,-40.5
parent: 2
- - uid: 1335
+ - uid: 20561
components:
- type: Transform
- pos: -18.5,-36.5
+ pos: -21.5,-40.5
parent: 2
- uid: 22855
components:
@@ -16437,16 +17983,6 @@ entities:
- type: Transform
pos: -13.5,-26.5
parent: 2
- - uid: 22857
- components:
- - type: Transform
- pos: -17.5,-21.5
- parent: 2
- - uid: 22858
- components:
- - type: Transform
- pos: -17.5,-20.5
- parent: 2
- uid: 22859
components:
- type: Transform
@@ -16458,6 +17994,12 @@ entities:
rot: 3.141592653589793 rad
pos: -23.5,-20.5
parent: 2
+ - uid: 28259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-19.5
+ parent: 2
- proto: AirlockChapelGlassLocked
entities:
- uid: 768
@@ -16483,6 +18025,12 @@ entities:
- type: Transform
pos: 15.5,-6.5
parent: 2
+ - uid: 33918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-1.5
+ parent: 2
- proto: AirlockChiefEngineerGlassLocked
entities:
- uid: 22685
@@ -16516,12 +18064,6 @@ entities:
parent: 2
- proto: AirlockClownLocked
entities:
- - uid: 316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-6.5
- parent: 2
- uid: 3685
components:
- type: Transform
@@ -16572,11 +18114,6 @@ entities:
- type: Transform
pos: 8.5,38.5
parent: 2
- - uid: 22710
- components:
- - type: Transform
- pos: -46.5,11.5
- parent: 2
- uid: 22870
components:
- type: Transform
@@ -16585,6 +18122,11 @@ entities:
parent: 2
- proto: AirlockCommandGlassLocked
entities:
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 28.5,57.5
+ parent: 2
- uid: 410
components:
- type: Transform
@@ -16615,52 +18157,51 @@ entities:
rot: 1.5707963267948966 rad
pos: 17.5,22.5
parent: 2
+ - uid: 1444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,61.5
+ parent: 2
- uid: 2970
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,43.5
parent: 2
- - uid: 22611
+ - uid: 5295
components:
- type: Transform
- pos: 17.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,56.5
parent: 2
- - uid: 22612
+ - uid: 7788
components:
- type: Transform
- pos: 19.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,54.5
parent: 2
- - uid: 22613
+ - uid: 15165
components:
- type: Transform
- pos: 24.5,54.5
+ pos: 26.5,57.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 2772
- - 13976
- - type: DeviceLinkSource
- linkedPorts:
- 2772:
- - DoorStatus: DoorBolt
- 13976:
- - DoorStatus: DoorBolt
- - uid: 22614
+ - uid: 20988
components:
- type: Transform
- pos: 24.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,59.5
+ parent: 2
+ - uid: 22611
+ components:
+ - type: Transform
+ pos: 17.5,51.5
+ parent: 2
+ - uid: 22612
+ components:
+ - type: Transform
+ pos: 19.5,51.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 2772
- - 13976
- - type: DeviceLinkSource
- linkedPorts:
- 2772:
- - DoorStatus: DoorBolt
- 13976:
- - DoorStatus: DoorBolt
- proto: AirlockCommandLocked
entities:
- uid: 21062
@@ -16678,20 +18219,38 @@ entities:
- type: Transform
pos: 8.5,49.5
parent: 2
- - uid: 22607
+ - uid: 30816
components:
- type: Transform
- pos: 8.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,51.5
parent: 2
-- proto: AirlockDetectiveLocked
+- proto: AirlockDetectiveGlassLocked
entities:
- - uid: 166
+ - uid: 280
components:
- type: Transform
- pos: -35.5,32.5
+ pos: -21.5,-12.5
+ parent: 2
+- proto: AirlockEngineeringGlass
+ entities:
+ - uid: 569
+ components:
+ - type: Transform
+ pos: -46.5,12.5
parent: 2
- proto: AirlockEngineeringGlassLocked
entities:
+ - uid: 18988
+ components:
+ - type: Transform
+ pos: 78.5,-17.5
+ parent: 2
+ - uid: 19067
+ components:
+ - type: Transform
+ pos: 78.5,-15.5
+ parent: 2
- uid: 22701
components:
- type: Transform
@@ -16753,12 +18312,6 @@ entities:
- type: Transform
pos: -54.5,38.5
parent: 2
- - uid: 23682
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,34.5
- parent: 2
- proto: AirlockEngineeringLocked
entities:
- uid: 3278
@@ -16766,346 +18319,330 @@ entities:
- type: Transform
pos: 33.5,36.5
parent: 2
- - uid: 3313
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 2
- - uid: 3968
- components:
- - type: Transform
- pos: -42.5,69.5
- parent: 2
- - uid: 20170
- components:
- - type: Transform
- pos: -29.5,-5.5
- parent: 2
- - uid: 22688
+ - uid: 5914
components:
- type: Transform
- pos: -38.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-17.5
parent: 2
- - uid: 22689
+ - uid: 13007
components:
- type: Transform
- pos: -3.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,13.5
parent: 2
- - uid: 22690
+ - uid: 17721
components:
- type: Transform
- pos: 3.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-27.5
parent: 2
- - uid: 22691
+ - uid: 20510
components:
- type: Transform
- pos: 31.5,50.5
+ pos: 51.5,-29.5
parent: 2
- - uid: 22692
+ - uid: 20685
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -27.5,2.5
parent: 2
- uid: 22693
components:
- type: Transform
pos: -66.5,-3.5
parent: 2
- - uid: 22696
- components:
- - type: Transform
- pos: -67.5,35.5
- parent: 2
- uid: 22907
components:
- type: Transform
pos: -27.5,-27.5
parent: 2
- - uid: 28159
+ - uid: 26727
components:
- type: Transform
- pos: -63.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,43.5
parent: 2
-- proto: AirlockExternalEasyPry
- entities:
- - uid: 6654
+ - uid: 28159
components:
- type: Transform
- pos: 80.5,4.5
+ pos: -63.5,-21.5
parent: 2
-- proto: AirlockExternalGlass
- entities:
- - uid: 4928
+ - uid: 29666
components:
- type: Transform
- pos: 96.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 4929
- - type: DeviceLinkSource
- linkedPorts:
- 4929:
- - DoorStatus: DoorBolt
- - uid: 4929
+ - uid: 30460
components:
- type: Transform
- pos: 94.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -64.5,34.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 4928
- - type: DeviceLinkSource
- linkedPorts:
- 4928:
- - DoorStatus: DoorBolt
- - uid: 5793
+ - uid: 30691
components:
- type: Transform
- pos: -7.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,20.5
parent: 2
- - uid: 5794
+ - uid: 31263
components:
- type: Transform
- pos: -5.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,69.5
parent: 2
- - uid: 5801
+ - uid: 32090
components:
- type: Transform
- pos: 10.5,-53.5
+ pos: 45.5,-29.5
parent: 2
- - uid: 5802
+ - uid: 37425
components:
- type: Transform
- pos: 8.5,-53.5
+ pos: 32.5,52.5
parent: 2
- - uid: 5806
+ - uid: 38896
components:
- type: Transform
- pos: 0.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-39.5
parent: 2
- - uid: 5807
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 2454
components:
- type: Transform
- pos: 2.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,34.5
parent: 2
-- proto: AirlockExternalGlassCargoLocked
- entities:
- - uid: 6675
+ - uid: 2555
components:
- type: Transform
- pos: -18.5,-47.5
+ pos: 2.5,79.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 28202
- - 6788
- - type: DeviceLinkSource
- linkedPorts:
- 6788:
- - DoorStatus: DoorBolt
- 28202:
- - DoorStatus: DoorBolt
- - uid: 6683
+ - uid: 2774
components:
- type: Transform
- pos: -16.5,-47.5
+ pos: 52.5,-32.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6788
- - 28202
- - type: DeviceLinkSource
- linkedPorts:
- 28202:
- - DoorStatus: DoorBolt
- 6788:
- - DoorStatus: DoorBolt
- - uid: 6788
+ - uid: 3305
components:
- type: Transform
- pos: -16.5,-45.5
+ pos: 0.5,79.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6675
- - 6683
- - type: DeviceLinkSource
- linkedPorts:
- 6683:
- - DoorStatus: DoorBolt
- 6675:
- - DoorStatus: DoorBolt
- - uid: 6801
+ - uid: 4532
components:
- type: Transform
- pos: -20.5,-42.5
+ pos: -63.5,-16.5
parent: 2
- - uid: 28202
+ - uid: 4589
components:
- type: Transform
- pos: -18.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,34.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6683
- - 6675
- - type: DeviceLinkSource
- linkedPorts:
- 6675:
- - DoorStatus: DoorBolt
- 6683:
- - DoorStatus: DoorBolt
-- proto: AirlockExternalGlassEasyPry
- entities:
- - uid: 388
+ - uid: 4667
components:
- type: Transform
- pos: 78.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,36.5
parent: 2
- - uid: 389
+ - uid: 4786
components:
- type: Transform
- pos: 78.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,36.5
parent: 2
- - uid: 767
+ - uid: 4930
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-3.5
+ pos: -7.5,79.5
parent: 2
- - uid: 2555
+ - uid: 5743
components:
- type: Transform
- pos: 2.5,79.5
+ pos: -5.5,79.5
parent: 2
- - uid: 3305
+ - uid: 5793
components:
- type: Transform
- pos: 0.5,79.5
+ pos: -7.5,-53.5
parent: 2
- - uid: 4532
+ - uid: 5794
components:
- type: Transform
- pos: -63.5,-16.5
+ pos: -5.5,-53.5
parent: 2
- - uid: 4930
+ - uid: 5801
components:
- type: Transform
- pos: -7.5,79.5
+ pos: 10.5,-53.5
parent: 2
- - uid: 5435
+ - uid: 5802
components:
- type: Transform
- pos: 78.5,-17.5
+ pos: 8.5,-53.5
parent: 2
- - uid: 5743
+ - uid: 5806
components:
- type: Transform
- pos: -5.5,79.5
+ pos: 0.5,-53.5
parent: 2
- - uid: 6666
+ - uid: 5807
components:
- type: Transform
- pos: 43.5,-32.5
+ pos: 2.5,-53.5
parent: 2
- - uid: 6728
+ - uid: 6936
components:
- type: Transform
- pos: 49.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,9.5
parent: 2
- - uid: 15182
+ - uid: 8229
components:
- type: Transform
- pos: 8.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,10.5
parent: 2
- - uid: 19461
+ - uid: 8246
components:
- type: Transform
- pos: 10.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,9.5
parent: 2
-- proto: AirlockExternalGlassEasyPryLocked
- entities:
- - uid: 3915
+ - uid: 8248
components:
- type: Transform
- pos: -35.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,10.5
parent: 2
- - uid: 3973
+ - uid: 14588
components:
- type: Transform
- pos: -37.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,5.5
parent: 2
- - uid: 9173
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 19127
+ - 29726
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29726:
+ - DoorStatus: DoorBolt
+ 19127:
+ - DoorStatus: DoorBolt
+ - uid: 14605
components:
- type: Transform
- pos: -37.5,6.5
+ pos: -39.5,-7.5
parent: 2
- - uid: 9174
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 22748
+ - 29282
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22748:
+ - DoorStatus: DoorBolt
+ 29282:
+ - DoorStatus: DoorBolt
+ - uid: 15182
components:
- type: Transform
- pos: -35.5,6.5
+ pos: 8.5,79.5
parent: 2
- - uid: 9212
+ - uid: 19213
components:
- type: Transform
- pos: 43.5,15.5
+ pos: -37.5,-7.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 12998
- - 9240
+ - 22748
+ - 29282
- type: DeviceLinkSource
linkedPorts:
- 12998:
+ 22748:
- DoorStatus: DoorBolt
- 9240:
+ 29282:
- DoorStatus: DoorBolt
- - uid: 9240
+ - uid: 19461
+ components:
+ - type: Transform
+ pos: 10.5,79.5
+ parent: 2
+ - uid: 20216
+ components:
+ - type: Transform
+ pos: 43.5,-32.5
+ parent: 2
+ - uid: 22748
components:
- type: Transform
- pos: 41.5,15.5
+ pos: -37.5,-9.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 9242
- - 9212
+ - 19213
+ - 14605
- type: DeviceLinkSource
linkedPorts:
- 9212:
+ 19213:
- DoorStatus: DoorBolt
- 9242:
+ 14605:
- DoorStatus: DoorBolt
- - uid: 9242
+ - uid: 29282
components:
- type: Transform
- pos: 43.5,13.5
+ pos: -39.5,-9.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 12998
- - 9240
+ - 19213
+ - 14605
- type: DeviceLinkSource
linkedPorts:
- 12998:
+ 19213:
- DoorStatus: DoorBolt
- 9240:
+ 14605:
- DoorStatus: DoorBolt
- - uid: 12998
+ - uid: 29515
components:
- type: Transform
- pos: 41.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,5.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 9242
- - 9212
+ - 19127
+ - 29726
- type: DeviceLinkSource
linkedPorts:
- 9242:
+ 29726:
- DoorStatus: DoorBolt
- 9212:
+ 19127:
- DoorStatus: DoorBolt
+- proto: AirlockExternalGlassCargoLocked
+ entities:
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: -21.5,-47.5
+ parent: 2
+ - uid: 6834
+ components:
+ - type: Transform
+ pos: -19.5,-47.5
+ parent: 2
- proto: AirlockExternalGlassEngineeringLocked
entities:
- uid: 15
@@ -17202,6 +18739,22 @@ entities:
- DoorStatus: DoorBolt
10393:
- DoorStatus: DoorBolt
+ - uid: 5756
+ components:
+ - type: Transform
+ pos: 89.5,-12.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 21945
+ - 19054
+ - type: DeviceLinkSource
+ linkedPorts:
+ 21945:
+ - DoorStatus: DoorBolt
+ 19054:
+ - DoorStatus: DoorBolt
- uid: 7929
components:
- type: Transform
@@ -17282,6 +18835,23 @@ entities:
- DoorStatus: DoorBolt
3101:
- DoorStatus: DoorBolt
+ - uid: 12587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-21.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 25215
+ - 29267
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25215:
+ - DoorStatus: DoorBolt
+ 29267:
+ - DoorStatus: DoorBolt
- uid: 13214
components:
- type: Transform
@@ -17298,195 +18868,559 @@ entities:
- DoorStatus: DoorBolt
8128:
- DoorStatus: DoorBolt
- - uid: 18586
+ - uid: 19054
components:
- type: Transform
- pos: -102.5,56.5
+ pos: 92.5,-12.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18596
+ - 19092
+ - 5756
- type: DeviceLinkSource
linkedPorts:
- 18596:
+ 19092:
- DoorStatus: DoorBolt
- - uid: 18595
+ 5756:
+ - DoorStatus: DoorBolt
+ - uid: 19057
components:
- type: Transform
- pos: -104.5,46.5
+ pos: 89.5,-20.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18597
+ - 25215
+ - 29267
- type: DeviceLinkSource
linkedPorts:
- 18597:
+ 25215:
- DoorStatus: DoorBolt
- - uid: 18596
+ 29267:
+ - DoorStatus: DoorBolt
+ - uid: 19092
components:
- type: Transform
- pos: -104.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-11.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18586
+ - 21945
+ - 19054
- type: DeviceLinkSource
linkedPorts:
- 18586:
+ 21945:
- DoorStatus: DoorBolt
- - uid: 18597
+ 19054:
+ - DoorStatus: DoorBolt
+ - uid: 21945
components:
- type: Transform
- pos: -102.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-11.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18595
+ - 19092
+ - 5756
- type: DeviceLinkSource
linkedPorts:
- 18595:
+ 19092:
- DoorStatus: DoorBolt
- - uid: 18614
+ 5756:
+ - DoorStatus: DoorBolt
+ - uid: 25215
components:
- type: Transform
- pos: -90.5,51.5
+ pos: 92.5,-20.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18615
+ - 19057
+ - 12587
- type: DeviceLinkSource
linkedPorts:
- 18615:
+ 19057:
- DoorStatus: DoorBolt
- - uid: 18615
+ 12587:
+ - DoorStatus: DoorBolt
+ - uid: 29267
components:
- type: Transform
- pos: -92.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-21.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 18614
+ - 19057
+ - 12587
- type: DeviceLinkSource
linkedPorts:
- 18614:
+ 19057:
+ - DoorStatus: DoorBolt
+ 12587:
- DoorStatus: DoorBolt
- - uid: 22695
- components:
- - type: Transform
- pos: 38.5,14.5
- parent: 2
- proto: AirlockExternalGlassLocked
entities:
- - uid: 2772
+ - uid: 7636
components:
- type: Transform
- pos: 30.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,15.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- - 22614
- - 22613
+ - 16924
- type: DeviceLinkSource
linkedPorts:
- 22614:
- - DoorStatus: DoorBolt
- 22613:
+ 16924:
- DoorStatus: DoorBolt
- - uid: 4521
- components:
- - type: Transform
- pos: 79.5,26.5
- parent: 2
- - uid: 13976
+ - uid: 15105
components:
- type: Transform
- pos: 30.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-35.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 2
links:
- - 22614
- - 22613
+ - 38954
+ - 38953
- type: DeviceLinkSource
linkedPorts:
- 22614:
+ 38954:
- DoorStatus: DoorBolt
- 22613:
+ 38953:
- DoorStatus: DoorBolt
- - uid: 26617
+ - uid: 15775
components:
- type: Transform
- pos: -55.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,0.5
parent: 2
- - uid: 30101
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 26217
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26217:
+ - DoorStatus: DoorBolt
+ - uid: 16924
components:
- type: Transform
- pos: 79.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,15.5
parent: 2
- - uid: 31104
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 7636
+ - type: DeviceLinkSource
+ linkedPorts:
+ 7636:
+ - DoorStatus: DoorBolt
+ - uid: 26217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,0.5
parent: 2
-- proto: AirlockExternalGlassShuttleArrivals
- entities:
- - uid: 5817
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 15775
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15775:
+ - DoorStatus: DoorBolt
+ - uid: 26340
components:
- type: Transform
- pos: 2.5,-56.5
+ pos: 41.5,8.5
parent: 2
- - uid: 5818
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 34716
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34716:
+ - DoorStatus: DoorBolt
+ - uid: 26617
components:
- type: Transform
- pos: 0.5,-56.5
+ pos: -55.5,53.5
parent: 2
- - uid: 5866
+ - type: DeviceLinkSink
+ links:
+ - 13756
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13756:
+ - DoorStatus: DoorBolt
+ - uid: 29795
components:
- type: Transform
- pos: -5.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: 107.5,53.5
parent: 2
- - uid: 5867
+ - type: DeviceLinkSink
+ links:
+ - 32555
+ - 32554
+ - type: DeviceLinkSource
+ linkedPorts:
+ 32554:
+ - DoorStatus: DoorBolt
+ 32555:
+ - DoorStatus: DoorBolt
+ - uid: 30289
components:
- type: Transform
- pos: -7.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,1.5
parent: 2
- - uid: 5868
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 30292
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30292:
+ - DoorStatus: DoorBolt
+ - uid: 30292
components:
- type: Transform
- pos: 8.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,1.5
parent: 2
- - uid: 5869
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 30289
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30289:
+ - DoorStatus: DoorBolt
+ - uid: 31104
components:
- type: Transform
- pos: 10.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,69.5
parent: 2
-- proto: AirlockExternalGlassShuttleEmergencyLocked
- entities:
- - uid: 6447
+ - type: DeviceLinkSink
+ links:
+ - 31109
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31109:
+ - DoorStatus: DoorBolt
+ - uid: 32467
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 81.5,-17.5
+ pos: 107.5,55.5
parent: 2
- - uid: 6448
+ - type: DeviceLinkSink
+ links:
+ - 32555
+ - 32554
+ - type: DeviceLinkSource
+ linkedPorts:
+ 32554:
+ - DoorStatus: DoorBolt
+ 32555:
+ - DoorStatus: DoorBolt
+ - uid: 32554
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 81.5,-15.5
+ pos: 103.5,55.5
parent: 2
- - uid: 19482
+ - type: DeviceLinkSink
+ links:
+ - 32467
+ - 29795
+ - type: DeviceLinkSource
+ linkedPorts:
+ 32467:
+ - DoorStatus: DoorBolt
+ 29795:
+ - DoorStatus: DoorBolt
+ - uid: 32555
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,82.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,53.5
parent: 2
- - uid: 19483
+ - type: DeviceLinkSink
+ links:
+ - 32467
+ - 29795
+ - type: DeviceLinkSource
+ linkedPorts:
+ 32467:
+ - DoorStatus: DoorBolt
+ 29795:
+ - DoorStatus: DoorBolt
+ - uid: 34716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,82.5
+ pos: 41.5,10.5
parent: 2
- - uid: 19484
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 26340
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26340:
+ - DoorStatus: DoorBolt
+ - uid: 38930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,25.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 38932
+ - 38933
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38932:
+ - DoorStatus: DoorBolt
+ 38933:
+ - DoorStatus: DoorBolt
+ - uid: 38931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,25.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 38932
+ - 38933
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38932:
+ - DoorStatus: DoorBolt
+ 38933:
+ - DoorStatus: DoorBolt
+ - uid: 38932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,28.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 38931
+ - 38930
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38931:
+ - DoorStatus: DoorBolt
+ 38930:
+ - DoorStatus: DoorBolt
+ - uid: 38933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,28.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 38931
+ - 38930
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38931:
+ - DoorStatus: DoorBolt
+ 38930:
+ - DoorStatus: DoorBolt
+ - uid: 38952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-35.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 38954
+ - 38953
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38954:
+ - DoorStatus: DoorBolt
+ 38953:
+ - DoorStatus: DoorBolt
+ - uid: 38953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-33.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15105
+ - 38952
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15105:
+ - DoorStatus: DoorBolt
+ 38952:
+ - DoorStatus: DoorBolt
+ - uid: 38954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-33.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15105
+ - 38952
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38952:
+ - DoorStatus: DoorBolt
+ 15105:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassSalvageLocked
+ entities:
+ - uid: 3042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-44.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 7096
+ - 10415
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10415:
+ - DoorStatus: DoorBolt
+ 7096:
+ - DoorStatus: DoorBolt
+ - uid: 7096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-44.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 26790
+ - 3042
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26790:
+ - DoorStatus: DoorBolt
+ 3042:
+ - DoorStatus: DoorBolt
+ - uid: 10415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-42.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 26790
+ - 3042
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26790:
+ - DoorStatus: DoorBolt
+ 3042:
+ - DoorStatus: DoorBolt
+ - uid: 26790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-42.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 7096
+ - 10415
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10415:
+ - DoorStatus: DoorBolt
+ 7096:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassShuttleArrivals
+ entities:
+ - uid: 5817
+ components:
+ - type: Transform
+ pos: 2.5,-56.5
+ parent: 2
+ - uid: 5818
+ components:
+ - type: Transform
+ pos: 0.5,-56.5
+ parent: 2
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: -5.5,-56.5
+ parent: 2
+ - uid: 5867
+ components:
+ - type: Transform
+ pos: -7.5,-56.5
+ parent: 2
+ - uid: 5868
+ components:
+ - type: Transform
+ pos: 8.5,-56.5
+ parent: 2
+ - uid: 5869
+ components:
+ - type: Transform
+ pos: 10.5,-56.5
+ parent: 2
+- proto: AirlockExternalGlassShuttleEmergencyLocked
+ entities:
+ - uid: 19482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,82.5
+ parent: 2
+ - uid: 19483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,82.5
+ parent: 2
+ - uid: 19484
components:
- type: Transform
rot: 3.141592653589793 rad
@@ -17510,70 +19444,177 @@ entities:
rot: 3.141592653589793 rad
pos: 10.5,82.5
parent: 2
-- proto: AirlockExternalGlassShuttleEscape
+- proto: AirlockExternalGlassShuttleEscapeSub
entities:
- - uid: 2433
+ - uid: 63
components:
- type: Transform
- pos: 49.5,-35.5
+ pos: 46.5,-35.5
parent: 2
- - uid: 2902
+ - uid: 8296
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 81.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-16.5
parent: 2
- - uid: 6427
+ - uid: 29257
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 81.5,-1.5
+ pos: 81.5,0.5
parent: 2
- - uid: 7930
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
+ - uid: 336
components:
- type: Transform
- pos: 43.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,61.5
parent: 2
- - uid: 19907
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 591
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,61.5
parent: 2
-- proto: AirlockExternalGlassShuttleLocked
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20717
+ components:
+ - type: Transform
+ pos: -21.5,-49.5
+ parent: 2
+ - uid: 28161
+ components:
+ - type: Transform
+ pos: -19.5,-49.5
+ parent: 2
+- proto: AirlockExternalLocked
entities:
- - uid: 6729
+ - uid: 3323
components:
- type: Transform
- pos: -50.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,5.5
parent: 2
- - uid: 6732
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 34743
+ - 26287
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34743:
+ - DoorStatus: DoorBolt
+ 26287:
+ - DoorStatus: DoorBolt
+ - uid: 10195
components:
- type: Transform
- pos: -48.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,50.5
parent: 2
- - uid: 6733
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 11500
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11500:
+ - DoorStatus: DoorBolt
+ - uid: 11500
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,50.5
parent: 2
- - uid: 9341
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 10195
+ - type: DeviceLinkSource
+ linkedPorts:
+ 10195:
+ - DoorStatus: DoorBolt
+ - uid: 22160
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,7.5
parent: 2
- - uid: 20005
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 34743
+ - 26287
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34743:
+ - DoorStatus: DoorBolt
+ 26287:
+ - DoorStatus: DoorBolt
+ - uid: 22462
components:
- type: Transform
- pos: -32.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,35.5
parent: 2
- - uid: 25969
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 23121
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23121:
+ - DoorStatus: DoorBolt
+ - uid: 23121
components:
- type: Transform
- pos: -30.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,34.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 22462
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22462:
+ - DoorStatus: DoorBolt
+ - uid: 26287
+ components:
+ - type: Transform
+ pos: 79.5,5.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 22160
+ - 3323
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22160:
+ - DoorStatus: DoorBolt
+ 3323:
+ - DoorStatus: DoorBolt
+ - uid: 34743
+ components:
+ - type: Transform
+ pos: 79.5,7.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 22160
+ - 3323
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22160:
+ - DoorStatus: DoorBolt
+ 3323:
+ - DoorStatus: DoorBolt
- proto: AirlockFreezerKitchenHydroLocked
entities:
- uid: 7182
@@ -17588,6 +19629,12 @@ entities:
parent: 2
- proto: AirlockGlass
entities:
+ - uid: 389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,57.5
+ parent: 2
- uid: 611
components:
- type: Transform
@@ -17621,16 +19668,22 @@ entities:
rot: 3.141592653589793 rad
pos: -90.5,-5.5
parent: 2
+ - uid: 1536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,57.5
+ parent: 2
- uid: 3205
components:
- type: Transform
pos: -85.5,5.5
parent: 2
- - uid: 3607
+ - uid: 4444
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-21.5
parent: 2
- uid: 7115
components:
@@ -17638,20 +19691,27 @@ entities:
rot: 1.5707963267948966 rad
pos: -2.5,-14.5
parent: 2
- - uid: 9106
+ - uid: 7144
components:
- type: Transform
- pos: -84.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-22.5
parent: 2
- - uid: 11402
+ - uid: 7292
components:
- type: Transform
- pos: -39.5,-24.5
+ pos: -48.5,-24.5
parent: 2
- - uid: 11483
+ - uid: 9106
components:
- type: Transform
- pos: -37.5,-24.5
+ pos: -84.5,5.5
+ parent: 2
+ - uid: 12426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-15.5
parent: 2
- uid: 13054
components:
@@ -17673,62 +19733,56 @@ entities:
- type: Transform
pos: -6.5,71.5
parent: 2
- - uid: 21930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-24.5
- parent: 2
- - uid: 22161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,21.5
- parent: 2
- - uid: 22768
+ - uid: 19182
components:
- type: Transform
- pos: -1.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,20.5
parent: 2
- - uid: 22769
+ - uid: 19183
components:
- type: Transform
- pos: -1.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,19.5
parent: 2
- - uid: 22991
+ - uid: 19187
components:
- type: Transform
- pos: 12.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,18.5
parent: 2
- - uid: 22992
+ - uid: 20859
components:
- type: Transform
- pos: 16.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-29.5
parent: 2
- - uid: 22993
+ - uid: 21938
components:
- type: Transform
- pos: 14.5,-17.5
+ pos: -49.5,-24.5
parent: 2
- - uid: 22994
+ - uid: 22161
components:
- type: Transform
- pos: 24.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,21.5
parent: 2
- - uid: 22995
+ - uid: 22369
components:
- type: Transform
- pos: 25.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,-17.5
parent: 2
- - uid: 22999
+ - uid: 22768
components:
- type: Transform
- pos: 29.5,-22.5
+ pos: -1.5,52.5
parent: 2
- - uid: 23000
+ - uid: 22769
components:
- type: Transform
- pos: 35.5,-17.5
+ pos: -1.5,51.5
parent: 2
- uid: 23449
components:
@@ -17785,44 +19839,32 @@ entities:
- type: Transform
pos: -45.5,-6.5
parent: 2
- - uid: 23556
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,20.5
- parent: 2
- - uid: 23558
- components:
- - type: Transform
- pos: -47.5,-6.5
- parent: 2
- uid: 23560
components:
- type: Transform
pos: -34.5,-15.5
parent: 2
- - uid: 23561
+ - uid: 23565
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,19.5
+ pos: -34.5,-14.5
parent: 2
- - uid: 23562
+ - uid: 25220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,57.5
parent: 2
- - uid: 23565
+ - uid: 25331
components:
- type: Transform
- pos: -34.5,-14.5
+ pos: -47.5,-6.5
parent: 2
- - uid: 26718
+ - uid: 28145
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-28.5
parent: 2
- uid: 29158
components:
@@ -17936,24 +19978,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,24.5
parent: 2
- - uid: 29630
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,46.5
- parent: 2
- - uid: 29631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,46.5
- parent: 2
- - uid: 29632
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,46.5
- parent: 2
- uid: 29633
components:
- type: Transform
@@ -17972,42 +19996,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,72.5
parent: 2
- - uid: 29665
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-19.5
- parent: 2
- - uid: 29666
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-19.5
- parent: 2
- - uid: 29667
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-19.5
- parent: 2
- - uid: 29668
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-30.5
- parent: 2
- - uid: 29669
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-30.5
- parent: 2
- - uid: 29670
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-30.5
- parent: 2
- uid: 29672
components:
- type: Transform
@@ -18120,6 +20108,30 @@ entities:
- type: Transform
pos: 70.5,-16.5
parent: 2
+ - uid: 32123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 32125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 33825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-17.5
+ parent: 2
+ - uid: 35949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,64.5
+ parent: 2
- proto: AirlockHeadOfPersonnelLocked
entities:
- uid: 1333
@@ -18167,6 +20179,16 @@ entities:
- type: Transform
pos: -56.5,-2.5
parent: 2
+ - uid: 6305
+ components:
+ - type: Transform
+ pos: -53.5,-4.5
+ parent: 2
+ - uid: 29033
+ components:
+ - type: Transform
+ pos: -54.5,-4.5
+ parent: 2
- proto: AirlockJanitorLocked
entities:
- uid: 648
@@ -18174,13 +20196,62 @@ entities:
- type: Transform
pos: 32.5,-1.5
parent: 2
- - uid: 22779
+ - uid: 19127
components:
- type: Transform
- pos: -39.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,7.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 14588
+ - 29515
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14588:
+ - DoorStatus: DoorBolt
+ 29515:
+ - DoorStatus: DoorBolt
+ - uid: 29726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,7.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 14588
+ - 29515
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14588:
+ - DoorStatus: DoorBolt
+ 29515:
+ - DoorStatus: DoorBolt
+ - uid: 32266
+ components:
+ - type: Transform
+ pos: -39.5,14.5
+ parent: 2
+ - uid: 32342
+ components:
+ - type: Transform
+ pos: -37.5,14.5
parent: 2
- proto: AirlockKitchenGlassLocked
entities:
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: -53.5,-9.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: -54.5,-9.5
+ parent: 2
- uid: 1337
components:
- type: Transform
@@ -18193,23 +20264,36 @@ entities:
rot: -1.5707963267948966 rad
pos: -59.5,-13.5
parent: 2
- - uid: 1428
+ - uid: 3319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-19.5
+ parent: 2
+ - uid: 11172
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-15.5
+ pos: -51.5,-15.5
parent: 2
- - uid: 1429
+ - uid: 22843
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-20.5
+ pos: -51.5,-23.5
+ parent: 2
+ - uid: 30631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-19.5
parent: 2
- proto: AirlockLawyerGlassLocked
entities:
- - uid: 2199
+ - uid: 15898
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -2.5,59.5
parent: 2
- proto: AirlockMailGlassLocked
@@ -18224,33 +20308,29 @@ entities:
- type: Transform
pos: -10.5,-26.5
parent: 2
-- proto: AirlockMaintCargoLocked
+- proto: AirlockMaintAtmoLocked
entities:
- - uid: 22862
- components:
- - type: Transform
- pos: -24.5,-37.5
- parent: 2
- - uid: 22863
+ - uid: 30005
components:
- type: Transform
- pos: -24.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,36.5
parent: 2
- - uid: 22864
+- proto: AirlockMaintBarLocked
+ entities:
+ - uid: 20030
components:
- type: Transform
- pos: -20.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-27.5
parent: 2
+- proto: AirlockMaintCargoLocked
+ entities:
- uid: 22865
components:
- type: Transform
pos: -2.5,-24.5
parent: 2
- - uid: 23230
- components:
- - type: Transform
- pos: -36.5,-39.5
- parent: 2
- uid: 23285
components:
- type: Transform
@@ -18261,6 +20341,13 @@ entities:
- type: Transform
pos: -7.5,-30.5
parent: 2
+- proto: AirlockMaintChapelLocked
+ entities:
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: 69.5,27.5
+ parent: 2
- proto: AirlockMaintCommandLocked
entities:
- uid: 1334
@@ -18268,21 +20355,16 @@ entities:
- type: Transform
pos: 13.5,34.5
parent: 2
- - uid: 7668
+ - uid: 2698
components:
- type: Transform
- pos: 28.5,45.5
+ pos: 7.5,47.5
parent: 2
- uid: 8049
components:
- type: Transform
pos: 22.5,29.5
parent: 2
- - uid: 8109
- components:
- - type: Transform
- pos: 7.5,46.5
- parent: 2
- uid: 8110
components:
- type: Transform
@@ -18293,6 +20375,11 @@ entities:
- type: Transform
pos: 8.5,45.5
parent: 2
+ - uid: 14970
+ components:
+ - type: Transform
+ pos: 30.5,46.5
+ parent: 2
- uid: 22624
components:
- type: Transform
@@ -18303,6 +20390,13 @@ entities:
- type: Transform
pos: 7.5,34.5
parent: 2
+- proto: AirlockMaintDetectiveLocked
+ entities:
+ - uid: 20639
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 2
- proto: AirlockMaintEngiLocked
entities:
- uid: 2851
@@ -18310,31 +20404,28 @@ entities:
- type: Transform
pos: -46.5,25.5
parent: 2
+ - uid: 3787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,24.5
+ parent: 2
- uid: 6679
components:
- type: Transform
pos: -46.5,21.5
parent: 2
- - uid: 13359
+ - uid: 7241
components:
- type: Transform
- pos: -40.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-24.5
parent: 2
- uid: 13370
components:
- type: Transform
pos: -64.5,15.5
parent: 2
- - uid: 22686
- components:
- - type: Transform
- pos: -66.5,24.5
- parent: 2
- - uid: 22687
- components:
- - type: Transform
- pos: -64.5,34.5
- parent: 2
- uid: 22714
components:
- type: Transform
@@ -18361,61 +20452,85 @@ entities:
- type: Transform
pos: 37.5,-1.5
parent: 2
- - uid: 3650
+ - uid: 19185
components:
- type: Transform
- pos: -43.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,24.5
parent: 2
-- proto: AirlockMaintLocked
+- proto: AirlockMaintKitchenLocked
entities:
- - uid: 288
+ - uid: 985
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -38.5,-31.5
+ pos: -60.5,-15.5
parent: 2
- - uid: 362
+ - uid: 30605
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -50.5,-31.5
+ pos: -60.5,-21.5
parent: 2
- - uid: 385
+- proto: AirlockMaintLocked
+ entities:
+ - uid: 387
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -34.5,-28.5
+ pos: -32.5,17.5
parent: 2
- - uid: 387
+ - uid: 570
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,17.5
+ pos: -36.5,-36.5
parent: 2
- - uid: 2539
+ - uid: 1329
components:
- type: Transform
- pos: 3.5,-21.5
+ pos: 80.5,4.5
parent: 2
- uid: 3026
components:
- type: Transform
pos: -98.5,2.5
parent: 2
+ - uid: 3807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-12.5
+ parent: 2
- uid: 5261
components:
- type: Transform
pos: 27.5,-31.5
parent: 2
+ - uid: 6299
+ components:
+ - type: Transform
+ pos: 78.5,-7.5
+ parent: 2
+ - uid: 6318
+ components:
+ - type: Transform
+ pos: 77.5,-3.5
+ parent: 2
- uid: 6838
components:
- type: Transform
pos: -97.5,-0.5
parent: 2
- - uid: 6914
+ - uid: 7101
components:
- type: Transform
- pos: 30.5,45.5
+ pos: 25.5,-17.5
+ parent: 2
+ - uid: 7376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-21.5
parent: 2
- uid: 7887
components:
@@ -18433,11 +20548,28 @@ entities:
rot: 3.141592653589793 rad
pos: -32.5,23.5
parent: 2
+ - uid: 19990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-22.5
+ parent: 2
+ - uid: 20498
+ components:
+ - type: Transform
+ pos: 48.5,-23.5
+ parent: 2
- uid: 20877
components:
- type: Transform
pos: -32.5,-12.5
parent: 2
+ - uid: 22174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,11.5
+ parent: 2
- uid: 22681
components:
- type: Transform
@@ -18478,16 +20610,6 @@ entities:
- type: Transform
pos: 8.5,-37.5
parent: 2
- - uid: 22912
- components:
- - type: Transform
- pos: 7.5,-17.5
- parent: 2
- - uid: 22913
- components:
- - type: Transform
- pos: 12.5,-28.5
- parent: 2
- uid: 22914
components:
- type: Transform
@@ -18523,73 +20645,87 @@ entities:
- type: Transform
pos: 3.5,33.5
parent: 2
- - uid: 22922
+ - uid: 22926
components:
- type: Transform
- pos: -0.5,28.5
+ pos: -44.5,18.5
parent: 2
- - uid: 22923
+ - uid: 22931
components:
- type: Transform
- pos: -0.5,44.5
+ pos: 37.5,17.5
parent: 2
- - uid: 22926
+ - uid: 22990
components:
- type: Transform
- pos: -44.5,18.5
+ pos: -4.5,-17.5
parent: 2
- - uid: 22928
+ - uid: 23001
components:
- type: Transform
- pos: -35.5,11.5
+ pos: 60.5,-28.5
parent: 2
- - uid: 22930
+ - uid: 23241
components:
- type: Transform
- pos: 38.5,-12.5
+ pos: -4.5,-30.5
parent: 2
- - uid: 22931
+ - uid: 26712
components:
- type: Transform
- pos: 37.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-28.5
parent: 2
- - uid: 22965
+ - uid: 29668
components:
- type: Transform
- pos: 6.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,30.5
parent: 2
- - uid: 22990
+ - uid: 29973
components:
- type: Transform
- pos: -4.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-32.5
parent: 2
- - uid: 23001
+- proto: AirlockMaintMedLocked
+ entities:
+ - uid: 178
components:
- type: Transform
- pos: 60.5,-28.5
+ pos: -12.5,-4.5
parent: 2
- - uid: 23241
+ - uid: 7231
components:
- type: Transform
- pos: -4.5,-30.5
+ pos: -23.5,2.5
parent: 2
- - uid: 33541
+ - uid: 18649
components:
- type: Transform
- pos: 86.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,6.5
parent: 2
-- proto: AirlockMaintMedLocked
+ - uid: 33916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,12.5
+ parent: 2
+- proto: AirlockMaintPsychologistLocked
entities:
- - uid: 11341
+ - uid: 20640
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,2.5
+ pos: -15.5,-6.5
parent: 2
- - uid: 22804
+- proto: AirlockMaintReporterLocked
+ entities:
+ - uid: 559
components:
- type: Transform
- pos: 35.5,11.5
+ pos: -26.5,-6.5
parent: 2
- proto: AirlockMaintRnDLocked
entities:
@@ -18598,16 +20734,6 @@ entities:
- type: Transform
pos: 51.5,37.5
parent: 2
- - uid: 13455
- components:
- - type: Transform
- pos: 59.5,34.5
- parent: 2
- - uid: 13456
- components:
- - type: Transform
- pos: 59.5,32.5
- parent: 2
- uid: 22595
components:
- type: Transform
@@ -18642,54 +20768,47 @@ entities:
parent: 2
- proto: AirlockMaintSecLocked
entities:
- - uid: 3121
+ - uid: 15798
components:
- type: Transform
- pos: -30.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,55.5
parent: 2
- - uid: 22626
+ - uid: 16016
components:
- type: Transform
- pos: -16.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,37.5
parent: 2
- uid: 22669
components:
- type: Transform
pos: -33.5,28.5
parent: 2
- - uid: 22670
- components:
- - type: Transform
- pos: -3.5,40.5
- parent: 2
- - uid: 22682
- components:
- - type: Transform
- pos: -17.5,51.5
- parent: 2
- - uid: 22718
+ - uid: 26318
components:
- type: Transform
- pos: -4.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,53.5
parent: 2
- proto: AirlockMaintServiceLocked
entities:
- - uid: 1674
- components:
- - type: Transform
- pos: -60.5,-15.5
- parent: 2
- uid: 2105
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -66.5,-0.5
parent: 2
- - uid: 27234
+ - uid: 30611
+ components:
+ - type: Transform
+ pos: -60.5,-28.5
+ parent: 2
+ - uid: 30636
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,-30.5
+ pos: -60.5,-11.5
parent: 2
- proto: AirlockMaintZookeeperLocked
entities:
@@ -18708,6 +20827,12 @@ entities:
- type: Transform
pos: -78.5,21.5
parent: 2
+ - uid: 22324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -80.5,19.5
+ parent: 2
- proto: AirlockMantisGlassLocked
entities:
- uid: 22712
@@ -18729,88 +20854,78 @@ entities:
- type: Transform
pos: -15.5,-12.5
parent: 2
- - uid: 25077
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 2
- proto: AirlockMedicalGlass
entities:
- - uid: 348
- components:
- - type: Transform
- pos: 8.5,8.5
- parent: 2
- - uid: 350
+ - uid: 2258
components:
- type: Transform
- pos: 10.5,8.5
+ pos: -4.5,1.5
parent: 2
- - uid: 3276
+ - uid: 2418
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,0.5
+ pos: -6.5,0.5
parent: 2
- - uid: 22782
+ - uid: 2419
components:
- type: Transform
- pos: 0.5,-3.5
+ pos: -7.5,0.5
parent: 2
- - uid: 22783
+ - uid: 8614
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: 9.5,-3.5
parent: 2
- - uid: 22784
+ - uid: 11292
components:
- type: Transform
- pos: 2.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
parent: 2
- - uid: 22785
+ - uid: 15674
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 8.5,-5.5
parent: 2
- - uid: 22786
+ - uid: 16591
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 8.5,-9.5
parent: 2
- - uid: 22787
+ - uid: 18618
components:
- type: Transform
- pos: 2.5,8.5
+ pos: 11.5,-8.5
parent: 2
- - uid: 22788
+ - uid: 22782
components:
- type: Transform
- pos: -9.5,1.5
+ pos: 0.5,-3.5
parent: 2
- - uid: 22789
+ - uid: 22783
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 1.5,-3.5
parent: 2
- - uid: 22796
+ - uid: 22784
components:
- type: Transform
- pos: -11.5,-3.5
+ pos: 2.5,-3.5
parent: 2
- - uid: 22797
+ - uid: 22785
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 0.5,8.5
parent: 2
- - uid: 22807
+ - uid: 22786
components:
- type: Transform
- pos: 30.5,-3.5
+ pos: 1.5,8.5
parent: 2
- - uid: 22808
+ - uid: 22787
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 2.5,8.5
parent: 2
- uid: 22809
components:
@@ -18842,81 +20957,61 @@ entities:
- type: Transform
pos: 20.5,-12.5
parent: 2
- - uid: 29156
+ - uid: 31001
components:
- type: Transform
- pos: 9.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,8.5
parent: 2
- proto: AirlockMedicalGlassLocked
entities:
- - uid: 364
- components:
- - type: Transform
- pos: 9.5,-13.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 23328
- - uid: 1488
- components:
- - type: Transform
- pos: 30.5,4.5
- parent: 2
- - uid: 3474
+ - uid: 247
components:
- type: Transform
- pos: 31.5,4.5
+ pos: 7.5,6.5
parent: 2
- - uid: 19819
+ - uid: 1036
components:
- type: Transform
- pos: 9.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,6.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 22047
- - uid: 22814
+ - uid: 1037
components:
- type: Transform
- pos: 32.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,6.5
parent: 2
- - uid: 22815
+ - uid: 1488
components:
- type: Transform
- pos: 25.5,8.5
+ pos: 30.5,4.5
parent: 2
- - uid: 22816
+ - uid: 3474
components:
- type: Transform
- pos: 19.5,8.5
+ pos: 31.5,4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 35837
- - uid: 22817
+ - uid: 13814
components:
- type: Transform
- pos: 18.5,8.5
+ pos: 7.5,1.5
parent: 2
- type: DeviceLinkSink
links:
- - 35837
- - uid: 22818
+ - 14202
+ - 8974
+ - uid: 19891
components:
- type: Transform
- pos: 17.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,8.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 35837
- - uid: 22822
+ - uid: 22814
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 32.5,6.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8974
- uid: 22823
components:
- type: Transform
@@ -18925,6 +21020,7 @@ entities:
- type: DeviceLinkSink
links:
- 8974
+ - 14202
- uid: 22824
components:
- type: Transform
@@ -18935,21 +21031,16 @@ entities:
- type: Transform
pos: -11.5,8.5
parent: 2
- - uid: 22826
- components:
- - type: Transform
- pos: -9.5,6.5
- parent: 2
- - uid: 22827
+ - uid: 25667
components:
- type: Transform
- pos: -9.5,-1.5
+ pos: 9.5,-13.5
parent: 2
- - uid: 22843
+ - uid: 27353
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-3.5
+ pos: 19.5,8.5
parent: 2
- uid: 27417
components:
@@ -18957,29 +21048,35 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,4.5
parent: 2
- - uid: 27418
+ - uid: 30311
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,2.5
+ pos: 29.5,1.5
parent: 2
- - uid: 27419
+ - type: DeviceLinkSink
+ links:
+ - 38118
+ - uid: 38107
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,1.5
+ pos: 29.5,2.5
parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 38118
- proto: AirlockMedicalLocked
entities:
- - uid: 22798
+ - uid: 634
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: -12.5,17.5
parent: 2
- - uid: 22799
+ - uid: 643
components:
- type: Transform
- pos: -15.5,-6.5
+ pos: -14.5,11.5
parent: 2
- uid: 22828
components:
@@ -19016,18 +21113,13 @@ entities:
- type: Transform
pos: -23.5,11.5
parent: 2
- - uid: 22837
- components:
- - type: Transform
- pos: -14.5,11.5
- parent: 2
- proto: AirlockMedicalScienceGlassLocked
entities:
- - uid: 22580
+ - uid: 34962
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,17.5
parent: 2
- proto: AirlockMimeLocked
entities:
@@ -19036,6 +21128,23 @@ entities:
- type: Transform
pos: -80.5,2.5
parent: 2
+- proto: AirlockMiningGlass
+ entities:
+ - uid: 29399
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 2
+ - uid: 36286
+ components:
+ - type: Transform
+ pos: 81.5,83.5
+ parent: 2
+ - uid: 36568
+ components:
+ - type: Transform
+ pos: 69.5,83.5
+ parent: 2
- proto: AirlockMusicianLocked
entities:
- uid: 35
@@ -19046,11 +21155,6 @@ entities:
parent: 2
- proto: AirlockParamedicLocked
entities:
- - uid: 6865
- components:
- - type: Transform
- pos: 32.5,2.5
- parent: 2
- uid: 20928
components:
- type: Transform
@@ -19074,6 +21178,13 @@ entities:
rot: 3.141592653589793 rad
pos: -29.5,-22.5
parent: 2
+- proto: AirlockReporterGlassLocked
+ entities:
+ - uid: 626
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 2
- proto: AirlockResearchDirectorGlassLocked
entities:
- uid: 22673
@@ -19181,6 +21292,20 @@ entities:
rot: -1.5707963267948966 rad
pos: 47.5,50.5
parent: 2
+- proto: AirlockScienceLocked
+ entities:
+ - uid: 27816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,42.5
+ parent: 2
+ - uid: 27818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,42.5
+ parent: 2
- proto: AirlockSecurityGlass
entities:
- uid: 22635
@@ -19203,74 +21328,126 @@ entities:
parent: 2
- proto: AirlockSecurityGlassLocked
entities:
+ - uid: 166
+ components:
+ - type: Transform
+ pos: -35.5,32.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: -40.5,59.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,65.5
+ parent: 2
- uid: 1239
components:
- type: Transform
pos: -5.5,63.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 1276
+ - 38860
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1276:
+ - DoorStatus: DoorBolt
+ 38860:
+ - DoorStatus: DoorBolt
- uid: 1240
components:
- type: Transform
pos: -5.5,64.5
parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 1276
+ - 38860
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38860:
+ - DoorStatus: DoorBolt
+ 1276:
+ - DoorStatus: DoorBolt
- uid: 1276
components:
- type: Transform
pos: -9.5,64.5
parent: 2
- - uid: 1329
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 1239
+ - 1240
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1240:
+ - DoorStatus: DoorBolt
+ 1239:
+ - DoorStatus: DoorBolt
+ - uid: 1336
components:
- type: Transform
- pos: -0.5,64.5
+ pos: -3.5,65.5
parent: 2
- - uid: 1330
+ - uid: 1740
components:
- type: Transform
- pos: -9.5,63.5
+ pos: 10.5,-20.5
parent: 2
- - uid: 1336
+ - uid: 3209
components:
- type: Transform
- pos: -3.5,65.5
+ pos: 32.5,17.5
parent: 2
- - uid: 3209
+ - uid: 15484
components:
- type: Transform
- pos: 32.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,44.5
parent: 2
- - uid: 9688
+ - uid: 15707
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,37.5
+ pos: -17.5,43.5
parent: 2
- - uid: 15621
+ - uid: 16054
components:
- type: Transform
- pos: -17.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,44.5
parent: 2
- - uid: 18083
+ - uid: 16062
components:
- type: Transform
- pos: -16.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,39.5
parent: 2
- - uid: 18199
+ - uid: 20501
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,59.5
+ pos: 3.5,-22.5
parent: 2
- - uid: 22644
+ - uid: 20517
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,29.5
+ pos: -0.5,39.5
parent: 2
- - uid: 22645
+ - uid: 22644
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -15.5,36.5
+ pos: -31.5,29.5
parent: 2
- uid: 22648
components:
@@ -19289,16 +21466,60 @@ entities:
- type: Transform
pos: 33.5,17.5
parent: 2
+ - uid: 24701
+ components:
+ - type: Transform
+ pos: 11.5,-20.5
+ parent: 2
+ - uid: 26015
+ components:
+ - type: Transform
+ pos: -26.5,52.5
+ parent: 2
+ - uid: 26522
+ components:
+ - type: Transform
+ pos: -26.5,47.5
+ parent: 2
- uid: 29717
components:
- type: Transform
pos: 6.5,65.5
parent: 2
+ - uid: 30094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,46.5
+ parent: 2
- uid: 30699
components:
- type: Transform
pos: 3.5,65.5
parent: 2
+ - uid: 37536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,61.5
+ parent: 2
+ - uid: 38860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,63.5
+ parent: 2
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 1239
+ - 1240
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1240:
+ - DoorStatus: DoorBolt
+ 1239:
+ - DoorStatus: DoorBolt
- proto: AirlockSecurityLawyerGlassLocked
entities:
- uid: 2077
@@ -19336,15 +21557,15 @@ entities:
- type: Transform
pos: -23.5,29.5
parent: 2
- - uid: 3690
+ - uid: 28722
components:
- type: Transform
- pos: -11.5,44.5
+ pos: -13.5,47.5
parent: 2
- - uid: 3735
+ - uid: 28724
components:
- type: Transform
- pos: -12.5,46.5
+ pos: -12.5,47.5
parent: 2
- uid: 31109
components:
@@ -19352,6 +21573,13 @@ entities:
rot: 3.141592653589793 rad
pos: -47.5,70.5
parent: 2
+ - type: DeviceLinkSink
+ links:
+ - 31104
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31104:
+ - DoorStatus: DoorBolt
- proto: AirlockSecurityLawyerLocked
entities:
- uid: 2583
@@ -19359,41 +21587,13 @@ entities:
- type: Transform
pos: -9.5,58.5
parent: 2
-- proto: AirlockSecurityLocked
- entities:
- - uid: 18100
- components:
- - type: Transform
- pos: 12.5,65.5
- parent: 2
- proto: AirlockServiceGlassLocked
entities:
- - uid: 19631
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
- parent: 2
- - uid: 22882
- components:
- - type: Transform
- pos: -54.5,-9.5
- parent: 2
- - uid: 22883
- components:
- - type: Transform
- pos: -53.5,-9.5
- parent: 2
- uid: 22884
components:
- type: Transform
pos: -48.5,-10.5
parent: 2
- - uid: 22893
- components:
- - type: Transform
- pos: -51.5,-23.5
- parent: 2
- uid: 23455
components:
- type: Transform
@@ -19407,6 +21607,26 @@ entities:
- type: Transform
pos: -63.5,3.5
parent: 2
+- proto: AirlockShuttleSyndicate
+ entities:
+ - uid: 4910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,74.5
+ parent: 2
+ - uid: 30109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,72.5
+ parent: 2
+ - uid: 32087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,73.5
+ parent: 2
- proto: AirlockTheatreLocked
entities:
- uid: 22774
@@ -19421,10 +21641,15 @@ entities:
parent: 2
- proto: AirlockVirologyGlassLocked
entities:
- - uid: 21924
+ - uid: 7220
components:
- type: Transform
- pos: -14.5,4.5
+ pos: -7.5,4.5
+ parent: 2
+ - uid: 7885
+ components:
+ - type: Transform
+ pos: -6.5,4.5
parent: 2
- proto: AirlockZookeeperGlassLocked
entities:
@@ -19512,8 +21737,16 @@ entities:
deviceLists:
- 25286
- 25285
- - 25287
- 25293
+ - uid: 781
+ components:
+ - type: Transform
+ pos: 20.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - 38117
- uid: 1255
components:
- type: Transform
@@ -19550,6 +21783,66 @@ entities:
- type: DeviceNetwork
deviceLists:
- 8213
+ - uid: 1307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 1481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - 36760
+ - 38117
+ - uid: 1669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -77.5,11.5
+ parent: 2
+ - uid: 1691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-11.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25333
+ - 27414
+ - 25334
+ - 7606
+ - 4313
+ - 175
+ - uid: 1729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2655
+ - 7120
+ - 1320
- uid: 2763
components:
- type: Transform
@@ -19559,6 +21852,41 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22045
+ - uid: 3321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-18.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - 25333
+ - 27414
+ - 25334
+ - 7606
+ - uid: 3548
+ components:
+ - type: Transform
+ pos: -58.5,-28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - 12404
+ - uid: 3836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,54.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34110
+ - 25316
+ - type: AtmosDevice
+ joinedGrid: 2
- uid: 4243
components:
- type: Transform
@@ -19576,57 +21904,198 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23957
+ - 39141
+ - uid: 4546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - 3525
+ - 3405
+ - uid: 4548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,17.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 3525
+ - 3405
+ - uid: 4614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 4734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,73.5
+ parent: 2
+ - uid: 4755
+ components:
+ - type: Transform
+ pos: 58.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - 3525
+ - uid: 4814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12411
+ - 12440
+ - 19822
+ - uid: 5243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
- uid: 6264
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -11.5,20.5
parent: 2
- - uid: 9039
+ - uid: 6614
components:
- type: Transform
- pos: -32.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-27.5
parent: 2
- - uid: 13036
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - 28192
+ - 6715
+ - uid: 9655
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-5.5
+ pos: -30.5,39.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25288
- - 25287
+ - 26091
+ - uid: 10269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - uid: 14592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,2.5
+ parent: 2
+ - uid: 15474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,48.5
+ parent: 2
+ - uid: 15482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - uid: 15618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - 34109
+ - 34110
+ - 35889
- uid: 15931
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 31.5,16.5
parent: 2
- - uid: 16550
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - uid: 15975
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -28.5,51.5
+ pos: -21.5,42.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 16607
- - 18239
- - uid: 18025
+ - 26091
+ - uid: 17737
components:
- type: Transform
- pos: -38.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,-37.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - uid: 17962
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25330
+ - 792
+ - uid: 17999
+ components:
+ - type: Transform
+ pos: 18.5,58.5
+ parent: 2
- uid: 18227
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -9.5,66.5
parent: 2
+ - uid: 18241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - 25333
+ - 27414
- uid: 18278
components:
- type: Transform
@@ -19635,21 +22104,45 @@ entities:
- type: DeviceNetwork
deviceLists:
- 18239
- - 16607
- - uid: 22365
+ - uid: 19727
components:
- type: Transform
- pos: 7.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-32.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19822
+ - uid: 20241
+ components:
+ - type: Transform
+ pos: 14.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - 36760
+ - uid: 20931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,-11.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 22348
+ - 25293
+ - 25285
+ - 25248
+ - 38117
- uid: 23698
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -53.5,20.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21100
- uid: 23802
components:
- type: Transform
@@ -19673,6 +22166,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -46.5,29.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
+ - 21100
+ - uid: 25279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,3.5
+ parent: 2
- uid: 25310
components:
- type: Transform
@@ -19681,21 +22184,42 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25206
+ - 2594
+ - 33892
- uid: 25311
components:
- type: Transform
pos: 32.5,48.5
parent: 2
- - uid: 26700
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 33892
+ - uid: 25341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-27.5
+ parent: 2
+ - uid: 25970
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-40.5
+ pos: -31.5,44.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34110
+ - uid: 26633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-25.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25341
- 400
+ - 6715
- uid: 27311
components:
- type: Transform
@@ -19704,34 +22228,67 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25275
- - uid: 27312
+ - uid: 27333
components:
- type: Transform
- pos: 2.5,-1.5
+ pos: 27.5,9.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25275
- - uid: 27504
+ - 21
+ - 31752
+ - uid: 27334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-23.5
+ pos: 33.5,16.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25260
+ - 21
- uid: 27771
components:
- type: Transform
pos: 50.5,4.5
parent: 2
+ - uid: 28080
+ components:
+ - type: Transform
+ pos: -24.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25291
+ - 25275
+ - 25290
+ - uid: 28160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - 28192
+ - uid: 28258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-18.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25261
+ - 6715
- uid: 28333
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -54.5,33.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
- uid: 28334
components:
- type: Transform
@@ -19776,26 +22333,37 @@ entities:
- type: Transform
pos: -42.5,33.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - 21100
- uid: 28343
components:
- type: Transform
pos: -36.5,38.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - 21100
- uid: 28344
components:
- type: Transform
pos: -58.5,44.5
parent: 2
- - uid: 28345
- components:
- - type: Transform
- pos: -48.5,40.5
- parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - 21100
- uid: 28346
components:
- type: Transform
pos: -52.5,50.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - 21100
- uid: 28347
components:
- type: Transform
@@ -19875,29 +22443,20 @@ entities:
- type: Transform
pos: -62.5,-15.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - 25333
+ - 27414
- uid: 28368
components:
- type: Transform
pos: -54.5,-36.5
parent: 2
- - uid: 28369
- components:
- - type: Transform
- pos: -39.5,-36.5
- parent: 2
- - uid: 28371
- components:
- - type: Transform
- pos: -58.5,-18.5
- parent: 2
- - uid: 28372
- components:
- - type: Transform
- pos: -55.5,-12.5
- parent: 2
- type: DeviceNetwork
deviceLists:
- - 4313
+ - 12404
- uid: 28373
components:
- type: Transform
@@ -19908,16 +22467,14 @@ entities:
- type: Transform
pos: -59.5,-1.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
- uid: 28375
components:
- type: Transform
pos: -59.5,1.5
parent: 2
- - uid: 28377
- components:
- - type: Transform
- pos: -38.5,23.5
- parent: 2
- uid: 28378
components:
- type: Transform
@@ -19936,14 +22493,6 @@ entities:
- type: Transform
pos: -32.5,29.5
parent: 2
- - uid: 28381
- components:
- - type: Transform
- pos: -26.5,28.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- uid: 28382
components:
- type: Transform
@@ -19952,29 +22501,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25158
+ - 22157
- uid: 28383
components:
- type: Transform
pos: -9.5,29.5
parent: 2
- - uid: 28384
- components:
- - type: Transform
- pos: -12.5,42.5
- parent: 2
- - uid: 28385
- components:
- - type: Transform
- pos: -20.5,44.5
- parent: 2
- type: DeviceNetwork
deviceLists:
- - 25158
- - uid: 28386
- components:
- - type: Transform
- pos: -24.5,45.5
- parent: 2
+ - 22157
- uid: 28387
components:
- type: Transform
@@ -20006,6 +22541,7 @@ entities:
deviceLists:
- 25244
- 17901
+ - 20237
- uid: 28393
components:
- type: Transform
@@ -20015,11 +22551,17 @@ entities:
deviceLists:
- 25244
- 17901
+ - 37709
- uid: 28394
components:
- type: Transform
pos: -53.5,-2.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4313
+ - 175
+ - 12403
- uid: 28395
components:
- type: Transform
@@ -20028,6 +22570,11 @@ entities:
- type: DeviceNetwork
deviceLists:
- 4313
+ - 25334
+ - 7606
+ - 175
+ - 12403
+ - 25243
- uid: 28396
components:
- type: Transform
@@ -20037,6 +22584,14 @@ entities:
deviceLists:
- 69
- 25244
+ - 11474
+ - 21934
+ - 26732
+ - 7608
+ - 27414
+ - 25334
+ - 7606
+ - 25291
- uid: 28397
components:
- type: Transform
@@ -20045,42 +22600,22 @@ entities:
- type: DeviceNetwork
deviceLists:
- 69
+ - 11474
+ - 21934
- type: AtmosDevice
joinedGrid: 2
- - uid: 28398
- components:
- - type: Transform
- pos: -55.5,-22.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 28399
- components:
- - type: Transform
- pos: -56.5,-16.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 28400
- components:
- - type: Transform
- pos: -44.5,-30.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- uid: 28402
components:
- type: Transform
pos: -32.5,-24.5
parent: 2
- - uid: 28403
- components:
- - type: Transform
- pos: -15.5,-40.5
- parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
+ - 2655
+ - 11474
+ - 21934
+ - 7120
- uid: 28404
components:
- type: Transform
@@ -20088,13 +22623,8 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 25341
+ - 6715
- 400
- - uid: 28406
- components:
- - type: Transform
- pos: -11.5,-21.5
- parent: 2
- uid: 28407
components:
- type: Transform
@@ -20105,6 +22635,9 @@ entities:
- type: Transform
pos: -10.5,-29.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
- uid: 28409
components:
- type: Transform
@@ -20118,9 +22651,6 @@ entities:
- type: Transform
pos: -12.5,-41.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- uid: 28411
components:
- type: Transform
@@ -20136,31 +22666,9 @@ entities:
- type: Transform
pos: 9.5,-29.5
parent: 2
- - uid: 28415
- components:
- - type: Transform
- pos: 11.5,-24.5
- parent: 2
- - uid: 28416
- components:
- - type: Transform
- pos: 21.5,-25.5
- parent: 2
- - uid: 28417
- components:
- - type: Transform
- pos: 16.5,-34.5
- parent: 2
- - uid: 28418
- components:
- - type: Transform
- pos: 25.5,-21.5
- parent: 2
- - uid: 28419
- components:
- - type: Transform
- pos: 14.5,-19.5
- parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19822
- uid: 28420
components:
- type: Transform
@@ -20171,21 +22679,15 @@ entities:
- type: Transform
pos: 34.5,-34.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9212
+ - 28628
- uid: 28422
components:
- type: Transform
pos: 35.5,-21.5
parent: 2
- - uid: 28423
- components:
- - type: Transform
- pos: 45.5,-29.5
- parent: 2
- - uid: 28424
- components:
- - type: Transform
- pos: 45.5,-34.5
- parent: 2
- uid: 28425
components:
- type: Transform
@@ -20199,6 +22701,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 29087
+ - 18513
- uid: 28427
components:
- type: Transform
@@ -20223,6 +22726,9 @@ entities:
- type: Transform
pos: 78.5,-4.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 3405
- uid: 28431
components:
- type: Transform
@@ -20238,19 +22744,21 @@ entities:
- type: Transform
pos: 47.5,-16.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9212
+ - 28628
- uid: 28434
components:
- type: Transform
pos: 33.5,-15.5
parent: 2
- - uid: 28435
- components:
- - type: Transform
- pos: 30.5,-4.5
- parent: 2
- type: DeviceNetwork
deviceLists:
- - 1655
+ - 12411
+ - 12440
+ - 9212
+ - 28628
- uid: 28436
components:
- type: Transform
@@ -20259,31 +22767,11 @@ entities:
- type: DeviceNetwork
deviceLists:
- 6298
- - uid: 28438
- components:
- - type: Transform
- pos: 16.5,3.5
- parent: 2
- - uid: 28439
- components:
- - type: Transform
- pos: 22.5,2.5
- parent: 2
- - uid: 28440
- components:
- - type: Transform
- pos: 28.5,2.5
- parent: 2
- uid: 28463
components:
- type: Transform
pos: 18.5,-11.5
parent: 2
- - uid: 28465
- components:
- - type: Transform
- pos: 10.5,3.5
- parent: 2
- uid: 28472
components:
- type: Transform
@@ -20305,15 +22793,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 17901
- - uid: 28475
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - 25275
+ - 37709
- uid: 28476
components:
- type: Transform
@@ -20339,39 +22819,31 @@ entities:
- type: Transform
pos: -5.5,-5.5
parent: 2
- - uid: 28481
- components:
- - type: Transform
- pos: 9.5,10.5
- parent: 2
- - uid: 28482
- components:
- - type: Transform
- pos: 18.5,11.5
- parent: 2
- - uid: 28483
- components:
- - type: Transform
- pos: 31.5,11.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- uid: 28484
components:
- type: Transform
pos: 33.5,6.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
- uid: 28485
components:
- type: Transform
pos: 36.5,12.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - 21
- uid: 28486
components:
- type: Transform
pos: 39.5,-3.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
- uid: 28487
components:
- type: Transform
@@ -20379,7 +22851,8 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 22348
+ - 22157
+ - 2594
- uid: 28488
components:
- type: Transform
@@ -20389,11 +22862,16 @@ entities:
deviceLists:
- 25300
- 23957
+ - 39141
- uid: 28490
components:
- type: Transform
pos: 58.5,27.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - 39141
- uid: 28512
components:
- type: Transform
@@ -20404,6 +22882,9 @@ entities:
- type: Transform
pos: 45.5,43.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
- uid: 28514
components:
- type: Transform
@@ -20419,23 +22900,14 @@ entities:
- type: Transform
pos: 11.5,32.5
parent: 2
- - uid: 28519
- components:
- - type: Transform
- pos: 24.5,45.5
- parent: 2
- - uid: 28520
- components:
- - type: Transform
- pos: 22.5,48.5
- parent: 2
- type: DeviceNetwork
deviceLists:
- - 4870
- - uid: 28521
+ - 2594
+ - 33892
+ - uid: 28519
components:
- type: Transform
- pos: 18.5,54.5
+ pos: 24.5,45.5
parent: 2
- uid: 28522
components:
@@ -20452,6 +22924,9 @@ entities:
- type: Transform
pos: 5.5,36.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
- uid: 28525
components:
- type: Transform
@@ -20472,6 +22947,9 @@ entities:
- type: Transform
pos: 43.5,37.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
- uid: 28530
components:
- type: Transform
@@ -20493,6 +22971,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25206
+ - 33892
- uid: 28533
components:
- type: Transform
@@ -20512,31 +22991,43 @@ entities:
rot: -1.5707963267948966 rad
pos: 44.5,32.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
- uid: 28547
components:
- type: Transform
pos: 20.5,24.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
- uid: 28585
components:
- type: Transform
pos: 13.5,29.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
- uid: 28586
components:
- type: Transform
pos: 8.5,28.5
parent: 2
- - uid: 28587
- components:
- - type: Transform
- pos: 13.5,19.5
- parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
- uid: 28588
components:
- type: Transform
pos: 2.5,30.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 29631
+ - 20237
- uid: 28590
components:
- type: Transform
@@ -20557,11 +23048,6 @@ entities:
- type: Transform
pos: -3.5,66.5
parent: 2
- - uid: 28595
- components:
- - type: Transform
- pos: -4.5,63.5
- parent: 2
- uid: 28596
components:
- type: Transform
@@ -20609,6 +23095,9 @@ entities:
- type: Transform
pos: -7.5,59.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
- uid: 28603
components:
- type: Transform
@@ -20617,21 +23106,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25158
+ - 22157
- uid: 28604
components:
- type: Transform
pos: -10.5,58.5
parent: 2
- - uid: 28605
- components:
- - type: Transform
- pos: -24.5,36.5
- parent: 2
- - uid: 28606
- components:
- - type: Transform
- pos: -20.5,41.5
- parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
- uid: 28607
components:
- type: Transform
@@ -20665,6 +23148,9 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,11.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37709
- uid: 28617
components:
- type: Transform
@@ -20687,6 +23173,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,-15.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
- uid: 28633
components:
- type: Transform
@@ -20696,6 +23185,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25300
+ - 39141
- uid: 28637
components:
- type: Transform
@@ -20704,6 +23194,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25206
+ - 39141
- uid: 28646
components:
- type: Transform
@@ -20721,6 +23212,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 25206
+ - 33892
+ - 20237
+ - 21
- uid: 28733
components:
- type: Transform
@@ -20735,6 +23229,9 @@ entities:
- type: Transform
pos: -53.5,40.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
- uid: 28741
components:
- type: Transform
@@ -20768,6 +23265,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 69
+ - 22060
- uid: 28778
components:
- type: Transform
@@ -20780,6 +23278,9 @@ entities:
rot: 1.5707963267948966 rad
pos: -30.5,-20.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
- uid: 28790
components:
- type: Transform
@@ -20812,7 +23313,6 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 22348
- 1690
- uid: 31156
components:
@@ -20827,17 +23327,178 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,-42.5
+ pos: 6.5,20.5
parent: 2
- type: DeviceNetwork
deviceLists:
- - 7137
- - uid: 31774
+ - 33892
+ - 21
+ - uid: 33915
+ components:
+ - type: Transform
+ pos: 19.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - 37193
+ - 36760
+ - uid: 33921
+ components:
+ - type: Transform
+ pos: 9.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - 36760
+ - uid: 34114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,49.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 34366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25166
+ - 25158
+ - uid: 35888
+ components:
+ - type: Transform
+ pos: -16.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 35889
+ - uid: 36885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - 25288
+ - 25285
+ - 36760
+ - 25276
+ - uid: 37407
+ components:
+ - type: Transform
+ pos: 45.5,-34.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37414
+ - 9212
+ - 28628
+ - 25294
+ - uid: 37408
+ components:
+ - type: Transform
+ pos: 47.5,-26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37414
+ - 9212
+ - 28628
+ - uid: 37891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29087
+ - 18513
+ - uid: 38182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - 12404
+ - uid: 38221
+ components:
+ - type: Transform
+ pos: -38.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - 12404
+ - uid: 38380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,43.5
+ parent: 2
+ - uid: 38807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,58.5
+ parent: 2
+ - uid: 38833
+ components:
+ - type: Transform
+ pos: 26.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4870
+ - uid: 38929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,60.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 39190
+ components:
+ - type: Transform
+ pos: 9.5,-12.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - 37193
+ - uid: 39210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
+ - uid: 39211
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -45.5,-42.5
+ pos: 1.5,7.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
- proto: AltarBananium
entities:
- uid: 23502
@@ -20846,9 +23507,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -74.5,-4.5
parent: 2
-- proto: AltarChaos
+- proto: AltarConvertWhite
entities:
- - uid: 24637
+ - uid: 117
components:
- type: Transform
rot: -1.5707963267948966 rad
@@ -20861,12 +23522,71 @@ entities:
- type: Transform
pos: 87.5,40.5
parent: 2
-- proto: AltarTechnology
+- proto: AlwaysPoweredLightPostSmallRed
entities:
- - uid: 4679
+ - uid: 8277
components:
- type: Transform
- pos: -67.5,33.5
+ pos: -101.5,46.5
+ parent: 2
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: -93.5,54.5
+ parent: 2
+ - uid: 9862
+ components:
+ - type: Transform
+ pos: -118.5,61.5
+ parent: 2
+ - uid: 13331
+ components:
+ - type: Transform
+ pos: -110.5,45.5
+ parent: 2
+ - uid: 13366
+ components:
+ - type: Transform
+ pos: -100.5,36.5
+ parent: 2
+ - uid: 18867
+ components:
+ - type: Transform
+ pos: -117.5,51.5
+ parent: 2
+ - uid: 18868
+ components:
+ - type: Transform
+ pos: -126.5,53.5
+ parent: 2
+ - uid: 18869
+ components:
+ - type: Transform
+ pos: -100.5,56.5
+ parent: 2
+ - uid: 22225
+ components:
+ - type: Transform
+ pos: -109.5,59.5
+ parent: 2
+ - uid: 38190
+ components:
+ - type: Transform
+ pos: -122.5,41.5
+ parent: 2
+- proto: AlwaysPoweredlightRed
+ entities:
+ - uid: 9298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -102.5,50.5
+ parent: 2
+ - uid: 32362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -110.5,54.5
parent: 2
- proto: AmeController
entities:
@@ -20878,7 +23598,7 @@ entities:
parent: 2
- type: Physics
bodyType: Dynamic
-- proto: AmePart
+- proto: AmePartFlatpack
entities:
- uid: 7193
components:
@@ -20896,13 +23616,6 @@ entities:
rot: 0.116782046854496 rad
pos: -58.46974,30.660925
parent: 2
-- proto: AmmoTechFab
- entities:
- - uid: 808
- components:
- - type: Transform
- pos: -28.5,44.5
- parent: 2
- proto: AnomalyLocator
entities:
- uid: 5278
@@ -20939,6 +23652,21 @@ entities:
rot: 1.5707963267948966 rad
pos: -70.5,2.5
parent: 2
+ - uid: 1163
+ components:
+ - type: MetaData
+ name: ICU APC
+ - type: Transform
+ pos: 11.5,17.5
+ parent: 2
+ - uid: 1364
+ components:
+ - type: MetaData
+ name: Morgue APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,11.5
+ parent: 2
- uid: 2430
components:
- type: MetaData
@@ -20946,20 +23674,20 @@ entities:
- type: Transform
pos: 34.5,31.5
parent: 2
- - uid: 5421
+ - uid: 4804
components:
- type: MetaData
- name: South Security APC
+ name: Xenoarchaeology APC
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,35.5
+ pos: 48.5,50.5
parent: 2
- - uid: 8437
+ - uid: 5973
components:
- type: MetaData
- name: North Security APC
+ name: East Hospital Maints APC
- type: Transform
- pos: -27.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,15.5
parent: 2
- uid: 10071
components:
@@ -20976,6 +23704,14 @@ entities:
- type: Transform
pos: -55.5,-9.5
parent: 2
+ - uid: 10577
+ components:
+ - type: MetaData
+ name: North Security APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,42.5
+ parent: 2
- uid: 11058
components:
- type: MetaData
@@ -20990,19 +23726,6 @@ entities:
- type: Transform
pos: -64.5,-19.5
parent: 2
- - uid: 11633
- components:
- - type: MetaData
- name: Bar Maints APC
- - type: Transform
- pos: 9.5,-17.5
- parent: 2
- - uid: 11649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-31.5
- parent: 2
- uid: 11892
components:
- type: MetaData
@@ -21021,7 +23744,7 @@ entities:
- uid: 12451
components:
- type: MetaData
- name: Bridge APC
+ name: Main Bridge APC
- type: Transform
rot: -1.5707963267948966 rad
pos: 20.5,48.5
@@ -21036,41 +23759,11 @@ entities:
- uid: 14215
components:
- type: MetaData
- name: Bridge APC
+ name: Bridge Entrance APC
- type: Transform
rot: 1.5707963267948966 rad
pos: 16.5,45.5
parent: 2
- - uid: 14364
- components:
- - type: MetaData
- name: Janitor APC
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,23.5
- parent: 2
- - uid: 14379
- components:
- - type: MetaData
- name: Telecomms APC
- - type: Transform
- pos: 5.5,63.5
- parent: 2
- - uid: 14386
- components:
- - type: MetaData
- name: East Hospital APC
- - type: Transform
- pos: 22.5,8.5
- parent: 2
- - uid: 14508
- components:
- - type: MetaData
- name: Xenoarchaeology APC
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,45.5
- parent: 2
- uid: 14587
components:
- type: MetaData
@@ -21079,16 +23772,10 @@ entities:
rot: 3.141592653589793 rad
pos: 22.5,-3.5
parent: 2
- - uid: 14588
- components:
- - type: MetaData
- name: Recycling/West Hospital Maints APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,10.5
- parent: 2
- uid: 14757
components:
+ - type: MetaData
+ name: Break Room APC
- type: Transform
pos: -15.5,14.5
parent: 2
@@ -21114,27 +23801,13 @@ entities:
- type: Transform
pos: -33.5,23.5
parent: 2
- - uid: 19177
- components:
- - type: MetaData
- name: Particle Accelerator APC
- - type: Transform
- pos: -98.5,55.5
- parent: 2
- - uid: 20186
- components:
- - type: MetaData
- name: Morgue APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,10.5
- parent: 2
- - uid: 20392
+ - uid: 19060
components:
- type: MetaData
- name: East Hospital Maints APC
+ name: PA APC
- type: Transform
- pos: 40.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-22.5
parent: 2
- uid: 20436
components:
@@ -21143,14 +23816,6 @@ entities:
- type: Transform
pos: 54.5,-36.5
parent: 2
- - uid: 20469
- components:
- - type: MetaData
- name: Psych Ward Maints APC
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,70.5
- parent: 2
- uid: 20659
components:
- type: MetaData
@@ -21173,44 +23838,61 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,39.5
parent: 2
- - uid: 26721
+ - uid: 26539
+ components:
+ - type: MetaData
+ name: Cave APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,54.5
+ parent: 2
+ - uid: 27165
components:
- type: MetaData
name: Food Court APC
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-24.5
parent: 2
- - uid: 30857
+ - uid: 30118
components:
- type: MetaData
- name: Long-Term Care APC
+ name: Black Market APC
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,77.5
parent: 2
- - uid: 30973
+ - uid: 30489
components:
- type: MetaData
- name: Examination Room APC
+ name: South Security APC
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,36.5
parent: 2
- - uid: 31003
+ - uid: 30819
components:
- type: MetaData
- name: Exam Room APC
+ name: Bridge Bar / Camera Router APC
- type: Transform
- pos: 8.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,56.5
parent: 2
- - uid: 31005
+ - uid: 30857
components:
- type: MetaData
- name: CMO/Psych APC
+ name: Long-Term Care APC
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-5.5
+ pos: 32.5,0.5
+ parent: 2
+ - uid: 30973
+ components:
+ - type: MetaData
+ name: Examination Room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-12.5
parent: 2
- uid: 31436
components:
@@ -21228,6 +23910,14 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,27.5
parent: 2
+ - uid: 31958
+ components:
+ - type: MetaData
+ name: Armory / Warden APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,41.5
+ parent: 2
- uid: 32600
components:
- type: MetaData
@@ -21260,30 +23950,61 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,25.5
parent: 2
-- proto: APCConstructed
- entities:
- - uid: 21833
+ - uid: 36740
components:
+ - type: MetaData
+ name: Outpost APC
- type: Transform
- pos: -30.5,-29.5
+ pos: 16.5,-27.5
parent: 2
-- proto: APCHighCapacity
- entities:
- - uid: 848
+ - uid: 37337
components:
- type: MetaData
- name: North Logistics APC
+ name: Psych Ward Maints APC
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,-22.5
+ pos: -40.5,71.5
parent: 2
- - uid: 985
+ - uid: 37697
+ components:
+ - type: MetaData
+ name: Disposals / West Hospital Maints APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,10.5
+ parent: 2
+ - uid: 38071
+ components:
+ - type: MetaData
+ name: Comms APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,16.5
+ parent: 2
+ - uid: 38222
components:
- type: MetaData
name: Bar APC
+ - type: Transform
+ pos: -38.5,-30.5
+ parent: 2
+ - uid: 38919
+ components:
+ - type: MetaData
+ name: Arrivals APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-39.5
+ parent: 2
+- proto: APCHighCapacity
+ entities:
+ - uid: 848
+ components:
+ - type: MetaData
+ name: North Logistics APC
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,-23.5
+ pos: -23.5,-22.5
parent: 2
- uid: 1537
components:
@@ -21307,11 +24028,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -48.5,1.5
parent: 2
- - uid: 14401
- components:
- - type: Transform
- pos: 21.5,11.5
- parent: 2
- uid: 28727
components:
- type: MetaData
@@ -21328,22 +24044,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 50.5,25.5
parent: 2
- - uid: 30823
- components:
- - type: MetaData
- name: Labyrinth APC
- - type: Transform
- pos: 52.5,45.5
- parent: 2
- proto: APCSuperCapacity
entities:
- - uid: 761
- components:
- - type: MetaData
- name: Psych Ward APC
- - type: Transform
- pos: -41.5,68.5
- parent: 2
- uid: 1065
components:
- type: MetaData
@@ -21360,18 +24062,33 @@ entities:
rot: -1.5707963267948966 rad
pos: 41.5,41.5
parent: 2
+ - uid: 16585
+ components:
+ - type: MetaData
+ name: CMO & Psych APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-4.5
+ parent: 2
+ - uid: 37320
+ components:
+ - type: MetaData
+ name: Psych Ward APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,57.5
+ parent: 2
- proto: AppraisalTool
entities:
- uid: 709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.610767,-41.409016
+ pos: -17.570854,-46.269466
parent: 2
- uid: 6833
components:
- type: Transform
- pos: -9.377287,-42.321095
+ pos: -9.334773,-45.40228
parent: 2
- uid: 6835
components:
@@ -21385,17 +24102,51 @@ entities:
parent: 2
- proto: ArrivalsShuttleTimer
entities:
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: -3.5,-30.5
+ parent: 2
+ - uid: 15391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,25.5
+ parent: 2
+ - uid: 15410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,33.5
+ parent: 2
- uid: 34759
components:
- type: Transform
pos: 6.5,-30.5
parent: 2
+- proto: ArtifactFragment1
+ entities:
+ - uid: 36098
+ components:
+ - type: Transform
+ pos: 68.680916,85.79637
+ parent: 2
+ - uid: 36099
+ components:
+ - type: Transform
+ pos: 64.23404,81.25334
+ parent: 2
+ - uid: 36100
+ components:
+ - type: Transform
+ pos: 68.837166,85.51512
+ parent: 2
- proto: Ashtray
entities:
- uid: 916
components:
- type: Transform
- pos: -10.589411,-42.56779
+ pos: -9.116023,-45.56634
parent: 2
- uid: 7716
components:
@@ -21407,6 +24158,11 @@ entities:
- type: Transform
pos: 65.608315,30.830063
parent: 2
+ - uid: 11840
+ components:
+ - type: Transform
+ pos: 14.307027,12.448013
+ parent: 2
- uid: 20306
components:
- type: Transform
@@ -21415,37 +24171,57 @@ entities:
- uid: 20309
components:
- type: Transform
- pos: -4.2579336,5.73864
+ pos: 3.324771,6.13163
parent: 2
- - uid: 25506
+ - uid: 25786
components:
- type: Transform
- pos: 15.698947,-32.39939
+ pos: 47.096138,24.724594
parent: 2
- - uid: 25570
+ - uid: 28667
components:
- type: Transform
- pos: 19.771864,-32.451473
+ pos: -5.875018,-7.4519844
parent: 2
- - uid: 25786
+ - uid: 28668
components:
- type: Transform
- pos: 47.096138,24.724594
+ pos: -11.764461,-45.363216
parent: 2
- - uid: 26731
+ - uid: 31232
components:
- type: Transform
- pos: -46.9835,-27.290182
+ pos: -47.40659,-33.965675
parent: 2
- - uid: 28667
+ - uid: 31233
components:
- type: Transform
- pos: -5.875018,-7.4519844
+ pos: -43.648777,-31.348488
parent: 2
- - uid: 28668
+ - uid: 31234
+ components:
+ - type: Transform
+ pos: -36.96909,-34.332863
+ parent: 2
+ - uid: 31235
+ components:
+ - type: Transform
+ pos: -43.023777,-28.26255
+ parent: 2
+ - uid: 31236
+ components:
+ - type: Transform
+ pos: -41.547215,-24.317238
+ parent: 2
+ - uid: 36636
components:
- type: Transform
- pos: -12.10113,-42.239666
+ pos: 99.6914,61.386414
+ parent: 2
+ - uid: 36637
+ components:
+ - type: Transform
+ pos: 102.13671,58.112976
parent: 2
- proto: AsteroidAltRock
entities:
@@ -21464,6 +24240,11 @@ entities:
- type: Transform
pos: -98.5,69.5
parent: 2
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: -108.5,58.5
+ parent: 2
- uid: 1047
components:
- type: Transform
@@ -21482,6 +24263,47 @@ entities:
rot: -1.5707963267948966 rad
pos: -65.5,-27.5
parent: 2
+ - uid: 1475
+ components:
+ - type: Transform
+ pos: 77.5,65.5
+ parent: 2
+ - uid: 2779
+ components:
+ - type: Transform
+ pos: -113.5,51.5
+ parent: 2
+ - uid: 2862
+ components:
+ - type: Transform
+ pos: -113.5,52.5
+ parent: 2
+ - uid: 3694
+ components:
+ - type: Transform
+ pos: -113.5,53.5
+ parent: 2
+ - uid: 5093
+ components:
+ - type: Transform
+ pos: -69.5,-21.5
+ parent: 2
+ - uid: 5629
+ components:
+ - type: Transform
+ pos: -68.5,-21.5
+ parent: 2
+ - uid: 5697
+ components:
+ - type: Transform
+ pos: -68.5,-20.5
+ parent: 2
+ - uid: 5984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,39.5
+ parent: 2
- uid: 7859
components:
- type: Transform
@@ -21528,6 +24350,59 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,-36.5
parent: 2
+ - uid: 8164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,47.5
+ parent: 2
+ - uid: 8214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,46.5
+ parent: 2
+ - uid: 8215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,46.5
+ parent: 2
+ - uid: 8226
+ components:
+ - type: Transform
+ pos: -103.5,48.5
+ parent: 2
+ - uid: 8276
+ components:
+ - type: Transform
+ pos: 72.5,56.5
+ parent: 2
+ - uid: 8278
+ components:
+ - type: Transform
+ pos: -100.5,43.5
+ parent: 2
+ - uid: 8286
+ components:
+ - type: Transform
+ pos: -100.5,49.5
+ parent: 2
+ - uid: 8288
+ components:
+ - type: Transform
+ pos: -99.5,53.5
+ parent: 2
+ - uid: 8291
+ components:
+ - type: Transform
+ pos: -99.5,51.5
+ parent: 2
+ - uid: 8293
+ components:
+ - type: Transform
+ pos: 88.5,25.5
+ parent: 2
- uid: 8309
components:
- type: Transform
@@ -21615,11 +24490,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -64.5,-31.5
parent: 2
- - uid: 8644
+ - uid: 8372
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,-20.5
+ pos: 90.5,22.5
parent: 2
- uid: 8645
components:
@@ -21627,6 +24501,52 @@ entities:
rot: -1.5707963267948966 rad
pos: -61.5,-29.5
parent: 2
+ - uid: 9160
+ components:
+ - type: Transform
+ pos: -99.5,49.5
+ parent: 2
+ - uid: 9190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -98.5,53.5
+ parent: 2
+ - uid: 9293
+ components:
+ - type: Transform
+ pos: -93.5,42.5
+ parent: 2
+ - uid: 9321
+ components:
+ - type: Transform
+ pos: -93.5,44.5
+ parent: 2
+ - uid: 9376
+ components:
+ - type: Transform
+ pos: -93.5,51.5
+ parent: 2
+ - uid: 9405
+ components:
+ - type: Transform
+ pos: -101.5,59.5
+ parent: 2
+ - uid: 9413
+ components:
+ - type: Transform
+ pos: -101.5,44.5
+ parent: 2
+ - uid: 9462
+ components:
+ - type: Transform
+ pos: -100.5,55.5
+ parent: 2
+ - uid: 9631
+ components:
+ - type: Transform
+ pos: 93.5,14.5
+ parent: 2
- uid: 9663
components:
- type: Transform
@@ -21643,11 +24563,41 @@ entities:
rot: 3.141592653589793 rad
pos: -71.5,-34.5
parent: 2
+ - uid: 9670
+ components:
+ - type: Transform
+ pos: 100.5,16.5
+ parent: 2
- uid: 9689
components:
- type: Transform
pos: -68.5,-22.5
parent: 2
+ - uid: 9699
+ components:
+ - type: Transform
+ pos: 101.5,16.5
+ parent: 2
+ - uid: 9861
+ components:
+ - type: Transform
+ pos: -100.5,59.5
+ parent: 2
+ - uid: 10330
+ components:
+ - type: Transform
+ pos: -103.5,45.5
+ parent: 2
+ - uid: 10359
+ components:
+ - type: Transform
+ pos: 100.5,17.5
+ parent: 2
+ - uid: 11103
+ components:
+ - type: Transform
+ pos: -103.5,43.5
+ parent: 2
- uid: 11212
components:
- type: Transform
@@ -21665,6 +24615,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -63.5,-27.5
parent: 2
+ - uid: 11417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,40.5
+ parent: 2
- uid: 11478
components:
- type: Transform
@@ -21775,6 +24731,11 @@ entities:
- type: Transform
pos: -101.5,72.5
parent: 2
+ - uid: 11641
+ components:
+ - type: Transform
+ pos: -102.5,58.5
+ parent: 2
- uid: 11655
components:
- type: Transform
@@ -21795,6 +24756,16 @@ entities:
- type: Transform
pos: -95.5,69.5
parent: 2
+ - uid: 12710
+ components:
+ - type: Transform
+ pos: -104.5,44.5
+ parent: 2
+ - uid: 12773
+ components:
+ - type: Transform
+ pos: -103.5,59.5
+ parent: 2
- uid: 13048
components:
- type: Transform
@@ -21805,139481 +24776,157326 @@ entities:
- type: Transform
pos: -108.5,65.5
parent: 2
- - uid: 19400
+ - uid: 13327
components:
- type: Transform
- pos: -111.5,70.5
+ pos: 61.5,89.5
parent: 2
- - uid: 19408
+ - uid: 13344
components:
- type: Transform
- pos: -109.5,65.5
+ pos: -103.5,58.5
parent: 2
- - uid: 19409
+ - uid: 13355
components:
- type: Transform
- pos: -107.5,65.5
+ pos: -104.5,43.5
parent: 2
- - uid: 19411
+ - uid: 13362
components:
- type: Transform
- pos: -112.5,69.5
+ pos: -102.5,59.5
parent: 2
- - uid: 20305
+ - uid: 13367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-31.5
+ pos: -103.5,44.5
parent: 2
- - uid: 21916
+ - uid: 13461
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-27.5
+ pos: -100.5,54.5
parent: 2
- - uid: 21917
+ - uid: 13484
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-28.5
+ pos: -100.5,58.5
parent: 2
- - uid: 21945
+ - uid: 13577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-20.5
+ pos: -101.5,58.5
parent: 2
- - uid: 21977
+ - uid: 13817
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-35.5
+ pos: 94.5,13.5
parent: 2
- - uid: 21979
+ - uid: 13912
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-32.5
+ pos: -93.5,52.5
parent: 2
- - uid: 22054
+ - uid: 13974
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-23.5
+ pos: -93.5,45.5
parent: 2
- - uid: 22133
+ - uid: 14075
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-35.5
+ pos: -93.5,43.5
parent: 2
- - uid: 22134
+ - uid: 14076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-26.5
+ pos: -93.5,41.5
parent: 2
- - uid: 22135
+ - uid: 14176
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-26.5
+ pos: -99.5,43.5
parent: 2
- - uid: 22136
+ - uid: 14189
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-27.5
+ pos: -99.5,50.5
parent: 2
- - uid: 22138
+ - uid: 14207
components:
- type: Transform
- pos: -76.5,-38.5
+ pos: -99.5,52.5
parent: 2
- - uid: 22139
+ - uid: 14285
components:
- type: Transform
- pos: -75.5,-37.5
+ pos: -99.5,54.5
parent: 2
- - uid: 22140
+ - uid: 14358
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-32.5
+ pos: -99.5,59.5
parent: 2
- - uid: 22141
+ - uid: 14892
components:
- type: Transform
- pos: -69.5,-26.5
+ pos: -66.5,45.5
parent: 2
- - uid: 22142
+ - uid: 14983
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,46.5
parent: 2
- - uid: 22143
+ - uid: 18395
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,68.5
parent: 2
- - uid: 22144
+ - uid: 18568
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,-35.5
+ pos: 90.5,23.5
parent: 2
- - uid: 22145
+ - uid: 18598
components:
- type: Transform
- pos: -70.5,-25.5
+ pos: 88.5,24.5
parent: 2
- - uid: 22146
+ - uid: 18681
components:
- type: Transform
- pos: -70.5,-24.5
+ pos: 73.5,56.5
parent: 2
- - uid: 22147
+ - uid: 18684
components:
- type: Transform
- pos: -69.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,40.5
parent: 2
- - uid: 22148
+ - uid: 18721
components:
- type: Transform
- pos: -67.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,40.5
parent: 2
- - uid: 23781
+ - uid: 18722
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-36.5
+ pos: 74.5,47.5
parent: 2
- - uid: 23811
+ - uid: 18726
components:
- type: Transform
- pos: -105.5,69.5
+ pos: 80.5,37.5
parent: 2
- - uid: 24943
+ - uid: 18733
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-27.5
+ pos: 78.5,44.5
parent: 2
- - uid: 24948
+ - uid: 18812
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-29.5
+ pos: -102.5,55.5
parent: 2
- - uid: 26346
+ - uid: 18813
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-25.5
+ pos: -111.5,45.5
parent: 2
- - uid: 26347
+ - uid: 18839
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-25.5
+ pos: -112.5,44.5
parent: 2
- - uid: 26573
+ - uid: 18855
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-23.5
+ pos: 79.5,38.5
parent: 2
- - uid: 26605
+ - uid: 18860
components:
- type: Transform
- pos: -102.5,68.5
+ pos: -109.5,45.5
parent: 2
- - uid: 26606
+ - uid: 18870
components:
- type: Transform
- pos: -101.5,68.5
+ pos: -122.5,53.5
parent: 2
- - uid: 26607
+ - uid: 18888
components:
- type: Transform
- pos: -100.5,68.5
+ pos: -105.5,44.5
parent: 2
- - uid: 26680
+ - uid: 18900
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-31.5
+ pos: -105.5,45.5
parent: 2
- - uid: 26683
+ - uid: 18901
components:
- type: Transform
- pos: -106.5,69.5
+ pos: -100.5,48.5
parent: 2
- - uid: 26684
+ - uid: 18919
components:
- type: Transform
- pos: -104.5,69.5
+ pos: -106.5,43.5
parent: 2
- - uid: 26685
+ - uid: 18921
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-33.5
+ pos: -106.5,59.5
parent: 2
- - uid: 26686
+ - uid: 18922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,-33.5
+ pos: -107.5,43.5
parent: 2
- - uid: 26690
+ - uid: 18929
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-32.5
+ pos: -98.5,43.5
parent: 2
- - uid: 26740
+ - uid: 18930
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-22.5
+ pos: -95.5,38.5
parent: 2
- - uid: 26741
+ - uid: 18931
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-20.5
+ pos: -96.5,47.5
parent: 2
- - uid: 26742
+ - uid: 18934
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-27.5
+ pos: -97.5,44.5
parent: 2
- - uid: 26743
+ - uid: 18937
components:
- type: Transform
- pos: -68.5,-25.5
+ pos: -94.5,45.5
parent: 2
- - uid: 26744
+ - uid: 18938
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-23.5
+ pos: -95.5,42.5
parent: 2
- - uid: 26745
+ - uid: 18941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-22.5
+ pos: -98.5,51.5
parent: 2
- - uid: 28659
+ - uid: 18942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -74.5,-31.5
+ pos: -98.5,49.5
parent: 2
- - uid: 28660
+ - uid: 18943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,-31.5
+ pos: -96.5,41.5
parent: 2
- - uid: 28661
+ - uid: 18944
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-23.5
+ pos: -96.5,42.5
parent: 2
- - uid: 28662
+ - uid: 18945
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-21.5
+ pos: -94.5,40.5
parent: 2
-- proto: AtmosDeviceFanTiny
- entities:
- - uid: 1113
+ - uid: 18947
components:
- type: Transform
- pos: -30.5,-45.5
+ pos: -98.5,40.5
parent: 2
- - uid: 4018
+ - uid: 18955
components:
- type: Transform
- pos: 79.5,24.5
+ pos: -98.5,42.5
parent: 2
- - uid: 6636
+ - uid: 18957
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-50.5
+ pos: -95.5,40.5
parent: 2
- - uid: 6731
+ - uid: 19400
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-50.5
+ pos: -111.5,70.5
parent: 2
- - uid: 6819
+ - uid: 19408
components:
- type: Transform
- pos: -52.5,-49.5
+ pos: -109.5,65.5
parent: 2
- - uid: 6849
+ - uid: 19409
components:
- type: Transform
- pos: -52.5,-45.5
+ pos: -107.5,65.5
parent: 2
- - uid: 9678
+ - uid: 19411
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-50.5
+ pos: -112.5,69.5
parent: 2
- - uid: 11862
+ - uid: 19875
components:
- type: Transform
- pos: -33.5,-45.5
+ pos: -98.5,48.5
parent: 2
- - uid: 11863
+ - uid: 19933
components:
- type: Transform
- pos: -29.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,39.5
parent: 2
- - uid: 18550
+ - uid: 20305
components:
- type: Transform
- pos: -59.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-31.5
parent: 2
- - uid: 18551
+ - uid: 20598
components:
- type: Transform
- pos: -61.5,-5.5
+ pos: -95.5,44.5
parent: 2
- - uid: 20717
+ - uid: 21022
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-50.5
+ pos: 75.5,47.5
parent: 2
- - uid: 20721
+ - uid: 21787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-48.5
+ pos: -94.5,43.5
parent: 2
- - uid: 22725
+ - uid: 21844
components:
- type: Transform
- pos: -66.5,-16.5
+ pos: -112.5,45.5
parent: 2
- - uid: 22738
+ - uid: 21916
components:
- type: Transform
- pos: -7.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-27.5
parent: 2
- - uid: 22739
+ - uid: 21917
components:
- type: Transform
- pos: -5.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-28.5
parent: 2
- - uid: 22740
+ - uid: 21977
components:
- type: Transform
- pos: 0.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,-35.5
parent: 2
- - uid: 22741
+ - uid: 21979
components:
- type: Transform
- pos: 2.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-32.5
parent: 2
- - uid: 22742
+ - uid: 22054
components:
- type: Transform
- pos: 8.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-23.5
parent: 2
- - uid: 22743
+ - uid: 22133
components:
- type: Transform
- pos: 10.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,-35.5
parent: 2
- - uid: 22744
+ - uid: 22134
components:
- type: Transform
- pos: 43.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-26.5
parent: 2
- - uid: 22745
+ - uid: 22135
components:
- type: Transform
- pos: 49.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-26.5
parent: 2
- - uid: 22748
+ - uid: 22136
components:
- type: Transform
- pos: 81.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-27.5
parent: 2
- - uid: 22749
+ - uid: 22138
components:
- type: Transform
- pos: 81.5,-15.5
+ pos: -76.5,-38.5
parent: 2
- - uid: 22750
+ - uid: 22139
components:
- type: Transform
- pos: 81.5,-5.5
+ pos: -75.5,-37.5
parent: 2
- - uid: 22751
+ - uid: 22140
components:
- type: Transform
- pos: 81.5,-1.5
- parent: 2
- - uid: 22758
- components:
- - type: Transform
- pos: -7.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,-32.5
parent: 2
- - uid: 22759
+ - uid: 22141
components:
- type: Transform
- pos: -5.5,82.5
+ pos: -69.5,-26.5
parent: 2
- - uid: 22760
+ - uid: 22142
components:
- type: Transform
- pos: 0.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,-32.5
parent: 2
- - uid: 22761
+ - uid: 22143
components:
- type: Transform
- pos: 2.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,-32.5
parent: 2
- - uid: 22762
+ - uid: 22144
components:
- type: Transform
- pos: 8.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -70.5,-35.5
parent: 2
- - uid: 22763
+ - uid: 22145
components:
- type: Transform
- pos: 10.5,82.5
+ pos: -70.5,-25.5
parent: 2
- - uid: 31642
+ - uid: 22146
components:
- type: Transform
- pos: -32.5,-45.5
+ pos: -70.5,-24.5
parent: 2
- - uid: 33711
+ - uid: 22147
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-46.5
+ pos: -69.5,-24.5
parent: 2
-- proto: AtmosFixBlockerMarker
- entities:
- - uid: 7642
+ - uid: 22148
components:
- type: Transform
- pos: -49.5,50.5
+ pos: -67.5,-28.5
parent: 2
- - uid: 8825
+ - uid: 22189
components:
- type: Transform
- pos: -47.5,48.5
+ pos: -108.5,59.5
parent: 2
- - uid: 9316
+ - uid: 22193
components:
- type: Transform
- pos: -47.5,49.5
+ pos: -106.5,44.5
parent: 2
- - uid: 9571
+ - uid: 22197
components:
- type: Transform
- pos: -47.5,50.5
+ pos: -107.5,44.5
parent: 2
- - uid: 14454
+ - uid: 22198
components:
- type: Transform
- pos: -58.5,49.5
+ pos: -106.5,45.5
parent: 2
- - uid: 15771
+ - uid: 22200
components:
- type: Transform
- pos: -58.5,50.5
+ pos: -107.5,45.5
parent: 2
- - uid: 15992
+ - uid: 22201
components:
- type: Transform
- pos: -45.5,51.5
+ pos: -105.5,43.5
parent: 2
- - uid: 15993
+ - uid: 22202
components:
- type: Transform
- pos: -47.5,51.5
+ pos: -94.5,39.5
parent: 2
- - uid: 15994
+ - uid: 22203
components:
- type: Transform
- pos: -49.5,48.5
+ pos: -95.5,52.5
parent: 2
- - uid: 16242
+ - uid: 22204
components:
- type: Transform
- pos: -59.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,60.5
parent: 2
- - uid: 16306
+ - uid: 22205
components:
- type: Transform
- pos: -49.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,61.5
parent: 2
- - uid: 16482
+ - uid: 22206
components:
- type: Transform
- pos: -57.5,51.5
+ pos: -101.5,43.5
parent: 2
- - uid: 16483
+ - uid: 22207
components:
- type: Transform
- pos: -60.5,51.5
+ pos: -102.5,45.5
parent: 2
- - uid: 16484
+ - uid: 22208
components:
- type: Transform
- pos: -60.5,50.5
+ pos: -102.5,44.5
parent: 2
- - uid: 16488
+ - uid: 22209
components:
- type: Transform
- pos: -56.5,50.5
+ pos: -102.5,43.5
parent: 2
- - uid: 16490
+ - uid: 22210
components:
- type: Transform
- pos: -60.5,52.5
+ pos: 100.5,70.5
parent: 2
- - uid: 16491
+ - uid: 22211
components:
- type: Transform
- pos: -56.5,48.5
+ pos: 99.5,70.5
parent: 2
- - uid: 16493
+ - uid: 22212
components:
- type: Transform
- pos: -56.5,49.5
+ pos: 99.5,69.5
parent: 2
- - uid: 16499
+ - uid: 22213
components:
- type: Transform
- pos: -60.5,49.5
+ pos: 63.5,80.5
parent: 2
- - uid: 16501
+ - uid: 22214
components:
- type: Transform
- pos: -59.5,52.5
+ pos: 54.5,58.5
parent: 2
- - uid: 17857
+ - uid: 22215
components:
- type: Transform
- pos: -49.5,51.5
+ pos: 55.5,57.5
parent: 2
- - uid: 18324
+ - uid: 22216
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,50.5
+ pos: 54.5,63.5
parent: 2
- - uid: 18385
+ - uid: 22217
components:
- type: Transform
- pos: -45.5,50.5
+ pos: 53.5,60.5
parent: 2
- - uid: 22402
+ - uid: 22218
components:
- type: Transform
- pos: -45.5,49.5
+ pos: 54.5,62.5
parent: 2
- - uid: 22403
+ - uid: 22408
components:
- type: Transform
- pos: -45.5,48.5
+ pos: 55.5,65.5
parent: 2
- - uid: 22404
+ - uid: 22409
components:
- type: Transform
- pos: -43.5,51.5
+ pos: 53.5,62.5
parent: 2
- - uid: 22405
+ - uid: 22410
components:
- type: Transform
- pos: -43.5,50.5
+ pos: 56.5,66.5
parent: 2
- - uid: 22406
+ - uid: 22411
components:
- type: Transform
- pos: -43.5,49.5
+ pos: 56.5,67.5
parent: 2
- - uid: 22407
+ - uid: 22934
components:
- type: Transform
- pos: -43.5,48.5
+ pos: 87.5,32.5
parent: 2
- - uid: 22408
+ - uid: 22983
components:
- type: Transform
- pos: -41.5,51.5
+ pos: 86.5,12.5
parent: 2
- - uid: 22409
+ - uid: 23025
components:
- type: Transform
- pos: -41.5,50.5
+ pos: 59.5,70.5
parent: 2
- - uid: 22410
+ - uid: 23026
components:
- type: Transform
- pos: -41.5,49.5
+ pos: 60.5,71.5
parent: 2
- - uid: 22411
+ - uid: 23029
components:
- type: Transform
- pos: -41.5,48.5
+ pos: 60.5,73.5
parent: 2
- - uid: 22412
+ - uid: 23030
components:
- type: Transform
- pos: -39.5,51.5
+ pos: 60.5,72.5
parent: 2
- - uid: 22413
+ - uid: 23031
components:
- type: Transform
- pos: -39.5,50.5
+ pos: 55.5,58.5
parent: 2
- - uid: 22414
+ - uid: 23250
components:
- type: Transform
- pos: -39.5,49.5
+ pos: 58.5,69.5
parent: 2
- - uid: 22415
+ - uid: 23258
components:
- type: Transform
- pos: -39.5,48.5
+ pos: 97.5,66.5
parent: 2
- - uid: 22416
+ - uid: 23259
components:
- type: Transform
- pos: -37.5,51.5
+ pos: 59.5,71.5
parent: 2
- - uid: 22417
+ - uid: 23260
components:
- type: Transform
- pos: -37.5,50.5
+ pos: 98.5,68.5
parent: 2
- - uid: 22418
+ - uid: 23287
components:
- type: Transform
- pos: -37.5,49.5
+ pos: 54.5,60.5
parent: 2
- - uid: 22419
+ - uid: 23312
components:
- type: Transform
- pos: -37.5,48.5
+ pos: 54.5,61.5
parent: 2
- - uid: 23035
+ - uid: 23389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,49.5
+ pos: -99.5,67.5
parent: 2
- - uid: 23567
+ - uid: 23453
components:
- type: Transform
- pos: -60.5,48.5
+ pos: 84.5,31.5
parent: 2
- - uid: 23632
+ - uid: 23454
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,51.5
+ pos: 85.5,32.5
parent: 2
- - uid: 26681
+ - uid: 23461
components:
- type: Transform
- pos: -59.5,50.5
+ pos: 85.5,31.5
parent: 2
- - uid: 26814
+ - uid: 23462
components:
- type: Transform
- pos: -59.5,51.5
+ pos: 86.5,32.5
parent: 2
- - uid: 28240
+ - uid: 23493
components:
- type: Transform
- pos: -59.5,49.5
+ pos: 57.5,68.5
parent: 2
- - uid: 28241
+ - uid: 23497
components:
- type: Transform
- pos: -58.5,52.5
+ pos: 57.5,69.5
parent: 2
- - uid: 28242
+ - uid: 23573
components:
- type: Transform
- pos: -56.5,51.5
+ pos: 58.5,70.5
parent: 2
- - uid: 28401
+ - uid: 23732
components:
- type: Transform
- pos: -57.5,48.5
+ pos: 97.5,67.5
parent: 2
- - uid: 28535
+ - uid: 23735
components:
- type: Transform
- pos: -58.5,51.5
+ pos: 99.5,66.5
parent: 2
- - uid: 28690
+ - uid: 23759
components:
- type: Transform
- pos: -57.5,49.5
+ pos: 99.5,65.5
parent: 2
- - uid: 28715
+ - uid: 23781
components:
- type: Transform
- pos: -58.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,-36.5
parent: 2
- - uid: 28717
+ - uid: 23796
components:
- type: Transform
- pos: -56.5,52.5
+ pos: 100.5,65.5
parent: 2
- - uid: 28718
+ - uid: 23811
components:
- type: Transform
- pos: -57.5,52.5
+ pos: -105.5,69.5
parent: 2
- - uid: 33724
+ - uid: 23843
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,48.5
+ pos: 101.5,64.5
parent: 2
-- proto: AtmosFixFreezerMarker
- entities:
- - uid: 7517
+ - uid: 23863
components:
- type: Transform
- pos: -62.5,-6.5
+ pos: 100.5,64.5
parent: 2
- - uid: 7518
+ - uid: 23976
components:
- type: Transform
- pos: -62.5,-7.5
+ pos: 101.5,63.5
parent: 2
- - uid: 7519
+ - uid: 24439
components:
- type: Transform
- pos: -62.5,-8.5
+ pos: 107.5,13.5
parent: 2
- - uid: 7520
+ - uid: 24554
components:
- type: Transform
- pos: -62.5,-9.5
+ pos: 106.5,12.5
parent: 2
- - uid: 7521
+ - uid: 24556
components:
- type: Transform
- pos: -61.5,-6.5
+ pos: 109.5,17.5
parent: 2
- - uid: 7522
+ - uid: 24557
components:
- type: Transform
- pos: -61.5,-7.5
+ pos: 105.5,10.5
parent: 2
- - uid: 7523
+ - uid: 24943
components:
- type: Transform
- pos: -61.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-27.5
parent: 2
- - uid: 7524
+ - uid: 24948
components:
- type: Transform
- pos: -61.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-29.5
parent: 2
- - uid: 7525
+ - uid: 24991
components:
- type: Transform
- pos: -60.5,-6.5
+ pos: 109.5,14.5
parent: 2
- - uid: 7526
+ - uid: 25061
components:
- type: Transform
- pos: -60.5,-7.5
+ pos: 109.5,16.5
parent: 2
- - uid: 7527
+ - uid: 25245
components:
- type: Transform
- pos: -60.5,-8.5
+ pos: 108.5,14.5
parent: 2
- - uid: 7528
+ - uid: 25366
components:
- type: Transform
- pos: -60.5,-9.5
+ pos: 108.5,15.5
parent: 2
- - uid: 7531
+ - uid: 26346
components:
- type: Transform
- pos: -59.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-25.5
parent: 2
- - uid: 7532
+ - uid: 26347
components:
- type: Transform
- pos: -59.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-25.5
parent: 2
- - uid: 7535
+ - uid: 26348
components:
- type: Transform
- pos: -58.5,-8.5
+ pos: 108.5,16.5
parent: 2
- - uid: 7536
+ - uid: 26349
components:
- type: Transform
- pos: -58.5,-9.5
+ pos: 108.5,17.5
parent: 2
- - uid: 7538
+ - uid: 26357
components:
- type: Transform
- pos: -57.5,-7.5
+ pos: 108.5,20.5
parent: 2
- - uid: 7539
+ - uid: 26358
components:
- type: Transform
- pos: -57.5,-8.5
+ pos: 108.5,19.5
parent: 2
- - uid: 7540
+ - uid: 26361
components:
- type: Transform
- pos: -57.5,-9.5
+ pos: 106.5,21.5
parent: 2
- - uid: 27153
+ - uid: 26362
components:
- type: Transform
- pos: -58.5,-6.5
+ pos: 106.5,22.5
parent: 2
- - uid: 27154
+ - uid: 26364
components:
- type: Transform
- pos: -59.5,-6.5
+ pos: 107.5,22.5
parent: 2
- - uid: 27155
+ - uid: 26365
components:
- type: Transform
- pos: -59.5,-7.5
+ pos: 107.5,21.5
parent: 2
- - uid: 27156
+ - uid: 26366
components:
- type: Transform
- pos: -58.5,-7.5
+ pos: 105.5,24.5
parent: 2
- - uid: 27157
+ - uid: 26367
components:
- type: Transform
- pos: -57.5,-6.5
+ pos: 106.5,25.5
parent: 2
-- proto: Autolathe
- entities:
- - uid: 1134
+ - uid: 26368
components:
- type: Transform
- pos: -67.5,1.5
+ pos: 106.5,24.5
parent: 2
- - uid: 8839
+ - uid: 26388
components:
- type: Transform
- pos: -49.5,18.5
+ pos: 105.5,25.5
parent: 2
- - uid: 30788
+ - uid: 26520
components:
- type: Transform
- pos: -20.5,-30.5
+ pos: 89.5,23.5
parent: 2
-- proto: BannerCargo
- entities:
- - uid: 2940
+ - uid: 26533
components:
- type: Transform
- pos: -14.5,-16.5
+ pos: 103.5,29.5
parent: 2
- - uid: 2941
+ - uid: 26534
components:
- type: Transform
- pos: -8.5,-16.5
+ pos: 104.5,27.5
parent: 2
-- proto: BannerEngineering
- entities:
- - uid: 7641
+ - uid: 26535
components:
- type: Transform
- pos: -52.5,9.5
+ pos: 103.5,36.5
parent: 2
- - uid: 17860
+ - uid: 26536
components:
- type: Transform
- pos: -56.5,9.5
+ pos: 105.5,40.5
parent: 2
- - uid: 18543
+ - uid: 26538
components:
- type: Transform
- pos: -45.5,15.5
+ pos: 79.5,37.5
parent: 2
-- proto: BannerMedical
- entities:
- - uid: 867
+ - uid: 26546
components:
- type: Transform
- pos: 6.5,18.5
+ pos: 101.5,17.5
parent: 2
- - uid: 868
+ - uid: 26547
components:
- type: Transform
- pos: -3.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,81.5
parent: 2
- - uid: 1560
+ - uid: 26553
components:
- type: Transform
- pos: 31.5,-13.5
+ pos: 103.5,38.5
parent: 2
- - uid: 1563
+ - uid: 26554
components:
- type: Transform
- pos: 35.5,18.5
+ pos: 102.5,37.5
parent: 2
- - uid: 1881
+ - uid: 26573
components:
- type: Transform
- pos: -3.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-23.5
parent: 2
- - uid: 1882
+ - uid: 26582
components:
- type: Transform
- pos: 6.5,-13.5
+ pos: 78.5,45.5
parent: 2
-- proto: BannerScience
- entities:
- - uid: 3965
+ - uid: 26589
components:
- type: Transform
- pos: 33.5,21.5
+ pos: 80.5,41.5
parent: 2
- - uid: 3985
+ - uid: 26599
components:
- type: Transform
- pos: 25.5,21.5
+ pos: 104.5,39.5
parent: 2
-- proto: BannerSecurity
- entities:
- - uid: 30540
+ - uid: 26600
components:
- type: Transform
- pos: -17.5,22.5
+ pos: 106.5,40.5
parent: 2
- - uid: 30541
+ - uid: 26605
components:
- type: Transform
- pos: -13.5,22.5
+ pos: -102.5,68.5
parent: 2
-- proto: BannerSyndicate
- entities:
- - uid: 32594
+ - uid: 26606
components:
- type: Transform
- pos: 70.5,41.5
+ pos: -101.5,68.5
parent: 2
-- proto: BarberScissors
- entities:
- - uid: 347
+ - uid: 26607
components:
- type: Transform
- pos: -69.26311,-0.36495054
+ pos: -100.5,68.5
parent: 2
- - uid: 11223
+ - uid: 26608
components:
- type: Transform
- pos: -69.61467,-0.4235443
+ pos: 89.5,24.5
parent: 2
- - uid: 27439
+ - uid: 26680
components:
- type: Transform
- pos: -50.52528,-25.72538
+ rot: 3.141592653589793 rad
+ pos: -73.5,-31.5
parent: 2
- - uid: 27816
+ - uid: 26683
components:
- type: Transform
- pos: -50.33778,-28.151161
+ pos: -106.5,69.5
parent: 2
-- proto: Barricade
- entities:
- - uid: 456
+ - uid: 26684
components:
- type: Transform
- pos: 57.5,58.5
+ pos: -104.5,69.5
parent: 2
- - uid: 1102
+ - uid: 26685
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,-33.5
parent: 2
- - uid: 1103
+ - uid: 26686
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,-33.5
parent: 2
- - uid: 2355
+ - uid: 26687
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-35.5
+ pos: 104.5,42.5
parent: 2
- - uid: 2357
+ - uid: 26690
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,-36.5
+ pos: -72.5,-32.5
parent: 2
- - uid: 2358
+ - uid: 26691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-35.5
+ pos: 106.5,44.5
parent: 2
- - uid: 5343
+ - uid: 26692
components:
- type: Transform
- pos: 52.5,49.5
+ pos: 107.5,44.5
parent: 2
- - uid: 5345
+ - uid: 26693
components:
- type: Transform
- pos: 54.5,49.5
+ pos: 108.5,45.5
parent: 2
- - uid: 6964
+ - uid: 26701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-37.5
+ pos: 105.5,41.5
parent: 2
- - uid: 6967
+ - uid: 26702
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-28.5
+ pos: 107.5,42.5
parent: 2
- - uid: 6968
+ - uid: 26740
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-22.5
parent: 2
- - uid: 6969
+ - uid: 26741
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-20.5
parent: 2
- - uid: 6970
+ - uid: 26742
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-27.5
parent: 2
- - uid: 6971
+ - uid: 26743
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-30.5
+ pos: -68.5,-25.5
parent: 2
- - uid: 6972
+ - uid: 26744
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-23.5
parent: 2
- - uid: 9137
+ - uid: 26745
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 53.5,51.5
+ pos: -67.5,-22.5
parent: 2
- - uid: 12732
+ - uid: 27158
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,50.5
+ pos: 83.5,72.5
parent: 2
- - uid: 26244
+ - uid: 28659
components:
- type: Transform
- pos: 53.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,-31.5
parent: 2
- - uid: 26882
+ - uid: 28660
components:
- type: Transform
- pos: 53.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,-31.5
parent: 2
- - uid: 27510
+ - uid: 28661
components:
- type: Transform
- pos: 52.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-23.5
parent: 2
- - uid: 28517
+ - uid: 28662
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,-26.5
+ pos: -67.5,-21.5
parent: 2
-- proto: BarricadeBlock
- entities:
- - uid: 4926
+ - uid: 28797
components:
- type: Transform
- pos: 60.5,58.5
+ pos: 104.5,38.5
parent: 2
- - uid: 8642
+ - uid: 29054
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-25.5
+ pos: 84.5,72.5
parent: 2
- - uid: 11231
+ - uid: 29061
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-37.5
+ pos: 83.5,71.5
parent: 2
- - uid: 19419
+ - uid: 29134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,-6.5
+ pos: 94.5,14.5
parent: 2
- - uid: 19422
+ - uid: 29371
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-35.5
+ pos: 85.5,73.5
parent: 2
- - uid: 23773
+ - uid: 29386
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-24.5
+ pos: 84.5,71.5
parent: 2
- - uid: 26223
+ - uid: 29396
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-23.5
+ pos: 84.5,73.5
parent: 2
- - uid: 27858
+ - uid: 29406
components:
- type: Transform
- pos: 54.5,51.5
+ pos: 102.5,36.5
parent: 2
- - uid: 28350
+ - uid: 29407
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-27.5
+ pos: 95.5,13.5
parent: 2
- - uid: 29868
+ - uid: 29408
components:
- type: Transform
- pos: 51.5,49.5
+ pos: 100.5,7.5
parent: 2
-- proto: BarricadeDirectional
- entities:
- - uid: 11326
+ - uid: 29409
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-36.5
+ pos: 104.5,28.5
parent: 2
-- proto: BarSign
- entities:
- - uid: 5959
+ - uid: 29410
components:
- type: Transform
- pos: 23.5,-26.5
+ pos: 97.5,13.5
parent: 2
-- proto: BarSignRobustaCafe
- entities:
- - uid: 5956
+ - uid: 29411
components:
- type: Transform
- pos: 22.5,-22.5
+ pos: 96.5,13.5
parent: 2
-- proto: BaseBallBat
- entities:
- - uid: 5347
+ - uid: 29412
components:
- type: Transform
- pos: 54.46258,46.57678
+ pos: 95.5,12.5
parent: 2
-- proto: BaseComputer
- entities:
- - uid: 1444
+ - uid: 29413
components:
- type: Transform
- pos: -100.5,49.5
+ pos: 98.5,13.5
parent: 2
- - uid: 2279
+ - uid: 29414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-33.5
+ pos: 98.5,12.5
parent: 2
- - uid: 3037
+ - uid: 29415
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,52.5
+ pos: 94.5,12.5
parent: 2
- - uid: 4533
+ - uid: 29417
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,28.5
+ pos: 91.5,22.5
parent: 2
- - uid: 4851
+ - uid: 29561
components:
- type: Transform
- pos: -101.5,49.5
+ pos: 103.5,28.5
parent: 2
- - uid: 5214
+ - uid: 29570
components:
- type: Transform
- pos: 17.5,59.5
+ pos: 103.5,27.5
parent: 2
- - uid: 5552
+ - uid: 29572
components:
- type: Transform
- pos: 45.5,51.5
+ pos: 104.5,25.5
parent: 2
- - uid: 5580
+ - uid: 29573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,27.5
+ pos: 101.5,6.5
parent: 2
- - uid: 5581
+ - uid: 29574
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,29.5
+ pos: 102.5,33.5
parent: 2
- - uid: 8404
+ - uid: 29575
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,13.5
+ pos: 102.5,34.5
parent: 2
- - uid: 12928
+ - uid: 29576
components:
- type: Transform
- pos: 39.5,51.5
+ pos: 107.5,11.5
parent: 2
- - uid: 14069
+ - uid: 29577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,53.5
+ pos: 107.5,10.5
parent: 2
- - uid: 32244
+ - uid: 29578
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,53.5
+ pos: 102.5,32.5
parent: 2
- - uid: 32245
+ - uid: 29582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,53.5
+ pos: 98.5,66.5
parent: 2
-- proto: BaseGasCondenser
- entities:
- - uid: 28391
+ - uid: 29583
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-1.5
+ pos: 96.5,67.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: Beaker
- entities:
- - uid: 1670
+ - uid: 29584
components:
- type: Transform
- pos: 21.532694,-1.3913887
+ pos: 99.5,67.5
parent: 2
- - uid: 2171
+ - uid: 29585
components:
- type: Transform
- pos: 12.337881,-0.94067454
+ pos: 96.5,7.5
parent: 2
- - uid: 2192
+ - uid: 29586
components:
- type: Transform
- pos: 15.214525,-9.340313
+ pos: 95.5,7.5
parent: 2
- - uid: 2193
+ - uid: 29587
components:
- type: Transform
- pos: 15.319063,-9.187969
+ pos: 106.5,48.5
parent: 2
- - uid: 22437
+ - uid: 29588
components:
- type: Transform
- pos: 15.685974,-8.373947
+ pos: 105.5,51.5
parent: 2
-- proto: Bed
- entities:
- - uid: 337
+ - uid: 29589
components:
- type: Transform
- pos: -9.5,-33.5
+ pos: 105.5,50.5
parent: 2
- - uid: 340
+ - uid: 29590
components:
- type: Transform
- pos: -9.5,-32.5
+ pos: 106.5,47.5
parent: 2
- - uid: 457
+ - uid: 29591
components:
- type: Transform
- pos: -71.5,17.5
+ pos: 107.5,47.5
parent: 2
- - uid: 522
+ - uid: 29592
components:
- type: Transform
- pos: -28.5,10.5
+ pos: 108.5,47.5
parent: 2
- - uid: 530
+ - uid: 29593
components:
- type: Transform
- pos: -19.5,15.5
+ pos: 108.5,46.5
parent: 2
- - uid: 531
+ - uid: 29594
components:
- type: Transform
- pos: -16.5,10.5
+ pos: 108.5,44.5
parent: 2
- - uid: 535
+ - uid: 29595
components:
- type: Transform
- pos: -25.5,15.5
+ pos: 102.5,31.5
parent: 2
- - uid: 537
+ - uid: 29596
components:
- type: Transform
- pos: -19.5,10.5
+ pos: 88.5,12.5
parent: 2
- - uid: 806
+ - uid: 29597
components:
- type: Transform
- pos: -9.5,-35.5
+ pos: 88.5,13.5
parent: 2
- - uid: 1795
+ - uid: 29598
components:
- type: Transform
- pos: -22.5,10.5
+ pos: 87.5,13.5
parent: 2
- - uid: 1797
+ - uid: 29599
components:
- type: Transform
- pos: -28.5,15.5
+ pos: 102.5,30.5
parent: 2
- - uid: 1805
+ - uid: 29600
components:
- type: Transform
- pos: -25.5,10.5
+ pos: 87.5,11.5
parent: 2
- - uid: 1806
+ - uid: 29601
components:
- type: Transform
- pos: -16.5,15.5
+ pos: 107.5,48.5
parent: 2
- - uid: 1807
+ - uid: 29607
components:
- type: Transform
- pos: -22.5,15.5
+ pos: 107.5,49.5
parent: 2
- - uid: 1949
+ - uid: 29608
components:
- type: Transform
- pos: 14.5,27.5
+ pos: 106.5,49.5
parent: 2
- - uid: 2720
+ - uid: 29731
components:
- type: Transform
- pos: -8.5,-10.5
+ pos: 100.5,19.5
parent: 2
- - uid: 3990
+ - uid: 29732
components:
- type: Transform
- pos: -75.5,1.5
+ pos: 100.5,20.5
parent: 2
- - uid: 4342
+ - uid: 29777
components:
- type: Transform
- pos: -79.5,1.5
+ pos: 106.5,50.5
parent: 2
- - uid: 4620
+ - uid: 29778
components:
- type: Transform
- pos: -26.5,7.5
+ pos: 106.5,51.5
parent: 2
- - uid: 4621
+ - uid: 29779
components:
- type: Transform
- pos: -24.5,7.5
+ pos: 105.5,49.5
parent: 2
- - uid: 4622
+ - uid: 29780
components:
- type: Transform
- pos: -16.5,7.5
+ pos: 87.5,12.5
parent: 2
- - uid: 4746
+ - uid: 29781
components:
- type: Transform
- pos: -18.5,7.5
+ pos: 106.5,42.5
parent: 2
- - uid: 4761
+ - uid: 29782
components:
- type: Transform
- pos: -20.5,7.5
+ pos: 88.5,11.5
parent: 2
- - uid: 4791
+ - uid: 29783
components:
- type: Transform
- pos: -28.5,7.5
+ pos: 103.5,34.5
parent: 2
- - uid: 4792
+ - uid: 29806
components:
- type: Transform
- pos: -22.5,7.5
+ pos: 85.5,33.5
parent: 2
- - uid: 5410
+ - uid: 29808
components:
- type: Transform
- pos: 48.5,30.5
+ pos: 86.5,33.5
parent: 2
- - uid: 5428
+ - uid: 29810
components:
- type: Transform
- pos: 44.5,34.5
+ pos: 84.5,32.5
parent: 2
- - uid: 5763
+ - uid: 29812
components:
- type: Transform
- pos: 22.5,-25.5
+ pos: 83.5,31.5
parent: 2
- - uid: 6496
+ - uid: 29813
components:
- type: Transform
- pos: -9.5,-34.5
+ pos: 83.5,32.5
parent: 2
- - uid: 6842
+ - uid: 29819
components:
- type: Transform
- pos: -24.5,-25.5
+ pos: 54.5,65.5
parent: 2
- - uid: 8810
+ - uid: 29820
components:
- type: Transform
- pos: -61.5,11.5
+ pos: 54.5,64.5
parent: 2
- - uid: 13120
+ - uid: 29821
components:
- type: Transform
- pos: -71.5,16.5
+ pos: 58.5,75.5
parent: 2
- - uid: 15116
+ - uid: 29822
components:
- type: Transform
- pos: 23.5,48.5
+ pos: 61.5,81.5
parent: 2
- - uid: 15361
+ - uid: 29823
components:
- type: Transform
- pos: -24.5,34.5
+ pos: 62.5,81.5
parent: 2
- - uid: 15377
+ - uid: 29824
components:
- type: Transform
- pos: -28.5,24.5
+ pos: 63.5,81.5
parent: 2
- - uid: 15378
+ - uid: 29825
components:
- type: Transform
- pos: -24.5,24.5
+ pos: 56.5,80.5
parent: 2
- - uid: 15456
+ - uid: 29828
components:
- type: Transform
- pos: -28.5,34.5
+ pos: -92.5,50.5
parent: 2
- - uid: 15677
+ - uid: 29829
components:
- type: Transform
- pos: -29.5,42.5
+ pos: 66.5,84.5
parent: 2
- - uid: 15777
+ - uid: 29830
components:
- type: Transform
- pos: -5.5,35.5
+ pos: 55.5,89.5
parent: 2
- - uid: 18053
+ - uid: 29831
components:
- type: Transform
- pos: -25.5,66.5
+ pos: 103.5,35.5
parent: 2
- - uid: 18055
+ - uid: 29832
components:
- type: Transform
- pos: -21.5,66.5
+ pos: 53.5,63.5
parent: 2
- - uid: 18057
+ - uid: 29838
components:
- type: Transform
- pos: -17.5,66.5
+ pos: 53.5,59.5
parent: 2
- - uid: 18060
+ - uid: 29842
components:
- type: Transform
- pos: -13.5,66.5
+ pos: 103.5,33.5
parent: 2
- - uid: 19646
+ - uid: 29844
components:
- type: Transform
- pos: -41.5,58.5
+ pos: 93.5,6.5
parent: 2
- - uid: 22087
+ - uid: 29846
components:
- type: Transform
- pos: 66.5,30.5
+ pos: 96.5,6.5
parent: 2
- - uid: 23256
+ - uid: 29850
components:
- type: Transform
- pos: -71.5,3.5
+ pos: 100.5,63.5
parent: 2
-- proto: BedsheetBlack
- entities:
- - uid: 1800
+ - uid: 29862
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,10.5
+ pos: 99.5,63.5
parent: 2
-- proto: BedsheetBlue
- entities:
- - uid: 526
+ - uid: 29863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,15.5
+ pos: 65.5,83.5
parent: 2
-- proto: BedsheetBrigmedic
- entities:
- - uid: 20198
+ - uid: 29864
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,58.5
+ pos: 66.5,83.5
parent: 2
-- proto: BedsheetBrown
- entities:
- - uid: 795
+ - uid: 29869
components:
- type: Transform
- pos: -9.5,-32.5
+ pos: 67.5,83.5
parent: 2
- - uid: 5927
+ - uid: 29872
components:
- type: Transform
- pos: 22.5,-25.5
+ pos: 70.5,89.5
parent: 2
- - uid: 6497
+ - uid: 29874
components:
- type: Transform
- pos: -9.5,-33.5
+ pos: 56.5,68.5
parent: 2
- - uid: 6633
+ - uid: 29878
components:
- type: Transform
- pos: -9.5,-34.5
+ pos: 57.5,70.5
parent: 2
- - uid: 6634
+ - uid: 29881
components:
- type: Transform
- pos: -9.5,-35.5
+ pos: 58.5,71.5
parent: 2
-- proto: BedsheetCaptain
- entities:
- - uid: 15111
+ - uid: 29885
components:
- type: Transform
- pos: 23.5,48.5
+ pos: 59.5,72.5
parent: 2
-- proto: BedsheetCE
- entities:
- - uid: 8809
+ - uid: 29886
components:
- type: Transform
- pos: -61.5,11.5
+ pos: 58.5,73.5
parent: 2
-- proto: BedsheetClown
- entities:
- - uid: 4010
+ - uid: 29890
components:
- type: Transform
- pos: -75.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 88.5,80.5
parent: 2
-- proto: BedsheetCMO
- entities:
- - uid: 5768
+ - uid: 29891
components:
- type: Transform
- pos: -8.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,80.5
parent: 2
-- proto: BedsheetCult
- entities:
- - uid: 20028
+ - uid: 29901
components:
- type: Transform
- pos: 66.5,30.5
+ pos: 58.5,74.5
parent: 2
-- proto: BedsheetGreen
- entities:
- - uid: 474
+ - uid: 29908
components:
- type: Transform
- pos: -71.5,17.5
+ pos: 54.5,59.5
parent: 2
- - uid: 1811
+ - uid: 29910
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,15.5
+ pos: 64.5,83.5
parent: 2
- - uid: 10657
+ - uid: 29911
components:
- type: Transform
- pos: -22.5,7.5
+ pos: 54.5,66.5
parent: 2
- - uid: 10706
+ - uid: 29912
components:
- type: Transform
- pos: -24.5,7.5
+ pos: 55.5,67.5
parent: 2
- - uid: 11106
+ - uid: 29913
components:
- type: Transform
- pos: -18.5,7.5
+ pos: 56.5,69.5
parent: 2
- - uid: 11146
+ - uid: 29923
components:
- type: Transform
- pos: -20.5,7.5
+ pos: 53.5,61.5
parent: 2
- - uid: 11151
+ - uid: 29926
components:
- type: Transform
- pos: -16.5,7.5
+ pos: 102.5,64.5
parent: 2
- - uid: 13134
+ - uid: 29929
components:
- type: Transform
- pos: -71.5,16.5
+ pos: 99.5,64.5
parent: 2
- - uid: 19954
+ - uid: 29930
components:
- type: Transform
- pos: -26.5,7.5
+ pos: 98.5,65.5
parent: 2
- - uid: 19986
+ - uid: 29931
components:
- type: Transform
- pos: -28.5,7.5
+ pos: 98.5,67.5
parent: 2
-- proto: BedsheetGrey
- entities:
- - uid: 1801
+ - uid: 29933
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,10.5
+ pos: 99.5,68.5
parent: 2
-- proto: BedsheetHOP
- entities:
- - uid: 1979
+ - uid: 29988
components:
- type: Transform
- pos: 14.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,47.5
parent: 2
-- proto: BedsheetHOS
- entities:
- - uid: 15663
+ - uid: 30000
components:
- type: Transform
- pos: -5.5,35.5
+ pos: 100.5,69.5
parent: 2
- - uid: 15676
+ - uid: 30003
components:
- type: Transform
- pos: -29.5,42.5
+ pos: 78.5,79.5
parent: 2
-- proto: BedsheetMedical
- entities:
- - uid: 1819
+ - uid: 30013
components:
- type: Transform
- pos: 5.5,15.5
+ pos: 78.5,78.5
parent: 2
- - uid: 1820
+ - uid: 30014
components:
- type: Transform
- pos: 5.5,13.5
+ pos: 87.5,6.5
parent: 2
- - uid: 1821
+ - uid: 30015
components:
- type: Transform
- pos: 5.5,11.5
+ pos: 79.5,79.5
parent: 2
- - uid: 1822
+ - uid: 30025
components:
- type: Transform
- pos: 5.5,9.5
+ pos: 87.5,7.5
parent: 2
- - uid: 1823
+ - uid: 30100
components:
- type: Transform
- pos: 13.5,9.5
+ pos: 90.5,6.5
parent: 2
- - uid: 1824
+ - uid: 30101
components:
- type: Transform
- pos: 13.5,11.5
+ pos: 108.5,13.5
parent: 2
- - uid: 1825
+ - uid: 30121
components:
- type: Transform
- pos: 13.5,13.5
+ pos: 109.5,15.5
parent: 2
- - uid: 1826
+ - uid: 30165
components:
- type: Transform
- pos: 13.5,15.5
+ pos: 109.5,19.5
parent: 2
- - uid: 4401
+ - uid: 30186
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-10.5
+ pos: 106.5,10.5
parent: 2
- - uid: 11296
+ - uid: 30189
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-6.5
+ pos: 106.5,11.5
parent: 2
- - uid: 13042
+ - uid: 30448
components:
- type: Transform
- pos: 13.5,-9.5
+ pos: 103.5,8.5
parent: 2
-- proto: BedsheetMime
- entities:
- - uid: 4183
+ - uid: 30637
components:
- type: Transform
- pos: -79.5,1.5
+ pos: 104.5,7.5
parent: 2
-- proto: BedsheetOrange
- entities:
- - uid: 1802
+ - uid: 30659
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,15.5
+ pos: 105.5,9.5
parent: 2
- - uid: 30851
+ - uid: 30660
components:
- type: Transform
- pos: -25.5,66.5
+ pos: 106.5,8.5
parent: 2
- - uid: 30852
+ - uid: 30673
components:
- type: Transform
- pos: -21.5,66.5
+ pos: 104.5,8.5
parent: 2
- - uid: 30853
+ - uid: 30679
components:
- type: Transform
- pos: -17.5,66.5
+ pos: 103.5,7.5
parent: 2
- - uid: 30854
+ - uid: 30690
components:
- type: Transform
- pos: -13.5,66.5
+ pos: 103.5,6.5
parent: 2
- - uid: 30855
+ - uid: 30977
components:
- type: Transform
- pos: -28.5,34.5
+ pos: 89.5,6.5
parent: 2
- - uid: 30856
+ - uid: 31041
components:
- type: Transform
- pos: -24.5,34.5
+ pos: 88.5,7.5
parent: 2
-- proto: BedsheetPurple
- entities:
- - uid: 1796
+ - uid: 31042
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,10.5
+ pos: 91.5,6.5
parent: 2
- - uid: 23571
+ - uid: 31049
components:
- type: Transform
- pos: -71.5,3.5
+ pos: 94.5,6.5
parent: 2
-- proto: BedsheetQM
- entities:
- - uid: 6843
+ - uid: 31050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-25.5
+ pos: 97.5,6.5
parent: 2
-- proto: BedsheetRainbow
- entities:
- - uid: 532
+ - uid: 31051
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,10.5
+ pos: 108.5,18.5
parent: 2
-- proto: BedsheetRD
- entities:
- - uid: 5487
+ - uid: 31165
components:
- type: Transform
- pos: 48.5,30.5
+ pos: 98.5,5.5
parent: 2
- - uid: 20027
+ - uid: 31167
components:
- type: Transform
- pos: 44.5,34.5
+ pos: 99.5,6.5
parent: 2
-- proto: BedsheetRed
- entities:
- - uid: 524
+ - uid: 31168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,15.5
+ pos: 92.5,6.5
parent: 2
-- proto: BedsheetWhite
- entities:
- - uid: 540
+ - uid: 31169
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,10.5
+ pos: 106.5,13.5
parent: 2
-- proto: BedsheetYellow
- entities:
- - uid: 525
+ - uid: 31172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,15.5
+ pos: 107.5,12.5
parent: 2
-- proto: BenchParkBambooMiddle
- entities:
- - uid: 5130
+ - uid: 31175
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-0.5
+ pos: 105.5,11.5
parent: 2
-- proto: BenchParkLeft
- entities:
- - uid: 5128
+ - uid: 31208
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,-0.5
+ pos: 105.5,8.5
parent: 2
- - uid: 5129
+ - uid: 31216
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-0.5
+ pos: 102.5,7.5
parent: 2
-- proto: BenchParkMiddle
- entities:
- - uid: 5120
+ - uid: 31225
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-0.5
+ pos: 100.5,6.5
parent: 2
- - uid: 5127
+ - uid: 31327
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 68.5,-0.5
+ pos: 106.5,9.5
parent: 2
- - uid: 5131
+ - uid: 31626
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,-0.5
+ pos: 93.5,44.5
parent: 2
-- proto: BenchParkRight
- entities:
- - uid: 4961
+ - uid: 31627
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-0.5
+ pos: 94.5,45.5
parent: 2
- - uid: 5132
+ - uid: 31628
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-0.5
+ pos: 94.5,48.5
parent: 2
-- proto: BenchPewLeft
- entities:
- - uid: 2750
+ - uid: 31629
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,50.5
+ pos: 94.5,46.5
parent: 2
- - uid: 2755
+ - uid: 31630
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,56.5
+ pos: 94.5,47.5
parent: 2
- - uid: 2761
+ - uid: 31631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,56.5
+ pos: 93.5,45.5
parent: 2
- - uid: 2764
+ - uid: 32048
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,56.5
+ pos: 93.5,48.5
parent: 2
- - uid: 4267
+ - uid: 32049
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,12.5
+ pos: 95.5,46.5
parent: 2
- - uid: 4268
+ - uid: 32050
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,12.5
+ pos: 96.5,47.5
parent: 2
- - uid: 4269
+ - uid: 32059
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,12.5
+ pos: 96.5,46.5
parent: 2
- - uid: 4270
+ - uid: 32067
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,12.5
+ pos: 95.5,47.5
parent: 2
- - uid: 4287
+ - uid: 32102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,19.5
+ pos: 104.5,9.5
parent: 2
- - uid: 4291
+ - uid: 32104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,19.5
+ pos: 105.5,7.5
parent: 2
- - uid: 4293
+ - uid: 32105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,19.5
+ pos: 102.5,6.5
parent: 2
- - uid: 4295
+ - uid: 32322
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,19.5
+ pos: 101.5,7.5
parent: 2
- - uid: 15793
+ - uid: 32337
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,56.5
+ pos: 100.5,5.5
parent: 2
- - uid: 15794
+ - uid: 32351
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,50.5
+ pos: 99.5,5.5
parent: 2
- - uid: 15796
+ - uid: 32380
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,50.5
+ pos: 98.5,6.5
parent: 2
- - uid: 15892
+ - uid: 32381
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,50.5
+ pos: 97.5,5.5
parent: 2
-- proto: BenchPewMiddle
- entities:
- - uid: 2700
+ - uid: 32382
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,55.5
+ pos: 107.5,46.5
parent: 2
- - uid: 2787
+ - uid: 32383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,49.5
+ pos: 107.5,45.5
parent: 2
- - uid: 2791
+ - uid: 32384
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,48.5
+ pos: 107.5,43.5
parent: 2
- - uid: 2792
+ - uid: 32385
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,48.5
+ pos: 106.5,43.5
parent: 2
- - uid: 2793
+ - uid: 32386
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,49.5
+ pos: 105.5,42.5
parent: 2
- - uid: 2797
+ - uid: 32387
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,49.5
+ pos: 106.5,41.5
parent: 2
- - uid: 4163
+ - uid: 32388
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,21.5
+ pos: 105.5,38.5
parent: 2
- - uid: 4169
+ - uid: 32389
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,21.5
+ pos: 104.5,40.5
parent: 2
- - uid: 4170
+ - uid: 32390
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,20.5
+ pos: 103.5,39.5
parent: 2
- - uid: 4171
+ - uid: 32391
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,21.5
+ pos: 105.5,43.5
parent: 2
- - uid: 4172
+ - uid: 32392
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,20.5
+ pos: 104.5,41.5
parent: 2
- - uid: 4173
+ - uid: 32393
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,20.5
+ pos: 105.5,39.5
parent: 2
- - uid: 4174
+ - uid: 32394
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,21.5
+ pos: 104.5,37.5
parent: 2
- - uid: 4177
+ - uid: 32395
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,20.5
+ pos: 103.5,37.5
parent: 2
- - uid: 4274
+ - uid: 32396
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,13.5
+ pos: 104.5,36.5
parent: 2
- - uid: 4275
+ - uid: 32397
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,13.5
+ pos: 102.5,35.5
parent: 2
- - uid: 4276
+ - uid: 32398
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,14.5
+ pos: 103.5,31.5
parent: 2
- - uid: 4277
+ - uid: 32399
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,13.5
+ pos: 103.5,32.5
parent: 2
- - uid: 4278
+ - uid: 32400
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,13.5
+ pos: 101.5,34.5
parent: 2
- - uid: 4279
+ - uid: 32401
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,14.5
+ pos: 103.5,30.5
parent: 2
- - uid: 4284
+ - uid: 32402
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,14.5
+ pos: 101.5,33.5
parent: 2
- - uid: 4285
+ - uid: 32403
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,14.5
+ pos: 101.5,32.5
parent: 2
- - uid: 15799
+ - uid: 32404
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,48.5
+ pos: 104.5,30.5
parent: 2
- - uid: 15808
+ - uid: 32405
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,54.5
+ pos: 104.5,29.5
parent: 2
- - uid: 15809
+ - uid: 32406
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,55.5
+ pos: 105.5,27.5
parent: 2
- - uid: 15813
+ - uid: 32407
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,49.5
+ pos: 105.5,26.5
parent: 2
- - uid: 15814
+ - uid: 32408
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,48.5
+ pos: 104.5,26.5
parent: 2
- - uid: 15886
+ - uid: 32409
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,54.5
+ pos: 107.5,24.5
parent: 2
- - uid: 15887
+ - uid: 32410
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,55.5
+ pos: 107.5,23.5
parent: 2
- - uid: 15888
+ - uid: 32411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,54.5
+ pos: 106.5,23.5
parent: 2
- - uid: 15889
+ - uid: 32413
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,55.5
+ pos: 108.5,22.5
parent: 2
- - uid: 15890
+ - uid: 32414
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,54.5
+ pos: 108.5,21.5
parent: 2
-- proto: BenchPewRight
- entities:
- - uid: 2290
+ - uid: 32416
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,22.5
+ pos: 109.5,20.5
parent: 2
- - uid: 2381
+ - uid: 32417
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,22.5
+ pos: 109.5,18.5
parent: 2
- - uid: 2383
+ - uid: 32418
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,22.5
+ pos: 59.5,88.5
parent: 2
- - uid: 2783
+ - uid: 32419
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,47.5
+ pos: 57.5,89.5
parent: 2
- - uid: 2784
+ - uid: 32420
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,47.5
+ pos: 60.5,87.5
parent: 2
- - uid: 2794
+ - uid: 32421
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,53.5
+ pos: 59.5,80.5
parent: 2
- - uid: 2798
+ - uid: 32422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,53.5
+ pos: 56.5,75.5
parent: 2
- - uid: 4273
+ - uid: 32423
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,22.5
+ pos: 57.5,75.5
parent: 2
- - uid: 4302
+ - uid: 32424
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,15.5
+ pos: 59.5,89.5
parent: 2
- - uid: 4303
+ - uid: 32425
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,15.5
+ pos: 54.5,81.5
parent: 2
- - uid: 4304
+ - uid: 32426
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,15.5
+ pos: 61.5,82.5
parent: 2
- - uid: 4305
+ - uid: 32427
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,15.5
+ pos: 60.5,81.5
parent: 2
- - uid: 15795
+ - uid: 32428
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,47.5
+ pos: 60.5,80.5
parent: 2
- - uid: 15797
+ - uid: 32429
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,53.5
+ pos: 55.5,76.5
parent: 2
- - uid: 15798
+ - uid: 32430
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,47.5
+ pos: 56.5,76.5
parent: 2
- - uid: 15800
+ - uid: 32431
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,53.5
+ pos: 54.5,77.5
parent: 2
-- proto: BenchSofaCorpLeft
- entities:
- - uid: 238
+ - uid: 32457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,82.5
parent: 2
- - uid: 641
+ - uid: 32458
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,81.5
parent: 2
- - uid: 643
+ - uid: 32459
components:
- type: Transform
- pos: -21.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,81.5
parent: 2
- - uid: 1045
+ - uid: 32460
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-47.5
+ pos: 86.5,81.5
parent: 2
- - uid: 1072
+ - uid: 32462
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 48.5,-2.5
+ pos: 88.5,81.5
parent: 2
- - uid: 1101
+ - uid: 32463
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,81.5
parent: 2
- - uid: 1114
+ - uid: 32466
components:
- type: Transform
- pos: -7.5,-18.5
+ pos: 54.5,78.5
parent: 2
- - uid: 1123
+ - uid: 32526
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.5,5.5
+ pos: 103.5,80.5
parent: 2
- - uid: 1176
+ - uid: 32532
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,4.5
+ pos: 54.5,79.5
parent: 2
- - uid: 1229
+ - uid: 32564
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-7.5
+ pos: 79.5,41.5
parent: 2
- - uid: 1232
+ - uid: 32567
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-8.5
+ pos: 76.5,53.5
parent: 2
- - uid: 1233
+ - uid: 32568
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-6.5
+ pos: 77.5,53.5
parent: 2
- - uid: 1236
+ - uid: 32573
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-9.5
+ pos: 54.5,80.5
parent: 2
- - uid: 1473
+ - uid: 32574
components:
- type: Transform
- pos: -77.5,10.5
+ pos: 69.5,88.5
parent: 2
- - uid: 1678
+ - uid: 32575
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-1.5
+ pos: 68.5,89.5
parent: 2
- - uid: 1693
+ - uid: 32579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,52.5
parent: 2
- - uid: 1701
+ - uid: 32580
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-1.5
+ pos: 69.5,89.5
parent: 2
- - uid: 1705
+ - uid: 32581
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,0.5
+ pos: 80.5,38.5
parent: 2
- - uid: 1713
+ - uid: 32582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-2.5
+ pos: 81.5,38.5
parent: 2
- - uid: 2559
+ - uid: 32583
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 2
+ - uid: 32595
+ components:
+ - type: Transform
+ pos: 70.5,88.5
+ parent: 2
+ - uid: 32599
+ components:
+ - type: Transform
+ pos: 93.5,49.5
+ parent: 2
+ - uid: 32638
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-45.5
+ pos: 80.5,52.5
parent: 2
- - uid: 2561
+ - uid: 32641
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,52.5
parent: 2
- - uid: 3186
+ - uid: 32642
components:
- type: Transform
- pos: 21.5,-35.5
+ pos: 81.5,52.5
parent: 2
- - uid: 3193
+ - uid: 32643
components:
- type: Transform
- pos: 15.5,-35.5
+ pos: 86.5,52.5
parent: 2
- - uid: 3194
+ - uid: 32644
components:
- type: Transform
- pos: 18.5,-35.5
+ pos: 83.5,52.5
parent: 2
- - uid: 4019
+ - uid: 32645
components:
- type: Transform
- pos: 5.5,7.5
+ pos: 83.5,51.5
parent: 2
- - uid: 4048
+ - uid: 32646
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-43.5
+ pos: 84.5,51.5
parent: 2
- - uid: 5886
+ - uid: 32647
components:
- type: Transform
- pos: -2.5,-40.5
+ pos: 82.5,52.5
parent: 2
- - uid: 5934
+ - uid: 32648
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-8.5
+ pos: 97.5,12.5
parent: 2
- - uid: 12247
+ - uid: 32649
components:
- type: Transform
- pos: -5.5,21.5
+ pos: 84.5,52.5
parent: 2
- - uid: 12298
+ - uid: 32651
components:
- type: Transform
- pos: 6.5,-40.5
+ pos: 85.5,52.5
parent: 2
- - uid: 12960
+ - uid: 32652
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-12.5
+ pos: 82.5,51.5
parent: 2
- - uid: 12964
+ - uid: 32653
components:
- type: Transform
- pos: 47.5,-11.5
+ pos: 85.5,51.5
parent: 2
- - uid: 13925
+ - uid: 32655
components:
- type: Transform
- pos: 6.5,42.5
+ pos: 96.5,12.5
parent: 2
- - uid: 13926
+ - uid: 32656
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,35.5
+ pos: 88.5,51.5
parent: 2
- - uid: 14168
+ - uid: 32657
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,51.5
+ pos: 86.5,51.5
parent: 2
- - uid: 15155
+ - uid: 32659
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-43.5
+ pos: 88.5,52.5
parent: 2
- - uid: 15533
+ - uid: 32661
components:
- type: Transform
- pos: -8.5,71.5
+ pos: 87.5,51.5
parent: 2
- - uid: 16310
+ - uid: 32662
components:
- type: Transform
- pos: -19.5,59.5
+ pos: 89.5,52.5
parent: 2
- - uid: 19569
+ - uid: 32663
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,76.5
+ pos: 87.5,53.5
parent: 2
- - uid: 19570
+ - uid: 32664
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,76.5
+ pos: 87.5,52.5
parent: 2
- - uid: 19571
+ - uid: 32674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,76.5
+ pos: 88.5,53.5
parent: 2
- - uid: 19580
+ - uid: 32764
components:
- type: Transform
- pos: 8.5,75.5
+ pos: 89.5,58.5
parent: 2
- - uid: 19581
+ - uid: 32765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,76.5
+ pos: 88.5,59.5
parent: 2
- - uid: 19582
+ - uid: 32766
components:
- type: Transform
- pos: -7.5,75.5
+ pos: 90.5,58.5
parent: 2
- - uid: 19584
+ - uid: 32767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,76.5
+ pos: 90.5,60.5
parent: 2
- - uid: 19585
+ - uid: 32768
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,76.5
+ pos: 87.5,59.5
parent: 2
- - uid: 19587
+ - uid: 32789
components:
- type: Transform
- pos: 0.5,75.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,51.5
parent: 2
- - uid: 19593
+ - uid: 32810
components:
- type: Transform
- pos: -4.5,75.5
+ pos: 80.5,70.5
parent: 2
- - uid: 19594
+ - uid: 32812
components:
- type: Transform
- pos: 3.5,75.5
+ pos: 80.5,69.5
parent: 2
- - uid: 19595
+ - uid: 32813
components:
- type: Transform
- pos: 11.5,75.5
+ pos: 79.5,70.5
parent: 2
- - uid: 21932
+ - uid: 32818
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-26.5
+ pos: 74.5,92.5
parent: 2
- - uid: 21943
+ - uid: 32820
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-28.5
+ pos: 64.5,71.5
parent: 2
- - uid: 30030
+ - uid: 32821
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,18.5
+ pos: 75.5,69.5
parent: 2
- - uid: 30220
+ - uid: 32822
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,17.5
+ pos: 71.5,68.5
parent: 2
- - uid: 30264
+ - uid: 32824
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,18.5
+ pos: 72.5,69.5
parent: 2
- - uid: 30271
+ - uid: 32828
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,4.5
+ pos: 71.5,69.5
parent: 2
- - uid: 30279
+ - uid: 32831
components:
- type: Transform
- pos: -38.5,-10.5
+ pos: 75.5,71.5
parent: 2
- - uid: 30347
+ - uid: 32832
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,12.5
+ pos: 63.5,63.5
parent: 2
- - uid: 30492
+ - uid: 32834
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,49.5
+ pos: 63.5,64.5
parent: 2
- - uid: 30502
+ - uid: 32835
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,68.5
+ pos: 64.5,70.5
parent: 2
- - uid: 30529
+ - uid: 32836
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,18.5
+ pos: 63.5,65.5
parent: 2
- - uid: 30576
+ - uid: 32844
components:
- type: Transform
- pos: -36.5,-13.5
+ pos: 63.5,57.5
parent: 2
- - uid: 30658
+ - uid: 32845
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-12.5
+ pos: 63.5,58.5
parent: 2
- - uid: 31119
+ - uid: 32846
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,18.5
+ pos: 62.5,59.5
parent: 2
- - uid: 31120
+ - uid: 32847
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-16.5
+ pos: 63.5,56.5
parent: 2
- - uid: 32582
+ - uid: 32848
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,64.5
+ pos: 64.5,57.5
parent: 2
-- proto: BenchSofaCorpMiddle
- entities:
- - uid: 1694
+ - uid: 32849
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,5.5
+ pos: 63.5,60.5
parent: 2
- - uid: 1700
+ - uid: 32850
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-0.5
+ pos: 64.5,60.5
parent: 2
- - uid: 1704
+ - uid: 32851
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-0.5
+ pos: 63.5,59.5
parent: 2
- - uid: 14166
+ - uid: 32866
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,49.5
+ pos: 71.5,67.5
parent: 2
- - uid: 14167
+ - uid: 32869
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,50.5
+ pos: 64.5,69.5
parent: 2
- - uid: 16393
+ - uid: 32879
components:
- type: Transform
- pos: -9.5,71.5
+ pos: 77.5,88.5
parent: 2
- - uid: 17811
+ - uid: 32884
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,18.5
+ pos: 78.5,88.5
parent: 2
- - uid: 20926
+ - uid: 32885
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-16.5
+ pos: 77.5,87.5
parent: 2
- - uid: 23490
+ - uid: 32887
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 90.5,17.5
+ pos: 101.5,76.5
parent: 2
- - uid: 30261
+ - uid: 32891
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,18.5
+ pos: 79.5,88.5
parent: 2
- - uid: 30266
+ - uid: 32893
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-3.5
+ pos: 78.5,87.5
parent: 2
- - uid: 30494
+ - uid: 32897
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,50.5
+ pos: 78.5,86.5
parent: 2
- - uid: 30598
+ - uid: 32900
components:
- type: Transform
- pos: -37.5,-13.5
+ pos: 80.5,87.5
parent: 2
- - uid: 30659
+ - uid: 32906
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-12.5
+ pos: 62.5,64.5
parent: 2
- - uid: 31115
+ - uid: 32907
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,5.5
+ pos: 69.5,74.5
parent: 2
- - uid: 31116
+ - uid: 32908
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,17.5
+ pos: 70.5,74.5
parent: 2
-- proto: BenchSofaCorpRight
- entities:
- - uid: 28
+ - uid: 32910
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-45.5
+ pos: 68.5,74.5
parent: 2
- - uid: 644
+ - uid: 32911
components:
- type: Transform
- pos: -22.5,-8.5
+ pos: 72.5,73.5
parent: 2
- - uid: 649
+ - uid: 32913
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-10.5
+ pos: 71.5,74.5
parent: 2
- - uid: 865
+ - uid: 32915
components:
- type: Transform
- pos: -3.5,-40.5
+ pos: 71.5,73.5
parent: 2
- - uid: 1098
+ - uid: 32916
components:
- type: Transform
- pos: -8.5,-18.5
+ pos: 73.5,72.5
parent: 2
- - uid: 1145
+ - uid: 32919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,5.5
+ pos: 73.5,71.5
parent: 2
- - uid: 1230
+ - uid: 32925
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,82.5
parent: 2
- - uid: 1231
+ - uid: 32932
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-7.5
+ pos: 91.5,82.5
parent: 2
- - uid: 1234
+ - uid: 32933
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-6.5
+ pos: 79.5,68.5
parent: 2
- - uid: 1235
+ - uid: 32936
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-9.5
+ pos: 79.5,67.5
parent: 2
- - uid: 1331
+ - uid: 32954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-47.5
+ pos: 91.5,60.5
parent: 2
- - uid: 1393
+ - uid: 32955
components:
- type: Transform
- pos: -78.5,10.5
+ pos: 88.5,57.5
parent: 2
- - uid: 1471
+ - uid: 32958
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-43.5
+ pos: 89.5,59.5
parent: 2
- - uid: 1561
+ - uid: 32959
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-46.5
+ pos: 90.5,59.5
parent: 2
- - uid: 1691
+ - uid: 32960
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,4.5
+ pos: 88.5,58.5
parent: 2
- - uid: 1695
+ - uid: 32962
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,6.5
+ pos: 98.5,48.5
parent: 2
- - uid: 1702
+ - uid: 32963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,0.5
+ pos: 97.5,47.5
parent: 2
- - uid: 1703
+ - uid: 32964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-1.5
+ pos: 78.5,89.5
parent: 2
- - uid: 1714
+ - uid: 32965
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-2.5
+ pos: 96.5,48.5
parent: 2
- - uid: 2629
+ - uid: 32970
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-48.5
+ pos: 78.5,69.5
parent: 2
- - uid: 3190
+ - uid: 32971
components:
- type: Transform
- pos: 20.5,-35.5
+ pos: 79.5,69.5
parent: 2
- - uid: 3191
+ - uid: 33005
components:
- type: Transform
- pos: 14.5,-35.5
+ pos: 75.5,46.5
parent: 2
- - uid: 3192
+ - uid: 33018
components:
- type: Transform
- pos: 17.5,-35.5
+ pos: 72.5,68.5
parent: 2
- - uid: 3299
+ - uid: 33022
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-7.5
+ pos: 72.5,67.5
parent: 2
- - uid: 3423
+ - uid: 33026
components:
- type: Transform
- pos: -10.5,71.5
+ pos: 78.5,65.5
parent: 2
- - uid: 5767
+ - uid: 33027
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-19.5
+ pos: 78.5,66.5
parent: 2
- - uid: 6266
+ - uid: 33028
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,67.5
+ pos: 87.5,81.5
parent: 2
- - uid: 6814
+ - uid: 33029
components:
- type: Transform
- pos: -6.5,21.5
+ pos: 75.5,87.5
parent: 2
- - uid: 8232
+ - uid: 33030
components:
- type: Transform
- pos: 4.5,7.5
+ pos: 53.5,90.5
parent: 2
- - uid: 8324
+ - uid: 33031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-25.5
+ pos: 64.5,58.5
parent: 2
- - uid: 11338
+ - uid: 33032
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-27.5
+ pos: 64.5,59.5
parent: 2
- - uid: 12959
+ - uid: 33033
components:
- type: Transform
- pos: 46.5,-11.5
+ pos: 63.5,61.5
parent: 2
- - uid: 12965
+ - uid: 33034
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-13.5
+ pos: 63.5,62.5
parent: 2
- - uid: 13869
+ - uid: 33035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,6.5
+ pos: 62.5,61.5
parent: 2
- - uid: 13924
+ - uid: 33036
components:
- type: Transform
- pos: 5.5,42.5
+ pos: 62.5,60.5
parent: 2
- - uid: 13927
+ - uid: 33037
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,35.5
+ pos: 61.5,59.5
parent: 2
- - uid: 14165
+ - uid: 33039
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,48.5
+ pos: 89.5,82.5
parent: 2
- - uid: 15217
+ - uid: 33042
components:
- type: Transform
- pos: -20.5,59.5
+ pos: 71.5,57.5
parent: 2
- - uid: 19572
+ - uid: 33043
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,76.5
+ pos: 71.5,57.5
parent: 2
- - uid: 19573
+ - uid: 33044
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,76.5
+ pos: 72.5,57.5
parent: 2
- - uid: 19574
+ - uid: 33045
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,76.5
+ pos: 71.5,56.5
parent: 2
- - uid: 19575
+ - uid: 33046
components:
- type: Transform
- pos: 2.5,75.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,45.5
parent: 2
- - uid: 19577
+ - uid: 33047
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,76.5
+ pos: 97.5,46.5
parent: 2
- - uid: 19583
+ - uid: 33048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,76.5
+ pos: 99.5,49.5
parent: 2
- - uid: 19586
+ - uid: 33049
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,76.5
+ pos: 97.5,48.5
parent: 2
- - uid: 19590
+ - uid: 33050
components:
- type: Transform
- pos: 10.5,75.5
+ pos: 98.5,47.5
parent: 2
- - uid: 19592
+ - uid: 33051
components:
- type: Transform
- pos: -5.5,75.5
+ pos: 99.5,48.5
parent: 2
- - uid: 19596
+ - uid: 33052
components:
- type: Transform
- pos: -0.5,75.5
+ pos: 98.5,49.5
parent: 2
- - uid: 19597
+ - uid: 33062
components:
- type: Transform
- pos: 7.5,75.5
+ pos: 90.5,24.5
parent: 2
- - uid: 19599
+ - uid: 33063
components:
- type: Transform
- pos: -8.5,75.5
+ pos: 89.5,25.5
parent: 2
- - uid: 19742
+ - uid: 33064
components:
- type: Transform
- pos: -39.5,-10.5
+ pos: 88.5,26.5
parent: 2
- - uid: 21068
+ - uid: 33065
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-16.5
+ pos: 88.5,27.5
parent: 2
- - uid: 22806
+ - uid: 33066
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 48.5,-4.5
+ pos: 88.5,82.5
parent: 2
- - uid: 23326
+ - uid: 33067
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-43.5
+ pos: 53.5,89.5
parent: 2
- - uid: 23327
+ - uid: 33068
components:
- type: Transform
- pos: 5.5,-40.5
+ pos: 100.5,18.5
parent: 2
- - uid: 29833
+ - uid: 33069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,16.5
+ pos: 97.5,41.5
parent: 2
- - uid: 30269
+ - uid: 33070
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,17.5
+ pos: 97.5,42.5
parent: 2
- - uid: 30348
+ - uid: 33071
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,13.5
+ pos: 96.5,42.5
parent: 2
- - uid: 30493
+ - uid: 33072
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,51.5
+ pos: 96.5,41.5
parent: 2
- - uid: 30528
+ - uid: 33073
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,18.5
+ pos: 96.5,40.5
parent: 2
- - uid: 30599
+ - uid: 33074
components:
- type: Transform
- pos: -38.5,-13.5
+ pos: 97.5,40.5
parent: 2
- - uid: 30660
+ - uid: 33075
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-12.5
+ pos: 97.5,43.5
parent: 2
- - uid: 31114
+ - uid: 33076
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,18.5
+ pos: 98.5,42.5
parent: 2
- - uid: 31478
+ - uid: 33079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-0.5
+ pos: 62.5,65.5
parent: 2
- - uid: 32581
+ - uid: 33080
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,63.5
+ pos: 62.5,66.5
parent: 2
- - uid: 34969
+ - uid: 33102
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,18.5
+ pos: 56.5,89.5
parent: 2
-- proto: BenchSofaLeft
- entities:
- - uid: 7541
+ - uid: 33103
components:
- type: Transform
- pos: 83.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,45.5
parent: 2
- - uid: 19412
+ - uid: 33142
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -81.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,39.5
parent: 2
-- proto: BenchSofaRight
- entities:
- - uid: 19410
+ - uid: 33154
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -81.5,3.5
+ pos: 78.5,46.5
parent: 2
- - uid: 36392
+ - uid: 33177
components:
- type: Transform
- pos: 82.5,59.5
+ pos: 78.5,39.5
parent: 2
-- proto: BenchSteelLeft
- entities:
- - uid: 29362
+ - uid: 33238
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 85.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,51.5
parent: 2
-- proto: BenchSteelMiddle
- entities:
- - uid: 29365
+ - uid: 33384
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,53.5
parent: 2
-- proto: BenchSteelRight
- entities:
- - uid: 29364
+ - uid: 33385
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 83.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,52.5
parent: 2
-- proto: BenchSteelWhiteLeft
- entities:
- - uid: 2414
+ - uid: 33456
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 79.5,39.5
parent: 2
- - uid: 2417
+ - uid: 33477
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-31.5
+ pos: 53.5,88.5
parent: 2
- - uid: 3125
+ - uid: 33539
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-28.5
+ pos: 78.5,40.5
parent: 2
- - uid: 3126
+ - uid: 33544
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-28.5
+ pos: 79.5,83.5
parent: 2
- - uid: 5177
+ - uid: 33547
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-22.5
+ pos: 79.5,82.5
parent: 2
- - uid: 5178
+ - uid: 33639
components:
- type: Transform
- pos: 59.5,-3.5
+ pos: 77.5,79.5
parent: 2
- - uid: 5181
+ - uid: 33641
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-27.5
+ pos: 77.5,78.5
parent: 2
- - uid: 5187
+ - uid: 33702
components:
- type: Transform
- pos: 67.5,-3.5
+ pos: 80.5,79.5
parent: 2
-- proto: BenchSteelWhiteMiddle
- entities:
- - uid: 2415
+ - uid: 33713
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-30.5
+ pos: 79.5,78.5
parent: 2
- - uid: 3300
+ - uid: 33847
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-30.5
+ pos: 55.5,90.5
parent: 2
- - uid: 3308
+ - uid: 33849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-30.5
+ pos: 52.5,87.5
parent: 2
- - uid: 3325
+ - uid: 33850
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-29.5
+ pos: 56.5,90.5
parent: 2
- - uid: 3368
+ - uid: 33852
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-29.5
+ pos: 57.5,90.5
parent: 2
- - uid: 3370
+ - uid: 33853
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-29.5
+ pos: 53.5,87.5
parent: 2
- - uid: 3371
+ - uid: 33854
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-30.5
+ pos: 53.5,86.5
parent: 2
- - uid: 3391
+ - uid: 33858
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-29.5
+ pos: 52.5,86.5
parent: 2
- - uid: 5179
+ - uid: 33859
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-27.5
+ pos: -99.5,71.5
parent: 2
- - uid: 5182
+ - uid: 33860
components:
- type: Transform
- pos: 60.5,-3.5
+ pos: 54.5,90.5
parent: 2
- - uid: 5183
+ - uid: 33861
components:
- type: Transform
- pos: 61.5,-3.5
+ pos: 54.5,91.5
parent: 2
- - uid: 5184
+ - uid: 33862
components:
- type: Transform
- pos: 68.5,-3.5
+ pos: 55.5,88.5
parent: 2
- - uid: 5185
+ - uid: 33863
components:
- type: Transform
- pos: 69.5,-3.5
+ pos: 59.5,90.5
parent: 2
-- proto: BenchSteelWhiteRight
- entities:
- - uid: 3132
+ - uid: 33864
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-28.5
+ pos: 58.5,90.5
parent: 2
- - uid: 3330
+ - uid: 33865
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-31.5
+ pos: 56.5,91.5
parent: 2
- - uid: 3332
+ - uid: 33866
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-28.5
+ pos: 93.5,84.5
parent: 2
- - uid: 3388
+ - uid: 33867
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,82.5
parent: 2
- - uid: 5167
+ - uid: 33868
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 49.5,-21.5
+ pos: 93.5,83.5
parent: 2
- - uid: 5168
+ - uid: 33869
components:
- type: Transform
- pos: 62.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,83.5
parent: 2
- - uid: 5180
+ - uid: 33870
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,-27.5
+ pos: 54.5,89.5
parent: 2
- - uid: 5186
+ - uid: 34004
components:
- type: Transform
- pos: 70.5,-3.5
+ pos: 58.5,89.5
parent: 2
-- proto: BikeHorn
- entities:
- - uid: 5537
+ - uid: 34008
components:
- type: Transform
- pos: -79.03031,3.7260756
+ pos: 60.5,89.5
parent: 2
- - uid: 17784
+ - uid: 34183
components:
- type: Transform
- pos: -79.319374,3.7260756
+ pos: 52.5,88.5
parent: 2
- - uid: 19434
+ - uid: 34205
components:
- type: Transform
- pos: -79.56535,3.6906705
+ rot: 1.5707963267948966 rad
+ pos: 94.5,84.5
parent: 2
-- proto: BiomassReclaimer
- entities:
- - uid: 1342
+ - uid: 34206
components:
- type: Transform
- pos: 30.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,82.5
parent: 2
- - uid: 1357
+ - uid: 34225
components:
- type: Transform
- pos: 29.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,83.5
parent: 2
-- proto: BiomassReclaimerMachineCircuitboard
- entities:
- - uid: 35814
+ - uid: 34226
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.615856,27.613655
+ rot: 1.5707963267948966 rad
+ pos: 96.5,85.5
parent: 2
-- proto: BirdToyInstrument
- entities:
- - uid: 9518
+ - uid: 34227
components:
- type: Transform
- pos: -72.38812,0.47690368
+ rot: 1.5707963267948966 rad
+ pos: 96.5,81.5
parent: 2
-- proto: BlastDoor
- entities:
- - uid: 712
+ - uid: 34230
components:
- type: Transform
- pos: -33.5,-45.5
+ pos: 52.5,85.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9074
- - uid: 1523
+ - uid: 34231
components:
- type: Transform
- pos: 44.5,58.5
+ pos: 55.5,91.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 12930
- - 9098
- - uid: 4187
+ - uid: 34232
components:
- type: Transform
- pos: 45.5,58.5
+ pos: 54.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9098
- - 12930
- - uid: 4191
+ - uid: 34233
components:
- type: Transform
- pos: 39.5,58.5
+ pos: 60.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8740
- - 12929
- - uid: 4196
+ - uid: 34234
components:
- type: Transform
- pos: 46.5,58.5
+ pos: 62.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9098
- - 12930
- - uid: 4201
+ - uid: 34235
components:
- type: Transform
- pos: 40.5,58.5
+ pos: 61.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8740
- - 12929
- - uid: 4222
+ - uid: 34236
components:
- type: Transform
- pos: 38.5,58.5
+ pos: 61.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8740
- - 12929
- - uid: 16629
+ - uid: 34237
components:
- type: Transform
- pos: -51.5,-50.5
+ pos: 54.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8936
- - uid: 16671
+ - uid: 34238
components:
- type: Transform
- pos: -47.5,-50.5
+ pos: 62.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8936
- - uid: 16703
+ - uid: 34246
components:
- type: Transform
- pos: -29.5,-45.5
+ pos: 71.5,89.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9074
- - uid: 22287
+ - uid: 34247
components:
- type: Transform
- pos: 4.5,62.5
+ pos: 68.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 22295
- - uid: 22293
+ - uid: 34248
components:
- type: Transform
- pos: 4.5,58.5
+ pos: 72.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 22295
- - uid: 22608
+ - uid: 34249
components:
- type: Transform
- pos: 51.5,49.5
+ pos: 74.5,87.5
parent: 2
- - uid: 26695
+ - uid: 34279
components:
- type: Transform
- pos: -52.5,-49.5
+ pos: 70.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8936
- - uid: 26800
+ - uid: 34380
components:
- type: Transform
- pos: -52.5,-45.5
+ pos: 71.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6742
-- proto: BlastDoorOpen
- entities:
- - uid: 9253
+ - uid: 34419
components:
- type: Transform
- pos: 37.5,52.5
+ pos: 73.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9223
- - uid: 9257
+ - uid: 34422
components:
- type: Transform
- pos: 47.5,52.5
+ pos: 68.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 2512
- - uid: 14111
+ - uid: 34572
components:
- type: Transform
- pos: 23.5,44.5
+ pos: 67.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17793
- - uid: 15042
+ - uid: 34580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,57.5
+ pos: 69.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15043
+ - uid: 34581
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,57.5
+ pos: 73.5,89.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15044
+ - uid: 34582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,57.5
+ pos: 72.5,89.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15045
+ - uid: 34589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15047
+ - uid: 34598
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,56.5
+ pos: 73.5,88.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15048
+ - uid: 34599
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,55.5
+ pos: 70.5,90.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15049
+ - uid: 34600
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,55.5
+ pos: 73.5,90.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15050
+ - uid: 34601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,54.5
+ pos: 75.5,90.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15051
+ - uid: 34602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,53.5
+ pos: 71.5,88.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15055
+ - uid: 34619
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,51.5
+ pos: 74.5,90.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15056
+ - uid: 34620
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,51.5
+ pos: 71.5,90.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19938
- - uid: 15057
+ - uid: 34701
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,60.5
+ pos: 72.5,91.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15058
+ - uid: 34703
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,60.5
+ pos: 71.5,91.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15059
+ - uid: 34709
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,60.5
+ pos: 74.5,91.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15060
+ - uid: 34762
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,60.5
+ pos: 73.5,91.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15061
+ - uid: 34763
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,59.5
+ pos: 75.5,91.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15062
+ - uid: 34764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,59.5
+ pos: 73.5,92.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15063
+ - uid: 34765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,58.5
+ pos: 79.5,89.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15064
+ - uid: 34766
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,58.5
+ pos: 72.5,90.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15065
+ - uid: 34770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,60.5
+ pos: 72.5,88.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15066
+ - uid: 34771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,59.5
+ pos: 74.5,88.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15067
+ - uid: 34772
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,59.5
+ pos: 79.5,87.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15068
+ - uid: 34773
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,58.5
+ pos: -102.5,67.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15069
+ - uid: 34774
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,58.5
+ pos: 55.5,82.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 15127
- - uid: 15070
+ - uid: 34775
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,57.5
+ pos: -101.5,66.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15127
- - uid: 15071
+ - uid: 34776
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,57.5
+ pos: 74.5,89.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15127
- - uid: 15072
+ - uid: 34777
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,57.5
+ pos: 69.5,90.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15127
- - uid: 15075
+ - uid: 34778
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,53.5
+ pos: 85.5,85.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15119
- - uid: 15078
+ - uid: 34779
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,36.5
+ pos: 86.5,83.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15079
+ - uid: 34780
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,35.5
+ pos: 85.5,86.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15080
+ - uid: 34781
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,36.5
+ pos: 84.5,86.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15081
+ - uid: 34782
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,37.5
+ pos: 85.5,82.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15082
+ - uid: 34783
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,38.5
+ pos: 86.5,82.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15083
+ - uid: 34784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,39.5
+ pos: 84.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17791
- - uid: 15084
+ - uid: 34785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,38.5
+ pos: 87.5,83.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15085
+ - uid: 34786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,37.5
+ pos: 84.5,85.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15086
+ - uid: 34787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,36.5
+ pos: 84.5,83.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15087
+ - uid: 34788
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,36.5
+ pos: 85.5,83.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15088
+ - uid: 34789
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,36.5
+ pos: 86.5,85.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15089
+ - uid: 34790
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,37.5
+ pos: 86.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15090
+ - uid: 34791
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,38.5
+ pos: 85.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17792
- - uid: 15091
+ - uid: 34792
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,42.5
+ pos: 84.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17793
- - uid: 15092
+ - uid: 34793
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,42.5
+ pos: 83.5,87.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17793
- - uid: 15093
+ - uid: 34796
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,44.5
+ pos: -94.5,38.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17793
- - uid: 15094
+ - uid: 34797
components:
- type: Transform
- pos: 22.5,44.5
+ pos: -95.5,39.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 17793
- - uid: 15096
+ - uid: 34801
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,47.5
+ pos: -68.5,45.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15119
- - 17793
- - uid: 15097
+ - uid: 34802
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,47.5
+ pos: -69.5,45.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15119
- - 17793
- - uid: 15123
+ - uid: 34803
components:
- type: Transform
- pos: 27.5,53.5
+ pos: -69.5,46.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 15119
- - uid: 19385
+ - uid: 34804
components:
- type: Transform
- pos: -26.5,43.5
+ pos: -81.5,50.5
parent: 2
- - uid: 19386
+ - uid: 34808
components:
- type: Transform
- pos: -25.5,43.5
+ pos: -112.5,55.5
parent: 2
- - uid: 19387
+ - uid: 34811
components:
- type: Transform
- pos: -24.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,44.5
parent: 2
- - uid: 23712
+ - uid: 34839
components:
- type: Transform
- pos: -59.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,83.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 1
- links:
- - 28714
- - uid: 29390
+ - uid: 34840
components:
- type: Transform
- pos: -57.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,82.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 28714
- - uid: 29636
+ - uid: 34841
components:
- type: Transform
- pos: -56.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,81.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 28714
- - uid: 29746
+ - uid: 34842
components:
- type: Transform
- pos: 85.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29750
- - 29772
- - uid: 29768
+ - uid: 34843
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 85.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,83.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 29774
- - 29775
- - uid: 31417
+ - uid: 34844
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 28714
- - uid: 31446
+ - uid: 34845
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 28714
-- proto: BlockGameArcade
- entities:
- - uid: 424
+ - uid: 34846
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,83.5
parent: 2
-- proto: Bloodpack
- entities:
- - uid: 7811
+ - uid: 34847
components:
- type: Transform
- pos: 7.267189,-7.306482
+ rot: 1.5707963267948966 rad
+ pos: 98.5,83.5
parent: 2
- - uid: 23344
+ - uid: 34848
components:
- type: Transform
- pos: -16.422037,-0.4027381
+ rot: 1.5707963267948966 rad
+ pos: 99.5,84.5
parent: 2
- - uid: 23364
+ - uid: 34849
components:
- type: Transform
- pos: -29.394693,-0.3324256
+ rot: 1.5707963267948966 rad
+ pos: 96.5,83.5
parent: 2
-- proto: BoardGameSpawner
- entities:
- - uid: 803
+ - uid: 34850
components:
- type: Transform
- pos: 53.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,82.5
parent: 2
- - uid: 1638
+ - uid: 34851
components:
- type: Transform
- pos: -5.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,82.5
parent: 2
- - uid: 1639
+ - uid: 34852
components:
- type: Transform
- pos: -2.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,81.5
parent: 2
- - uid: 21072
+ - uid: 34853
components:
- type: Transform
- pos: -22.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,85.5
parent: 2
- - uid: 21102
+ - uid: 34879
components:
- type: Transform
- pos: -45.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,82.5
parent: 2
-- proto: BodyBag_Folded
- entities:
- - uid: 1376
+ - uid: 34880
components:
- type: Transform
- pos: 31.875422,9.738234
+ rot: 1.5707963267948966 rad
+ pos: 98.5,85.5
parent: 2
- - uid: 1377
+ - uid: 34881
components:
- type: Transform
- pos: 32.121513,9.855421
+ rot: 1.5707963267948966 rad
+ pos: 101.5,77.5
parent: 2
- - uid: 1378
+ - uid: 34914
components:
- type: Transform
- pos: 31.723078,9.972609
+ rot: 1.5707963267948966 rad
+ pos: 99.5,79.5
parent: 2
- - uid: 1410
+ - uid: 34916
components:
- type: Transform
- pos: 19.470509,3.3589706
+ rot: 1.5707963267948966 rad
+ pos: 102.5,79.5
parent: 2
- - uid: 1411
+ - uid: 34917
components:
- type: Transform
- pos: 19.622852,3.112877
+ rot: 1.5707963267948966 rad
+ pos: 101.5,79.5
parent: 2
- - uid: 7736
+ - uid: 34918
components:
- type: Transform
- pos: 71.329605,30.886026
+ rot: 1.5707963267948966 rad
+ pos: 103.5,79.5
parent: 2
- - uid: 15506
+ - uid: 34919
components:
- type: Transform
- pos: -36.3163,29.611282
+ rot: 1.5707963267948966 rad
+ pos: 103.5,78.5
parent: 2
- - uid: 15507
+ - uid: 34924
components:
- type: Transform
- pos: -36.34755,29.908157
+ rot: 1.5707963267948966 rad
+ pos: 102.5,78.5
parent: 2
- - uid: 25062
+ - uid: 34930
components:
- type: Transform
- pos: 71.44679,30.686808
+ rot: 1.5707963267948966 rad
+ pos: 100.5,80.5
parent: 2
- - uid: 25066
+ - uid: 34931
components:
- type: Transform
- pos: 71.65773,30.897745
+ rot: 1.5707963267948966 rad
+ pos: 100.5,79.5
parent: 2
-- proto: Bonfire
- entities:
- - uid: 5136
+ - uid: 34932
components:
- type: Transform
- pos: 65.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,81.5
parent: 2
- - uid: 7032
+ - uid: 34933
components:
- type: Transform
- pos: -28.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,80.5
parent: 2
-- proto: BookChefGaming
- entities:
- - uid: 23459
+ - uid: 34934
components:
- type: Transform
- pos: -49.363445,-8.317079
+ rot: 1.5707963267948966 rad
+ pos: 101.5,81.5
parent: 2
- - uid: 25052
+ - uid: 34935
components:
- type: Transform
- pos: -49.557533,-8.433976
+ rot: 1.5707963267948966 rad
+ pos: 101.5,78.5
parent: 2
-- proto: BookIanArctic
- entities:
- - uid: 4453
+ - uid: 34936
components:
- type: Transform
- pos: 13.509313,-5.401567
+ rot: 1.5707963267948966 rad
+ pos: 101.5,80.5
parent: 2
-- proto: BookIanMountain
- entities:
- - uid: 4432
+ - uid: 34937
components:
- type: Transform
- pos: 13.321813,-5.202348
+ rot: 1.5707963267948966 rad
+ pos: 102.5,77.5
parent: 2
-- proto: BooksBag
- entities:
- - uid: 6086
+ - uid: 35190
components:
- type: Transform
- pos: 52.3559,27.7039
+ pos: -96.5,38.5
parent: 2
-- proto: BookshelfFilled
- entities:
- - uid: 39
+ - uid: 35191
components:
- type: Transform
- pos: 57.5,28.5
+ pos: -96.5,39.5
parent: 2
- - uid: 608
+ - uid: 35192
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: -95.5,43.5
parent: 2
- - uid: 613
+ - uid: 35215
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: -95.5,46.5
parent: 2
- - uid: 616
+ - uid: 35217
components:
- type: Transform
- pos: -5.5,-4.5
+ pos: -95.5,41.5
parent: 2
- - uid: 617
+ - uid: 35218
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: -98.5,52.5
parent: 2
- - uid: 676
+ - uid: 35316
components:
- type: Transform
- pos: -13.5,-7.5
+ pos: -98.5,41.5
parent: 2
- - uid: 686
+ - uid: 35317
components:
- type: Transform
- pos: -29.5,-7.5
+ pos: -94.5,42.5
parent: 2
- - uid: 1554
+ - uid: 35318
components:
- type: Transform
- pos: -27.5,-7.5
+ pos: -94.5,44.5
parent: 2
- - uid: 1958
+ - uid: 35400
components:
- type: Transform
- pos: 11.5,30.5
+ pos: -94.5,52.5
parent: 2
- - uid: 2342
+ - uid: 35660
components:
- type: Transform
- pos: -22.5,59.5
+ pos: -107.5,59.5
parent: 2
- - uid: 2361
+ - uid: 35760
components:
- type: Transform
- pos: -21.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,85.5
parent: 2
- - uid: 2363
+ - uid: 35906
components:
- type: Transform
- pos: -7.5,61.5
+ pos: 79.5,80.5
parent: 2
- - uid: 4016
+ - uid: 35909
components:
- type: Transform
- pos: 42.5,26.5
+ pos: 79.5,81.5
parent: 2
- - uid: 4064
+ - uid: 35967
components:
- type: Transform
- pos: 59.5,28.5
+ pos: -92.5,51.5
parent: 2
- - uid: 4066
+ - uid: 35969
components:
- type: Transform
- pos: 60.5,28.5
+ pos: -98.5,46.5
parent: 2
- - uid: 4067
+ - uid: 35970
components:
- type: Transform
- pos: 60.5,30.5
+ pos: -95.5,45.5
parent: 2
- - uid: 4081
+ - uid: 35971
components:
- type: Transform
- pos: 58.5,28.5
+ pos: -72.5,31.5
parent: 2
- - uid: 4083
+ - uid: 35972
components:
- type: Transform
- pos: 58.5,30.5
+ pos: -96.5,40.5
parent: 2
- - uid: 4225
+ - uid: 36031
components:
- type: Transform
- pos: 57.5,26.5
+ pos: 78.5,80.5
parent: 2
- - uid: 4370
+ - uid: 36044
components:
- type: Transform
- pos: 59.5,30.5
+ pos: -99.5,58.5
parent: 2
- - uid: 4449
+ - uid: 36213
components:
- type: Transform
- pos: -6.5,61.5
+ pos: -93.5,46.5
parent: 2
- - uid: 4489
+ - uid: 36219
components:
- type: Transform
- pos: 57.5,30.5
+ pos: -112.5,57.5
parent: 2
- - uid: 4520
+ - uid: 36222
components:
- type: Transform
- pos: 58.5,26.5
+ pos: -112.5,56.5
parent: 2
- - uid: 5480
+ - uid: 36227
components:
- type: Transform
- pos: 43.5,26.5
+ pos: -96.5,45.5
parent: 2
- - uid: 5481
+ - uid: 36228
components:
- type: Transform
- pos: 44.5,26.5
+ pos: -98.5,44.5
parent: 2
- - uid: 5578
+ - uid: 36229
components:
- type: Transform
- pos: 59.5,26.5
+ pos: -97.5,46.5
parent: 2
- - uid: 5579
+ - uid: 36230
components:
- type: Transform
- pos: 60.5,26.5
+ pos: -94.5,41.5
parent: 2
- - uid: 6610
+ - uid: 36233
components:
- type: Transform
- pos: -24.5,-18.5
+ pos: -97.5,42.5
parent: 2
- - uid: 6611
+ - uid: 36234
components:
- type: Transform
- pos: -26.5,-18.5
+ pos: -96.5,43.5
parent: 2
- - uid: 9333
+ - uid: 36236
components:
- type: Transform
- pos: -28.5,-7.5
+ pos: -97.5,38.5
parent: 2
- - uid: 14027
+ - uid: 36237
components:
- type: Transform
- pos: 24.5,52.5
+ pos: -96.5,52.5
parent: 2
- - uid: 15073
+ - uid: 36239
components:
- type: Transform
- pos: 26.5,52.5
+ pos: -97.5,40.5
parent: 2
- - uid: 15756
+ - uid: 36240
components:
- type: Transform
- pos: -11.5,26.5
+ pos: -97.5,39.5
parent: 2
- - uid: 15757
+ - uid: 36241
components:
- type: Transform
- pos: -10.5,26.5
+ pos: -97.5,41.5
parent: 2
- - uid: 18014
+ - uid: 36243
components:
- type: Transform
- pos: -8.5,61.5
+ pos: -97.5,52.5
parent: 2
-- proto: BoozeDispenser
- entities:
- - uid: 3848
+ - uid: 36244
components:
- type: Transform
- pos: 10.5,54.5
+ pos: -97.5,48.5
parent: 2
- - uid: 5750
+ - uid: 36253
components:
- type: Transform
- pos: 18.5,-27.5
+ pos: -97.5,47.5
parent: 2
- - uid: 33657
+ - uid: 36254
components:
- type: Transform
- pos: -43.5,67.5
+ pos: -98.5,38.5
parent: 2
-- proto: BorgCharger
- entities:
- - uid: 866
+ - uid: 36255
components:
- type: Transform
- pos: 6.5,0.5
+ pos: -98.5,39.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: 6323
+ - uid: 36256
components:
- type: Transform
- pos: -0.5,47.5
+ pos: -97.5,43.5
parent: 2
- - uid: 9299
+ - uid: 36257
components:
- type: Transform
- pos: 7.5,-22.5
+ pos: -97.5,45.5
parent: 2
- - uid: 19976
+ - uid: 36406
components:
- type: Transform
- pos: 43.5,44.5
+ pos: -96.5,44.5
parent: 2
- - uid: 22577
+ - uid: 36407
components:
- type: Transform
- pos: 74.5,-18.5
+ pos: -96.5,46.5
parent: 2
- - uid: 30651
+ - uid: 36419
components:
- type: Transform
- pos: 42.5,-24.5
+ pos: -97.5,49.5
parent: 2
- - uid: 34974
+ - uid: 36450
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,29.5
+ pos: -97.5,51.5
parent: 2
- - uid: 35810
+ - uid: 36453
components:
- type: Transform
- pos: 29.5,7.5
+ pos: 101.5,70.5
parent: 2
-- proto: BorgChargerCircuitboard
- entities:
- - uid: 35815
+ - uid: 36454
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.608044,27.465218
+ pos: -100.5,72.5
parent: 2
-- proto: BoxBeaker
- entities:
- - uid: 1570
+ - uid: 36505
components:
- type: Transform
- pos: 33.82346,7.8449078
+ pos: -103.5,72.5
parent: 2
- - uid: 5218
+ - uid: 36506
components:
- type: Transform
- pos: 42.69885,40.389374
+ pos: -106.5,70.5
parent: 2
- - uid: 5274
+ - uid: 36507
components:
- type: Transform
- pos: 26.526403,30.16116
+ pos: -93.5,76.5
parent: 2
-- proto: BoxBeanbag
- entities:
- - uid: 5758
+ - uid: 36535
components:
- type: Transform
- pos: 21.531042,-23.255095
+ pos: -93.5,77.5
parent: 2
- - uid: 28980
+ - uid: 36536
components:
- type: Transform
- pos: -23.633635,46.4414
+ pos: -92.5,78.5
parent: 2
-- proto: BoxBodyBag
- entities:
- - uid: 1380
+ - uid: 36672
components:
- type: Transform
- pos: 33.565647,7.4620953
+ pos: -92.5,47.5
parent: 2
- - uid: 4062
+ - uid: 36673
components:
- type: Transform
- pos: 48.25832,44.607437
+ pos: -92.5,46.5
parent: 2
- - uid: 15505
+ - uid: 36675
components:
- type: Transform
- pos: -36.7538,29.705032
+ pos: -91.5,51.5
parent: 2
-- proto: BoxBottle
- entities:
- - uid: 5272
+ - uid: 36677
components:
- type: Transform
- pos: 26.24058,30.06741
+ pos: -91.5,50.5
parent: 2
- - uid: 5273
+ - uid: 36678
components:
- type: Transform
- pos: 42.52156,40.685276
+ pos: -91.5,49.5
parent: 2
-- proto: BoxColoredLighttube
- entities:
- - uid: 6927
+ - uid: 36679
components:
- type: Transform
- pos: -17.250168,-25.645372
+ pos: -91.5,48.5
parent: 2
-- proto: BoxFlare
- entities:
- - uid: 6074
+ - uid: 36680
components:
- type: Transform
- pos: 21.738016,27.014511
+ pos: -91.5,47.5
parent: 2
-- proto: BoxFlashbang
- entities:
- - uid: 16517
+ - uid: 36681
components:
- type: Transform
- pos: -19.307251,45.675285
+ pos: -91.5,46.5
parent: 2
-- proto: BoxFolderBlack
- entities:
- - uid: 1371
+ - uid: 36682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.548372,-9.390477
+ pos: -90.5,51.5
parent: 2
- - uid: 1556
+ - uid: 36683
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.329622,-9.281102
+ pos: -90.5,50.5
parent: 2
- - uid: 29827
+ - uid: 36684
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.549706,54.535995
+ pos: -90.5,49.5
parent: 2
-- proto: BoxFolderBlue
- entities:
- - uid: 1974
+ - uid: 36685
components:
- type: Transform
- pos: 4.678361,30.31601
+ pos: -90.5,48.5
parent: 2
- - uid: 2084
+ - uid: 36686
components:
- type: Transform
- pos: -17.411789,-9.305838
+ pos: -90.5,47.5
parent: 2
- - uid: 2085
+ - uid: 36687
components:
- type: Transform
- pos: -21.700851,-9.352713
+ rot: 3.141592653589793 rad
+ pos: -98.5,59.5
parent: 2
- - uid: 2544
+ - uid: 36688
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.622833,46.63146
+ pos: 80.5,78.5
parent: 2
- - uid: 2639
+ - uid: 36689
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.571444,51.824425
+ pos: 81.5,79.5
parent: 2
- - uid: 5684
+ - uid: 36690
components:
- type: Transform
- pos: 26.666578,30.836124
+ pos: 80.5,80.5
parent: 2
- - uid: 13928
+ - uid: 36691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.559872,41.510433
+ pos: 80.5,81.5
parent: 2
- - uid: 14284
+ - uid: 37644
components:
- type: Transform
- pos: 12.142567,43.605385
+ rot: 3.141592653589793 rad
+ pos: -99.5,60.5
parent: 2
-- proto: BoxFolderGrey
- entities:
- - uid: 36135
+ - uid: 37648
components:
- type: Transform
- pos: -14.601701,59.650887
+ rot: 3.141592653589793 rad
+ pos: -99.5,61.5
parent: 2
-- proto: BoxFolderRed
- entities:
- - uid: 3600
+ - uid: 38188
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 35.868927,46.549427
+ pos: -98.5,61.5
parent: 2
- - uid: 5683
+ - uid: 38189
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.798252,25.56962
+ pos: -98.5,60.5
parent: 2
- - uid: 8062
+ - uid: 38192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.35477,37.65221
+ pos: -91.5,45.5
parent: 2
- - uid: 9048
+ - uid: 38193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.54395,37.636585
+ pos: -91.5,44.5
parent: 2
- - uid: 9660
+ - uid: 38194
components:
- type: Transform
- pos: -12.118159,28.51305
+ pos: -92.5,45.5
parent: 2
- - uid: 15504
+ - uid: 38195
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.34526,35.124813
+ pos: -92.5,44.5
parent: 2
- - uid: 15577
+ - uid: 38196
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.696613,27.526642
+ pos: -92.5,43.5
parent: 2
- - uid: 15730
+ - uid: 38197
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.491861,41.6366
+ pos: -92.5,42.5
parent: 2
- - uid: 15759
+ - uid: 38199
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.4797015,25.516685
+ pos: -98.5,55.5
parent: 2
- - uid: 15782
+ - uid: 38200
components:
- type: Transform
- pos: -8.237249,32.509594
+ rot: 3.141592653589793 rad
+ pos: -98.5,54.5
parent: 2
- - uid: 16626
+ - uid: 38201
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.418318,59.00392
+ pos: -99.5,42.5
parent: 2
- - uid: 18144
+ - uid: 38202
components:
- type: Transform
- pos: -20.399925,62.64608
+ pos: -99.5,41.5
parent: 2
- - uid: 30250
+ - uid: 38203
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.54279,25.26798
+ pos: -99.5,40.5
parent: 2
-- proto: BoxFolderWhite
- entities:
- - uid: 5586
+ - uid: 38204
components:
- type: Transform
- pos: 52.645294,27.933067
+ pos: -99.5,39.5
parent: 2
-- proto: BoxFolderYellow
- entities:
- - uid: 3628
+ - uid: 38205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.48221,46.959583
+ pos: -99.5,38.5
parent: 2
- - uid: 6579
+ - uid: 38206
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.353495,-20.339878
+ pos: -99.5,37.5
parent: 2
- - uid: 6580
+ - uid: 38207
components:
- type: Transform
- pos: -15.146463,-22.48441
+ pos: -100.5,42.5
parent: 2
- - uid: 6863
+ - uid: 38210
components:
- type: Transform
- pos: -28.039324,-23.280666
+ pos: -100.5,39.5
parent: 2
- - uid: 8830
+ - uid: 38211
components:
- type: Transform
- pos: -58.142708,13.665349
+ pos: -100.5,38.5
parent: 2
- - uid: 8831
+ - uid: 38212
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.470833,17.446598
+ pos: -100.5,37.5
parent: 2
- - uid: 13268
+ - uid: 38217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.57434,12.654488
+ pos: -101.5,38.5
parent: 2
- - uid: 13316
+ - uid: 38218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.66809,15.138863
+ pos: -101.5,37.5
parent: 2
- - uid: 35855
+ - uid: 38224
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.3979,14.140585
+ pos: -102.5,37.5
parent: 2
-- proto: BoxForensicPad
- entities:
- - uid: 17980
+ - uid: 38225
components:
- type: Transform
- pos: -24.296492,42.006573
+ pos: -103.5,42.5
parent: 2
-- proto: BoxHandcuff
- entities:
- - uid: 16510
+ - uid: 38229
components:
- type: Transform
- pos: -19.697876,45.800285
+ pos: -103.5,38.5
parent: 2
-- proto: BoxingBell
- entities:
- - uid: 5985
+ - uid: 38230
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-27.5
+ pos: -103.5,37.5
parent: 2
-- proto: BoxLatexGloves
- entities:
- - uid: 2124
+ - uid: 38234
components:
- type: Transform
- pos: 34.284397,7.4699078
+ pos: -104.5,39.5
parent: 2
-- proto: BoxLethalshot
- entities:
- - uid: 28975
+ - uid: 38235
components:
- type: Transform
- pos: -23.3003,46.71223
+ pos: -104.5,38.5
parent: 2
-- proto: BoxLightMixed
- entities:
- - uid: 18535
+ - uid: 38236
components:
- type: Transform
- pos: -40.512363,24.716463
+ pos: -104.5,37.5
parent: 2
-- proto: BoxLighttube
- entities:
- - uid: 1983
+ - uid: 38237
components:
- type: Transform
- pos: -17.234543,-25.223497
+ pos: -105.5,42.5
parent: 2
- - uid: 18533
+ - uid: 38238
components:
- type: Transform
- pos: -41.606113,24.763338
+ pos: -105.5,41.5
parent: 2
-- proto: BoxMagazinePistolHighCapacityPractice
- entities:
- - uid: 10566
+ - uid: 38239
components:
- type: Transform
- pos: -33.62954,38.74255
+ pos: -105.5,40.5
parent: 2
-- proto: BoxMagazinePistolPractice
- entities:
- - uid: 10347
+ - uid: 38240
components:
- type: Transform
- pos: -33.363914,38.4613
+ pos: -105.5,39.5
parent: 2
-- proto: BoxMagazinePistolSubMachineGun
- entities:
- - uid: 28979
+ - uid: 38241
components:
- type: Transform
- pos: -25.661413,46.38584
+ pos: -105.5,38.5
parent: 2
-- proto: BoxMagazinePistolSubMachineGunPractice
- entities:
- - uid: 4455
+ - uid: 38242
components:
- type: Transform
- pos: -25.31419,46.6914
+ pos: -105.5,37.5
parent: 2
- - uid: 9690
+ - uid: 38243
components:
- type: Transform
- pos: -33.587025,38.24255
+ pos: -106.5,42.5
parent: 2
-- proto: BoxMaintenanceLightbulb
- entities:
- - uid: 6929
+ - uid: 38244
components:
- type: Transform
- pos: -17.63298,-25.41881
+ pos: -106.5,41.5
parent: 2
-- proto: BoxMousetrap
- entities:
- - uid: 22442
+ - uid: 38245
components:
- type: Transform
- pos: -40.634743,24.830938
+ pos: -106.5,40.5
parent: 2
- - uid: 22443
+ - uid: 38246
components:
- type: Transform
- pos: 35.682877,-0.2850566
+ pos: -106.5,39.5
parent: 2
- - uid: 22446
+ - uid: 38247
components:
- type: Transform
- pos: -62.527683,-9.424064
+ pos: -106.5,38.5
parent: 2
-- proto: BoxMouthSwab
- entities:
- - uid: 998
+ - uid: 38248
components:
- type: Transform
- pos: 33.253147,7.8214703
+ pos: -106.5,37.5
parent: 2
-- proto: BoxPillCanister
- entities:
- - uid: 1572
+ - uid: 38249
components:
- type: Transform
- pos: 34.26096,7.8839703
+ pos: -107.5,42.5
parent: 2
-- proto: BoxShotgunPractice
- entities:
- - uid: 17014
+ - uid: 38250
components:
- type: Transform
- pos: -33.588364,39.797077
+ pos: -107.5,41.5
parent: 2
-- proto: BoxSterileMask
- entities:
- - uid: 1038
+ - uid: 38251
components:
- type: Transform
- pos: 34.800022,7.8449078
+ pos: -107.5,40.5
parent: 2
-- proto: BoxSyringe
- entities:
- - uid: 1571
+ - uid: 38252
components:
- type: Transform
- pos: 34.768772,7.4542828
+ pos: -107.5,39.5
parent: 2
- - uid: 5734
+ - uid: 38253
components:
- type: Transform
- pos: 26.533548,29.86819
+ pos: -107.5,38.5
parent: 2
-- proto: BoxTrashbag
- entities:
- - uid: 16667
+ - uid: 38254
components:
- type: Transform
- pos: -36.65377,12.904733
+ pos: -107.5,37.5
parent: 2
- - uid: 16668
+ - uid: 38255
components:
- type: Transform
- pos: -36.90377,12.467233
+ pos: -108.5,42.5
parent: 2
- - uid: 18522
+ - uid: 38259
components:
- type: Transform
- pos: -40.606113,22.528963
+ pos: -108.5,38.5
parent: 2
- - uid: 18523
+ - uid: 38260
components:
- type: Transform
- pos: -40.356113,22.122713
+ pos: -108.5,37.5
parent: 2
-- proto: BoxZiptie
- entities:
- - uid: 19402
+ - uid: 38262
components:
- type: Transform
- pos: -10.631582,42.77923
+ pos: -109.5,41.5
parent: 2
-- proto: BrbSign
- entities:
- - uid: 1948
+ - uid: 38263
components:
- type: Transform
- pos: 7.2711744,26.512077
+ pos: -109.5,40.5
parent: 2
- - uid: 5576
+ - uid: 38264
components:
- type: Transform
- pos: 28.979942,25.475557
+ pos: -109.5,39.5
parent: 2
- - uid: 6581
+ - uid: 38265
components:
- type: Transform
- pos: -15.580057,-22.449253
+ pos: -109.5,38.5
parent: 2
- - uid: 6583
+ - uid: 38266
components:
- type: Transform
- pos: -8.487982,-22.449253
+ pos: -109.5,37.5
parent: 2
- - uid: 8832
+ - uid: 38269
components:
- type: Transform
- pos: -49.31803,13.539022
+ pos: -110.5,40.5
parent: 2
- - uid: 8833
+ - uid: 38270
components:
- type: Transform
- pos: -46.455208,16.587223
+ pos: -110.5,39.5
parent: 2
- - uid: 13096
+ - uid: 38271
components:
- type: Transform
- pos: -1.4089859,-32.930393
+ pos: -110.5,38.5
parent: 2
- - uid: 13097
+ - uid: 38272
components:
- type: Transform
- pos: -3.846486,-34.38352
+ pos: -110.5,37.5
parent: 2
- - uid: 14181
+ - uid: 38273
components:
- type: Transform
- pos: 13.606747,41.52606
+ pos: -102.5,54.5
parent: 2
-- proto: BriefcaseBrown
- entities:
- - uid: 9331
+ - uid: 38274
components:
- type: Transform
- pos: -32.612495,33.706814
+ pos: -111.5,41.5
parent: 2
- - uid: 19375
+ - uid: 38275
components:
- type: Transform
- pos: -5.7113194,59.69308
+ pos: -111.5,40.5
parent: 2
-- proto: BrigTimer
- entities:
- - uid: 22619
+ - uid: 38276
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,31.5
+ pos: -111.5,39.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 15409:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- 15453:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 22620
+ - uid: 38277
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,31.5
+ pos: -111.5,38.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 15455:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- 15457:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 22621
+ - uid: 38278
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,27.5
+ pos: -111.5,37.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 15389:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- 15363:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 22622
+ - uid: 38279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,27.5
+ pos: -112.5,42.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 15388:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- 15362:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- - uid: 22629
+ - uid: 38280
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,65.5
+ pos: -112.5,41.5
parent: 2
-- proto: BrokenBottle
- entities:
- - uid: 5377
+ - uid: 38281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.948177,54.21262
+ pos: -112.5,40.5
parent: 2
- - uid: 6999
+ - uid: 38282
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.60816,-33.617603
+ pos: -112.5,39.5
parent: 2
- - uid: 7000
+ - uid: 38283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.670662,-33.430103
+ pos: -112.5,38.5
parent: 2
- - uid: 7001
+ - uid: 38284
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.959723,-37.519947
+ pos: -112.5,37.5
parent: 2
- - uid: 7002
+ - uid: 38285
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.440191,-38.492603
+ pos: -98.5,37.5
parent: 2
- - uid: 7003
+ - uid: 38286
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.948004,-38.281666
+ pos: -98.5,36.5
parent: 2
- - uid: 7004
+ - uid: 38287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.615973,-30.945728
+ pos: -97.5,37.5
parent: 2
-- proto: Brutepack
- entities:
- - uid: 7794
+ - uid: 38288
components:
- type: Transform
- pos: 12.795097,-11.247698
+ pos: -97.5,36.5
parent: 2
- - uid: 13085
+ - uid: 38289
components:
- type: Transform
- pos: 4.66723,-31.36642
+ pos: -96.5,37.5
parent: 2
-- proto: Bucket
- entities:
- - uid: 6301
+ - uid: 38291
components:
- type: Transform
- pos: 39.912582,13.351804
+ pos: -95.5,37.5
parent: 2
- - uid: 7508
+ - uid: 38292
components:
- type: Transform
- pos: -53.66643,0.9027996
+ rot: 3.141592653589793 rad
+ pos: -97.5,56.5
parent: 2
- - uid: 7697
+ - uid: 38293
components:
- type: Transform
- pos: -53.400806,0.7152996
+ rot: 3.141592653589793 rad
+ pos: -97.5,59.5
parent: 2
- - uid: 18157
+ - uid: 38294
components:
- type: Transform
- pos: -29.618675,61.80233
+ rot: 3.141592653589793 rad
+ pos: -97.5,58.5
parent: 2
- - uid: 18158
+ - uid: 38295
components:
- type: Transform
- pos: -29.3218,61.61483
+ rot: 3.141592653589793 rad
+ pos: -97.5,54.5
parent: 2
- - uid: 18433
+ - uid: 38296
components:
- type: Transform
- pos: -51.494556,0.7309246
+ rot: 3.141592653589793 rad
+ pos: -97.5,55.5
parent: 2
- - uid: 25188
+ - uid: 38297
components:
- type: Transform
- pos: -26.036861,-4.9783325
+ rot: 3.141592653589793 rad
+ pos: -97.5,53.5
parent: 2
- - uid: 34121
+ - uid: 38298
components:
- type: Transform
- pos: -23.343803,58.480377
+ pos: -99.5,36.5
parent: 2
-- proto: CableApcExtension
- entities:
- - uid: 88
+ - uid: 38299
components:
- type: Transform
- pos: -48.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,61.5
parent: 2
- - uid: 156
+ - uid: 38300
components:
- type: Transform
- pos: -42.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,60.5
parent: 2
- - uid: 192
+ - uid: 38301
components:
- type: Transform
- pos: -45.5,-30.5
+ pos: -102.5,36.5
parent: 2
- - uid: 249
+ - uid: 38302
components:
- type: Transform
- pos: -3.5,-20.5
+ pos: -103.5,36.5
parent: 2
- - uid: 281
+ - uid: 38303
components:
- type: Transform
- pos: -48.5,-47.5
+ pos: -104.5,36.5
parent: 2
- - uid: 303
+ - uid: 38304
components:
- type: Transform
- pos: -104.5,30.5
+ pos: -105.5,36.5
parent: 2
- - uid: 304
+ - uid: 38305
components:
- type: Transform
- pos: -103.5,30.5
+ pos: -106.5,36.5
parent: 2
- - uid: 305
+ - uid: 38306
components:
- type: Transform
- pos: -26.5,5.5
+ pos: -107.5,36.5
parent: 2
- - uid: 386
+ - uid: 38307
components:
- type: Transform
- pos: -35.5,53.5
+ pos: -108.5,36.5
parent: 2
- - uid: 416
+ - uid: 38308
components:
- type: Transform
- pos: 22.5,25.5
+ pos: -109.5,36.5
parent: 2
- - uid: 426
+ - uid: 38309
components:
- type: Transform
- pos: 9.5,-12.5
+ pos: -110.5,36.5
parent: 2
- - uid: 442
+ - uid: 38310
components:
- type: Transform
- pos: 9.5,-11.5
+ pos: -111.5,36.5
parent: 2
- - uid: 444
+ - uid: 38311
components:
- type: Transform
- pos: -64.5,-7.5
+ pos: -112.5,36.5
parent: 2
- - uid: 445
+ - uid: 38312
components:
- type: Transform
- pos: -64.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,58.5
parent: 2
- - uid: 446
+ - uid: 38313
components:
- type: Transform
- pos: -64.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,59.5
parent: 2
- - uid: 447
+ - uid: 38314
components:
- type: Transform
- pos: -64.5,-6.5
+ pos: -110.5,35.5
parent: 2
- - uid: 449
+ - uid: 38315
components:
- type: Transform
- pos: 9.5,-10.5
+ pos: -109.5,35.5
parent: 2
- - uid: 451
+ - uid: 38316
components:
- type: Transform
- pos: 9.5,-9.5
+ pos: -108.5,35.5
parent: 2
- - uid: 452
+ - uid: 38317
components:
- type: Transform
- pos: 9.5,-8.5
+ pos: -107.5,35.5
parent: 2
- - uid: 453
+ - uid: 38318
components:
- type: Transform
- pos: 9.5,-7.5
+ pos: -106.5,35.5
parent: 2
- - uid: 454
+ - uid: 38319
components:
- type: Transform
- pos: 9.5,-6.5
+ pos: -105.5,35.5
parent: 2
- - uid: 455
+ - uid: 38320
components:
- type: Transform
- pos: 9.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,57.5
parent: 2
- - uid: 462
+ - uid: 38321
components:
- type: Transform
- pos: 8.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,59.5
parent: 2
- - uid: 463
+ - uid: 38322
components:
- type: Transform
- pos: 7.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,58.5
parent: 2
- - uid: 468
+ - uid: 38323
components:
- type: Transform
- pos: 10.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,56.5
parent: 2
- - uid: 469
+ - uid: 38324
components:
- type: Transform
- pos: 8.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,55.5
parent: 2
- - uid: 470
+ - uid: 38325
components:
- type: Transform
- pos: 8.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,61.5
parent: 2
- - uid: 471
+ - uid: 38327
components:
- type: Transform
- pos: 10.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,53.5
parent: 2
- - uid: 472
+ - uid: 38328
components:
- type: Transform
- pos: 10.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,60.5
parent: 2
- - uid: 473
+ - uid: 38329
components:
- type: Transform
- pos: 11.5,-9.5
+ pos: -113.5,38.5
parent: 2
- - uid: 551
+ - uid: 38330
components:
- type: Transform
- pos: -64.5,-5.5
+ pos: -113.5,39.5
parent: 2
- - uid: 638
+ - uid: 38331
components:
- type: Transform
- pos: -64.5,-10.5
+ pos: -113.5,40.5
parent: 2
- - uid: 639
+ - uid: 38332
components:
- type: Transform
- pos: -64.5,-11.5
+ pos: -113.5,41.5
parent: 2
- - uid: 642
+ - uid: 38333
components:
- type: Transform
- pos: -63.5,-11.5
+ pos: -113.5,42.5
parent: 2
- - uid: 646
+ - uid: 38334
components:
- type: Transform
- pos: -35.5,30.5
+ pos: -113.5,43.5
parent: 2
- - uid: 651
+ - uid: 38335
components:
- type: Transform
- pos: -62.5,-11.5
+ pos: -113.5,44.5
parent: 2
- - uid: 655
+ - uid: 38336
components:
- type: Transform
- pos: -35.5,31.5
+ pos: -113.5,45.5
parent: 2
- - uid: 659
+ - uid: 38337
components:
- type: Transform
- pos: -61.5,-12.5
+ pos: -113.5,46.5
parent: 2
- - uid: 661
+ - uid: 38338
components:
- type: Transform
- pos: -61.5,-23.5
+ pos: -113.5,47.5
parent: 2
- - uid: 662
+ - uid: 38339
components:
- type: Transform
- pos: -61.5,-22.5
+ pos: -113.5,48.5
parent: 2
- - uid: 663
+ - uid: 38346
components:
- type: Transform
- pos: -61.5,-20.5
+ pos: -113.5,55.5
parent: 2
- - uid: 667
+ - uid: 38347
components:
- type: Transform
- pos: -61.5,-21.5
+ pos: -113.5,56.5
parent: 2
- - uid: 668
+ - uid: 38350
components:
- type: Transform
- pos: -61.5,-18.5
+ pos: -113.5,59.5
parent: 2
- - uid: 671
+ - uid: 38351
components:
- type: Transform
- pos: -61.5,-19.5
+ pos: -114.5,38.5
parent: 2
- - uid: 672
+ - uid: 38352
components:
- type: Transform
- pos: -61.5,-17.5
+ pos: -114.5,39.5
parent: 2
- - uid: 678
+ - uid: 38353
components:
- type: Transform
- pos: -61.5,-16.5
+ pos: -114.5,40.5
parent: 2
- - uid: 683
+ - uid: 38354
components:
- type: Transform
- pos: -64.5,-4.5
+ pos: -114.5,41.5
parent: 2
- - uid: 748
+ - uid: 38355
components:
- type: Transform
- pos: -61.5,-13.5
+ pos: -114.5,42.5
parent: 2
- - uid: 823
+ - uid: 38356
components:
- type: Transform
- pos: -96.5,-9.5
+ pos: -114.5,43.5
parent: 2
- - uid: 828
+ - uid: 38357
components:
- type: Transform
- pos: -61.5,-14.5
+ pos: -114.5,44.5
parent: 2
- - uid: 831
+ - uid: 38362
components:
- type: Transform
- pos: -61.5,-15.5
+ pos: -114.5,49.5
parent: 2
- - uid: 930
+ - uid: 38363
components:
- type: Transform
- pos: 11.5,-9.5
+ pos: -114.5,50.5
parent: 2
- - uid: 935
+ - uid: 38364
components:
- type: Transform
- pos: 7.5,-9.5
+ pos: -114.5,51.5
parent: 2
- - uid: 940
+ - uid: 38365
components:
- type: Transform
- pos: 7.5,-9.5
+ pos: -114.5,52.5
parent: 2
- - uid: 1110
+ - uid: 38366
components:
- type: Transform
- pos: 10.5,52.5
+ pos: -114.5,53.5
parent: 2
- - uid: 1117
+ - uid: 38371
components:
- type: Transform
- pos: -32.5,-41.5
+ pos: -114.5,59.5
parent: 2
- - uid: 1243
+ - uid: 38372
components:
- type: Transform
- pos: 32.5,-5.5
+ pos: -115.5,38.5
parent: 2
- - uid: 1525
+ - uid: 38373
components:
- type: Transform
- pos: 8.5,52.5
+ pos: -115.5,39.5
parent: 2
- - uid: 1526
+ - uid: 38374
components:
- type: Transform
- pos: -107.5,11.5
+ pos: -115.5,40.5
parent: 2
- - uid: 1541
+ - uid: 38375
components:
- type: Transform
- pos: 0.5,-37.5
+ pos: -115.5,41.5
parent: 2
- - uid: 1542
+ - uid: 38376
components:
- type: Transform
- pos: 1.5,-36.5
+ pos: -115.5,42.5
parent: 2
- - uid: 1543
+ - uid: 38377
components:
- type: Transform
- pos: 1.5,-35.5
+ pos: -115.5,43.5
parent: 2
- - uid: 1557
+ - uid: 38378
components:
- type: Transform
- pos: -72.5,17.5
+ pos: -115.5,44.5
parent: 2
- - uid: 1558
+ - uid: 38385
components:
- type: Transform
- pos: -57.5,-15.5
+ pos: -115.5,51.5
parent: 2
- - uid: 1559
+ - uid: 38386
components:
- type: Transform
- pos: -72.5,18.5
+ pos: -115.5,52.5
parent: 2
- - uid: 1648
+ - uid: 38389
components:
- type: Transform
- pos: 33.5,-5.5
+ pos: -115.5,58.5
parent: 2
- - uid: 1651
+ - uid: 38390
components:
- type: Transform
- pos: 34.5,-5.5
+ pos: -115.5,59.5
parent: 2
- - uid: 1688
+ - uid: 38391
components:
- type: Transform
- pos: -56.5,-15.5
+ pos: -116.5,38.5
parent: 2
- - uid: 1739
+ - uid: 38392
components:
- type: Transform
- pos: -55.5,-15.5
+ pos: -116.5,39.5
parent: 2
- - uid: 1747
+ - uid: 38393
components:
- type: Transform
- pos: -61.5,-24.5
+ pos: -116.5,40.5
parent: 2
- - uid: 1888
+ - uid: 38394
components:
- type: Transform
- pos: -61.5,-25.5
+ pos: -116.5,41.5
parent: 2
- - uid: 1902
+ - uid: 38395
components:
- type: Transform
- pos: -61.5,-27.5
+ pos: -116.5,42.5
parent: 2
- - uid: 1976
+ - uid: 38396
components:
- type: Transform
- pos: 9.5,52.5
+ pos: -116.5,43.5
parent: 2
- - uid: 1996
+ - uid: 38402
components:
- type: Transform
- pos: 39.5,40.5
+ pos: -114.5,45.5
parent: 2
- - uid: 2005
+ - uid: 38404
components:
- type: Transform
- pos: -61.5,-26.5
+ pos: -116.5,51.5
parent: 2
- - uid: 2042
+ - uid: 38405
components:
- type: Transform
- pos: -16.5,39.5
+ pos: -116.5,56.5
parent: 2
- - uid: 2060
+ - uid: 38406
components:
- type: Transform
- pos: -61.5,-29.5
+ pos: -116.5,57.5
parent: 2
- - uid: 2068
+ - uid: 38407
components:
- type: Transform
- pos: -17.5,39.5
+ pos: -116.5,58.5
parent: 2
- - uid: 2074
+ - uid: 38408
components:
- type: Transform
- pos: -61.5,-28.5
+ pos: -116.5,59.5
parent: 2
- - uid: 2078
+ - uid: 38409
components:
- type: Transform
- pos: -61.5,-31.5
+ pos: -117.5,59.5
parent: 2
- - uid: 2080
+ - uid: 38410
components:
- type: Transform
- pos: -61.5,-30.5
+ pos: -117.5,58.5
parent: 2
- - uid: 2083
+ - uid: 38411
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -117.5,57.5
parent: 2
- - uid: 2089
+ - uid: 38412
components:
- type: Transform
- pos: 10.5,53.5
+ pos: -117.5,56.5
parent: 2
- - uid: 2090
+ - uid: 38413
components:
- type: Transform
- pos: -55.5,-31.5
+ pos: -117.5,55.5
parent: 2
- - uid: 2179
+ - uid: 38421
components:
- type: Transform
- pos: -48.5,30.5
+ pos: -117.5,43.5
parent: 2
- - uid: 2287
+ - uid: 38422
components:
- type: Transform
- pos: -40.5,56.5
+ pos: -117.5,42.5
parent: 2
- - uid: 2331
+ - uid: 38423
components:
- type: Transform
- pos: 80.5,56.5
+ pos: -117.5,41.5
parent: 2
- - uid: 2364
+ - uid: 38424
components:
- type: Transform
- pos: 5.5,7.5
+ pos: -117.5,40.5
parent: 2
- - uid: 2372
+ - uid: 38425
components:
- type: Transform
- pos: -13.5,58.5
+ pos: -117.5,39.5
parent: 2
- - uid: 2378
+ - uid: 38426
components:
- type: Transform
- pos: -55.5,44.5
+ pos: -117.5,38.5
parent: 2
- - uid: 2410
+ - uid: 38427
components:
- type: Transform
- pos: -81.5,-6.5
+ pos: -118.5,41.5
parent: 2
- - uid: 2428
+ - uid: 38428
components:
- type: Transform
- pos: -80.5,-6.5
+ pos: -118.5,42.5
parent: 2
- - uid: 2431
+ - uid: 38429
components:
- type: Transform
- pos: -79.5,-6.5
+ pos: -118.5,43.5
parent: 2
- - uid: 2534
+ - uid: 38430
components:
- type: Transform
- pos: 10.5,54.5
+ pos: -118.5,44.5
parent: 2
- - uid: 2536
+ - uid: 38431
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: -118.5,45.5
parent: 2
- - uid: 2590
+ - uid: 38432
components:
- type: Transform
- pos: -54.5,-15.5
+ pos: -117.5,44.5
parent: 2
- - uid: 2605
+ - uid: 38435
components:
- type: Transform
- pos: -63.5,9.5
+ pos: -118.5,49.5
parent: 2
- - uid: 2615
+ - uid: 38436
components:
- type: Transform
- pos: 21.5,56.5
+ pos: -118.5,50.5
parent: 2
- - uid: 2628
+ - uid: 38437
components:
- type: Transform
- pos: -46.5,57.5
+ pos: -118.5,51.5
parent: 2
- - uid: 2643
+ - uid: 38439
components:
- type: Transform
- pos: 25.5,56.5
+ pos: -118.5,55.5
parent: 2
- - uid: 2646
+ - uid: 38440
components:
- type: Transform
- pos: 23.5,56.5
+ pos: -118.5,56.5
parent: 2
- - uid: 2679
+ - uid: 38441
components:
- type: Transform
- pos: 24.5,56.5
+ pos: -118.5,57.5
parent: 2
- - uid: 2686
+ - uid: 38442
components:
- type: Transform
- pos: 22.5,56.5
+ pos: -118.5,58.5
parent: 2
- - uid: 2695
+ - uid: 38443
components:
- type: Transform
- pos: 20.5,56.5
+ pos: -119.5,58.5
parent: 2
- - uid: 2704
+ - uid: 38444
components:
- type: Transform
- pos: -49.5,30.5
+ pos: -119.5,57.5
parent: 2
- - uid: 2714
+ - uid: 38445
components:
- type: Transform
- pos: -44.5,62.5
+ pos: -119.5,56.5
parent: 2
- - uid: 2715
+ - uid: 38446
components:
- type: Transform
- pos: -60.5,-31.5
+ pos: -119.5,55.5
parent: 2
- - uid: 2833
+ - uid: 38447
components:
- type: Transform
- pos: 7.5,-44.5
+ pos: -119.5,54.5
parent: 2
- - uid: 2844
+ - uid: 38448
components:
- type: Transform
- pos: 34.5,31.5
+ pos: -119.5,53.5
parent: 2
- - uid: 2866
+ - uid: 38449
components:
- type: Transform
- pos: 19.5,29.5
+ pos: -119.5,52.5
parent: 2
- - uid: 2933
+ - uid: 38450
components:
- type: Transform
- pos: 4.5,7.5
+ pos: -119.5,51.5
parent: 2
- - uid: 2938
+ - uid: 38451
components:
- type: Transform
- pos: 6.5,7.5
+ pos: -119.5,50.5
parent: 2
- - uid: 2947
+ - uid: 38452
components:
- type: Transform
- pos: 6.5,6.5
+ pos: -119.5,49.5
parent: 2
- - uid: 2948
+ - uid: 38453
components:
- type: Transform
- pos: 6.5,5.5
+ pos: -119.5,48.5
parent: 2
- - uid: 2949
+ - uid: 38454
components:
- type: Transform
- pos: 6.5,4.5
+ pos: -119.5,47.5
parent: 2
- - uid: 2950
+ - uid: 38455
components:
- type: Transform
- pos: -2.5,-2.5
+ pos: -119.5,46.5
parent: 2
- - uid: 2951
+ - uid: 38456
components:
- type: Transform
- pos: -3.5,-2.5
+ pos: -119.5,45.5
parent: 2
- - uid: 3030
+ - uid: 38457
components:
- type: Transform
- pos: -1.5,-2.5
+ pos: -119.5,44.5
parent: 2
- - uid: 3048
+ - uid: 38458
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -119.5,43.5
parent: 2
- - uid: 3050
+ - uid: 38459
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: -119.5,42.5
parent: 2
- - uid: 3089
+ - uid: 38460
components:
- type: Transform
- pos: -0.5,-0.5
+ pos: -119.5,41.5
parent: 2
- - uid: 3112
+ - uid: 38461
components:
- type: Transform
- pos: -43.5,62.5
+ pos: -119.5,40.5
parent: 2
- - uid: 3137
+ - uid: 38462
components:
- type: Transform
- pos: -41.5,62.5
+ pos: -119.5,39.5
parent: 2
- - uid: 3139
+ - uid: 38463
components:
- type: Transform
- pos: -41.5,68.5
+ pos: -119.5,38.5
parent: 2
- - uid: 3208
+ - uid: 38464
components:
- type: Transform
- pos: -0.5,0.5
+ pos: -120.5,58.5
parent: 2
- - uid: 3373
+ - uid: 38465
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: -120.5,57.5
parent: 2
- - uid: 3396
+ - uid: 38466
components:
- type: Transform
- pos: 77.5,-16.5
+ pos: -120.5,56.5
parent: 2
- - uid: 3539
+ - uid: 38467
components:
- type: Transform
- pos: -0.5,1.5
+ pos: -120.5,55.5
parent: 2
- - uid: 3540
+ - uid: 38469
components:
- type: Transform
- pos: -0.5,2.5
+ pos: -120.5,53.5
parent: 2
- - uid: 3541
+ - uid: 38470
components:
- type: Transform
- pos: 7.5,52.5
+ pos: -120.5,52.5
parent: 2
- - uid: 3543
+ - uid: 38471
components:
- type: Transform
- pos: 38.5,46.5
+ pos: -120.5,51.5
parent: 2
- - uid: 3582
+ - uid: 38472
components:
- type: Transform
- pos: -72.5,1.5
+ pos: -120.5,50.5
parent: 2
- - uid: 3613
+ - uid: 38473
components:
- type: Transform
- pos: -53.5,-15.5
+ pos: -120.5,49.5
parent: 2
- - uid: 3710
+ - uid: 38474
components:
- type: Transform
- pos: -52.5,-15.5
+ pos: -120.5,48.5
parent: 2
- - uid: 3742
+ - uid: 38475
components:
- type: Transform
- pos: -12.5,44.5
+ pos: -120.5,47.5
parent: 2
- - uid: 3833
+ - uid: 38476
components:
- type: Transform
- pos: -50.5,30.5
+ pos: -120.5,46.5
parent: 2
- - uid: 3835
+ - uid: 38477
components:
- type: Transform
- pos: -51.5,30.5
+ pos: -120.5,45.5
parent: 2
- - uid: 3851
+ - uid: 38478
components:
- type: Transform
- pos: -52.5,30.5
+ pos: -120.5,44.5
parent: 2
- - uid: 4013
+ - uid: 38479
components:
- type: Transform
- pos: -87.5,-15.5
+ pos: -120.5,43.5
parent: 2
- - uid: 4021
+ - uid: 38480
components:
- type: Transform
- pos: -52.5,44.5
+ pos: -120.5,42.5
parent: 2
- - uid: 4058
+ - uid: 38481
components:
- type: Transform
- pos: -86.5,-15.5
+ pos: -120.5,41.5
parent: 2
- - uid: 4060
+ - uid: 38482
components:
- type: Transform
- pos: -85.5,-15.5
+ pos: -120.5,40.5
parent: 2
- - uid: 4113
+ - uid: 38483
components:
- type: Transform
- pos: -84.5,-15.5
+ pos: -120.5,39.5
parent: 2
- - uid: 4115
+ - uid: 38484
components:
- type: Transform
- pos: -83.5,-15.5
+ pos: -120.5,38.5
parent: 2
- - uid: 4133
+ - uid: 38485
components:
- type: Transform
- pos: 56.5,-36.5
+ pos: -117.5,37.5
parent: 2
- - uid: 4164
+ - uid: 38486
components:
- type: Transform
- pos: -86.5,32.5
+ pos: -116.5,37.5
parent: 2
- - uid: 4167
+ - uid: 38487
components:
- type: Transform
- pos: -84.5,32.5
+ pos: -115.5,37.5
parent: 2
- - uid: 4168
+ - uid: 38488
components:
- type: Transform
- pos: -82.5,32.5
+ pos: -114.5,37.5
parent: 2
- - uid: 4241
+ - uid: 38489
components:
- type: Transform
- pos: -53.5,30.5
+ pos: -121.5,39.5
parent: 2
- - uid: 4296
+ - uid: 38490
components:
- type: Transform
- pos: -108.5,10.5
+ pos: -121.5,40.5
parent: 2
- - uid: 4297
+ - uid: 38491
components:
- type: Transform
- pos: -108.5,8.5
+ pos: -121.5,46.5
parent: 2
- - uid: 4298
+ - uid: 38492
components:
- type: Transform
- pos: -107.5,13.5
+ pos: -121.5,45.5
parent: 2
- - uid: 4299
+ - uid: 38493
components:
- type: Transform
- pos: -105.5,14.5
+ pos: -122.5,46.5
parent: 2
- - uid: 4300
+ - uid: 38494
components:
- type: Transform
- pos: -104.5,14.5
+ pos: -122.5,45.5
parent: 2
- - uid: 4301
+ - uid: 38495
components:
- type: Transform
- pos: -103.5,15.5
+ pos: -123.5,46.5
parent: 2
- - uid: 4306
+ - uid: 38496
components:
- type: Transform
- pos: -101.5,15.5
+ pos: -123.5,45.5
parent: 2
- - uid: 4355
+ - uid: 38497
components:
- type: Transform
- pos: -98.5,29.5
+ pos: -123.5,47.5
parent: 2
- - uid: 4368
+ - uid: 38498
components:
- type: Transform
- pos: -30.5,-12.5
+ pos: -123.5,48.5
parent: 2
- - uid: 4457
+ - uid: 38499
components:
- type: Transform
- pos: -44.5,21.5
+ pos: -123.5,49.5
parent: 2
- - uid: 4495
+ - uid: 38505
components:
- type: Transform
- pos: -108.5,7.5
+ pos: -123.5,55.5
parent: 2
- - uid: 4497
+ - uid: 38506
components:
- type: Transform
- pos: -106.5,-4.5
+ pos: -122.5,47.5
parent: 2
- - uid: 4560
+ - uid: 38507
components:
- type: Transform
- pos: -107.5,-4.5
+ pos: -122.5,48.5
parent: 2
- - uid: 4721
+ - uid: 38508
components:
- type: Transform
- pos: 82.5,56.5
+ pos: -122.5,49.5
parent: 2
- - uid: 4722
+ - uid: 38514
components:
- type: Transform
- pos: 86.5,56.5
+ pos: -122.5,55.5
parent: 2
- - uid: 4724
+ - uid: 38515
components:
- type: Transform
- pos: 85.5,57.5
+ pos: -122.5,56.5
parent: 2
- - uid: 4726
+ - uid: 38516
components:
- type: Transform
- pos: 85.5,58.5
+ pos: -121.5,55.5
parent: 2
- - uid: 4727
+ - uid: 38517
components:
- type: Transform
- pos: 85.5,61.5
+ pos: -121.5,54.5
parent: 2
- - uid: 4728
+ - uid: 38518
components:
- type: Transform
- pos: 85.5,59.5
+ pos: -121.5,53.5
parent: 2
- - uid: 4729
+ - uid: 38519
components:
- type: Transform
- pos: 85.5,60.5
+ pos: -121.5,52.5
parent: 2
- - uid: 4730
+ - uid: 38520
components:
- type: Transform
- pos: 85.5,56.5
+ pos: -121.5,51.5
parent: 2
- - uid: 4731
+ - uid: 38522
components:
- type: Transform
- pos: 87.5,56.5
+ pos: -121.5,49.5
parent: 2
- - uid: 4732
+ - uid: 38523
components:
- type: Transform
- pos: 87.5,55.5
+ pos: -121.5,48.5
parent: 2
- - uid: 4734
+ - uid: 38524
components:
- type: Transform
- pos: 87.5,54.5
+ pos: -121.5,47.5
parent: 2
- - uid: 4736
+ - uid: 38525
components:
- type: Transform
- pos: 86.5,54.5
+ pos: -121.5,56.5
parent: 2
- - uid: 4739
+ - uid: 38526
components:
- type: Transform
- pos: 85.5,54.5
+ pos: -122.5,57.5
parent: 2
- - uid: 4740
+ - uid: 38527
components:
- type: Transform
- pos: 81.5,56.5
+ pos: -119.5,59.5
parent: 2
- - uid: 4741
+ - uid: 38528
components:
- type: Transform
- pos: 80.5,55.5
+ pos: -118.5,59.5
parent: 2
- - uid: 4742
+ - uid: 38529
components:
- type: Transform
- pos: 80.5,54.5
+ pos: -117.5,60.5
parent: 2
- - uid: 4749
+ - uid: 38530
components:
- type: Transform
- pos: 81.5,54.5
+ pos: -117.5,61.5
parent: 2
- - uid: 4863
+ - uid: 38531
components:
- type: Transform
- pos: 6.5,70.5
+ pos: -116.5,60.5
parent: 2
- - uid: 4868
+ - uid: 38532
components:
- type: Transform
- pos: -51.5,44.5
+ pos: -116.5,61.5
parent: 2
- - uid: 4871
+ - uid: 38533
components:
- type: Transform
- pos: -40.5,62.5
+ pos: -115.5,60.5
parent: 2
- - uid: 4882
+ - uid: 38534
components:
- type: Transform
- pos: -95.5,65.5
+ pos: -115.5,61.5
parent: 2
- - uid: 4886
+ - uid: 38535
components:
- type: Transform
- pos: 54.5,-37.5
+ pos: -114.5,60.5
parent: 2
- - uid: 4904
+ - uid: 38536
components:
- type: Transform
- pos: 90.5,54.5
+ pos: -114.5,61.5
parent: 2
- - uid: 4909
+ - uid: 38537
components:
- type: Transform
- pos: -91.5,-7.5
+ pos: -113.5,60.5
parent: 2
- - uid: 4913
+ - uid: 38538
components:
- type: Transform
- pos: 90.5,56.5
+ pos: -113.5,61.5
parent: 2
- - uid: 5044
+ - uid: 38539
components:
- type: Transform
- pos: -103.5,18.5
+ pos: -112.5,60.5
parent: 2
- - uid: 5051
+ - uid: 38540
components:
- type: Transform
- pos: -104.5,18.5
+ pos: -112.5,61.5
parent: 2
- - uid: 5088
+ - uid: 38541
components:
- type: Transform
- pos: -102.5,17.5
+ pos: -111.5,60.5
parent: 2
- - uid: 5101
+ - uid: 38542
components:
- type: Transform
- pos: -101.5,17.5
+ pos: -111.5,61.5
parent: 2
- - uid: 5227
+ - uid: 38543
components:
- type: Transform
- pos: -44.5,26.5
+ pos: -110.5,60.5
parent: 2
- - uid: 5228
+ - uid: 38544
components:
- type: Transform
- pos: -100.5,17.5
+ pos: -110.5,61.5
parent: 2
- - uid: 5230
+ - uid: 38545
components:
- type: Transform
- pos: -41.5,26.5
+ pos: -109.5,60.5
parent: 2
- - uid: 5271
+ - uid: 38546
components:
- type: Transform
- pos: -103.5,-0.5
+ pos: -109.5,61.5
parent: 2
- - uid: 5284
+ - uid: 38547
components:
- type: Transform
- pos: 55.5,-37.5
+ pos: -108.5,60.5
parent: 2
- - uid: 5285
+ - uid: 38549
components:
- type: Transform
- pos: 56.5,-34.5
+ pos: -107.5,60.5
parent: 2
- - uid: 5286
+ - uid: 38550
components:
- type: Transform
- pos: 56.5,-35.5
+ pos: -107.5,61.5
parent: 2
- - uid: 5290
+ - uid: 38551
components:
- type: Transform
- pos: -33.5,34.5
+ pos: -106.5,60.5
parent: 2
- - uid: 5291
+ - uid: 38552
components:
- type: Transform
- pos: -102.5,-0.5
+ pos: -106.5,61.5
parent: 2
- - uid: 5304
+ - uid: 38553
components:
- type: Transform
- pos: -101.5,-0.5
+ pos: -105.5,60.5
parent: 2
- - uid: 5305
+ - uid: 38554
components:
- type: Transform
- pos: -100.5,-0.5
+ pos: -105.5,61.5
parent: 2
- - uid: 5406
+ - uid: 38555
components:
- type: Transform
- pos: 10.5,68.5
+ pos: -104.5,60.5
parent: 2
- - uid: 5417
+ - uid: 38556
components:
- type: Transform
- pos: -99.5,-0.5
+ pos: -104.5,61.5
parent: 2
- - uid: 5420
+ - uid: 38557
components:
- type: Transform
- pos: -16.5,-48.5
+ pos: -103.5,60.5
parent: 2
- - uid: 5507
+ - uid: 38558
components:
- type: Transform
- pos: -97.5,18.5
+ pos: -103.5,61.5
parent: 2
- - uid: 5518
+ - uid: 38559
components:
- type: Transform
- pos: -46.5,67.5
+ pos: -102.5,60.5
parent: 2
- - uid: 5567
+ - uid: 38560
components:
- type: Transform
- pos: -31.5,61.5
+ pos: -102.5,61.5
parent: 2
- - uid: 5609
+ - uid: 38561
components:
- type: Transform
- pos: -36.5,-36.5
+ pos: -101.5,60.5
parent: 2
- - uid: 5628
+ - uid: 38562
components:
- type: Transform
- pos: -90.5,22.5
+ pos: -101.5,61.5
parent: 2
- - uid: 5649
+ - uid: 38563
components:
- type: Transform
- pos: -92.5,22.5
+ pos: -100.5,60.5
parent: 2
- - uid: 5669
+ - uid: 38564
components:
- type: Transform
- pos: -37.5,-35.5
+ pos: -100.5,61.5
parent: 2
- - uid: 5680
+ - uid: 38565
components:
- type: Transform
- pos: -93.5,22.5
+ pos: -104.5,62.5
parent: 2
- - uid: 5686
+ - uid: 38566
components:
- type: Transform
- pos: -39.5,-28.5
+ pos: -105.5,62.5
parent: 2
- - uid: 5700
+ - uid: 38567
components:
- type: Transform
- pos: -100.5,31.5
+ pos: -106.5,62.5
parent: 2
- - uid: 5702
+ - uid: 38568
components:
- type: Transform
- pos: -101.5,31.5
+ pos: -107.5,62.5
parent: 2
- - uid: 5709
+ - uid: 38570
components:
- type: Transform
- pos: -98.5,30.5
+ pos: -109.5,62.5
parent: 2
- - uid: 5710
+ - uid: 38571
components:
- type: Transform
- pos: -98.5,31.5
+ pos: -110.5,62.5
parent: 2
- - uid: 5895
+ - uid: 38572
components:
- type: Transform
- pos: -107.5,-5.5
+ pos: -111.5,62.5
parent: 2
- - uid: 5910
+ - uid: 38573
components:
- type: Transform
- pos: -107.5,-10.5
+ pos: -111.5,63.5
parent: 2
- - uid: 5919
+ - uid: 38574
components:
- type: Transform
- pos: -46.5,66.5
+ pos: -110.5,63.5
parent: 2
- - uid: 5920
+ - uid: 38575
components:
- type: Transform
- pos: -46.5,65.5
+ pos: -109.5,63.5
parent: 2
- - uid: 5928
+ - uid: 38576
components:
- type: Transform
- pos: -28.5,3.5
+ pos: -108.5,63.5
parent: 2
- - uid: 5935
+ - uid: 38577
components:
- type: Transform
- pos: -107.5,-9.5
+ pos: -107.5,63.5
parent: 2
- - uid: 5955
+ - uid: 38578
components:
- type: Transform
- pos: -106.5,-10.5
+ pos: -106.5,63.5
parent: 2
- - uid: 5964
+ - uid: 38579
components:
- type: Transform
- pos: -106.5,-12.5
+ pos: -105.5,63.5
parent: 2
- - uid: 5966
+ - uid: 38580
components:
- type: Transform
- pos: -106.5,-11.5
+ pos: -112.5,63.5
parent: 2
- - uid: 5977
+ - uid: 38581
components:
- type: Transform
- pos: -105.5,-12.5
+ pos: -112.5,62.5
parent: 2
- - uid: 5999
+ - uid: 38582
components:
- type: Transform
- pos: -105.5,-13.5
+ pos: -113.5,62.5
parent: 2
- - uid: 6000
+ - uid: 38583
components:
- type: Transform
- pos: -86.5,-6.5
+ pos: -113.5,63.5
parent: 2
- - uid: 6126
+ - uid: 38584
components:
- type: Transform
- pos: 87.5,18.5
+ pos: -115.5,62.5
parent: 2
- - uid: 6129
+ - uid: 38585
components:
- type: Transform
- pos: -85.5,-6.5
+ pos: -114.5,62.5
parent: 2
- - uid: 6164
+ - uid: 38586
components:
- type: Transform
- pos: -83.5,-6.5
+ pos: -116.5,62.5
parent: 2
- - uid: 6178
+ - uid: 38587
components:
- type: Transform
- pos: -82.5,-6.5
+ pos: -114.5,63.5
parent: 2
- - uid: 6223
+ - uid: 38588
components:
- type: Transform
- pos: -98.5,15.5
+ pos: -115.5,63.5
parent: 2
- - uid: 6322
+ - uid: 38589
components:
- type: Transform
- pos: -28.5,59.5
+ pos: -118.5,60.5
parent: 2
- - uid: 6327
+ - uid: 38590
components:
- type: Transform
- pos: -31.5,44.5
+ pos: -120.5,59.5
parent: 2
- - uid: 6387
+ - uid: 38591
components:
- type: Transform
- pos: 34.5,30.5
+ pos: -119.5,60.5
parent: 2
- - uid: 6433
+ - uid: 38592
components:
- type: Transform
- pos: -90.5,23.5
+ pos: -122.5,44.5
parent: 2
- - uid: 6558
+ - uid: 38593
components:
- type: Transform
- pos: -29.5,59.5
+ pos: -122.5,43.5
parent: 2
- - uid: 6562
+ - uid: 38594
components:
- type: Transform
- pos: -30.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,41.5
parent: 2
- - uid: 6566
+ - uid: 38595
components:
- type: Transform
- pos: -28.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,57.5
parent: 2
- - uid: 6575
+ - uid: 38596
components:
- type: Transform
- pos: -16.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,56.5
parent: 2
- - uid: 6618
+ - uid: 38597
components:
- type: Transform
- pos: -31.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,55.5
parent: 2
- - uid: 6625
+ - uid: 38599
components:
- type: Transform
- pos: -31.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,53.5
parent: 2
- - uid: 6631
+ - uid: 38600
components:
- type: Transform
- pos: -27.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,61.5
parent: 2
- - uid: 6699
+ - uid: 38601
components:
- type: Transform
- pos: -63.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,60.5
parent: 2
- - uid: 6701
+ - uid: 38602
components:
- type: Transform
- pos: -64.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,59.5
parent: 2
- - uid: 6702
+ - uid: 38603
components:
- type: Transform
- pos: -65.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,58.5
parent: 2
- - uid: 6707
+ - uid: 38604
components:
- type: Transform
- pos: -42.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,57.5
parent: 2
- - uid: 6709
+ - uid: 38605
components:
- type: Transform
- pos: -31.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,56.5
parent: 2
- - uid: 6716
+ - uid: 38606
components:
- type: Transform
- pos: -35.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,55.5
parent: 2
- - uid: 6723
+ - uid: 38607
components:
- type: Transform
- pos: -33.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,54.5
parent: 2
- - uid: 6724
+ - uid: 38608
components:
- type: Transform
- pos: -18.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,53.5
parent: 2
- - uid: 6730
+ - uid: 38609
components:
- type: Transform
- pos: -19.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,53.5
parent: 2
- - uid: 6771
+ - uid: 38610
components:
- type: Transform
- pos: -89.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,52.5
parent: 2
- - uid: 6773
+ - uid: 38611
components:
- type: Transform
- pos: -45.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,52.5
parent: 2
- - uid: 6774
+ - uid: 38612
components:
- type: Transform
- pos: -43.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,54.5
parent: 2
- - uid: 6778
+ - uid: 38613
components:
- type: Transform
- pos: -62.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,58.5
parent: 2
- - uid: 6781
+ - uid: 38614
components:
- type: Transform
- pos: -46.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,59.5
parent: 2
- - uid: 6791
+ - uid: 38615
components:
- type: Transform
- pos: -49.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,61.5
parent: 2
- - uid: 6792
+ - uid: 38616
components:
- type: Transform
- pos: -41.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,60.5
parent: 2
- - uid: 6793
+ - uid: 38617
components:
- type: Transform
- pos: -43.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,62.5
parent: 2
- - uid: 6796
+ - uid: 38618
components:
- type: Transform
- pos: -18.5,-48.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,62.5
parent: 2
- - uid: 6799
+ - uid: 38619
components:
- type: Transform
- pos: -15.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,62.5
parent: 2
- - uid: 6800
+ - uid: 38620
components:
- type: Transform
- pos: -39.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,62.5
parent: 2
- - uid: 6802
+ - uid: 38621
components:
- type: Transform
- pos: -19.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,62.5
parent: 2
- - uid: 6803
+ - uid: 38622
components:
- type: Transform
- pos: -24.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -100.5,62.5
parent: 2
- - uid: 6804
+ - uid: 38623
components:
- type: Transform
- pos: -34.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,62.5
parent: 2
- - uid: 6805
+ - uid: 38624
components:
- type: Transform
- pos: -26.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,62.5
parent: 2
- - uid: 6806
+ - uid: 38625
components:
- type: Transform
- pos: -28.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,63.5
parent: 2
- - uid: 6807
+ - uid: 38626
components:
- type: Transform
- pos: -50.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,63.5
parent: 2
- - uid: 6808
+ - uid: 38627
components:
- type: Transform
- pos: -29.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,63.5
parent: 2
- - uid: 6809
+ - uid: 38628
components:
- type: Transform
- pos: -50.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,63.5
parent: 2
- - uid: 6812
+ - uid: 38629
components:
- type: Transform
- pos: -26.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,64.5
parent: 2
- - uid: 6813
+ - uid: 38630
components:
- type: Transform
- pos: -48.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,63.5
parent: 2
- - uid: 6815
+ - uid: 38631
components:
- type: Transform
- pos: -72.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,64.5
parent: 2
- - uid: 6816
+ - uid: 38632
components:
- type: Transform
- pos: -16.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,63.5
parent: 2
- - uid: 6859
+ - uid: 38633
components:
- type: Transform
- pos: -72.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,62.5
parent: 2
- - uid: 6919
+ - uid: 38634
components:
- type: Transform
- pos: -22.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,61.5
parent: 2
- - uid: 6921
+ - uid: 38635
components:
- type: Transform
- pos: -27.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,62.5
parent: 2
- - uid: 6922
+ - uid: 38636
components:
- type: Transform
- pos: -17.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,63.5
parent: 2
- - uid: 6933
+ - uid: 38637
components:
- type: Transform
- pos: -27.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,63.5
parent: 2
- - uid: 7040
+ - uid: 38638
components:
- type: Transform
- pos: -28.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,62.5
parent: 2
- - uid: 7091
+ - uid: 38639
components:
- type: Transform
- pos: -78.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,62.5
parent: 2
- - uid: 7092
+ - uid: 38640
components:
- type: Transform
- pos: -78.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,61.5
parent: 2
- - uid: 7103
+ - uid: 38641
components:
- type: Transform
- pos: -104.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,60.5
parent: 2
- - uid: 7104
+ - uid: 38642
components:
- type: Transform
- pos: -103.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,60.5
parent: 2
- - uid: 7105
+ - uid: 38643
components:
- type: Transform
- pos: -103.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,59.5
parent: 2
- - uid: 7114
+ - uid: 38644
components:
- type: Transform
- pos: -102.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,57.5
parent: 2
- - uid: 7119
+ - uid: 38646
components:
- type: Transform
- pos: -101.5,-14.5
+ pos: -103.5,55.5
parent: 2
- - uid: 7127
+ - uid: 38649
components:
- type: Transform
- pos: -100.5,-14.5
+ pos: -102.5,56.5
parent: 2
- - uid: 7139
+ - uid: 38653
components:
- type: Transform
- pos: -44.5,8.5
+ pos: -102.5,49.5
parent: 2
- - uid: 7165
+ - uid: 38654
components:
- type: Transform
- pos: -99.5,-14.5
+ pos: -83.5,51.5
parent: 2
- - uid: 7169
+ - uid: 38655
components:
- type: Transform
- pos: -98.5,-14.5
+ pos: -83.5,50.5
parent: 2
- - uid: 7178
+ - uid: 38656
components:
- type: Transform
- pos: -98.5,-13.5
+ pos: -82.5,50.5
parent: 2
- - uid: 7203
+ - uid: 38657
components:
- type: Transform
- pos: -97.5,-13.5
+ pos: -82.5,51.5
parent: 2
- - uid: 7216
+ - uid: 38658
components:
- type: Transform
- pos: -70.5,2.5
+ pos: -82.5,52.5
parent: 2
- - uid: 7263
+ - uid: 38659
components:
- type: Transform
- pos: -99.5,31.5
+ pos: -82.5,49.5
parent: 2
- - uid: 7298
+ - uid: 38660
components:
- type: Transform
- pos: -91.5,25.5
+ pos: -81.5,49.5
parent: 2
- - uid: 7311
+ - uid: 38661
components:
- type: Transform
- pos: -91.5,26.5
+ pos: -80.5,49.5
parent: 2
- - uid: 7324
+ - uid: 38662
components:
- type: Transform
- pos: -91.5,27.5
+ pos: -72.5,30.5
parent: 2
- - uid: 7338
+ - uid: 38663
components:
- type: Transform
- pos: -90.5,29.5
+ pos: -71.5,29.5
parent: 2
- - uid: 7339
+ - uid: 38664
components:
- type: Transform
- pos: -91.5,28.5
+ pos: -71.5,30.5
parent: 2
- - uid: 7453
+ - uid: 38665
components:
- type: Transform
- pos: -46.5,56.5
+ pos: -71.5,31.5
parent: 2
- - uid: 7456
+ - uid: 38666
components:
- type: Transform
- pos: -43.5,-30.5
+ pos: -71.5,32.5
parent: 2
- - uid: 7460
+ - uid: 38667
components:
- type: Transform
- pos: -43.5,-29.5
+ pos: -68.5,46.5
parent: 2
- - uid: 7461
+ - uid: 38668
components:
- type: Transform
- pos: -82.5,-15.5
+ pos: -68.5,47.5
parent: 2
- - uid: 7463
+ - uid: 38669
components:
- type: Transform
- pos: 2.5,19.5
+ pos: -67.5,45.5
parent: 2
- - uid: 7553
+ - uid: 38670
components:
- type: Transform
- pos: -27.5,44.5
+ pos: -67.5,44.5
parent: 2
- - uid: 7570
+ - uid: 38671
components:
- type: Transform
- pos: 17.5,29.5
+ pos: -68.5,44.5
parent: 2
- - uid: 7571
+ - uid: 38672
components:
- type: Transform
- pos: 20.5,29.5
+ pos: -67.5,46.5
parent: 2
- - uid: 7583
+ - uid: 38673
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: -67.5,50.5
parent: 2
- - uid: 7692
+ - uid: 38674
components:
- type: Transform
- pos: 20.5,25.5
+ pos: -71.5,34.5
parent: 2
- - uid: 7695
+ - uid: 38675
components:
- type: Transform
- pos: 20.5,23.5
+ pos: -69.5,38.5
parent: 2
- - uid: 7696
+ - uid: 38676
components:
- type: Transform
- pos: 20.5,24.5
+ pos: -96.5,83.5
parent: 2
- - uid: 7718
+ - uid: 38677
components:
- type: Transform
- pos: 20.5,26.5
+ pos: -88.5,66.5
parent: 2
- - uid: 7719
+ - uid: 38678
components:
- type: Transform
- pos: 20.5,28.5
+ pos: -97.5,89.5
parent: 2
- - uid: 7720
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 365
components:
- type: Transform
- pos: 20.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,61.5
parent: 2
- - uid: 7721
+ - uid: 3827
components:
- type: Transform
- pos: -54.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,61.5
parent: 2
- - uid: 7738
+ - uid: 4540
components:
- type: Transform
- pos: 17.5,23.5
+ pos: 103.5,73.5
parent: 2
- - uid: 7760
+ - uid: 4566
components:
- type: Transform
- pos: 17.5,25.5
+ pos: 103.5,72.5
parent: 2
- - uid: 7765
+ - uid: 4647
components:
- type: Transform
- pos: 17.5,24.5
+ pos: 103.5,74.5
parent: 2
- - uid: 7782
+ - uid: 6710
components:
- type: Transform
- pos: 17.5,26.5
+ pos: -19.5,-49.5
parent: 2
- - uid: 7786
+ - uid: 13738
components:
- type: Transform
- pos: 17.5,28.5
+ pos: 46.5,-35.5
parent: 2
- - uid: 7787
+ - uid: 16907
components:
- type: Transform
- pos: 17.5,27.5
+ pos: -21.5,-49.5
parent: 2
- - uid: 7791
+ - uid: 18550
components:
- type: Transform
- pos: 4.5,29.5
+ pos: -59.5,-10.5
parent: 2
- - uid: 7793
+ - uid: 18551
components:
- type: Transform
- pos: 6.5,29.5
+ pos: -61.5,-5.5
parent: 2
- - uid: 7818
+ - uid: 22725
components:
- type: Transform
- pos: 5.5,29.5
+ pos: -66.5,-16.5
parent: 2
- - uid: 7821
+ - uid: 22738
components:
- type: Transform
- pos: 3.5,29.5
+ pos: -7.5,-56.5
parent: 2
- - uid: 7822
+ - uid: 22739
components:
- type: Transform
- pos: 8.5,29.5
+ pos: -5.5,-56.5
parent: 2
- - uid: 7824
+ - uid: 22740
components:
- type: Transform
- pos: 7.5,29.5
+ pos: 0.5,-56.5
parent: 2
- - uid: 7826
+ - uid: 22741
components:
- type: Transform
- pos: 9.5,29.5
+ pos: 2.5,-56.5
parent: 2
- - uid: 7827
+ - uid: 22742
components:
- type: Transform
- pos: 10.5,29.5
+ pos: 8.5,-56.5
parent: 2
- - uid: 7828
+ - uid: 22743
components:
- type: Transform
- pos: 12.5,29.5
+ pos: 10.5,-56.5
parent: 2
- - uid: 7837
+ - uid: 22758
components:
- type: Transform
- pos: 11.5,29.5
+ pos: -7.5,82.5
parent: 2
- - uid: 7856
+ - uid: 22759
components:
- type: Transform
- pos: 13.5,29.5
+ pos: -5.5,82.5
parent: 2
- - uid: 7858
+ - uid: 22760
components:
- type: Transform
- pos: 14.5,29.5
+ pos: 0.5,82.5
parent: 2
- - uid: 7883
+ - uid: 22761
components:
- type: Transform
- pos: 16.5,29.5
+ pos: 2.5,82.5
parent: 2
- - uid: 7923
+ - uid: 22762
components:
- type: Transform
- pos: -44.5,-30.5
+ pos: 8.5,82.5
parent: 2
- - uid: 7950
+ - uid: 22763
components:
- type: Transform
- pos: -106.5,-2.5
+ pos: 10.5,82.5
parent: 2
- - uid: 7951
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 14454
components:
- type: Transform
- pos: -106.5,-3.5
+ pos: -58.5,49.5
parent: 2
- - uid: 7953
+ - uid: 15771
components:
- type: Transform
- pos: -105.5,-2.5
+ pos: -58.5,50.5
parent: 2
- - uid: 7961
+ - uid: 15992
components:
- type: Transform
- pos: -98.5,-0.5
+ pos: -45.5,51.5
parent: 2
- - uid: 7963
+ - uid: 16242
components:
- type: Transform
- pos: -108.5,6.5
+ pos: -59.5,48.5
parent: 2
- - uid: 8280
+ - uid: 16482
components:
- type: Transform
- pos: -77.5,28.5
+ pos: -57.5,51.5
parent: 2
- - uid: 8281
+ - uid: 16483
components:
- type: Transform
- pos: -77.5,27.5
+ pos: -60.5,51.5
parent: 2
- - uid: 8282
+ - uid: 16484
components:
- type: Transform
- pos: -51.5,62.5
+ pos: -60.5,50.5
parent: 2
- - uid: 8284
+ - uid: 16488
components:
- type: Transform
- pos: -51.5,60.5
+ pos: -56.5,50.5
parent: 2
- - uid: 8314
+ - uid: 16490
components:
- type: Transform
- pos: -51.5,61.5
+ pos: -60.5,52.5
parent: 2
- - uid: 8316
+ - uid: 16491
components:
- type: Transform
- pos: -51.5,59.5
+ pos: -56.5,48.5
parent: 2
- - uid: 8322
+ - uid: 16493
components:
- type: Transform
- pos: -53.5,-30.5
+ pos: -56.5,49.5
parent: 2
- - uid: 8323
+ - uid: 16499
components:
- type: Transform
- pos: -54.5,-30.5
+ pos: -60.5,49.5
parent: 2
- - uid: 8413
+ - uid: 16501
components:
- type: Transform
- pos: -98.5,-5.5
+ pos: -59.5,52.5
parent: 2
- - uid: 8419
+ - uid: 18385
components:
- type: Transform
- pos: -98.5,-10.5
+ pos: -45.5,50.5
parent: 2
- - uid: 8423
+ - uid: 22402
components:
- type: Transform
- pos: -98.5,-3.5
+ pos: -45.5,49.5
parent: 2
- - uid: 8424
+ - uid: 22403
components:
- type: Transform
- pos: -98.5,-4.5
+ pos: -45.5,48.5
parent: 2
- - uid: 8436
+ - uid: 22404
components:
- type: Transform
- pos: -23.5,38.5
+ pos: -43.5,51.5
parent: 2
- - uid: 8439
+ - uid: 22405
components:
- type: Transform
- pos: -56.5,20.5
+ pos: -43.5,50.5
parent: 2
- - uid: 8440
+ - uid: 22406
components:
- type: Transform
- pos: -55.5,20.5
+ pos: -43.5,49.5
parent: 2
- - uid: 8441
+ - uid: 22407
components:
- type: Transform
- pos: -27.5,37.5
+ pos: -43.5,48.5
parent: 2
- - uid: 8447
+ - uid: 22412
components:
- type: Transform
- pos: -46.5,-30.5
+ pos: -39.5,51.5
parent: 2
- - uid: 8453
+ - uid: 22413
components:
- type: Transform
- pos: -99.5,11.5
+ pos: -39.5,50.5
parent: 2
- - uid: 8454
+ - uid: 22414
components:
- type: Transform
- pos: -72.5,2.5
+ pos: -39.5,49.5
parent: 2
- - uid: 8455
+ - uid: 22415
components:
- type: Transform
- pos: -70.5,1.5
+ pos: -39.5,48.5
parent: 2
- - uid: 8458
+ - uid: 23567
components:
- type: Transform
- pos: -99.5,10.5
+ pos: -60.5,48.5
parent: 2
- - uid: 8460
+ - uid: 26681
components:
- type: Transform
- pos: -99.5,9.5
+ pos: -59.5,50.5
parent: 2
- - uid: 8463
+ - uid: 26814
components:
- type: Transform
- pos: -99.5,7.5
+ pos: -59.5,51.5
parent: 2
- - uid: 8464
+ - uid: 28240
components:
- type: Transform
- pos: -99.5,6.5
+ pos: -59.5,49.5
parent: 2
- - uid: 8465
+ - uid: 28241
components:
- type: Transform
- pos: -99.5,5.5
+ pos: -58.5,52.5
parent: 2
- - uid: 8665
+ - uid: 28242
components:
- type: Transform
- pos: -98.5,20.5
+ pos: -56.5,51.5
parent: 2
- - uid: 8666
+ - uid: 28401
components:
- type: Transform
- pos: -98.5,21.5
+ pos: -57.5,48.5
parent: 2
- - uid: 8744
+ - uid: 28535
components:
- type: Transform
- pos: -55.5,16.5
+ pos: -58.5,51.5
parent: 2
- - uid: 8745
+ - uid: 28690
components:
- type: Transform
- pos: -56.5,16.5
+ pos: -57.5,49.5
parent: 2
- - uid: 8746
+ - uid: 28715
components:
- type: Transform
- pos: -60.5,17.5
+ pos: -58.5,48.5
parent: 2
- - uid: 8748
+ - uid: 28717
components:
- type: Transform
- pos: -58.5,17.5
+ pos: -56.5,52.5
parent: 2
- - uid: 8749
+ - uid: 28718
components:
- type: Transform
- pos: -57.5,17.5
+ pos: -57.5,52.5
parent: 2
- - uid: 8761
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 7517
components:
- type: Transform
- pos: -99.5,3.5
+ pos: -62.5,-6.5
parent: 2
- - uid: 9119
+ - uid: 7518
components:
- type: Transform
- pos: -44.5,23.5
+ pos: -62.5,-7.5
parent: 2
- - uid: 9509
+ - uid: 7519
components:
- type: Transform
- pos: -98.5,18.5
+ pos: -62.5,-8.5
parent: 2
- - uid: 9512
+ - uid: 7520
components:
- type: Transform
- pos: -98.5,27.5
+ pos: -62.5,-9.5
parent: 2
- - uid: 9581
+ - uid: 7521
components:
- type: Transform
- pos: -98.5,28.5
+ pos: -61.5,-6.5
parent: 2
- - uid: 9618
+ - uid: 7522
components:
- type: Transform
- pos: -43.5,30.5
+ pos: -61.5,-7.5
parent: 2
- - uid: 9619
+ - uid: 7523
components:
- type: Transform
- pos: -45.5,30.5
+ pos: -61.5,-8.5
parent: 2
- - uid: 9620
+ - uid: 7524
components:
- type: Transform
- pos: -44.5,30.5
+ pos: -61.5,-9.5
parent: 2
- - uid: 9621
+ - uid: 7525
components:
- type: Transform
- pos: -46.5,30.5
+ pos: -60.5,-6.5
parent: 2
- - uid: 9622
+ - uid: 7526
components:
- type: Transform
- pos: -47.5,30.5
+ pos: -60.5,-7.5
parent: 2
- - uid: 9645
+ - uid: 7527
components:
- type: Transform
- pos: -98.5,-6.5
+ pos: -60.5,-8.5
parent: 2
- - uid: 9651
+ - uid: 7528
components:
- type: Transform
- pos: -83.5,-4.5
+ pos: -60.5,-9.5
parent: 2
- - uid: 9661
+ - uid: 7531
components:
- type: Transform
- pos: -44.5,22.5
+ pos: -59.5,-8.5
parent: 2
- - uid: 9798
+ - uid: 7532
components:
- type: Transform
- pos: 62.5,-83.5
+ pos: -59.5,-9.5
parent: 2
- - uid: 9799
+ - uid: 7535
components:
- type: Transform
- pos: -72.5,-34.5
+ pos: -58.5,-8.5
parent: 2
- - uid: 9800
+ - uid: 7536
components:
- type: Transform
- pos: -76.5,-34.5
+ pos: -58.5,-9.5
parent: 2
- - uid: 9801
+ - uid: 7538
components:
- type: Transform
- pos: -74.5,-34.5
+ pos: -57.5,-7.5
parent: 2
- - uid: 9966
+ - uid: 7539
components:
- type: Transform
- pos: 18.5,29.5
+ pos: -57.5,-8.5
parent: 2
- - uid: 10057
+ - uid: 7540
components:
- type: Transform
- pos: 7.5,70.5
+ pos: -57.5,-9.5
parent: 2
- - uid: 10058
+ - uid: 27153
components:
- type: Transform
- pos: 8.5,68.5
+ pos: -58.5,-6.5
parent: 2
- - uid: 10081
+ - uid: 27154
components:
- type: Transform
- pos: -64.5,35.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 10082
+ - uid: 27155
components:
- type: Transform
- pos: -64.5,34.5
+ pos: -59.5,-7.5
parent: 2
- - uid: 10083
+ - uid: 27156
components:
- type: Transform
- pos: -63.5,34.5
+ pos: -58.5,-7.5
parent: 2
- - uid: 10084
+ - uid: 27157
components:
- type: Transform
- pos: -62.5,34.5
+ pos: -57.5,-6.5
parent: 2
- - uid: 10085
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 2196
components:
- type: Transform
- pos: -61.5,34.5
+ pos: -49.5,49.5
parent: 2
- - uid: 10086
+ - uid: 2380
components:
- type: Transform
- pos: -60.5,34.5
+ pos: -49.5,51.5
parent: 2
- - uid: 10087
+ - uid: 2386
components:
- type: Transform
- pos: -59.5,34.5
+ pos: -49.5,50.5
parent: 2
- - uid: 10088
+ - uid: 2412
components:
- type: Transform
- pos: -58.5,34.5
+ pos: -49.5,48.5
parent: 2
- - uid: 10089
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 2302
components:
- type: Transform
- pos: -57.5,34.5
+ pos: -47.5,48.5
parent: 2
- - uid: 10090
+ - uid: 2306
components:
- type: Transform
- pos: -56.5,34.5
+ pos: -47.5,49.5
parent: 2
- - uid: 10091
+ - uid: 2323
components:
- type: Transform
- pos: -55.5,34.5
+ pos: -47.5,50.5
parent: 2
- - uid: 10092
+ - uid: 2343
components:
- type: Transform
- pos: -54.5,34.5
+ pos: -47.5,51.5
parent: 2
- - uid: 10093
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 4867
components:
- type: Transform
- pos: -54.5,35.5
+ pos: -41.5,48.5
parent: 2
- - uid: 10094
+ - uid: 7291
components:
- type: Transform
- pos: -54.5,36.5
+ pos: -41.5,50.5
parent: 2
- - uid: 10095
+ - uid: 7332
components:
- type: Transform
- pos: -54.5,37.5
+ pos: -41.5,51.5
parent: 2
- - uid: 10097
+ - uid: 36452
components:
- type: Transform
- pos: -54.5,39.5
+ pos: -41.5,49.5
parent: 2
- - uid: 10098
+- proto: Autolathe
+ entities:
+ - uid: 1134
components:
- type: Transform
- pos: -55.5,39.5
+ pos: -67.5,1.5
parent: 2
- - uid: 10099
+ - uid: 7228
components:
- type: Transform
- pos: -56.5,39.5
+ pos: 19.5,-18.5
parent: 2
- - uid: 10100
+ - uid: 8839
components:
- type: Transform
- pos: -57.5,39.5
+ pos: -49.5,18.5
parent: 2
- - uid: 10101
+ - uid: 22735
components:
- type: Transform
- pos: -58.5,39.5
+ pos: -15.5,-25.5
parent: 2
- - uid: 10102
+- proto: BannerCargo
+ entities:
+ - uid: 2940
components:
- type: Transform
- pos: -59.5,39.5
+ pos: -14.5,-16.5
parent: 2
- - uid: 10103
+ - uid: 2941
components:
- type: Transform
- pos: -60.5,39.5
+ pos: -8.5,-16.5
parent: 2
- - uid: 10104
+- proto: BannerEngineering
+ entities:
+ - uid: 7641
components:
- type: Transform
- pos: -61.5,39.5
+ pos: -52.5,9.5
parent: 2
- - uid: 10105
+ - uid: 15476
components:
- type: Transform
- pos: -61.5,40.5
+ pos: -45.5,14.5
parent: 2
- - uid: 10106
+ - uid: 17860
components:
- type: Transform
- pos: -62.5,40.5
+ pos: -56.5,9.5
parent: 2
- - uid: 10107
+- proto: BannerMedical
+ entities:
+ - uid: 867
components:
- type: Transform
- pos: -63.5,40.5
+ pos: 6.5,18.5
parent: 2
- - uid: 10108
+ - uid: 868
components:
- type: Transform
- pos: -64.5,40.5
+ pos: -3.5,18.5
parent: 2
- - uid: 10109
+ - uid: 1560
components:
- type: Transform
- pos: -65.5,40.5
+ pos: 31.5,-13.5
parent: 2
- - uid: 10110
+ - uid: 1563
components:
- type: Transform
- pos: -66.5,40.5
+ pos: 35.5,18.5
parent: 2
- - uid: 10111
+ - uid: 1881
components:
- type: Transform
- pos: -66.5,41.5
+ pos: -3.5,-13.5
parent: 2
- - uid: 10112
+ - uid: 20878
components:
- type: Transform
- pos: -66.5,42.5
+ pos: -39.5,58.5
parent: 2
- - uid: 10113
+- proto: BannerScience
+ entities:
+ - uid: 3965
components:
- type: Transform
- pos: -66.5,43.5
+ pos: 33.5,21.5
parent: 2
- - uid: 10114
+ - uid: 3985
components:
- type: Transform
- pos: -66.5,44.5
+ pos: 25.5,21.5
parent: 2
- - uid: 10115
+- proto: BannerSecurity
+ entities:
+ - uid: 21111
components:
- type: Transform
- pos: -66.5,45.5
+ pos: 12.5,-19.5
parent: 2
- - uid: 10116
+ - uid: 30540
components:
- type: Transform
- pos: -66.5,46.5
+ pos: -17.5,22.5
parent: 2
- - uid: 10117
+ - uid: 30541
components:
- type: Transform
- pos: -66.5,47.5
+ pos: -13.5,22.5
parent: 2
- - uid: 10118
+- proto: BannerSyndicate
+ entities:
+ - uid: 34938
components:
- type: Transform
- pos: -66.5,48.5
+ pos: 93.5,70.5
parent: 2
- - uid: 10119
+- proto: BarberScissors
+ entities:
+ - uid: 347
components:
- type: Transform
- pos: -65.5,34.5
+ pos: -69.26311,-0.36495054
parent: 2
- - uid: 10120
+ - uid: 11223
components:
- type: Transform
- pos: -66.5,34.5
+ pos: -69.61467,-0.4235443
parent: 2
- - uid: 10121
+ - uid: 38108
components:
- type: Transform
- pos: -67.5,34.5
+ pos: 19.574001,0.59712803
parent: 2
- - uid: 10122
+- proto: Barricade
+ entities:
+ - uid: 288
components:
- type: Transform
- pos: -67.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-37.5
parent: 2
- - uid: 10123
+ - uid: 1102
components:
- type: Transform
- pos: -67.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-38.5
parent: 2
- - uid: 10124
+ - uid: 1103
components:
- type: Transform
- pos: -68.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-37.5
parent: 2
- - uid: 10125
+ - uid: 5343
components:
- type: Transform
- pos: -68.5,34.5
+ pos: 52.5,49.5
parent: 2
- - uid: 10126
+ - uid: 5345
components:
- type: Transform
- pos: -68.5,33.5
+ pos: 54.5,49.5
parent: 2
- - uid: 10127
+ - uid: 6964
components:
- type: Transform
- pos: -68.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-37.5
parent: 2
- - uid: 10128
+ - uid: 6967
components:
- type: Transform
- pos: -68.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-28.5
parent: 2
- - uid: 10129
+ - uid: 6968
components:
- type: Transform
- pos: -68.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-28.5
parent: 2
- - uid: 10130
+ - uid: 6969
components:
- type: Transform
- pos: -68.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-28.5
parent: 2
- - uid: 10131
+ - uid: 6970
components:
- type: Transform
- pos: -68.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-30.5
parent: 2
- - uid: 10132
+ - uid: 6971
components:
- type: Transform
- pos: -68.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-30.5
parent: 2
- - uid: 10133
+ - uid: 6972
components:
- type: Transform
- pos: -68.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-36.5
parent: 2
- - uid: 10134
+ - uid: 9137
components:
- type: Transform
- pos: -68.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,51.5
parent: 2
- - uid: 10135
+ - uid: 12732
components:
- type: Transform
- pos: -68.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,50.5
parent: 2
- - uid: 10136
+ - uid: 16536
components:
- type: Transform
- pos: -68.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-38.5
parent: 2
- - uid: 10137
+ - uid: 16539
components:
- type: Transform
- pos: -68.5,22.5
+ pos: -25.5,-35.5
parent: 2
- - uid: 10138
+ - uid: 26244
components:
- type: Transform
- pos: -68.5,21.5
+ pos: 53.5,48.5
parent: 2
- - uid: 10139
+ - uid: 26882
components:
- type: Transform
- pos: -68.5,20.5
+ pos: 53.5,49.5
parent: 2
- - uid: 10140
+ - uid: 27510
components:
- type: Transform
- pos: -68.5,19.5
+ pos: 52.5,46.5
parent: 2
- - uid: 10141
+ - uid: 27886
components:
- type: Transform
- pos: -67.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,58.5
parent: 2
- - uid: 10142
+ - uid: 28416
components:
- type: Transform
- pos: -66.5,19.5
+ pos: 57.5,42.5
parent: 2
- - uid: 10143
+ - uid: 28517
components:
- type: Transform
- pos: -65.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-26.5
parent: 2
- - uid: 10144
+ - uid: 29791
components:
- type: Transform
- pos: -65.5,18.5
+ pos: 82.5,75.5
parent: 2
- - uid: 10145
+ - uid: 30016
components:
- type: Transform
- pos: -65.5,17.5
+ pos: 83.5,74.5
parent: 2
- - uid: 10146
+ - uid: 32468
components:
- type: Transform
- pos: -65.5,16.5
+ pos: 81.5,75.5
parent: 2
- - uid: 10147
+ - uid: 32509
components:
- type: Transform
- pos: -65.5,15.5
+ pos: 91.5,66.5
parent: 2
- - uid: 10148
+ - uid: 32510
components:
- type: Transform
- pos: -65.5,14.5
+ pos: 90.5,65.5
parent: 2
- - uid: 10149
+ - uid: 32511
components:
- type: Transform
- pos: -65.5,13.5
+ pos: 96.5,65.5
parent: 2
- - uid: 10150
+ - uid: 32975
components:
- type: Transform
- pos: -65.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,74.5
parent: 2
- - uid: 10152
+ - uid: 32983
components:
- type: Transform
- pos: -51.5,-31.5
+ pos: 79.5,73.5
parent: 2
- - uid: 10153
+ - uid: 33178
components:
- type: Transform
- pos: -54.5,33.5
+ pos: 80.5,82.5
parent: 2
- - uid: 10154
+ - uid: 33550
components:
- type: Transform
- pos: -54.5,32.5
+ pos: 70.5,82.5
parent: 2
- - uid: 10155
+ - uid: 35731
components:
- type: Transform
- pos: -54.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,10.5
parent: 2
- - uid: 10156
+ - uid: 35732
components:
- type: Transform
- pos: -54.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,35.5
parent: 2
- - uid: 10157
+ - uid: 35733
components:
- type: Transform
- pos: -54.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,37.5
parent: 2
- - uid: 10158
+ - uid: 35734
components:
- type: Transform
- pos: -54.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,34.5
parent: 2
- - uid: 10159
+ - uid: 35735
components:
- type: Transform
- pos: -54.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,35.5
parent: 2
- - uid: 10160
+ - uid: 35740
components:
- type: Transform
- pos: -54.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 82.5,62.5
parent: 2
- - uid: 10161
+ - uid: 35743
components:
- type: Transform
- pos: -54.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,60.5
parent: 2
- - uid: 10163
+ - uid: 35744
components:
- type: Transform
- pos: -68.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,64.5
parent: 2
- - uid: 10164
+ - uid: 35957
components:
- type: Transform
- pos: -54.5,22.5
+ pos: 72.5,81.5
parent: 2
- - uid: 10165
+ - uid: 36539
components:
- type: Transform
- pos: -54.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,80.5
parent: 2
- - uid: 10166
+ - uid: 36695
components:
- type: Transform
- pos: -54.5,20.5
+ pos: 81.5,81.5
parent: 2
- - uid: 10167
+ - uid: 36696
components:
- type: Transform
- pos: -54.5,19.5
+ pos: 81.5,80.5
parent: 2
- - uid: 10168
+ - uid: 36697
components:
- type: Transform
- pos: -54.5,18.5
+ pos: 84.5,81.5
parent: 2
- - uid: 10169
+- proto: BarricadeBlock
+ entities:
+ - uid: 4926
components:
- type: Transform
- pos: -54.5,17.5
+ pos: 60.5,58.5
parent: 2
- - uid: 10170
+ - uid: 8642
components:
- type: Transform
- pos: -54.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-25.5
parent: 2
- - uid: 10171
+ - uid: 11146
components:
- type: Transform
- pos: -54.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-37.5
parent: 2
- - uid: 10172
+ - uid: 18753
components:
- type: Transform
- pos: -54.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,83.5
parent: 2
- - uid: 10173
+ - uid: 23773
components:
- type: Transform
- pos: -54.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-24.5
parent: 2
- - uid: 10174
+ - uid: 26223
components:
- type: Transform
- pos: -54.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-23.5
parent: 2
- - uid: 10175
+ - uid: 27858
components:
- type: Transform
- pos: -55.5,12.5
+ pos: 54.5,51.5
parent: 2
- - uid: 10176
+ - uid: 28350
components:
- type: Transform
- pos: -56.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-27.5
parent: 2
- - uid: 10177
+ - uid: 28400
components:
- type: Transform
- pos: -57.5,12.5
+ pos: 55.5,42.5
parent: 2
- - uid: 10178
+ - uid: 28415
components:
- type: Transform
- pos: -58.5,12.5
+ pos: 60.5,42.5
parent: 2
- - uid: 10179
+ - uid: 29868
components:
- type: Transform
- pos: -59.5,12.5
+ pos: 51.5,49.5
parent: 2
- - uid: 10180
+ - uid: 32508
components:
- type: Transform
- pos: -60.5,12.5
+ pos: 92.5,67.5
parent: 2
- - uid: 10181
+ - uid: 32512
components:
- type: Transform
- pos: -61.5,12.5
+ pos: 90.5,65.5
parent: 2
- - uid: 10182
+ - uid: 32513
components:
- type: Transform
- pos: -53.5,12.5
+ pos: 91.5,71.5
parent: 2
- - uid: 10183
+ - uid: 32515
components:
- type: Transform
- pos: -52.5,12.5
+ pos: 100.5,71.5
parent: 2
- - uid: 10184
+ - uid: 32626
components:
- type: Transform
- pos: -51.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,58.5
parent: 2
- - uid: 10185
+ - uid: 32635
components:
- type: Transform
- pos: -50.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,57.5
parent: 2
- - uid: 10186
+ - uid: 35728
components:
- type: Transform
- pos: -49.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,34.5
parent: 2
- - uid: 10187
+ - uid: 35729
components:
- type: Transform
- pos: -48.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,9.5
parent: 2
- - uid: 10196
+ - uid: 35730
components:
- type: Transform
- pos: -53.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,10.5
parent: 2
- - uid: 10197
+ - uid: 35741
components:
- type: Transform
- pos: -52.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 86.5,64.5
parent: 2
- - uid: 10198
+ - uid: 35742
components:
- type: Transform
- pos: -51.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,65.5
parent: 2
- - uid: 10199
+ - uid: 35981
components:
- type: Transform
- pos: -50.5,17.5
+ pos: 70.5,83.5
parent: 2
- - uid: 10200
+ - uid: 35983
components:
- type: Transform
- pos: -49.5,17.5
+ pos: 74.5,83.5
parent: 2
- - uid: 10201
+ - uid: 36455
components:
- type: Transform
- pos: -48.5,17.5
+ pos: 77.5,74.5
parent: 2
- - uid: 10202
+ - uid: 36537
components:
- type: Transform
- pos: -53.5,22.5
+ pos: 75.5,82.5
parent: 2
- - uid: 10203
+ - uid: 36667
components:
- type: Transform
- pos: -52.5,22.5
+ pos: 80.5,83.5
parent: 2
- - uid: 10204
+ - uid: 36668
components:
- type: Transform
- pos: -51.5,22.5
+ pos: 81.5,83.5
parent: 2
- - uid: 10205
+ - uid: 36669
components:
- type: Transform
- pos: -50.5,22.5
+ pos: 82.5,83.5
parent: 2
- - uid: 10206
+ - uid: 36915
components:
- type: Transform
- pos: -49.5,22.5
+ pos: 73.5,83.5
parent: 2
- - uid: 10207
+- proto: BarricadeDirectional
+ entities:
+ - uid: 7287
components:
- type: Transform
- pos: -49.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-37.5
parent: 2
- - uid: 10208
+ - uid: 29814
components:
- type: Transform
- pos: -49.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,44.5
parent: 2
- - uid: 10209
+ - uid: 33099
components:
- type: Transform
- pos: -49.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,45.5
parent: 2
- - uid: 10210
+ - uid: 33100
components:
- type: Transform
- pos: -49.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,46.5
parent: 2
- - uid: 10222
+ - uid: 33101
components:
- type: Transform
- pos: -43.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,47.5
parent: 2
- - uid: 10223
+ - uid: 34588
components:
- type: Transform
- pos: -43.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 103.5,47.5
parent: 2
- - uid: 10224
+ - uid: 34767
components:
- type: Transform
- pos: -43.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 103.5,46.5
parent: 2
- - uid: 10225
+ - uid: 34768
components:
- type: Transform
- pos: -43.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 103.5,45.5
parent: 2
- - uid: 10226
+ - uid: 34769
components:
- type: Transform
- pos: -43.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 103.5,44.5
parent: 2
- - uid: 10228
+- proto: BarSignRobustaCafe
+ entities:
+ - uid: 58
components:
- type: Transform
- pos: -55.5,-9.5
+ pos: -46.5,-24.5
parent: 2
- - uid: 10229
+- proto: BaseBallBat
+ entities:
+ - uid: 1318
components:
- type: Transform
- pos: -43.5,38.5
+ pos: -31.33216,-32.469383
parent: 2
- - uid: 10230
+ - uid: 5347
components:
- type: Transform
- pos: -44.5,38.5
+ pos: 54.46258,46.57678
parent: 2
- - uid: 10231
+- proto: BaseComputer
+ entities:
+ - uid: 2279
components:
- type: Transform
- pos: -45.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-33.5
parent: 2
- - uid: 10232
+ - uid: 3037
components:
- type: Transform
- pos: -46.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,52.5
parent: 2
- - uid: 10233
+ - uid: 4533
components:
- type: Transform
- pos: -47.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,28.5
parent: 2
- - uid: 10234
+ - uid: 5214
components:
- type: Transform
- pos: -48.5,38.5
+ pos: 17.5,59.5
parent: 2
- - uid: 10235
+ - uid: 5552
components:
- type: Transform
- pos: -49.5,38.5
+ pos: 45.5,51.5
parent: 2
- - uid: 10236
+ - uid: 5580
components:
- type: Transform
- pos: -50.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,27.5
parent: 2
- - uid: 10237
+ - uid: 5581
components:
- type: Transform
- pos: -50.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,29.5
parent: 2
- - uid: 10238
+ - uid: 7566
components:
- type: Transform
- pos: -50.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,57.5
parent: 2
- - uid: 10239
+ - uid: 8404
components:
- type: Transform
- pos: -50.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,13.5
parent: 2
- - uid: 10240
+ - uid: 12928
components:
- type: Transform
- pos: -50.5,42.5
+ pos: 39.5,51.5
parent: 2
- - uid: 10241
+ - uid: 14069
components:
- type: Transform
- pos: -50.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,53.5
parent: 2
- - uid: 10242
+ - uid: 18447
components:
- type: Transform
- pos: -50.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,-13.5
parent: 2
- - uid: 10243
+ - uid: 18510
components:
- type: Transform
- pos: -50.5,45.5
+ pos: 88.5,-19.5
parent: 2
- - uid: 10244
+ - uid: 18916
components:
- type: Transform
- pos: -50.5,46.5
+ pos: 86.5,-19.5
parent: 2
- - uid: 10245
+ - uid: 28039
components:
- type: Transform
- pos: -49.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,43.5
parent: 2
- - uid: 10246
+ - uid: 28042
components:
- type: Transform
- pos: -48.5,46.5
+ pos: 64.5,44.5
parent: 2
- - uid: 10247
+ - uid: 28045
components:
- type: Transform
- pos: -47.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,40.5
parent: 2
- - uid: 10248
+ - uid: 28047
components:
- type: Transform
- pos: -46.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,40.5
parent: 2
- - uid: 10249
+ - uid: 34989
components:
- type: Transform
- pos: -45.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 105.5,17.5
parent: 2
- - uid: 10250
+ - uid: 34990
components:
- type: Transform
- pos: -44.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 105.5,16.5
parent: 2
- - uid: 10251
+- proto: BaseGasCondenser
+ entities:
+ - uid: 28391
components:
- type: Transform
- pos: -43.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-1.5
parent: 2
- - uid: 10252
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: Beaker
+ entities:
+ - uid: 1670
components:
- type: Transform
- pos: -42.5,46.5
+ pos: 21.532694,-1.3913887
parent: 2
- - uid: 10253
+ - uid: 2171
components:
- type: Transform
- pos: -41.5,46.5
+ pos: 12.776033,0.56118715
parent: 2
- - uid: 10254
+ - type: CollisionWake
+ enabled: False
+ - uid: 2192
components:
- type: Transform
- pos: -40.5,46.5
+ pos: 15.214525,-9.340313
parent: 2
- - uid: 10255
+ - uid: 2193
components:
- type: Transform
- pos: -39.5,46.5
+ pos: 15.319063,-9.187969
parent: 2
- - uid: 10256
+ - uid: 22437
components:
- type: Transform
- pos: -38.5,46.5
+ pos: 15.685974,-8.373947
parent: 2
- - uid: 10257
+ - uid: 32296
components:
- type: Transform
- pos: -37.5,46.5
+ pos: -107.79095,55.800636
parent: 2
- - uid: 10258
+ - uid: 32297
components:
- type: Transform
- pos: -36.5,46.5
+ pos: -104.8222,52.113136
parent: 2
- - uid: 10259
+ - uid: 36032
components:
- type: Transform
- pos: -68.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 65.102684,81.432434
parent: 2
- - uid: 10261
+ - uid: 36497
components:
- type: Transform
- pos: -27.5,38.5
+ pos: 13.62623,12.713811
parent: 2
- - uid: 10262
+ - uid: 36658
components:
- type: Transform
- pos: -32.5,46.5
+ pos: 65.13248,81.87053
parent: 2
- - uid: 10263
+ - uid: 36659
components:
- type: Transform
- pos: -32.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 65.343414,81.52678
parent: 2
- - uid: 10264
+ - uid: 36666
components:
- type: Transform
- pos: -32.5,45.5
+ pos: 13.821543,12.549748
parent: 2
- - uid: 10265
+ - uid: 36860
components:
- type: Transform
- pos: -32.5,44.5
+ pos: 66.741135,72.72298
parent: 2
- - uid: 10266
+ - uid: 36862
components:
- type: Transform
- pos: -32.5,43.5
+ pos: 71.60832,72.91048
parent: 2
- - uid: 10267
+ - uid: 36863
components:
- type: Transform
- pos: -32.5,42.5
+ pos: 71.76457,72.64485
parent: 2
- - uid: 10268
+ - uid: 36864
components:
- type: Transform
- pos: -32.5,41.5
+ pos: 72.678635,72.5511
parent: 2
- - uid: 10269
+- proto: Bed
+ entities:
+ - uid: 457
components:
- type: Transform
- pos: -32.5,40.5
+ pos: -71.5,17.5
parent: 2
- - uid: 10270
+ - uid: 522
components:
- type: Transform
- pos: -32.5,39.5
+ pos: -28.5,10.5
parent: 2
- - uid: 10271
+ - uid: 530
components:
- type: Transform
- pos: -32.5,38.5
+ pos: -19.5,15.5
parent: 2
- - uid: 10272
+ - uid: 531
components:
- type: Transform
- pos: -32.5,48.5
+ pos: -16.5,10.5
parent: 2
- - uid: 10275
+ - uid: 535
components:
- type: Transform
- pos: -36.5,38.5
+ pos: -25.5,15.5
parent: 2
- - uid: 10276
+ - uid: 537
components:
- type: Transform
- pos: -37.5,38.5
+ pos: -19.5,10.5
parent: 2
- - uid: 10277
+ - uid: 1146
components:
- type: Transform
- pos: -38.5,38.5
+ pos: -15.5,7.5
parent: 2
- - uid: 10278
+ - uid: 1176
components:
- type: Transform
- pos: -39.5,38.5
+ pos: -17.5,7.5
parent: 2
- - uid: 10279
+ - uid: 1795
components:
- type: Transform
- pos: -40.5,38.5
+ pos: -22.5,10.5
parent: 2
- - uid: 10280
+ - uid: 1797
components:
- type: Transform
- pos: -41.5,38.5
+ pos: -28.5,15.5
parent: 2
- - uid: 10281
+ - uid: 1805
components:
- type: Transform
- pos: -42.5,38.5
+ pos: -25.5,10.5
parent: 2
- - uid: 10282
+ - uid: 1806
components:
- type: Transform
- pos: -50.5,47.5
+ pos: -16.5,15.5
parent: 2
- - uid: 10283
+ - uid: 1807
components:
- type: Transform
- pos: -50.5,48.5
+ pos: -22.5,15.5
parent: 2
- - uid: 10284
+ - uid: 1949
components:
- type: Transform
- pos: -50.5,49.5
+ pos: 14.5,27.5
parent: 2
- - uid: 10285
+ - uid: 2023
components:
- type: Transform
- pos: -50.5,50.5
+ pos: -35.5,-29.5
parent: 2
- - uid: 10286
+ - uid: 2720
components:
- type: Transform
- pos: -50.5,51.5
+ pos: -8.5,-10.5
parent: 2
- - uid: 10287
+ - uid: 3990
components:
- type: Transform
- pos: -50.5,52.5
+ pos: -75.5,1.5
parent: 2
- - uid: 10288
+ - uid: 4342
components:
- type: Transform
- pos: -48.5,47.5
+ pos: -79.5,1.5
parent: 2
- - uid: 10289
+ - uid: 5428
components:
- type: Transform
- pos: -48.5,48.5
+ pos: 44.5,34.5
parent: 2
- - uid: 10290
+ - uid: 6360
components:
- type: Transform
- pos: -48.5,49.5
+ pos: -16.5,-35.5
parent: 2
- - uid: 10291
+ - uid: 6496
components:
- type: Transform
- pos: -48.5,50.5
+ pos: -15.5,-35.5
parent: 2
- - uid: 10292
+ - uid: 6842
components:
- type: Transform
- pos: -48.5,51.5
+ pos: -24.5,-25.5
parent: 2
- - uid: 10293
+ - uid: 8810
components:
- type: Transform
- pos: -48.5,52.5
+ pos: -61.5,11.5
parent: 2
- - uid: 10294
+ - uid: 11338
components:
- type: Transform
- pos: -46.5,47.5
+ pos: -19.5,7.5
parent: 2
- - uid: 10295
+ - uid: 12146
components:
- type: Transform
- pos: -46.5,48.5
+ pos: -21.5,7.5
parent: 2
- - uid: 10296
+ - uid: 13120
components:
- type: Transform
- pos: -46.5,49.5
+ pos: -71.5,16.5
parent: 2
- - uid: 10297
+ - uid: 15116
components:
- type: Transform
- pos: -46.5,50.5
+ pos: 23.5,48.5
parent: 2
- - uid: 10298
+ - uid: 15361
components:
- type: Transform
- pos: -46.5,51.5
+ pos: -24.5,34.5
parent: 2
- - uid: 10299
+ - uid: 15377
components:
- type: Transform
- pos: -46.5,52.5
+ pos: -28.5,24.5
parent: 2
- - uid: 10300
+ - uid: 15378
components:
- type: Transform
- pos: -44.5,47.5
+ pos: -24.5,24.5
parent: 2
- - uid: 10301
+ - uid: 15456
components:
- type: Transform
- pos: -44.5,48.5
+ pos: -28.5,34.5
parent: 2
- - uid: 10302
+ - uid: 15777
components:
- type: Transform
- pos: -44.5,49.5
+ pos: -5.5,35.5
parent: 2
- - uid: 10303
+ - uid: 18053
components:
- type: Transform
- pos: -44.5,50.5
+ pos: -25.5,66.5
parent: 2
- - uid: 10304
+ - uid: 18055
components:
- type: Transform
- pos: -44.5,51.5
+ pos: -21.5,66.5
parent: 2
- - uid: 10305
+ - uid: 18060
components:
- type: Transform
- pos: -44.5,52.5
+ pos: -13.5,66.5
parent: 2
- - uid: 10306
+ - uid: 20031
components:
- type: Transform
- pos: -42.5,47.5
+ pos: -13.5,7.5
parent: 2
- - uid: 10307
+ - uid: 20207
components:
- type: Transform
- pos: -42.5,48.5
+ pos: -32.5,34.5
parent: 2
- - uid: 10308
+ - uid: 22087
components:
- type: Transform
- pos: -42.5,49.5
+ pos: 66.5,30.5
parent: 2
- - uid: 10309
+ - uid: 22358
components:
- type: Transform
- pos: -42.5,50.5
+ pos: -16.5,-32.5
parent: 2
- - uid: 10310
+ - uid: 23256
components:
- type: Transform
- pos: -42.5,51.5
+ pos: -71.5,3.5
parent: 2
- - uid: 10311
+ - uid: 26019
components:
- type: Transform
- pos: -42.5,52.5
+ pos: -22.5,51.5
parent: 2
- - uid: 10312
+ - uid: 27504
components:
- type: Transform
- pos: -40.5,47.5
+ pos: -15.5,-32.5
parent: 2
- - uid: 10313
+ - uid: 38849
components:
- type: Transform
- pos: -40.5,48.5
+ pos: 49.5,28.5
parent: 2
- - uid: 10314
+- proto: BedsheetBlack
+ entities:
+ - uid: 1800
components:
- type: Transform
- pos: -40.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,10.5
parent: 2
- - uid: 10315
+- proto: BedsheetBlue
+ entities:
+ - uid: 526
components:
- type: Transform
- pos: -40.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,15.5
parent: 2
- - uid: 10316
+- proto: BedsheetBrigmedic
+ entities:
+ - uid: 29702
components:
- type: Transform
- pos: -40.5,51.5
+ pos: -32.5,34.5
parent: 2
- - uid: 10317
+- proto: BedsheetBrown
+ entities:
+ - uid: 1428
components:
- type: Transform
- pos: -40.5,52.5
+ pos: -35.5,-29.5
parent: 2
- - uid: 10318
+ - uid: 6364
components:
- type: Transform
- pos: -38.5,47.5
+ pos: -15.5,-35.5
parent: 2
- - uid: 10319
+ - uid: 6549
components:
- type: Transform
- pos: -38.5,48.5
+ pos: -16.5,-35.5
parent: 2
- - uid: 10320
+ - uid: 22357
components:
- type: Transform
- pos: -38.5,49.5
+ pos: -16.5,-32.5
parent: 2
- - uid: 10321
+ - uid: 27303
components:
- type: Transform
- pos: -38.5,50.5
+ pos: -15.5,-32.5
parent: 2
- - uid: 10322
+- proto: BedsheetCaptain
+ entities:
+ - uid: 15111
components:
- type: Transform
- pos: -38.5,51.5
+ pos: 23.5,48.5
parent: 2
- - uid: 10323
+- proto: BedsheetCE
+ entities:
+ - uid: 8809
components:
- type: Transform
- pos: -38.5,52.5
+ pos: -61.5,11.5
parent: 2
- - uid: 10324
+- proto: BedsheetClown
+ entities:
+ - uid: 4010
components:
- type: Transform
- pos: -36.5,47.5
+ pos: -75.5,1.5
parent: 2
- - uid: 10325
+- proto: BedsheetCMO
+ entities:
+ - uid: 5768
components:
- type: Transform
- pos: -36.5,48.5
+ pos: -8.5,-10.5
parent: 2
- - uid: 10326
+- proto: BedsheetCult
+ entities:
+ - uid: 20028
components:
- type: Transform
- pos: -36.5,49.5
+ pos: 66.5,30.5
parent: 2
- - uid: 10327
+- proto: BedsheetGreen
+ entities:
+ - uid: 474
components:
- type: Transform
- pos: -36.5,50.5
+ pos: -71.5,17.5
parent: 2
- - uid: 10328
+ - uid: 1811
components:
- type: Transform
- pos: -36.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,15.5
parent: 2
- - uid: 10376
+ - uid: 13134
components:
- type: Transform
- pos: -12.5,43.5
+ pos: -71.5,16.5
parent: 2
- - uid: 10391
+ - uid: 19987
components:
- type: Transform
- pos: -5.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,7.5
parent: 2
- - uid: 10450
+- proto: BedsheetGrey
+ entities:
+ - uid: 1801
components:
- type: Transform
- pos: -68.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,10.5
parent: 2
- - uid: 10451
+- proto: BedsheetHOP
+ entities:
+ - uid: 1979
components:
- type: Transform
- pos: -73.5,-34.5
+ pos: 14.5,27.5
parent: 2
- - uid: 10493
+- proto: BedsheetHOS
+ entities:
+ - uid: 13614
components:
- type: Transform
- pos: -78.5,-34.5
+ pos: -22.5,51.5
parent: 2
- - uid: 10494
+ - uid: 15663
components:
- type: Transform
- pos: -80.5,-34.5
+ pos: -5.5,35.5
parent: 2
- - uid: 10495
+- proto: BedsheetMedical
+ entities:
+ - uid: 252
components:
- type: Transform
- pos: -81.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,14.5
parent: 2
- - uid: 10496
+ - uid: 695
components:
- type: Transform
- pos: -79.5,-34.5
+ pos: -41.5,58.5
parent: 2
- - uid: 10507
+ - uid: 954
components:
- type: Transform
- pos: -69.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,10.5
parent: 2
- - uid: 10508
+ - uid: 4401
components:
- type: Transform
- pos: -70.5,-34.5
+ pos: 7.5,-10.5
parent: 2
- - uid: 10509
+ - uid: 11296
components:
- type: Transform
- pos: -71.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-6.5
parent: 2
- - uid: 10510
+ - uid: 15952
components:
- type: Transform
- pos: -77.5,-34.5
+ pos: -41.5,60.5
parent: 2
- - uid: 10511
+ - uid: 17614
components:
- type: Transform
- pos: -75.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,16.5
parent: 2
- - uid: 10617
+ - uid: 19638
components:
- type: Transform
- pos: -91.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,10.5
parent: 2
- - uid: 11008
+ - uid: 20248
components:
- type: Transform
- pos: -48.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,12.5
parent: 2
- - uid: 11010
+ - uid: 27011
components:
- type: Transform
- pos: -32.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,14.5
parent: 2
- - uid: 11012
+ - uid: 27409
components:
- type: Transform
- pos: -48.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,12.5
parent: 2
- - uid: 11023
+ - uid: 33910
components:
- type: Transform
- pos: -50.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,16.5
parent: 2
- - uid: 11024
+ - uid: 39167
components:
- type: Transform
- pos: -49.5,-32.5
+ pos: 13.5,-10.5
parent: 2
- - uid: 11025
+- proto: BedsheetMime
+ entities:
+ - uid: 4183
components:
- type: Transform
- pos: -48.5,-32.5
+ pos: -79.5,1.5
parent: 2
- - uid: 11026
+- proto: BedsheetOrange
+ entities:
+ - uid: 1802
components:
- type: Transform
- pos: -47.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,15.5
parent: 2
- - uid: 11027
+ - uid: 20654
components:
- type: Transform
- pos: -46.5,-32.5
+ pos: -28.5,24.5
parent: 2
- - uid: 11028
+ - uid: 30851
components:
- type: Transform
- pos: -45.5,-32.5
+ pos: -25.5,66.5
parent: 2
- - uid: 11029
+ - uid: 30852
components:
- type: Transform
- pos: -44.5,-32.5
+ pos: -21.5,66.5
parent: 2
- - uid: 11030
+ - uid: 30854
components:
- type: Transform
- pos: -43.5,-32.5
+ pos: -13.5,66.5
parent: 2
- - uid: 11031
+ - uid: 30855
components:
- type: Transform
- pos: -42.5,-32.5
+ pos: -28.5,34.5
parent: 2
- - uid: 11032
+ - uid: 30856
components:
- type: Transform
- pos: -41.5,-32.5
+ pos: -24.5,34.5
parent: 2
- - uid: 11033
+ - uid: 38924
components:
- type: Transform
- pos: -40.5,-32.5
+ pos: -24.5,24.5
parent: 2
- - uid: 11034
+- proto: BedsheetPurple
+ entities:
+ - uid: 1796
components:
- type: Transform
- pos: -39.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,10.5
parent: 2
- - uid: 11035
+ - uid: 5577
components:
- type: Transform
- pos: -52.5,-31.5
+ pos: 44.5,34.5
parent: 2
- - uid: 11036
+ - uid: 23571
components:
- type: Transform
- pos: -52.5,-30.5
+ pos: -71.5,3.5
parent: 2
- - uid: 11037
+- proto: BedsheetQM
+ entities:
+ - uid: 6843
components:
- type: Transform
- pos: -52.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-25.5
parent: 2
- - uid: 11038
+- proto: BedsheetRainbow
+ entities:
+ - uid: 532
components:
- type: Transform
- pos: -52.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,10.5
parent: 2
- - uid: 11039
+- proto: BedsheetRD
+ entities:
+ - uid: 38850
components:
- type: Transform
- pos: -52.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,28.5
parent: 2
- - uid: 11040
+- proto: BedsheetRed
+ entities:
+ - uid: 524
components:
- type: Transform
- pos: -53.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,15.5
parent: 2
- - uid: 11041
+- proto: BedsheetWhite
+ entities:
+ - uid: 540
components:
- type: Transform
- pos: -54.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,10.5
parent: 2
- - uid: 11042
+- proto: BedsheetYellow
+ entities:
+ - uid: 525
components:
- type: Transform
- pos: -55.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,15.5
parent: 2
- - uid: 11043
+- proto: BenchParkBambooMiddle
+ entities:
+ - uid: 5130
components:
- type: Transform
- pos: -56.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 60.5,-0.5
parent: 2
- - uid: 11044
+- proto: BenchParkLeft
+ entities:
+ - uid: 5128
components:
- type: Transform
- pos: -57.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,-0.5
parent: 2
- - uid: 11045
+ - uid: 5129
components:
- type: Transform
- pos: -58.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-0.5
parent: 2
- - uid: 11046
+- proto: BenchParkMiddle
+ entities:
+ - uid: 5120
components:
- type: Transform
- pos: -58.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-0.5
parent: 2
- - uid: 11047
+ - uid: 5127
components:
- type: Transform
- pos: -58.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,-0.5
parent: 2
- - uid: 11048
+ - uid: 5131
components:
- type: Transform
- pos: -58.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-0.5
parent: 2
- - uid: 11049
+- proto: BenchParkRight
+ entities:
+ - uid: 4961
components:
- type: Transform
- pos: -58.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-0.5
parent: 2
- - uid: 11050
+ - uid: 5132
components:
- type: Transform
- pos: -58.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,-0.5
parent: 2
- - uid: 11051
+- proto: BenchPewLeft
+ entities:
+ - uid: 2034
components:
- type: Transform
- pos: -58.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,20.5
parent: 2
- - uid: 11052
+ - uid: 2381
components:
- type: Transform
- pos: -58.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,20.5
parent: 2
- - uid: 11053
+ - uid: 2470
components:
- type: Transform
- pos: -58.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,20.5
parent: 2
- - uid: 11054
+ - uid: 2750
components:
- type: Transform
- pos: -58.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,50.5
parent: 2
- - uid: 11055
+ - uid: 2783
components:
- type: Transform
- pos: -58.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,55.5
parent: 2
- - uid: 11056
+ - uid: 2854
components:
- type: Transform
- pos: -58.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,55.5
parent: 2
- - uid: 11057
+ - uid: 2993
components:
- type: Transform
- pos: -58.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,55.5
parent: 2
- - uid: 11060
+ - uid: 2994
components:
- type: Transform
- pos: -58.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,55.5
parent: 2
- - uid: 11061
+ - uid: 4268
components:
- type: Transform
- pos: -57.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,12.5
parent: 2
- - uid: 11062
+ - uid: 4269
components:
- type: Transform
- pos: -56.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,12.5
parent: 2
- - uid: 11063
+ - uid: 4270
components:
- type: Transform
- pos: -55.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,12.5
parent: 2
- - uid: 11064
+ - uid: 15794
components:
- type: Transform
- pos: -54.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,50.5
parent: 2
- - uid: 11065
+ - uid: 15796
components:
- type: Transform
- pos: -53.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,50.5
parent: 2
- - uid: 11066
+ - uid: 15892
components:
- type: Transform
- pos: -52.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,50.5
parent: 2
- - uid: 11067
+ - uid: 37737
components:
- type: Transform
- pos: -52.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,12.5
parent: 2
- - uid: 11068
+ - uid: 37738
components:
- type: Transform
- pos: -51.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,12.5
parent: 2
- - uid: 11069
+ - uid: 39159
components:
- type: Transform
- pos: -50.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,20.5
parent: 2
- - uid: 11071
+ - uid: 39162
components:
- type: Transform
- pos: -58.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,20.5
parent: 2
- - uid: 11072
+- proto: BenchPewMiddle
+ entities:
+ - uid: 2787
components:
- type: Transform
- pos: -59.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,49.5
parent: 2
- - uid: 11073
+ - uid: 2793
components:
- type: Transform
- pos: -59.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,49.5
parent: 2
- - uid: 11074
+ - uid: 2797
components:
- type: Transform
- pos: -59.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,49.5
parent: 2
- - uid: 11075
+ - uid: 4099
components:
- type: Transform
- pos: -59.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,21.5
parent: 2
- - uid: 11076
+ - uid: 4169
components:
- type: Transform
- pos: -59.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,21.5
parent: 2
- - uid: 11077
+ - uid: 4275
components:
- type: Transform
- pos: -59.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,13.5
parent: 2
- - uid: 11078
+ - uid: 4277
components:
- type: Transform
- pos: -59.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,13.5
parent: 2
- - uid: 11079
+ - uid: 4278
components:
- type: Transform
- pos: -59.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,13.5
parent: 2
- - uid: 11080
+ - uid: 15808
components:
- type: Transform
- pos: -59.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,54.5
parent: 2
- - uid: 11081
+ - uid: 15813
components:
- type: Transform
- pos: -59.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,49.5
parent: 2
- - uid: 11082
+ - uid: 15886
components:
- type: Transform
- pos: -59.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,54.5
parent: 2
- - uid: 11083
+ - uid: 15888
components:
- type: Transform
- pos: -59.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,54.5
parent: 2
- - uid: 11084
+ - uid: 15890
components:
- type: Transform
- pos: -59.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,54.5
parent: 2
- - uid: 11085
+ - uid: 37743
components:
- type: Transform
- pos: -59.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,13.5
parent: 2
- - uid: 11086
+ - uid: 37744
components:
- type: Transform
- pos: -59.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,13.5
parent: 2
- - uid: 11087
+ - uid: 37748
components:
- type: Transform
- pos: -59.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,21.5
parent: 2
- - uid: 11088
+ - uid: 39158
components:
- type: Transform
- pos: -59.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,21.5
parent: 2
- - uid: 11089
+ - uid: 39160
components:
- type: Transform
- pos: -59.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,21.5
parent: 2
- - uid: 11090
+- proto: BenchPewRight
+ entities:
+ - uid: 82
components:
- type: Transform
- pos: -58.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,22.5
parent: 2
- - uid: 11091
+ - uid: 1094
components:
- type: Transform
- pos: -57.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,14.5
parent: 2
- - uid: 11092
+ - uid: 1169
components:
- type: Transform
- pos: -56.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,14.5
parent: 2
- - uid: 11093
+ - uid: 1170
components:
- type: Transform
- pos: -55.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,14.5
parent: 2
- - uid: 11094
+ - uid: 1171
components:
- type: Transform
- pos: -54.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,22.5
parent: 2
- - uid: 11095
+ - uid: 2383
components:
- type: Transform
- pos: -53.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,22.5
parent: 2
- - uid: 11096
+ - uid: 2554
components:
- type: Transform
- pos: -52.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,14.5
parent: 2
- - uid: 11097
+ - uid: 2784
components:
- type: Transform
- pos: -51.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,48.5
parent: 2
- - uid: 11098
+ - uid: 2791
components:
- type: Transform
- pos: -50.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,48.5
parent: 2
- - uid: 11099
+ - uid: 2792
components:
- type: Transform
- pos: -49.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,48.5
parent: 2
- - uid: 11141
+ - uid: 2794
components:
- type: Transform
- pos: -23.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,53.5
parent: 2
- - uid: 11144
+ - uid: 2798
components:
- type: Transform
- pos: -64.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,53.5
parent: 2
- - uid: 11149
+ - uid: 2873
components:
- type: Transform
- pos: -65.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,14.5
parent: 2
- - uid: 11150
+ - uid: 2992
components:
- type: Transform
- pos: -66.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,48.5
parent: 2
- - uid: 11153
+ - uid: 3275
components:
- type: Transform
- pos: -85.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,22.5
parent: 2
- - uid: 11157
+ - uid: 15797
components:
- type: Transform
- pos: -72.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,53.5
parent: 2
- - uid: 11158
+ - uid: 15800
components:
- type: Transform
- pos: -72.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,53.5
parent: 2
- - uid: 11159
+ - uid: 39161
components:
- type: Transform
- pos: -72.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,22.5
parent: 2
- - uid: 11160
+- proto: BenchSofaCorpLeft
+ entities:
+ - uid: 238
components:
- type: Transform
- pos: -72.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-48.5
parent: 2
- - uid: 11161
+ - uid: 998
components:
- type: Transform
- pos: -71.5,8.5
+ pos: -41.5,17.5
parent: 2
- - uid: 11162
+ - uid: 1045
components:
- type: Transform
- pos: -70.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-47.5
parent: 2
- - uid: 11163
+ - uid: 1072
components:
- type: Transform
- pos: -69.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-2.5
parent: 2
- - uid: 11164
+ - uid: 1101
components:
- type: Transform
- pos: -68.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-20.5
parent: 2
- - uid: 11165
+ - uid: 1110
components:
- type: Transform
- pos: -67.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,50.5
parent: 2
- - uid: 11168
+ - uid: 1229
components:
- type: Transform
- pos: -64.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-7.5
parent: 2
- - uid: 11171
+ - uid: 1232
components:
- type: Transform
- pos: -21.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-8.5
parent: 2
- - uid: 11172
+ - uid: 1233
components:
- type: Transform
- pos: -36.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-6.5
parent: 2
- - uid: 11173
+ - uid: 1236
components:
- type: Transform
- pos: -64.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-9.5
parent: 2
- - uid: 11174
+ - uid: 1678
components:
- type: Transform
- pos: -64.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-1.5
parent: 2
- - uid: 11175
+ - uid: 1693
components:
- type: Transform
- pos: -64.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,4.5
parent: 2
- - uid: 11176
+ - uid: 1701
components:
- type: Transform
- pos: -64.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-1.5
parent: 2
- - uid: 11177
+ - uid: 1705
components:
- type: Transform
- pos: -64.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,0.5
parent: 2
- - uid: 11178
+ - uid: 2559
components:
- type: Transform
- pos: -64.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-45.5
parent: 2
- - uid: 11179
+ - uid: 2561
components:
- type: Transform
- pos: -64.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-46.5
parent: 2
- - uid: 11180
+ - uid: 3482
components:
- type: Transform
- pos: -64.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,38.5
parent: 2
- - uid: 11181
+ - uid: 4048
components:
- type: Transform
- pos: -65.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-43.5
parent: 2
- - uid: 11182
+ - uid: 4761
components:
- type: Transform
- pos: -66.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-35.5
parent: 2
- - uid: 11183
+ - uid: 5886
components:
- type: Transform
- pos: -67.5,-3.5
+ pos: -2.5,-40.5
parent: 2
- - uid: 11184
+ - uid: 5934
components:
- type: Transform
- pos: -68.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-8.5
parent: 2
- - uid: 11185
+ - uid: 7272
components:
- type: Transform
- pos: -72.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,6.5
parent: 2
- - uid: 11186
+ - uid: 11475
components:
- type: Transform
- pos: -72.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,0.5
parent: 2
- - uid: 11187
+ - uid: 12247
components:
- type: Transform
- pos: -72.5,11.5
+ pos: -5.5,21.5
parent: 2
- - uid: 11188
+ - uid: 12298
components:
- type: Transform
- pos: -72.5,12.5
+ pos: 6.5,-40.5
parent: 2
- - uid: 11189
+ - uid: 12960
components:
- type: Transform
- pos: -72.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-12.5
parent: 2
- - uid: 11190
+ - uid: 12964
components:
- type: Transform
- pos: -72.5,14.5
+ pos: 47.5,-11.5
parent: 2
- - uid: 11191
+ - uid: 13925
components:
- type: Transform
- pos: -72.5,15.5
+ pos: 6.5,42.5
parent: 2
- - uid: 11192
+ - uid: 13926
components:
- type: Transform
- pos: -72.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,35.5
parent: 2
- - uid: 11195
+ - uid: 15155
components:
- type: Transform
- pos: -21.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-43.5
parent: 2
- - uid: 11203
+ - uid: 15205
components:
- type: Transform
- pos: -72.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,11.5
parent: 2
- - uid: 11209
+ - uid: 15533
components:
- type: Transform
- pos: -73.5,21.5
+ pos: -8.5,71.5
parent: 2
- - uid: 11284
+ - uid: 16597
components:
- type: Transform
- pos: -90.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-10.5
parent: 2
- - uid: 11289
+ - uid: 17734
components:
- type: Transform
- pos: -100.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,-35.5
parent: 2
- - uid: 11294
+ - uid: 19569
components:
- type: Transform
- pos: -107.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,76.5
parent: 2
- - uid: 11304
+ - uid: 19570
components:
- type: Transform
- pos: -89.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,76.5
parent: 2
- - uid: 11307
+ - uid: 19571
components:
- type: Transform
- pos: -98.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,76.5
parent: 2
- - uid: 11308
+ - uid: 19580
components:
- type: Transform
- pos: -99.5,12.5
+ pos: 8.5,75.5
parent: 2
- - uid: 11322
+ - uid: 19581
components:
- type: Transform
- pos: -88.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,76.5
parent: 2
- - uid: 11333
+ - uid: 19582
components:
- type: Transform
- pos: -98.5,-12.5
+ pos: -7.5,75.5
parent: 2
- - uid: 11337
+ - uid: 19584
components:
- type: Transform
- pos: -102.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,76.5
parent: 2
- - uid: 11344
+ - uid: 19585
components:
- type: Transform
- pos: -21.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,76.5
parent: 2
- - uid: 11345
+ - uid: 19587
components:
- type: Transform
- pos: -21.5,-31.5
+ pos: 0.5,75.5
parent: 2
- - uid: 11346
+ - uid: 19593
components:
- type: Transform
- pos: -21.5,-30.5
+ pos: -4.5,75.5
parent: 2
- - uid: 11348
+ - uid: 19594
components:
- type: Transform
- pos: -103.5,31.5
+ pos: 3.5,75.5
parent: 2
- - uid: 11354
+ - uid: 19595
components:
- type: Transform
- pos: -84.5,-6.5
+ pos: 11.5,75.5
parent: 2
- - uid: 11355
+ - uid: 26005
components:
- type: Transform
- pos: -84.5,-5.5
+ pos: -22.5,46.5
parent: 2
- - uid: 11356
+ - uid: 27375
components:
- type: Transform
- pos: -84.5,-4.5
+ pos: -16.5,-8.5
parent: 2
- - uid: 11357
+ - uid: 30030
components:
- type: Transform
- pos: -84.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,18.5
parent: 2
- - uid: 11358
+ - uid: 30220
components:
- type: Transform
- pos: -84.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,17.5
parent: 2
- - uid: 11359
+ - uid: 30271
components:
- type: Transform
- pos: -84.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,4.5
parent: 2
- - uid: 11360
+ - uid: 30347
components:
- type: Transform
- pos: -84.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,12.5
parent: 2
- - uid: 11361
+ - uid: 30502
components:
- type: Transform
- pos: -84.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,68.5
parent: 2
- - uid: 11362
+ - uid: 30529
components:
- type: Transform
- pos: -84.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,18.5
parent: 2
- - uid: 11363
+ - uid: 30576
components:
- type: Transform
- pos: -84.5,2.5
+ pos: -36.5,-13.5
parent: 2
- - uid: 11364
+ - uid: 31120
components:
- type: Transform
- pos: -84.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-16.5
parent: 2
- - uid: 11365
+ - uid: 36115
components:
- type: Transform
- pos: -84.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,41.5
parent: 2
- - uid: 11366
+ - uid: 38861
components:
- type: Transform
- pos: -84.5,5.5
+ pos: -19.5,58.5
parent: 2
- - uid: 11367
+ - uid: 39300
components:
- type: Transform
- pos: -84.5,6.5
+ pos: -43.5,-32.5
parent: 2
- - uid: 11368
+ - uid: 39301
components:
- type: Transform
- pos: -84.5,7.5
+ pos: -39.5,-32.5
parent: 2
- - uid: 11369
+- proto: BenchSofaCorpMiddle
+ entities:
+ - uid: 1694
components:
- type: Transform
- pos: -84.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,5.5
parent: 2
- - uid: 11370
+ - uid: 1700
components:
- type: Transform
- pos: -84.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
parent: 2
- - uid: 11371
+ - uid: 1704
components:
- type: Transform
- pos: -84.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-0.5
parent: 2
- - uid: 11372
+ - uid: 5720
components:
- type: Transform
- pos: -84.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-0.5
parent: 2
- - uid: 11373
+ - uid: 6140
components:
- type: Transform
- pos: -84.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,37.5
parent: 2
- - uid: 11374
+ - uid: 16393
components:
- type: Transform
- pos: -84.5,13.5
+ pos: -9.5,71.5
parent: 2
- - uid: 11375
+ - uid: 20926
components:
- type: Transform
- pos: -84.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-16.5
parent: 2
- - uid: 11376
+ - uid: 21266
components:
- type: Transform
- pos: -84.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,11.5
parent: 2
- - uid: 11377
+ - uid: 22129
components:
- type: Transform
- pos: -84.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,5.5
parent: 2
- - uid: 11378
+ - uid: 23490
components:
- type: Transform
- pos: -84.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,17.5
parent: 2
- - uid: 11379
+ - uid: 30266
components:
- type: Transform
- pos: -84.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-3.5
parent: 2
- - uid: 11380
+ - uid: 30598
components:
- type: Transform
- pos: -84.5,19.5
+ pos: -37.5,-13.5
parent: 2
- - uid: 11381
+ - uid: 31115
components:
- type: Transform
- pos: -84.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,5.5
parent: 2
- - uid: 11382
+ - uid: 31116
components:
- type: Transform
- pos: -84.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 43.5,17.5
parent: 2
- - uid: 11383
+- proto: BenchSofaCorpRight
+ entities:
+ - uid: 28
components:
- type: Transform
- pos: -84.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-45.5
parent: 2
- - uid: 11384
+ - uid: 267
components:
- type: Transform
- pos: -84.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,-35.5
parent: 2
- - uid: 11392
+ - uid: 645
components:
- type: Transform
- pos: -5.5,-31.5
+ pos: -17.5,-8.5
parent: 2
- - uid: 11394
+ - uid: 865
components:
- type: Transform
- pos: -5.5,-37.5
+ pos: -3.5,-40.5
parent: 2
- - uid: 11398
+ - uid: 1230
components:
- type: Transform
- pos: -83.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-8.5
parent: 2
- - uid: 11408
+ - uid: 1231
components:
- type: Transform
- pos: -107.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-7.5
parent: 2
- - uid: 11419
+ - uid: 1234
components:
- type: Transform
- pos: -106.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-6.5
parent: 2
- - uid: 11421
+ - uid: 1235
components:
- type: Transform
- pos: -89.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-9.5
parent: 2
- - uid: 11422
+ - uid: 1331
components:
- type: Transform
- pos: -88.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-47.5
parent: 2
- - uid: 11423
+ - uid: 1471
components:
- type: Transform
- pos: -99.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-43.5
parent: 2
- - uid: 11424
+ - uid: 1561
components:
- type: Transform
- pos: -98.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-46.5
parent: 2
- - uid: 11425
+ - uid: 1695
components:
- type: Transform
- pos: -97.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,6.5
parent: 2
- - uid: 11426
+ - uid: 1702
components:
- type: Transform
- pos: -96.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,0.5
parent: 2
- - uid: 11427
+ - uid: 1703
components:
- type: Transform
- pos: -95.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-1.5
parent: 2
- - uid: 11428
+ - uid: 2629
components:
- type: Transform
- pos: -94.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-48.5
parent: 2
- - uid: 11429
+ - uid: 2864
components:
- type: Transform
- pos: -93.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,49.5
parent: 2
- - uid: 11430
+ - uid: 3299
components:
- type: Transform
- pos: -92.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-7.5
parent: 2
- - uid: 11431
+ - uid: 3423
components:
- type: Transform
- pos: -91.5,8.5
+ pos: -10.5,71.5
parent: 2
- - uid: 11432
+ - uid: 4447
components:
- type: Transform
- pos: -90.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-1.5
parent: 2
- - uid: 11433
+ - uid: 5767
components:
- type: Transform
- pos: -89.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-19.5
parent: 2
- - uid: 11434
+ - uid: 6266
components:
- type: Transform
- pos: -88.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,67.5
parent: 2
- - uid: 11435
+ - uid: 6814
components:
- type: Transform
- pos: -87.5,8.5
+ pos: -6.5,21.5
parent: 2
- - uid: 11436
+ - uid: 8396
components:
- type: Transform
- pos: -86.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,40.5
parent: 2
- - uid: 11437
+ - uid: 9316
components:
- type: Transform
- pos: -85.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,36.5
parent: 2
- - uid: 11438
+ - uid: 11477
components:
- type: Transform
- pos: -82.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,4.5
parent: 2
- - uid: 11440
+ - uid: 12959
components:
- type: Transform
- pos: -32.5,47.5
+ pos: 46.5,-11.5
parent: 2
- - uid: 11441
+ - uid: 12965
components:
- type: Transform
- pos: -79.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-13.5
parent: 2
- - uid: 11442
+ - uid: 13869
components:
- type: Transform
- pos: -78.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,6.5
parent: 2
- - uid: 11443
+ - uid: 13924
components:
- type: Transform
- pos: -77.5,8.5
+ pos: 5.5,42.5
parent: 2
- - uid: 11444
+ - uid: 13927
components:
- type: Transform
- pos: -76.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,35.5
parent: 2
- - uid: 11445
+ - uid: 15255
components:
- type: Transform
- pos: -75.5,8.5
+ pos: -20.5,58.5
parent: 2
- - uid: 11448
+ - uid: 18025
components:
- type: Transform
- pos: -83.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,-35.5
parent: 2
- - uid: 11451
+ - uid: 19572
components:
- type: Transform
- pos: -85.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,76.5
parent: 2
- - uid: 11452
+ - uid: 19573
components:
- type: Transform
- pos: -87.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,76.5
parent: 2
- - uid: 11456
+ - uid: 19574
components:
- type: Transform
- pos: -91.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,76.5
parent: 2
- - uid: 11461
+ - uid: 19575
components:
- type: Transform
- pos: -89.5,30.5
+ pos: 2.5,75.5
parent: 2
- - uid: 11465
+ - uid: 19577
components:
- type: Transform
- pos: -98.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,76.5
parent: 2
- - uid: 11467
+ - uid: 19583
components:
- type: Transform
- pos: -90.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,76.5
parent: 2
- - uid: 11470
+ - uid: 19586
components:
- type: Transform
- pos: -90.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,76.5
parent: 2
- - uid: 11491
+ - uid: 19590
components:
- type: Transform
- pos: -105.5,-1.5
+ pos: 10.5,75.5
parent: 2
- - uid: 11494
+ - uid: 19592
components:
- type: Transform
- pos: -77.5,-11.5
+ pos: -5.5,75.5
parent: 2
- - uid: 11497
+ - uid: 19596
components:
- type: Transform
- pos: -77.5,-7.5
+ pos: -0.5,75.5
parent: 2
- - uid: 11499
+ - uid: 19597
components:
- type: Transform
- pos: -98.5,17.5
+ pos: 7.5,75.5
parent: 2
- - uid: 11501
+ - uid: 19599
components:
- type: Transform
- pos: -91.5,-6.5
+ pos: -8.5,75.5
parent: 2
- - uid: 11503
+ - uid: 20635
components:
- type: Transform
- pos: -91.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-10.5
parent: 2
- - uid: 11505
+ - uid: 21068
components:
- type: Transform
- pos: -99.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-16.5
parent: 2
- - uid: 11506
+ - uid: 21127
components:
- type: Transform
- pos: -78.5,-13.5
+ pos: -42.5,17.5
parent: 2
- - uid: 11508
+ - uid: 22806
components:
- type: Transform
- pos: -77.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-4.5
parent: 2
- - uid: 11510
+ - uid: 23326
components:
- type: Transform
- pos: -91.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-43.5
parent: 2
- - uid: 11518
+ - uid: 23327
components:
- type: Transform
- pos: -104.5,1.5
+ pos: 5.5,-40.5
parent: 2
- - uid: 11648
+ - uid: 26008
components:
- type: Transform
- pos: 0.5,-18.5
+ pos: -23.5,46.5
parent: 2
- - uid: 11651
+ - uid: 29833
components:
- type: Transform
- pos: 2.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,16.5
parent: 2
- - uid: 11773
+ - uid: 30269
components:
- type: Transform
- pos: -23.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,17.5
parent: 2
- - uid: 11774
+ - uid: 30348
components:
- type: Transform
- pos: -22.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,13.5
parent: 2
- - uid: 11775
+ - uid: 30528
components:
- type: Transform
- pos: -22.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,18.5
parent: 2
- - uid: 11776
+ - uid: 30599
components:
- type: Transform
- pos: -22.5,-21.5
+ pos: -38.5,-13.5
parent: 2
- - uid: 11777
+ - uid: 31077
components:
- type: Transform
- pos: -22.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,11.5
parent: 2
- - uid: 11778
+ - uid: 31478
components:
- type: Transform
- pos: -21.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-0.5
parent: 2
- - uid: 11779
+ - uid: 39299
components:
- type: Transform
- pos: -20.5,-20.5
+ pos: -44.5,-32.5
parent: 2
- - uid: 11780
+ - uid: 39302
components:
- type: Transform
- pos: -19.5,-20.5
+ pos: -40.5,-32.5
parent: 2
- - uid: 11781
+- proto: BenchSofaLeft
+ entities:
+ - uid: 8239
components:
- type: Transform
- pos: -18.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,75.5
parent: 2
- - uid: 11782
+ - uid: 18756
components:
- type: Transform
- pos: -17.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,74.5
parent: 2
- - uid: 11783
+ - uid: 19412
components:
- type: Transform
- pos: -16.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -81.5,4.5
parent: 2
- - uid: 11784
+- proto: BenchSofaRight
+ entities:
+ - uid: 5323
components:
- type: Transform
- pos: -15.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,75.5
parent: 2
- - uid: 11785
+ - uid: 18735
components:
- type: Transform
- pos: -14.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,74.5
parent: 2
- - uid: 11786
+ - uid: 19410
components:
- type: Transform
- pos: -13.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -81.5,3.5
parent: 2
- - uid: 11787
+- proto: BenchSteelLeft
+ entities:
+ - uid: 3143
components:
- type: Transform
- pos: -12.5,-20.5
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-21.5
parent: 2
- - uid: 11788
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 23098
components:
- type: Transform
- pos: -11.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,24.5
parent: 2
- - uid: 11789
+ - uid: 23432
components:
- type: Transform
- pos: -23.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,34.5
parent: 2
- - uid: 11790
+ - uid: 35721
components:
- type: Transform
- pos: -24.5,-20.5
+ pos: 82.5,49.5
parent: 2
- - uid: 11791
+- proto: BenchSteelMiddle
+ entities:
+ - uid: 11825
components:
- type: Transform
- pos: -25.5,-20.5
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-22.5
parent: 2
- - uid: 11792
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 33237
components:
- type: Transform
- pos: -26.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,33.5
parent: 2
- - uid: 11793
+ - uid: 35719
components:
- type: Transform
- pos: -27.5,-20.5
+ pos: 83.5,49.5
parent: 2
- - uid: 11794
+ - uid: 36893
components:
- type: Transform
- pos: -28.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,24.5
parent: 2
- - uid: 11795
+- proto: BenchSteelRight
+ entities:
+ - uid: 12069
components:
- type: Transform
- pos: -29.5,-20.5
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-23.5
parent: 2
- - uid: 11796
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 19807
components:
- type: Transform
- pos: -29.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,32.5
parent: 2
- - uid: 11797
+ - uid: 29773
components:
- type: Transform
- pos: -29.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,24.5
parent: 2
- - uid: 11798
+ - uid: 35720
components:
- type: Transform
- pos: -29.5,-23.5
+ pos: 84.5,49.5
parent: 2
- - uid: 11799
+- proto: BenchSteelWhiteLeft
+ entities:
+ - uid: 2414
components:
- type: Transform
- pos: -29.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-31.5
parent: 2
- - uid: 11800
+ - uid: 2417
components:
- type: Transform
- pos: -28.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-31.5
parent: 2
- - uid: 11801
+ - uid: 3125
components:
- type: Transform
- pos: -27.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-28.5
parent: 2
- - uid: 11802
+ - uid: 3126
components:
- type: Transform
- pos: -26.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-28.5
parent: 2
- - uid: 11803
+ - uid: 5177
components:
- type: Transform
- pos: -25.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-22.5
parent: 2
- - uid: 11804
+ - uid: 5178
components:
- type: Transform
- pos: -22.5,-23.5
+ pos: 59.5,-3.5
parent: 2
- - uid: 11805
+ - uid: 5181
components:
- type: Transform
- pos: -22.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-27.5
parent: 2
- - uid: 11806
+ - uid: 5187
components:
- type: Transform
- pos: -21.5,-24.5
+ pos: 67.5,-3.5
parent: 2
- - uid: 11807
+- proto: BenchSteelWhiteMiddle
+ entities:
+ - uid: 2415
components:
- type: Transform
- pos: -20.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-30.5
parent: 2
- - uid: 11808
+ - uid: 3300
components:
- type: Transform
- pos: -20.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-30.5
parent: 2
- - uid: 11810
+ - uid: 3308
components:
- type: Transform
- pos: -12.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-30.5
parent: 2
- - uid: 11811
+ - uid: 3325
components:
- type: Transform
- pos: -20.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-29.5
parent: 2
- - uid: 11812
+ - uid: 3368
components:
- type: Transform
- pos: -20.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-29.5
parent: 2
- - uid: 11813
+ - uid: 3370
components:
- type: Transform
- pos: -19.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-29.5
parent: 2
- - uid: 11814
+ - uid: 3371
components:
- type: Transform
- pos: -18.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-30.5
parent: 2
- - uid: 11815
+ - uid: 3391
components:
- type: Transform
- pos: -18.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-29.5
parent: 2
- - uid: 11816
+ - uid: 5179
components:
- type: Transform
- pos: -18.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,-27.5
parent: 2
- - uid: 11817
+ - uid: 5182
components:
- type: Transform
- pos: -18.5,-32.5
+ pos: 60.5,-3.5
parent: 2
- - uid: 11818
+ - uid: 5183
components:
- type: Transform
- pos: -18.5,-33.5
+ pos: 61.5,-3.5
parent: 2
- - uid: 11819
+ - uid: 5184
components:
- type: Transform
- pos: -18.5,-34.5
+ pos: 68.5,-3.5
parent: 2
- - uid: 11820
+ - uid: 5185
components:
- type: Transform
- pos: -19.5,-34.5
+ pos: 69.5,-3.5
parent: 2
- - uid: 11821
+- proto: BenchSteelWhiteRight
+ entities:
+ - uid: 3132
components:
- type: Transform
- pos: -20.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-28.5
parent: 2
- - uid: 11822
+ - uid: 3330
components:
- type: Transform
- pos: -21.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-31.5
parent: 2
- - uid: 11828
+ - uid: 3332
components:
- type: Transform
- pos: 44.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-28.5
parent: 2
- - uid: 11829
+ - uid: 3388
components:
- type: Transform
- pos: -21.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-31.5
parent: 2
- - uid: 11830
+ - uid: 5167
components:
- type: Transform
- pos: -18.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-21.5
parent: 2
- - uid: 11831
+ - uid: 5168
components:
- type: Transform
- pos: -18.5,-36.5
+ pos: 62.5,-3.5
parent: 2
- - uid: 11832
+ - uid: 5180
components:
- type: Transform
- pos: -18.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,-27.5
parent: 2
- - uid: 11833
+ - uid: 5186
components:
- type: Transform
- pos: -18.5,-38.5
+ pos: 70.5,-3.5
parent: 2
- - uid: 11834
+- proto: Bible
+ entities:
+ - uid: 4163
components:
- type: Transform
- pos: -18.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 60.702465,13.941333
parent: 2
- - uid: 11835
+ - uid: 14116
components:
- type: Transform
- pos: -18.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: 52.358986,14.078091
parent: 2
- - uid: 11836
+ - uid: 39150
components:
- type: Transform
- pos: -18.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: 66.65649,18.879253
parent: 2
- - uid: 11837
+- proto: BiomassReclaimer
+ entities:
+ - uid: 1057
components:
- type: Transform
- pos: -18.5,-42.5
+ pos: 34.5,10.5
parent: 2
- - uid: 11844
+ - uid: 1097
components:
- type: Transform
- pos: -18.5,-43.5
+ pos: 34.5,9.5
parent: 2
- - uid: 11847
+- proto: BiomassReclaimerMachineCircuitboard
+ entities:
+ - uid: 35814
components:
- type: Transform
- pos: -46.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -51.615856,27.613655
parent: 2
- - uid: 11872
+- proto: BirdToyInstrument
+ entities:
+ - uid: 9518
components:
- type: Transform
- pos: -15.5,-44.5
+ pos: -72.38812,0.47690368
parent: 2
- - uid: 11875
+- proto: BlankHandyFlag
+ entities:
+ - uid: 37592
components:
- type: Transform
- pos: -30.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -45.458256,-26.726465
parent: 2
- - uid: 11876
+- proto: BlastDoor
+ entities:
+ - uid: 1523
components:
- type: Transform
- pos: -25.5,-43.5
+ pos: 44.5,58.5
parent: 2
- - uid: 11877
+ - type: DeviceLinkSink
+ links:
+ - 12930
+ - 37221
+ - uid: 4187
components:
- type: Transform
- pos: -23.5,-43.5
+ pos: 45.5,58.5
parent: 2
- - uid: 11880
+ - type: DeviceLinkSink
+ links:
+ - 37221
+ - 12930
+ - uid: 4191
components:
- type: Transform
- pos: -17.5,-39.5
+ pos: 39.5,58.5
parent: 2
- - uid: 11881
+ - type: DeviceLinkSink
+ links:
+ - 8740
+ - 12929
+ - uid: 4196
components:
- type: Transform
- pos: -16.5,-39.5
+ pos: 46.5,58.5
parent: 2
- - uid: 11882
+ - type: DeviceLinkSink
+ links:
+ - 37221
+ - 12930
+ - uid: 4201
components:
- type: Transform
- pos: -15.5,-39.5
+ pos: 40.5,58.5
parent: 2
- - uid: 11883
+ - type: DeviceLinkSink
+ links:
+ - 8740
+ - 12929
+ - uid: 4222
components:
- type: Transform
- pos: -14.5,-39.5
+ pos: 38.5,58.5
parent: 2
- - uid: 11884
+ - type: DeviceLinkSink
+ links:
+ - 8740
+ - 12929
+ - uid: 22237
components:
- type: Transform
- pos: -13.5,-39.5
+ pos: -105.5,57.5
parent: 2
- - uid: 11885
+ - uid: 22608
components:
- type: Transform
- pos: -12.5,-39.5
+ pos: 51.5,49.5
parent: 2
- - uid: 11886
+ - type: DeviceLinkSink
+ links:
+ - 30772
+ - uid: 34800
components:
- type: Transform
- pos: -11.5,-39.5
+ pos: -106.5,57.5
parent: 2
- - uid: 11887
+ - uid: 36403
components:
- type: Transform
- pos: -10.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,47.5
parent: 2
- - uid: 11888
+- proto: BlastDoorFrame
+ entities:
+ - uid: 18791
components:
- type: Transform
- pos: -10.5,-40.5
+ anchored: True
+ pos: -111.5,53.5
parent: 2
- - uid: 11889
+ - uid: 22236
components:
- type: Transform
- pos: -9.5,-40.5
+ anchored: True
+ pos: -107.5,57.5
parent: 2
- - uid: 11890
+- proto: BlastDoorOpen
+ entities:
+ - uid: 1738
components:
- type: Transform
- pos: -8.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
parent: 2
- - uid: 11891
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 4830
components:
- type: Transform
- pos: -7.5,-40.5
+ pos: 101.5,72.5
parent: 2
- - uid: 11893
+ - type: DeviceLinkSink
+ links:
+ - 18749
+ - 23728
+ - uid: 4844
components:
- type: Transform
- pos: 27.5,41.5
+ pos: 93.5,78.5
parent: 2
- - uid: 11899
+ - type: DeviceLinkSink
+ links:
+ - 32086
+ - uid: 8245
components:
- type: Transform
- pos: 2.5,-1.5
+ pos: 95.5,75.5
parent: 2
- - uid: 11900
+ - uid: 8287
components:
- type: Transform
- pos: -6.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,53.5
parent: 2
- - uid: 11901
+ - uid: 8433
components:
- type: Transform
- pos: -6.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,10.5
parent: 2
- - uid: 11902
+ - type: DeviceLinkSink
+ links:
+ - 26285
+ - uid: 8434
components:
- type: Transform
- pos: -6.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,10.5
parent: 2
- - uid: 11903
+ - type: DeviceLinkSink
+ links:
+ - 26285
+ - uid: 8786
components:
- type: Transform
- pos: -6.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,10.5
parent: 2
- - uid: 11904
+ - type: DeviceLinkSink
+ links:
+ - 26285
+ - uid: 9253
components:
- type: Transform
- pos: -6.5,-28.5
+ pos: 37.5,52.5
parent: 2
- - uid: 11905
+ - type: DeviceLinkSink
+ links:
+ - 9223
+ - uid: 9257
components:
- type: Transform
- pos: -6.5,-33.5
+ pos: 47.5,52.5
parent: 2
- - uid: 11906
+ - type: DeviceLinkSink
+ links:
+ - 2512
+ - uid: 9351
components:
- type: Transform
- pos: -6.5,-34.5
+ pos: -106.5,47.5
parent: 2
- - uid: 11907
+ - uid: 12053
components:
- type: Transform
- pos: -6.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-25.5
parent: 2
- - uid: 11908
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 12106
components:
- type: Transform
- pos: -6.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-25.5
parent: 2
- - uid: 11909
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 12422
components:
- type: Transform
- pos: -6.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-21.5
parent: 2
- - uid: 11910
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 14111
components:
- type: Transform
- pos: -1.5,-27.5
+ pos: 23.5,44.5
parent: 2
- - uid: 11911
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 15042
components:
- type: Transform
- pos: -1.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,57.5
parent: 2
- - uid: 11912
+ - type: DeviceLinkSink
+ links:
+ - 37224
+ - uid: 15043
components:
- type: Transform
- pos: -1.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,57.5
parent: 2
- - uid: 11913
+ - type: DeviceLinkSink
+ links:
+ - 37224
+ - uid: 15044
components:
- type: Transform
- pos: -1.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,57.5
parent: 2
- - uid: 11914
+ - type: DeviceLinkSink
+ links:
+ - 37224
+ - uid: 15045
components:
- type: Transform
- pos: -1.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,57.5
parent: 2
- - uid: 11915
+ - type: DeviceLinkSink
+ links:
+ - 37224
+ - uid: 15047
components:
- type: Transform
- pos: -1.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,56.5
parent: 2
- - uid: 11916
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 19938
+ - 9098
+ - uid: 15048
components:
- type: Transform
- pos: -1.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,55.5
parent: 2
- - uid: 11917
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 19938
+ - 9098
+ - uid: 15049
components:
- type: Transform
- pos: -1.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,55.5
parent: 2
- - uid: 11918
+ - type: DeviceLinkSink
+ links:
+ - 19938
+ - uid: 15050
components:
- type: Transform
- pos: -2.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,54.5
parent: 2
- - uid: 11920
+ - type: DeviceLinkSink
+ links:
+ - 19938
+ - uid: 15051
components:
- type: Transform
- pos: -3.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,53.5
parent: 2
- - uid: 11921
+ - type: DeviceLinkSink
+ links:
+ - 19938
+ - uid: 15055
components:
- type: Transform
- pos: -4.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,51.5
parent: 2
- - uid: 11922
+ - type: DeviceLinkSink
+ links:
+ - 19938
+ - uid: 15056
components:
- type: Transform
- pos: -10.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,51.5
parent: 2
- - uid: 11923
+ - type: DeviceLinkSink
+ links:
+ - 19938
+ - uid: 15057
components:
- type: Transform
- pos: -9.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,60.5
parent: 2
- - uid: 11924
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15058
components:
- type: Transform
- pos: -8.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,60.5
parent: 2
- - uid: 11925
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15059
components:
- type: Transform
- pos: -7.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,60.5
parent: 2
- - uid: 11926
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15065
components:
- type: Transform
- pos: -6.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,60.5
parent: 2
- - uid: 11927
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15066
components:
- type: Transform
- pos: -6.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,59.5
parent: 2
- - uid: 11928
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15067
components:
- type: Transform
- pos: -6.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,59.5
parent: 2
- - uid: 11929
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15068
components:
- type: Transform
- pos: -6.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,58.5
parent: 2
- - uid: 11930
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15069
components:
- type: Transform
- pos: -6.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,58.5
parent: 2
- - uid: 11931
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 15906
+ - uid: 15078
components:
- type: Transform
- pos: -7.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,36.5
parent: 2
- - uid: 11932
+ - uid: 15079
components:
- type: Transform
- pos: -8.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,35.5
parent: 2
- - uid: 11933
+ - uid: 15080
components:
- type: Transform
- pos: -9.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,36.5
parent: 2
- - uid: 11934
+ - type: DeviceLinkSink
+ links:
+ - 17791
+ - uid: 15081
components:
- type: Transform
- pos: -10.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,37.5
parent: 2
- - uid: 11935
+ - type: DeviceLinkSink
+ links:
+ - 17791
+ - uid: 15082
components:
- type: Transform
- pos: -10.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,38.5
parent: 2
- - uid: 11936
+ - type: DeviceLinkSink
+ links:
+ - 17791
+ - uid: 15083
components:
- type: Transform
- pos: -10.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,39.5
parent: 2
- - uid: 11937
+ - type: DeviceLinkSink
+ links:
+ - 17791
+ - uid: 15084
components:
- type: Transform
- pos: -10.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,38.5
parent: 2
- - uid: 11938
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15085
components:
- type: Transform
- pos: -10.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,37.5
parent: 2
- - uid: 11939
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15086
components:
- type: Transform
- pos: -13.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,36.5
parent: 2
- - uid: 11940
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15087
components:
- type: Transform
- pos: -15.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,36.5
parent: 2
- - uid: 11941
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15088
components:
- type: Transform
- pos: -13.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,36.5
parent: 2
- - uid: 11942
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15089
components:
- type: Transform
- pos: -13.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,37.5
parent: 2
- - uid: 11943
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15090
components:
- type: Transform
- pos: -13.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,38.5
parent: 2
- - uid: 11944
+ - type: DeviceLinkSink
+ links:
+ - 17792
+ - uid: 15091
components:
- type: Transform
- pos: -13.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,42.5
parent: 2
- - uid: 11945
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 15092
components:
- type: Transform
- pos: -13.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,42.5
parent: 2
- - uid: 11946
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 15093
components:
- type: Transform
- pos: -13.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,44.5
parent: 2
- - uid: 11947
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 15094
components:
- type: Transform
- pos: -13.5,-22.5
+ pos: 22.5,44.5
parent: 2
- - uid: 11948
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 15574
components:
- type: Transform
- pos: -13.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,47.5
parent: 2
- - uid: 11949
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 15677
components:
- type: Transform
- pos: -12.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-25.5
parent: 2
- - uid: 11952
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 16476
components:
- type: Transform
- pos: 76.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-21.5
parent: 2
- - uid: 11953
+ - type: DeviceLinkSink
+ links:
+ - 34411
+ - uid: 18600
components:
- type: Transform
- pos: -11.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,51.5
parent: 2
- - uid: 11954
+ - uid: 18749
components:
- type: Transform
- pos: -12.5,-33.5
+ pos: 101.5,73.5
parent: 2
- - uid: 11955
+ - type: DeviceLinkSink
+ links:
+ - 23728
+ - uid: 18764
components:
- type: Transform
- pos: -13.5,-33.5
+ pos: 101.5,74.5
parent: 2
- - uid: 11956
+ - type: DeviceLinkSink
+ links:
+ - 23728
+ - uid: 18866
components:
- type: Transform
- pos: -14.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,52.5
parent: 2
- - uid: 11957
+ - uid: 19519
components:
- type: Transform
- pos: -15.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,41.5
parent: 2
- - uid: 11958
- components:
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 22239
+ components:
- type: Transform
- pos: -15.5,-34.5
+ pos: -111.5,51.5
parent: 2
- - uid: 11959
+ - uid: 22332
components:
- type: Transform
- pos: -15.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,10.5
parent: 2
- - uid: 11960
+ - type: DeviceLinkSink
+ links:
+ - 26285
+ - uid: 23089
components:
- type: Transform
- pos: -15.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-12.5
parent: 2
- - uid: 11961
+ - type: DeviceLinkSink
+ links:
+ - 28075
+ - uid: 23091
components:
- type: Transform
- pos: -15.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
parent: 2
- - uid: 11962
+ - type: DeviceLinkSink
+ links:
+ - 28075
+ - uid: 23093
components:
- type: Transform
- pos: -15.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-12.5
parent: 2
- - uid: 12031
+ - type: DeviceLinkSink
+ links:
+ - 28075
+ - uid: 23712
components:
- type: Transform
- pos: 77.5,-19.5
+ pos: -59.5,52.5
parent: 2
- - uid: 12032
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ links:
+ - 28714
+ - uid: 23761
components:
- type: Transform
- pos: 77.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,40.5
parent: 2
- - uid: 12082
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 25999
components:
- type: Transform
- pos: 12.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,47.5
parent: 2
- - uid: 12083
+ - type: DeviceLinkSink
+ links:
+ - 34363
+ - uid: 29390
components:
- type: Transform
- pos: 11.5,-23.5
+ pos: -57.5,52.5
parent: 2
- - uid: 12084
+ - type: DeviceLinkSink
+ links:
+ - 28714
+ - uid: 29636
components:
- type: Transform
- pos: 10.5,-23.5
+ pos: -56.5,52.5
parent: 2
- - uid: 12085
+ - type: DeviceLinkSink
+ links:
+ - 28714
+ - uid: 30104
components:
- type: Transform
- pos: 9.5,-23.5
+ pos: 95.5,71.5
parent: 2
- - uid: 12086
+ - type: DeviceLinkSink
+ links:
+ - 18739
+ - uid: 30126
components:
- type: Transform
- pos: 9.5,-22.5
+ pos: 93.5,77.5
parent: 2
- - uid: 12087
+ - type: DeviceLinkSink
+ links:
+ - 32086
+ - uid: 30779
components:
- type: Transform
- pos: 9.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,41.5
parent: 2
- - uid: 12089
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 31417
components:
- type: Transform
- pos: 13.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,52.5
parent: 2
- - uid: 12090
+ - type: DeviceLinkSink
+ links:
+ - 28714
+ - uid: 31446
components:
- type: Transform
- pos: 14.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,52.5
parent: 2
- - uid: 12091
+ - type: DeviceLinkSink
+ links:
+ - 28714
+ - uid: 32083
components:
- type: Transform
- pos: 14.5,-24.5
+ pos: 91.5,71.5
parent: 2
- - uid: 12092
+ - type: DeviceLinkSink
+ links:
+ - 32084
+ - uid: 33290
components:
- type: Transform
- pos: 14.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,52.5
parent: 2
- - uid: 12093
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 33635
components:
- type: Transform
- pos: 14.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,47.5
parent: 2
- - uid: 12094
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 34101
components:
- type: Transform
- pos: 14.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,41.5
parent: 2
- - uid: 12095
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 34102
components:
- type: Transform
- pos: 14.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,45.5
parent: 2
- - uid: 12097
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 34103
components:
- type: Transform
- pos: 67.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,45.5
parent: 2
- - uid: 12098
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 34877
components:
- type: Transform
- pos: -37.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,45.5
parent: 2
- - uid: 12099
+ - type: DeviceLinkSink
+ links:
+ - 25985
+ - uid: 36093
components:
- type: Transform
- pos: 10.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,43.5
parent: 2
- - uid: 12100
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36095
components:
- type: Transform
- pos: 9.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,40.5
parent: 2
- - uid: 12101
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36097
components:
- type: Transform
- pos: 8.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,40.5
parent: 2
- - uid: 12102
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36101
components:
- type: Transform
- pos: 7.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,40.5
parent: 2
- - uid: 12103
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36105
components:
- type: Transform
- pos: 6.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,40.5
parent: 2
- - uid: 12104
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36107
components:
- type: Transform
- pos: 5.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,43.5
parent: 2
- - uid: 12105
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36108
components:
- type: Transform
- pos: 5.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,43.5
parent: 2
- - uid: 12106
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36109
components:
- type: Transform
- pos: 5.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,43.5
parent: 2
- - uid: 12107
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36169
components:
- type: Transform
- pos: 5.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,52.5
parent: 2
- - uid: 12108
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 36170
components:
- type: Transform
- pos: 5.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,51.5
parent: 2
- - uid: 12109
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 36171
components:
- type: Transform
- pos: 5.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,50.5
parent: 2
- - uid: 12110
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 36172
components:
- type: Transform
- pos: 5.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,34.5
parent: 2
- - uid: 12111
+ - type: DeviceLinkSink
+ links:
+ - 34349
+ - uid: 36173
components:
- type: Transform
- pos: 5.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,33.5
parent: 2
- - uid: 12112
+ - type: DeviceLinkSink
+ links:
+ - 34349
+ - uid: 36175
components:
- type: Transform
- pos: 5.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,31.5
parent: 2
- - uid: 12114
+ - type: DeviceLinkSink
+ links:
+ - 34349
+ - uid: 36176
components:
- type: Transform
- pos: 6.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,47.5
parent: 2
- - uid: 12115
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 36178
components:
- type: Transform
- pos: 6.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,43.5
parent: 2
- - uid: 12116
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36179
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: -28.5,39.5
parent: 2
- - uid: 12117
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 37126
+ - uid: 36761
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -15.5,50.5
parent: 2
- - uid: 12118
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 36765
components:
- type: Transform
- pos: 9.5,-18.5
+ pos: -15.5,49.5
parent: 2
- - uid: 12119
+ - type: DeviceLinkSink
+ links:
+ - 283
+ - uid: 37178
components:
- type: Transform
- pos: 54.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,47.5
parent: 2
- - uid: 12120
+ - type: DeviceLinkSink
+ links:
+ - 34363
+ - uid: 37202
components:
- type: Transform
- pos: -37.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,44.5
parent: 2
- - uid: 12122
+ - type: DeviceLinkSink
+ links:
+ - 17793
+ - uid: 37428
components:
- type: Transform
- pos: 1.5,-28.5
+ pos: -25.5,26.5
parent: 2
- - uid: 12123
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37445
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: -25.5,32.5
parent: 2
- - uid: 12124
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37449
components:
- type: Transform
- pos: 1.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,23.5
parent: 2
- - uid: 12125
+ - type: DeviceLinkSink
+ links:
+ - 34357
+ - uid: 37450
components:
- type: Transform
- pos: 1.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,23.5
parent: 2
- - uid: 12126
+ - type: DeviceLinkSink
+ links:
+ - 34357
+ - uid: 37451
components:
- type: Transform
- pos: 1.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,23.5
parent: 2
- - uid: 12127
+ - type: DeviceLinkSink
+ links:
+ - 34357
+ - uid: 37452
components:
- type: Transform
- pos: 1.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,23.5
parent: 2
- - uid: 12128
+ - type: DeviceLinkSink
+ links:
+ - 25169
+ - uid: 37453
components:
- type: Transform
- pos: 1.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,23.5
parent: 2
- - uid: 12129
+ - type: DeviceLinkSink
+ links:
+ - 25169
+ - uid: 37454
components:
- type: Transform
- pos: 1.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,23.5
parent: 2
- - uid: 12132
+ - type: DeviceLinkSink
+ links:
+ - 25169
+ - uid: 37457
components:
- type: Transform
- pos: 1.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,26.5
parent: 2
- - uid: 12133
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37459
components:
- type: Transform
- pos: 1.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,26.5
parent: 2
- - uid: 12134
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37460
components:
- type: Transform
- pos: 1.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,26.5
parent: 2
- - uid: 12135
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37462
components:
- type: Transform
- pos: 1.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,26.5
parent: 2
- - uid: 12136
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37463
components:
- type: Transform
- pos: 1.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,64.5
parent: 2
- - uid: 12137
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37472
components:
- type: Transform
- pos: 1.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,32.5
parent: 2
- - uid: 12138
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37473
components:
- type: Transform
- pos: 1.5,-33.5
+ pos: -29.5,26.5
parent: 2
- - uid: 12139
+ - type: DeviceLinkSink
+ links:
+ - 34355
+ - uid: 37474
components:
- type: Transform
- pos: 1.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,32.5
parent: 2
- - uid: 12142
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37475
components:
- type: Transform
- pos: 1.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,32.5
parent: 2
- - uid: 12149
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37476
components:
- type: Transform
- pos: 1.5,-44.5
+ pos: -29.5,32.5
parent: 2
- - uid: 12150
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37477
components:
- type: Transform
- pos: 1.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,32.5
parent: 2
- - uid: 12151
+ - type: DeviceLinkSink
+ links:
+ - 34352
+ - uid: 37478
components:
- type: Transform
- pos: 1.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,65.5
parent: 2
- - uid: 12152
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37479
components:
- type: Transform
- pos: 1.5,-47.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,66.5
parent: 2
- - uid: 12153
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37480
components:
- type: Transform
- pos: 1.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,68.5
parent: 2
- - uid: 12154
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37481
components:
- type: Transform
- pos: 1.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,68.5
parent: 2
- - uid: 12155
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37482
components:
- type: Transform
- pos: 1.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,68.5
parent: 2
- - uid: 12156
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37483
components:
- type: Transform
- pos: 1.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,68.5
parent: 2
- - uid: 12157
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37484
components:
- type: Transform
- pos: 2.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,68.5
parent: 2
- - uid: 12158
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37485
components:
- type: Transform
- pos: 3.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,52.5
parent: 2
- - uid: 12159
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37486
components:
- type: Transform
- pos: 4.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,52.5
parent: 2
- - uid: 12160
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37487
components:
- type: Transform
- pos: 5.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,52.5
parent: 2
- - uid: 12161
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37488
components:
- type: Transform
- pos: 6.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,68.5
parent: 2
- - uid: 12162
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37489
components:
- type: Transform
- pos: 7.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,68.5
parent: 2
- - uid: 12163
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37490
components:
- type: Transform
- pos: 8.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,68.5
parent: 2
- - uid: 12164
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37491
components:
- type: Transform
- pos: 9.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,68.5
parent: 2
- - uid: 12165
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37492
components:
- type: Transform
- pos: 10.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,68.5
parent: 2
- - uid: 12166
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37493
components:
- type: Transform
- pos: 0.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,68.5
parent: 2
- - uid: 12167
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37494
components:
- type: Transform
- pos: -0.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,68.5
parent: 2
- - uid: 12168
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37495
components:
- type: Transform
- pos: -1.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,68.5
parent: 2
- - uid: 12169
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37496
components:
- type: Transform
- pos: -2.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,68.5
parent: 2
- - uid: 12170
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37497
components:
- type: Transform
- pos: -3.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,68.5
parent: 2
- - uid: 12171
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37498
components:
- type: Transform
- pos: -4.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,68.5
parent: 2
- - uid: 12172
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37499
components:
- type: Transform
- pos: -5.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,68.5
parent: 2
- - uid: 12173
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37500
components:
- type: Transform
- pos: -6.5,-51.5
+ pos: -9.5,64.5
parent: 2
- - uid: 12174
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37501
components:
- type: Transform
- pos: -7.5,-51.5
+ pos: -9.5,63.5
parent: 2
- - uid: 12175
+ - type: DeviceLinkSink
+ links:
+ - 25189
+ - 34350
+ - uid: 37502
components:
- type: Transform
- pos: -7.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,68.5
parent: 2
- - uid: 12176
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 34361
+ - 25189
+ - uid: 37503
components:
- type: Transform
- pos: -7.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,68.5
parent: 2
- - uid: 12177
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 34361
+ - 25189
+ - uid: 37504
components:
- type: Transform
- pos: -7.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,68.5
parent: 2
- - uid: 12178
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 34361
+ - 25189
+ - uid: 37508
components:
- type: Transform
- pos: -7.5,-55.5
+ pos: -17.5,54.5
parent: 2
- - uid: 12179
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 25189
+ - uid: 37509
components:
- type: Transform
- pos: -7.5,-56.5
+ pos: -17.5,55.5
parent: 2
- - uid: 12180
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 25189
+ - uid: 37510
components:
- type: Transform
- pos: -5.5,-52.5
+ pos: -17.5,56.5
parent: 2
- - uid: 12181
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 25189
+ - uid: 37511
components:
- type: Transform
- pos: -5.5,-53.5
+ pos: -17.5,57.5
parent: 2
- - uid: 12182
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 25189
+ - uid: 37512
components:
- type: Transform
- pos: -5.5,-54.5
+ pos: -17.5,58.5
parent: 2
- - uid: 12183
+ - type: DeviceLinkSink
+ links:
+ - 34350
+ - 25189
+ - uid: 37518
components:
- type: Transform
- pos: -5.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,67.5
parent: 2
- - uid: 12184
+ - uid: 37519
components:
- type: Transform
- pos: -5.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,66.5
parent: 2
- - uid: 12185
+ - uid: 37520
components:
- type: Transform
- pos: 0.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,65.5
parent: 2
- - uid: 12186
+ - uid: 37521
components:
- type: Transform
- pos: 0.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,64.5
parent: 2
- - uid: 12187
+ - uid: 37522
components:
- type: Transform
- pos: 0.5,-54.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,63.5
parent: 2
- - uid: 12188
+ - uid: 37999
components:
- type: Transform
- pos: 0.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,44.5
parent: 2
- - uid: 12189
+ - type: DeviceLinkSink
+ links:
+ - 37524
+ - uid: 38000
components:
- type: Transform
- pos: 0.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,44.5
parent: 2
- - uid: 12190
+ - type: DeviceLinkSink
+ links:
+ - 37524
+ - uid: 38001
components:
- type: Transform
- pos: 2.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,44.5
parent: 2
- - uid: 12191
+ - type: DeviceLinkSink
+ links:
+ - 37524
+ - uid: 38002
components:
- type: Transform
- pos: 2.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,44.5
parent: 2
- - uid: 12192
+ - type: DeviceLinkSink
+ links:
+ - 37524
+ - uid: 38007
components:
- type: Transform
- pos: 2.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,27.5
parent: 2
- - uid: 12193
+ - type: DeviceLinkSink
+ links:
+ - 34364
+ - uid: 38008
components:
- type: Transform
- pos: 2.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,27.5
parent: 2
- - uid: 12194
+ - type: DeviceLinkSink
+ links:
+ - 34364
+ - uid: 38009
components:
- type: Transform
- pos: 2.5,-56.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,27.5
parent: 2
- - uid: 12195
+ - type: DeviceLinkSink
+ links:
+ - 34364
+ - uid: 38010
components:
- type: Transform
- pos: 8.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,27.5
parent: 2
- - uid: 12196
+ - type: DeviceLinkSink
+ links:
+ - 34364
+ - uid: 38011
components:
- type: Transform
- pos: 8.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,27.5
parent: 2
- - uid: 12197
+ - type: DeviceLinkSink
+ links:
+ - 34364
+ - uid: 38012
components:
- type: Transform
- pos: 8.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,27.5
parent: 2
- - uid: 12198
+ - type: DeviceLinkSink
+ links:
+ - 34364
+- proto: Bloodpack
+ entities:
+ - uid: 7811
components:
- type: Transform
- pos: 8.5,-55.5
+ pos: 7.267189,-7.306482
parent: 2
- - uid: 12199
+ - uid: 23344
components:
- type: Transform
- pos: 8.5,-56.5
+ pos: -16.422037,-0.4027381
parent: 2
- - uid: 12200
+ - uid: 23364
components:
- type: Transform
- pos: 10.5,-52.5
+ pos: -22.410467,-0.3228625
parent: 2
- - uid: 12201
+ - uid: 36887
components:
- type: Transform
- pos: 10.5,-53.5
+ pos: 71.87978,72.82703
parent: 2
- - uid: 12202
+ - type: Stack
+ count: 1
+ - uid: 36888
components:
- type: Transform
- pos: 10.5,-54.5
+ pos: 71.99697,72.76843
parent: 2
- - uid: 12203
+ - type: Stack
+ count: 1
+ - uid: 36889
components:
- type: Transform
- pos: 10.5,-55.5
+ pos: 72.6415,72.79187
parent: 2
- - uid: 12204
+ - type: Stack
+ count: 1
+- proto: BoardGameSpawner
+ entities:
+ - uid: 803
components:
- type: Transform
- pos: 10.5,-56.5
+ pos: 53.5,30.5
parent: 2
- - uid: 12205
+ - uid: 1638
components:
- type: Transform
- pos: -2.5,-32.5
+ pos: -5.5,12.5
parent: 2
- - uid: 12206
+ - uid: 1639
components:
- type: Transform
- pos: -2.5,-33.5
+ pos: -2.5,13.5
parent: 2
- - uid: 12207
+ - uid: 19847
components:
- type: Transform
- pos: -2.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-9.5
parent: 2
- - uid: 12208
+ - uid: 21102
components:
- type: Transform
- pos: -2.5,-35.5
+ pos: -45.5,26.5
parent: 2
- - uid: 12209
+- proto: BodyBag_Folded
+ entities:
+ - uid: 1410
components:
- type: Transform
- pos: -2.5,-36.5
+ pos: 19.470509,3.3589706
parent: 2
- - uid: 12210
+ - uid: 1411
components:
- type: Transform
- pos: -2.5,-37.5
+ pos: 19.622852,3.112877
parent: 2
- - uid: 12211
+ - uid: 7736
components:
- type: Transform
- pos: -2.5,-38.5
+ pos: 71.329605,30.886026
parent: 2
- - uid: 12216
+ - uid: 15491
components:
- type: Transform
- pos: -1.5,-37.5
+ pos: 33.541313,12.91679
parent: 2
- - uid: 12221
+ - uid: 17615
components:
- type: Transform
- pos: 4.5,-37.5
+ pos: 33.2835,13.1277275
parent: 2
- - uid: 12222
+ - uid: 25062
components:
- type: Transform
- pos: 5.5,-37.5
+ pos: 71.44679,30.686808
parent: 2
- - uid: 12226
+ - uid: 25066
components:
- type: Transform
- pos: 20.5,48.5
+ pos: 71.65773,30.897745
parent: 2
- - uid: 12227
+- proto: Bonfire
+ entities:
+ - uid: 5136
components:
- type: Transform
- pos: 10.5,-37.5
+ pos: 65.5,-9.5
parent: 2
- - uid: 12228
+ - uid: 7032
components:
- type: Transform
- pos: 10.5,-36.5
+ pos: -28.5,-35.5
parent: 2
- - uid: 12229
+- proto: BookBartendersManual
+ entities:
+ - uid: 11390
components:
- type: Transform
- pos: 10.5,-35.5
+ pos: -35.67561,-26.36223
parent: 2
- - uid: 12230
+- proto: BookChefGaming
+ entities:
+ - uid: 15940
components:
- type: Transform
- pos: 10.5,-34.5
+ pos: -54.166798,-22.214546
parent: 2
- - uid: 12231
+- proto: BookDetective
+ entities:
+ - uid: 29019
components:
- type: Transform
- pos: 10.5,-33.5
+ pos: -23.675516,-7.985937
parent: 2
- - uid: 12232
+- proto: BookIanArctic
+ entities:
+ - uid: 4453
components:
- type: Transform
- pos: 10.5,-32.5
+ pos: 13.509313,-5.401567
parent: 2
- - uid: 12233
+- proto: BookIanMountain
+ entities:
+ - uid: 4432
components:
- type: Transform
- pos: 10.5,-31.5
+ pos: 13.321813,-5.202348
parent: 2
- - uid: 12234
+- proto: BooksBag
+ entities:
+ - uid: 6086
components:
- type: Transform
- pos: 10.5,-30.5
+ pos: 52.3559,27.7039
parent: 2
- - uid: 12235
+- proto: BookScientistsGuidebook
+ entities:
+ - uid: 36504
components:
- type: Transform
- pos: 10.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 60.191216,84.27377
parent: 2
- - uid: 12236
+- proto: BookshelfFilled
+ entities:
+ - uid: 39
components:
- type: Transform
- pos: 5.5,-31.5
+ pos: 57.5,28.5
parent: 2
- - uid: 12237
+ - uid: 608
components:
- type: Transform
- pos: 5.5,-32.5
+ pos: -3.5,-4.5
parent: 2
- - uid: 12238
+ - uid: 613
components:
- type: Transform
- pos: 5.5,-33.5
+ pos: -4.5,-4.5
parent: 2
- - uid: 12240
+ - uid: 616
components:
- type: Transform
- pos: 5.5,-35.5
+ pos: -5.5,-4.5
parent: 2
- - uid: 12241
+ - uid: 617
components:
- type: Transform
- pos: 5.5,-36.5
+ pos: -3.5,-4.5
parent: 2
- - uid: 12242
+ - uid: 676
components:
- type: Transform
- pos: 5.5,-38.5
+ pos: -13.5,-7.5
parent: 2
- - uid: 12248
+ - uid: 686
components:
- type: Transform
- pos: -2.5,-31.5
+ pos: -29.5,-7.5
parent: 2
- - uid: 12269
+ - uid: 1554
components:
- type: Transform
- pos: -6.5,-37.5
+ pos: -27.5,-7.5
parent: 2
- - uid: 12297
+ - uid: 1958
components:
- type: Transform
- pos: 20.5,49.5
+ pos: 11.5,30.5
parent: 2
- - uid: 12324
+ - uid: 2363
components:
- type: Transform
- pos: 14.5,-22.5
+ pos: -7.5,61.5
parent: 2
- - uid: 12325
+ - uid: 4016
components:
- type: Transform
- pos: 14.5,-21.5
+ pos: 42.5,26.5
parent: 2
- - uid: 12326
+ - uid: 4064
components:
- type: Transform
- pos: 14.5,-20.5
+ pos: 59.5,28.5
parent: 2
- - uid: 12327
+ - uid: 4066
components:
- type: Transform
- pos: 14.5,-19.5
+ pos: 60.5,28.5
parent: 2
- - uid: 12329
+ - uid: 4067
components:
- type: Transform
- pos: 15.5,-20.5
+ pos: 60.5,30.5
parent: 2
- - uid: 12330
+ - uid: 4081
components:
- type: Transform
- pos: 16.5,-20.5
+ pos: 58.5,28.5
parent: 2
- - uid: 12331
+ - uid: 4083
components:
- type: Transform
- pos: 17.5,-20.5
+ pos: 58.5,30.5
parent: 2
- - uid: 12332
+ - uid: 4225
components:
- type: Transform
- pos: 18.5,-20.5
+ pos: 57.5,26.5
parent: 2
- - uid: 12333
+ - uid: 4370
components:
- type: Transform
- pos: 19.5,-20.5
+ pos: 59.5,30.5
parent: 2
- - uid: 12334
+ - uid: 4449
components:
- type: Transform
- pos: 20.5,-20.5
+ pos: -6.5,61.5
parent: 2
- - uid: 12335
+ - uid: 4489
components:
- type: Transform
- pos: 21.5,-20.5
+ pos: 57.5,30.5
parent: 2
- - uid: 12336
+ - uid: 4520
components:
- type: Transform
- pos: 22.5,-20.5
+ pos: 58.5,26.5
parent: 2
- - uid: 12337
+ - uid: 5480
components:
- type: Transform
- pos: 23.5,-20.5
+ pos: 43.5,26.5
parent: 2
- - uid: 12338
+ - uid: 5481
components:
- type: Transform
- pos: 24.5,-20.5
+ pos: 44.5,26.5
parent: 2
- - uid: 12339
+ - uid: 5578
components:
- type: Transform
- pos: 25.5,-20.5
+ pos: 59.5,26.5
parent: 2
- - uid: 12340
+ - uid: 5579
components:
- type: Transform
- pos: 26.5,-20.5
+ pos: 60.5,26.5
parent: 2
- - uid: 12341
+ - uid: 6610
components:
- type: Transform
- pos: 27.5,-20.5
+ pos: -24.5,-18.5
parent: 2
- - uid: 12342
+ - uid: 6611
components:
- type: Transform
- pos: 28.5,-20.5
+ pos: -26.5,-18.5
parent: 2
- - uid: 12343
+ - uid: 9333
components:
- type: Transform
- pos: 29.5,-20.5
+ pos: -28.5,-7.5
parent: 2
- - uid: 12344
+ - uid: 14299
components:
- type: Transform
- pos: 30.5,-20.5
+ pos: 22.5,-34.5
parent: 2
- - uid: 12345
+ - uid: 14926
components:
- type: Transform
- pos: 31.5,-20.5
+ pos: 21.5,-34.5
parent: 2
- - uid: 12346
+ - uid: 14980
components:
- type: Transform
- pos: 29.5,-21.5
+ pos: 14.5,-34.5
parent: 2
- - uid: 12349
+ - uid: 15756
components:
- type: Transform
- pos: 29.5,-24.5
+ pos: -11.5,26.5
parent: 2
- - uid: 12350
+ - uid: 15757
components:
- type: Transform
- pos: 29.5,-25.5
+ pos: -10.5,26.5
parent: 2
- - uid: 12351
+ - uid: 18014
components:
- type: Transform
- pos: 29.5,-26.5
+ pos: -8.5,61.5
parent: 2
- - uid: 12352
+ - uid: 18200
components:
- type: Transform
- pos: 30.5,-24.5
+ pos: 13.5,-34.5
parent: 2
- - uid: 12353
+ - uid: 19371
components:
- type: Transform
- pos: 31.5,-24.5
+ pos: 23.5,50.5
parent: 2
- - uid: 12354
+ - uid: 23172
components:
- type: Transform
- pos: 32.5,-24.5
+ pos: -23.5,-7.5
parent: 2
- - uid: 12355
+ - uid: 25091
components:
- type: Transform
- pos: 33.5,-24.5
+ pos: 16.5,-34.5
parent: 2
- - uid: 12356
+ - uid: 25140
components:
- type: Transform
- pos: 34.5,-24.5
+ pos: 17.5,-34.5
parent: 2
- - uid: 12357
+ - uid: 25777
components:
- type: Transform
- pos: 35.5,-24.5
+ pos: 21.5,50.5
parent: 2
- - uid: 12358
+ - uid: 38846
components:
- type: Transform
- pos: 36.5,-24.5
+ pos: 18.5,-34.5
parent: 2
- - uid: 12359
+ - uid: 38847
components:
- type: Transform
- pos: 37.5,-24.5
+ pos: 19.5,-34.5
parent: 2
- - uid: 12360
+- proto: BoozeDispenser
+ entities:
+ - uid: 3848
components:
- type: Transform
- pos: 38.5,-24.5
+ pos: 10.5,54.5
parent: 2
- - uid: 12361
+ - uid: 7098
components:
- type: Transform
- pos: 38.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-25.5
parent: 2
- - uid: 12362
+ - uid: 33657
components:
- type: Transform
- pos: 38.5,-26.5
+ pos: -43.5,67.5
parent: 2
- - uid: 12363
+- proto: BorgCharger
+ entities:
+ - uid: 2058
components:
- type: Transform
- pos: 38.5,-27.5
+ pos: -7.5,-18.5
parent: 2
- - uid: 12364
+ - uid: 2059
components:
- type: Transform
- pos: 38.5,-28.5
+ pos: -8.5,-18.5
parent: 2
- - uid: 12365
+ - uid: 4662
components:
- type: Transform
- pos: 38.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-13.5
parent: 2
- - uid: 12366
+ - uid: 10328
components:
- type: Transform
- pos: 38.5,-30.5
+ pos: -8.5,-0.5
parent: 2
- - uid: 12367
+ - uid: 10363
components:
- type: Transform
- pos: 38.5,-31.5
+ pos: 43.5,41.5
parent: 2
- - uid: 12368
+ - uid: 10364
components:
- type: Transform
- pos: 38.5,-32.5
+ pos: 42.5,41.5
parent: 2
- - uid: 12369
+ - uid: 12102
components:
- type: Transform
- pos: 38.5,-33.5
+ pos: -41.5,30.5
parent: 2
- - uid: 12370
+ - uid: 13038
components:
- type: Transform
- pos: 37.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-13.5
parent: 2
- - uid: 12371
+ - uid: 13063
components:
- type: Transform
- pos: 36.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-13.5
parent: 2
- - uid: 12372
+ - uid: 20800
components:
- type: Transform
- pos: 35.5,-33.5
+ pos: -41.5,29.5
parent: 2
- - uid: 12373
+ - uid: 21061
components:
- type: Transform
- pos: 34.5,-33.5
+ pos: -41.5,31.5
parent: 2
- - uid: 12374
+ - uid: 21175
components:
- type: Transform
- pos: 33.5,-33.5
+ pos: -8.5,-2.5
parent: 2
- - uid: 12375
+ - uid: 22577
components:
- type: Transform
- pos: 32.5,-33.5
+ pos: 74.5,-18.5
parent: 2
- - uid: 12376
+ - uid: 24813
components:
- type: Transform
- pos: 31.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,48.5
parent: 2
- - uid: 12377
+ - uid: 30651
components:
- type: Transform
- pos: 30.5,-33.5
+ pos: 42.5,-24.5
parent: 2
- - uid: 12378
+ - uid: 37535
components:
- type: Transform
- pos: 29.5,-33.5
+ pos: 3.5,49.5
parent: 2
- - uid: 12379
+- proto: BorgChargerCircuitboard
+ entities:
+ - uid: 35815
components:
- type: Transform
- pos: 29.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -51.608044,27.465218
parent: 2
- - uid: 12380
+- proto: BoxBeaker
+ entities:
+ - uid: 5218
components:
- type: Transform
- pos: 29.5,-31.5
+ pos: 42.69885,40.389374
parent: 2
- - uid: 12381
+ - uid: 5274
components:
- type: Transform
- pos: 29.5,-30.5
+ pos: 26.526403,30.16116
parent: 2
- - uid: 12382
+- proto: BoxBeanbag
+ entities:
+ - uid: 2022
components:
- type: Transform
- pos: 29.5,-29.5
+ pos: -35.49267,-25.180895
parent: 2
- - uid: 12383
+ - uid: 28980
components:
- type: Transform
- pos: 29.5,-28.5
+ pos: -10.559509,37.88904
parent: 2
- - uid: 12384
+- proto: BoxBodyBag
+ entities:
+ - uid: 14361
components:
- type: Transform
- pos: 29.5,-27.5
+ pos: 33.520065,7.7741747
parent: 2
- - uid: 12385
+- proto: BoxBottle
+ entities:
+ - uid: 5272
components:
- type: Transform
- pos: 39.5,-24.5
+ pos: 26.24058,30.06741
parent: 2
- - uid: 12386
+ - uid: 5273
components:
- type: Transform
- pos: 39.5,-23.5
+ pos: 42.52156,40.685276
parent: 2
- - uid: 12387
+- proto: BoxColoredLighttube
+ entities:
+ - uid: 6927
components:
- type: Transform
- pos: 39.5,-22.5
+ pos: -17.250168,-25.645372
parent: 2
- - uid: 12388
+- proto: BoxEvidenceMarkers
+ entities:
+ - uid: 37610
components:
- type: Transform
- pos: 40.5,-22.5
+ pos: -19.265078,-8.948151
parent: 2
- - uid: 12389
+- proto: BoxFlare
+ entities:
+ - uid: 6074
components:
- type: Transform
- pos: 41.5,-22.5
+ pos: 21.738016,27.014511
parent: 2
- - uid: 12390
+- proto: BoxFolderBlack
+ entities:
+ - uid: 1371
components:
- type: Transform
- pos: 42.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -28.548372,-9.390477
parent: 2
- - uid: 12391
+ - uid: 1556
components:
- type: Transform
- pos: 43.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -28.329622,-9.281102
parent: 2
- - uid: 12392
+- proto: BoxFolderBlue
+ entities:
+ - uid: 1974
components:
- type: Transform
- pos: 35.5,-23.5
+ pos: 4.678361,30.31601
parent: 2
- - uid: 12393
+ - uid: 2544
components:
- type: Transform
- pos: 35.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 35.622833,46.63146
parent: 2
- - uid: 12394
+ - uid: 2639
components:
- type: Transform
- pos: 35.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 29.571444,51.824425
parent: 2
- - uid: 12395
+ - uid: 5684
components:
- type: Transform
- pos: 35.5,-20.5
+ pos: 26.666578,30.836124
parent: 2
- - uid: 12396
+ - uid: 6007
components:
- type: Transform
- pos: 35.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -16.482533,-9.419142
parent: 2
- - uid: 12397
+ - uid: 13928
components:
- type: Transform
- pos: 35.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 12.559872,41.510433
parent: 2
- - uid: 12398
+ - uid: 14284
components:
- type: Transform
- pos: 15.5,-24.5
+ pos: 12.142567,43.605385
parent: 2
- - uid: 12399
+- proto: BoxFolderGrey
+ entities:
+ - uid: 36135
components:
- type: Transform
- pos: 16.5,-24.5
+ pos: -14.601701,59.650887
parent: 2
- - uid: 12400
+- proto: BoxFolderRed
+ entities:
+ - uid: 3292
components:
- type: Transform
- pos: 25.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -8.359024,32.85439
parent: 2
- - uid: 12401
+ - uid: 3600
components:
- type: Transform
- pos: 24.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 35.868927,46.549427
parent: 2
- - uid: 12402
+ - uid: 5683
components:
- type: Transform
- pos: 23.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 27.798252,25.56962
parent: 2
- - uid: 12403
+ - uid: 15577
components:
- type: Transform
- pos: 22.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -20.696613,27.526642
parent: 2
- - uid: 12404
+ - uid: 15759
components:
- type: Transform
- pos: 21.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -5.4797015,25.516685
parent: 2
- - uid: 12405
+ - uid: 15973
components:
- type: Transform
- pos: 20.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -21.552172,-9.104304
parent: 2
- - uid: 12406
+ - uid: 16626
components:
- type: Transform
- pos: 20.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -5.418318,59.00392
parent: 2
- - uid: 12407
+ - uid: 18144
components:
- type: Transform
- pos: 20.5,-26.5
+ pos: -20.366472,62.555527
parent: 2
- - uid: 12408
+ - uid: 25994
components:
- type: Transform
- pos: 20.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -18.485779,50.77993
parent: 2
- - uid: 12409
+ - uid: 30250
components:
- type: Transform
- pos: 20.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 46.54279,25.26798
parent: 2
- - uid: 12410
+- proto: BoxFolderWhite
+ entities:
+ - uid: 5586
components:
- type: Transform
- pos: 20.5,-29.5
+ pos: 52.645294,27.933067
parent: 2
- - uid: 12411
+- proto: BoxFolderYellow
+ entities:
+ - uid: 3628
components:
- type: Transform
- pos: 20.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 50.48221,46.959583
parent: 2
- - uid: 12412
+ - uid: 6579
components:
- type: Transform
- pos: 20.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -28.353495,-20.339878
parent: 2
- - uid: 12413
+ - uid: 6580
components:
- type: Transform
- pos: 19.5,-31.5
+ pos: -15.146463,-22.48441
parent: 2
- - uid: 12414
+ - uid: 6863
components:
- type: Transform
- pos: 18.5,-31.5
+ pos: -28.039324,-23.280666
parent: 2
- - uid: 12415
+ - uid: 8830
components:
- type: Transform
- pos: 17.5,-31.5
+ pos: -58.142708,13.665349
parent: 2
- - uid: 12416
+ - uid: 13268
components:
- type: Transform
- pos: 16.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -68.57434,12.654488
parent: 2
- - uid: 12417
+ - uid: 13316
components:
- type: Transform
- pos: 15.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -73.66809,15.138863
parent: 2
- - uid: 12418
+ - uid: 26581
components:
- type: Transform
- pos: 14.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -49.15854,14.624955
parent: 2
- - uid: 12419
+- proto: BoxForensicPad
+ entities:
+ - uid: 16411
components:
- type: Transform
- pos: 14.5,-30.5
+ pos: -20.134216,51.537743
parent: 2
- - uid: 12420
+- proto: BoxInflatable
+ entities:
+ - uid: 3339
components:
- type: Transform
- pos: 14.5,-29.5
+ pos: 22.940916,-18.286457
parent: 2
- - uid: 12421
+- proto: BoxingBell
+ entities:
+ - uid: 5985
components:
- type: Transform
- pos: 25.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-27.5
parent: 2
- - uid: 12422
+- proto: BoxLightMixed
+ entities:
+ - uid: 18535
components:
- type: Transform
- pos: 25.5,-22.5
+ pos: -34.912834,11.965144
parent: 2
- - uid: 12423
+- proto: BoxLighttube
+ entities:
+ - uid: 1983
components:
- type: Transform
- pos: 25.5,-21.5
+ pos: -17.234543,-25.223497
parent: 2
- - uid: 12424
+ - uid: 18533
components:
- type: Transform
- pos: 14.5,-32.5
+ pos: -36.46752,12.777644
parent: 2
- - uid: 12425
+- proto: BoxMagazinePistolHighCapacityPractice
+ entities:
+ - uid: 10566
components:
- type: Transform
- pos: 14.5,-33.5
+ pos: -29.222647,43.720715
parent: 2
- - uid: 12426
+- proto: BoxMagazinePistolPractice
+ entities:
+ - uid: 10347
components:
- type: Transform
- pos: 14.5,-34.5
+ pos: -29.496084,43.720715
parent: 2
- - uid: 12427
+- proto: BoxMagazinePistolSubMachineGunPractice
+ entities:
+ - uid: 9690
components:
- type: Transform
- pos: 14.5,-35.5
+ pos: -29.738272,43.533215
parent: 2
- - uid: 12428
+- proto: BoxMaintenanceLightbulb
+ entities:
+ - uid: 6929
components:
- type: Transform
- pos: 14.5,-36.5
+ pos: -17.63298,-25.41881
parent: 2
- - uid: 12429
+- proto: BoxMousetrap
+ entities:
+ - uid: 22443
components:
- type: Transform
- pos: 15.5,-36.5
+ pos: 35.682877,-0.2850566
parent: 2
- - uid: 12430
+ - uid: 22446
components:
- type: Transform
- pos: 16.5,-36.5
+ pos: -62.527683,-9.424064
parent: 2
- - uid: 12431
+ - uid: 29337
components:
- type: Transform
- pos: 17.5,-36.5
+ pos: -38.30502,13.848981
parent: 2
- - uid: 12432
+- proto: BoxMouthSwab
+ entities:
+ - uid: 22130
components:
- type: Transform
- pos: 18.5,-36.5
+ pos: -5.5337806,7.6475763
parent: 2
- - uid: 12433
+- proto: BoxPillCanister
+ entities:
+ - uid: 1572
components:
- type: Transform
- pos: 19.5,-36.5
+ pos: 34.37204,7.7371597
parent: 2
- - uid: 12434
+- proto: BoxShotgunPractice
+ entities:
+ - uid: 17014
components:
- type: Transform
- pos: 20.5,-36.5
+ pos: -33.683586,43.79884
parent: 2
- - uid: 12435
+- proto: BoxSyringe
+ entities:
+ - uid: 1571
components:
- type: Transform
- pos: 21.5,-36.5
+ pos: 34.746628,7.6960497
parent: 2
- - uid: 12436
+ - uid: 5734
components:
- type: Transform
- pos: 21.5,-34.5
+ pos: 26.533548,29.86819
parent: 2
- - uid: 12437
+ - uid: 19740
components:
- type: Transform
- pos: 21.5,-33.5
+ pos: -35.085148,35.682205
parent: 2
- - uid: 12438
+- proto: BoxTrashbag
+ entities:
+ - uid: 16667
components:
- type: Transform
- pos: 21.5,-32.5
+ pos: -36.65377,12.904733
parent: 2
- - uid: 12439
+ - uid: 16668
components:
- type: Transform
- pos: 21.5,-31.5
+ pos: -36.15315,12.824276
parent: 2
- - uid: 12440
+ - uid: 18522
components:
- type: Transform
- pos: 22.5,-33.5
+ pos: -40.941586,10.694257
parent: 2
- - uid: 12441
+- proto: BoxZiptie
+ entities:
+ - uid: 19402
components:
- type: Transform
- pos: 23.5,-33.5
+ pos: -10.052842,42.825188
parent: 2
- - uid: 12442
+- proto: BrbSign
+ entities:
+ - uid: 1948
components:
- type: Transform
- pos: 24.5,-33.5
+ pos: 7.2711744,26.512077
parent: 2
- - uid: 12443
+ - uid: 3074
components:
- type: Transform
- pos: 25.5,-33.5
+ pos: -21.278025,27.549713
parent: 2
- - uid: 12444
+ - uid: 5576
components:
- type: Transform
- pos: 21.5,-35.5
+ pos: 28.979942,25.475557
parent: 2
- - uid: 12445
+ - uid: 6581
components:
- type: Transform
- pos: 25.5,-32.5
+ pos: -15.580057,-22.449253
parent: 2
- - uid: 12446
+ - uid: 6583
components:
- type: Transform
- pos: 25.5,-31.5
+ pos: -8.487982,-22.449253
parent: 2
- - uid: 12447
+ - uid: 7207
components:
- type: Transform
- pos: 25.5,-30.5
+ pos: -50.236664,14.562455
parent: 2
- - uid: 12448
+ - uid: 13096
components:
- type: Transform
- pos: 25.5,-29.5
+ pos: -1.4089859,-32.930393
parent: 2
- - uid: 12449
+ - uid: 13097
components:
- type: Transform
- pos: 25.5,-28.5
+ pos: -3.846486,-34.38352
parent: 2
- - uid: 12450
+ - uid: 14181
components:
- type: Transform
- pos: 24.5,-28.5
+ pos: 13.606747,41.52606
parent: 2
- - uid: 12452
+- proto: BriefcaseBrown
+ entities:
+ - uid: 9331
components:
- type: Transform
- pos: 18.5,53.5
+ pos: -21.509632,-8.514624
parent: 2
- - uid: 12454
+ - uid: 15599
components:
- type: Transform
- pos: 42.5,-26.5
+ pos: -10.275509,55.80156
parent: 2
- - uid: 12455
+ - uid: 19375
components:
- type: Transform
- pos: 43.5,-26.5
+ pos: -5.7113194,59.69308
parent: 2
- - uid: 12456
+ - uid: 19451
components:
- type: Transform
- pos: 44.5,-26.5
+ pos: -14.122912,57.765083
parent: 2
- - uid: 12457
+ - uid: 23203
components:
- type: Transform
- pos: 45.5,-26.5
+ pos: -13.843665,53.80388
parent: 2
- - uid: 12458
+ - uid: 30388
components:
- type: Transform
- pos: 46.5,-26.5
+ pos: -9.273353,48.288254
parent: 2
- - uid: 12459
+ - uid: 30391
components:
- type: Transform
- pos: 46.5,-25.5
+ pos: -14.294787,58.054146
parent: 2
- - uid: 12460
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 37593
components:
- type: Transform
- pos: 46.5,-24.5
+ pos: -42.012943,-28.851465
parent: 2
- - uid: 12461
+ - uid: 37594
components:
- type: Transform
- pos: 46.5,-23.5
+ pos: -47.731915,-34.858242
parent: 2
- - uid: 12462
+- proto: BrigTimer
+ entities:
+ - uid: 319
components:
- type: Transform
- pos: 46.5,-22.5
+ pos: -7.5,65.5
parent: 2
- - uid: 12463
+ - uid: 12302
components:
- type: Transform
- pos: 46.5,-21.5
+ pos: -6.5,65.5
parent: 2
- - uid: 12465
+ - uid: 22619
components:
+ - type: MetaData
+ name: cell 2 brig timer
- type: Transform
- pos: 44.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,31.5
parent: 2
- - uid: 12466
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15409:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ 15453:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 22620
components:
+ - type: MetaData
+ name: cell 1 brig timer
- type: Transform
- pos: 44.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,31.5
parent: 2
- - uid: 12467
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15455:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ 15457:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 22621
components:
+ - type: MetaData
+ name: cell 4 brig timer
- type: Transform
- pos: 44.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,27.5
parent: 2
- - uid: 12468
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15389:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ 15363:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 22622
components:
+ - type: MetaData
+ name: cell 3 brig timer
- type: Transform
- pos: 44.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,27.5
parent: 2
- - uid: 12469
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15388:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ 15362:
+ - Start: Close
+ - Timer: AutoClose
+ - Timer: Open
+ - uid: 22629
components:
- type: Transform
- pos: 44.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,65.5
parent: 2
- - uid: 12470
+- proto: BrokenBottle
+ entities:
+ - uid: 4740
components:
- type: Transform
- pos: 44.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 91.9991,79.294754
parent: 2
- - uid: 12471
+ - uid: 4742
components:
- type: Transform
- pos: 44.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 99.69441,76.96663
parent: 2
- - uid: 12472
+ - uid: 5377
components:
- type: Transform
- pos: 45.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 60.948177,54.21262
parent: 2
- - uid: 12473
+ - uid: 6999
components:
- type: Transform
- pos: 46.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -30.60816,-33.617603
parent: 2
- - uid: 12474
+ - uid: 7000
components:
- type: Transform
- pos: 47.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -32.670662,-33.430103
parent: 2
- - uid: 12475
+ - uid: 7001
components:
- type: Transform
- pos: 48.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -30.959723,-37.519947
parent: 2
- - uid: 12476
+ - uid: 7002
components:
- type: Transform
- pos: 49.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -28.440191,-38.492603
parent: 2
- - uid: 12477
+ - uid: 7003
components:
- type: Transform
- pos: 49.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -27.948004,-38.281666
parent: 2
- - uid: 12478
+ - uid: 7004
components:
- type: Transform
- pos: 49.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -25.615973,-30.945728
parent: 2
- - uid: 12479
+ - uid: 8194
components:
- type: Transform
- pos: 50.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 90.545975,74.74007
parent: 2
- - uid: 12480
+ - uid: 31430
components:
- type: Transform
- pos: 51.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -38.65829,-35.002666
parent: 2
- - uid: 12481
+ - uid: 31577
components:
- type: Transform
- pos: 51.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -44.32373,-31.253592
parent: 2
- - uid: 12482
+- proto: Brutepack
+ entities:
+ - uid: 7794
components:
- type: Transform
- pos: 52.5,-30.5
+ pos: 12.795097,-11.247698
parent: 2
- - uid: 12483
+ - uid: 13085
components:
- type: Transform
- pos: 53.5,-30.5
+ pos: 4.66723,-31.36642
parent: 2
- - uid: 12484
+- proto: Bucket
+ entities:
+ - uid: 7508
components:
- type: Transform
- pos: 54.5,-30.5
+ pos: -53.66643,0.9027996
parent: 2
- - uid: 12485
+ - uid: 7697
components:
- type: Transform
- pos: 55.5,-30.5
+ pos: -53.400806,0.7152996
parent: 2
- - uid: 12486
+ - uid: 10069
components:
- type: Transform
- pos: 56.5,-30.5
+ pos: 39.72329,16.203526
parent: 2
- - uid: 12487
+ - uid: 18157
components:
- type: Transform
- pos: 57.5,-30.5
+ pos: -29.618675,61.80233
parent: 2
- - uid: 12488
+ - uid: 18158
components:
- type: Transform
- pos: 58.5,-30.5
+ pos: -29.3218,61.61483
parent: 2
- - uid: 12489
+ - uid: 18433
components:
- type: Transform
- pos: 59.5,-30.5
+ pos: -51.494556,0.7309246
parent: 2
- - uid: 12490
+ - uid: 22379
components:
- type: Transform
- pos: 60.5,-30.5
+ pos: -29.80373,3.9763246
parent: 2
- - uid: 12491
+ - uid: 28076
components:
- type: Transform
- pos: 21.5,49.5
+ pos: 23.64664,-22.307875
parent: 2
- - uid: 12492
+ - uid: 28077
components:
- type: Transform
- pos: 28.5,53.5
+ pos: 23.388828,-22.440687
parent: 2
- - uid: 12493
+ - uid: 34121
components:
- type: Transform
- pos: 27.5,53.5
+ pos: -20.671652,53.5433
parent: 2
- - uid: 12494
+ - uid: 38125
components:
- type: Transform
- pos: 60.5,-26.5
+ pos: -76.76681,19.402662
parent: 2
- - uid: 12495
+ - uid: 38709
components:
- type: Transform
- pos: 60.5,-25.5
+ pos: -38.59799,72.685684
parent: 2
- - uid: 12496
+ - uid: 38710
components:
- type: Transform
- pos: 60.5,-24.5
+ pos: 34.92118,57.8437
parent: 2
- - uid: 12497
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 9233
components:
- type: Transform
- pos: 60.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,65.5
parent: 2
- - uid: 12498
+ - uid: 24434
components:
- type: Transform
- pos: 60.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,48.5
parent: 2
- - uid: 12499
+ - uid: 29278
components:
- type: Transform
- pos: 60.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,28.5
parent: 2
- - uid: 12500
+ - uid: 30962
components:
- type: Transform
- pos: 60.5,-20.5
+ pos: -4.5,44.5
parent: 2
- - uid: 12501
+ - uid: 34351
components:
- type: Transform
- pos: 60.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,47.5
parent: 2
- - uid: 12502
+ - uid: 34353
components:
- type: Transform
- pos: 60.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,27.5
parent: 2
- - uid: 12503
+ - uid: 34356
components:
- type: Transform
- pos: 60.5,-17.5
+ pos: -27.5,31.5
parent: 2
- - uid: 12504
+ - uid: 34360
components:
- type: Transform
- pos: 60.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,59.5
parent: 2
- - uid: 12506
+ - uid: 36933
components:
- type: Transform
- pos: 60.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,28.5
parent: 2
- - uid: 12507
+ - uid: 37448
components:
- type: Transform
- pos: 60.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
parent: 2
- - uid: 12508
+ - uid: 37458
components:
- type: Transform
- pos: 60.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,22.5
parent: 2
- - uid: 12509
+ - uid: 37531
components:
- type: Transform
- pos: 60.5,-11.5
+ pos: -14.5,47.5
parent: 2
- - uid: 12510
+ - uid: 37875
components:
- type: Transform
- pos: 60.5,-10.5
+ pos: -78.5,15.5
parent: 2
- - uid: 12512
+ - uid: 37876
components:
- type: Transform
- pos: 60.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,57.5
parent: 2
- - uid: 12513
+ - uid: 37877
components:
- type: Transform
- pos: 60.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,57.5
parent: 2
- - uid: 12514
+ - uid: 37955
components:
- type: Transform
- pos: 60.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,50.5
parent: 2
- - uid: 12515
+ - uid: 37993
components:
- type: Transform
- pos: 60.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,50.5
parent: 2
- - uid: 12516
+ - uid: 37998
components:
- type: Transform
- pos: 60.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,51.5
parent: 2
- - uid: 12517
+ - uid: 38013
components:
- type: Transform
- pos: 60.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,51.5
parent: 2
- - uid: 12518
+ - uid: 38128
components:
- type: Transform
- pos: 60.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,48.5
parent: 2
- - uid: 12519
+ - uid: 38957
components:
- type: Transform
- pos: 60.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,71.5
parent: 2
- - uid: 12520
+ - uid: 38958
components:
- type: Transform
- pos: 59.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,76.5
parent: 2
- - uid: 12521
+ - uid: 38965
components:
- type: Transform
- pos: 58.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-19.5
parent: 2
- - uid: 12522
+ - uid: 38966
components:
- type: Transform
- pos: 57.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-13.5
parent: 2
- - uid: 12523
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 20547
components:
- type: Transform
- pos: 56.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-12.5
parent: 2
- - uid: 12524
+ - uid: 28381
components:
- type: Transform
- pos: 55.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
parent: 2
- - uid: 12525
+ - uid: 34358
components:
- type: Transform
- pos: 54.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,28.5
parent: 2
- - uid: 12526
+ - uid: 34359
components:
- type: Transform
- pos: 53.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,47.5
parent: 2
- - uid: 12527
+ - uid: 37127
components:
- type: Transform
- pos: 53.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,28.5
parent: 2
- - uid: 12528
+ - uid: 37128
components:
- type: Transform
- pos: 53.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,37.5
parent: 2
- - uid: 12529
+ - uid: 37197
components:
- type: Transform
- pos: 53.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,34.5
parent: 2
- - uid: 12530
+ - uid: 37523
components:
- type: Transform
- pos: 53.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,42.5
parent: 2
- - uid: 12531
+- proto: ButtonFrameExit
+ entities:
+ - uid: 968
components:
- type: Transform
- pos: 54.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,3.5
parent: 2
- - uid: 12532
+ - uid: 34404
components:
- type: Transform
- pos: 54.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,5.5
parent: 2
- - uid: 12533
+ - uid: 34405
components:
- type: Transform
- pos: 54.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,4.5
parent: 2
- - uid: 12534
+- proto: ButtonFrameJanitor
+ entities:
+ - uid: 15554
components:
- type: Transform
- pos: 54.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,60.5
parent: 2
- - uid: 12535
+ - uid: 34348
components:
- type: Transform
- pos: 54.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,14.5
parent: 2
- - uid: 12536
+ - uid: 34365
components:
- type: Transform
- pos: 54.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-0.5
parent: 2
- - uid: 12537
+ - uid: 35856
components:
- type: Transform
- pos: 54.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-23.5
parent: 2
- - uid: 12538
+ - uid: 36096
components:
- type: Transform
- pos: 54.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-23.5
parent: 2
- - uid: 12539
+ - uid: 36174
components:
- type: Transform
- pos: 54.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-0.5
parent: 2
- - uid: 12540
+ - uid: 36180
components:
- type: Transform
- pos: 54.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -70.5,13.5
parent: 2
- - uid: 12541
+ - uid: 36930
components:
- type: Transform
- pos: 54.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,27.5
parent: 2
- - uid: 12542
+ - uid: 36932
components:
- type: Transform
- pos: 54.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-13.5
parent: 2
- - uid: 12543
+ - uid: 37461
components:
- type: Transform
- pos: 54.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,25.5
parent: 2
- - uid: 12544
+ - uid: 37506
components:
- type: Transform
- pos: 54.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,23.5
parent: 2
- - uid: 12545
+ - uid: 37507
components:
- type: Transform
- pos: 54.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-19.5
parent: 2
- - uid: 12546
+- proto: CableApcExtension
+ entities:
+ - uid: 29
components:
- type: Transform
- pos: 54.5,-20.5
+ pos: -41.5,-34.5
parent: 2
- - uid: 12547
+ - uid: 88
components:
- type: Transform
- pos: 54.5,-21.5
+ pos: -48.5,7.5
parent: 2
- - uid: 12548
+ - uid: 116
components:
- type: Transform
- pos: 54.5,-22.5
+ pos: 102.5,71.5
parent: 2
- - uid: 12549
+ - uid: 156
components:
- type: Transform
- pos: 54.5,-23.5
+ pos: -42.5,26.5
parent: 2
- - uid: 12550
+ - uid: 192
components:
- type: Transform
- pos: 54.5,-24.5
+ pos: -45.5,-30.5
parent: 2
- - uid: 12551
+ - uid: 249
components:
- type: Transform
- pos: 54.5,-25.5
+ pos: -3.5,-20.5
parent: 2
- - uid: 12552
+ - uid: 265
components:
- type: Transform
- pos: 54.5,-26.5
+ pos: -38.5,-34.5
parent: 2
- - uid: 12553
+ - uid: 303
components:
- type: Transform
- pos: 55.5,-26.5
+ pos: -104.5,30.5
parent: 2
- - uid: 12554
+ - uid: 304
components:
- type: Transform
- pos: 56.5,-26.5
+ pos: -103.5,30.5
parent: 2
- - uid: 12555
+ - uid: 396
components:
- type: Transform
- pos: 57.5,-26.5
+ pos: 35.5,11.5
parent: 2
- - uid: 12556
+ - uid: 404
components:
- type: Transform
- pos: 58.5,-26.5
+ pos: -20.5,-43.5
parent: 2
- - uid: 12557
+ - uid: 416
components:
- type: Transform
- pos: 59.5,-26.5
+ pos: 22.5,25.5
parent: 2
- - uid: 12558
+ - uid: 426
components:
- type: Transform
- pos: 53.5,-20.5
+ pos: 9.5,-12.5
parent: 2
- - uid: 12559
+ - uid: 442
components:
- type: Transform
- pos: 52.5,-20.5
+ pos: 9.5,-11.5
parent: 2
- - uid: 12560
+ - uid: 444
components:
- type: Transform
- pos: 51.5,-20.5
+ pos: -64.5,-7.5
parent: 2
- - uid: 12561
+ - uid: 445
components:
- type: Transform
- pos: 50.5,-20.5
+ pos: -64.5,-8.5
parent: 2
- - uid: 12562
+ - uid: 446
components:
- type: Transform
- pos: 50.5,-21.5
+ pos: -64.5,-9.5
parent: 2
- - uid: 12563
+ - uid: 447
components:
- type: Transform
- pos: 50.5,-22.5
+ pos: -64.5,-6.5
parent: 2
- - uid: 12564
+ - uid: 449
components:
- type: Transform
- pos: 50.5,-23.5
+ pos: 9.5,-10.5
parent: 2
- - uid: 12565
+ - uid: 451
components:
- type: Transform
- pos: 50.5,-24.5
+ pos: 9.5,-9.5
parent: 2
- - uid: 12566
+ - uid: 452
components:
- type: Transform
- pos: 51.5,-24.5
+ pos: 9.5,-8.5
parent: 2
- - uid: 12567
+ - uid: 453
components:
- type: Transform
- pos: 52.5,-24.5
+ pos: 9.5,-7.5
parent: 2
- - uid: 12568
+ - uid: 454
components:
- type: Transform
- pos: 53.5,-24.5
+ pos: 9.5,-6.5
parent: 2
- - uid: 12569
+ - uid: 455
components:
- type: Transform
- pos: 61.5,-16.5
+ pos: 9.5,-5.5
parent: 2
- - uid: 12570
+ - uid: 462
components:
- type: Transform
- pos: 62.5,-16.5
+ pos: 8.5,-5.5
parent: 2
- - uid: 12571
+ - uid: 463
components:
- type: Transform
- pos: 63.5,-16.5
+ pos: 7.5,-5.5
parent: 2
- - uid: 12572
+ - uid: 468
components:
- type: Transform
- pos: 64.5,-16.5
+ pos: 10.5,-5.5
parent: 2
- - uid: 12573
+ - uid: 469
components:
- type: Transform
- pos: 65.5,-16.5
+ pos: 8.5,-9.5
parent: 2
- - uid: 12574
+ - uid: 470
components:
- type: Transform
- pos: 66.5,-16.5
+ pos: 8.5,-9.5
parent: 2
- - uid: 12575
+ - uid: 471
components:
- type: Transform
- pos: 67.5,-16.5
+ pos: 10.5,-9.5
parent: 2
- - uid: 12576
+ - uid: 472
components:
- type: Transform
- pos: 68.5,-16.5
+ pos: 10.5,-9.5
parent: 2
- - uid: 12577
+ - uid: 473
components:
- type: Transform
- pos: 69.5,-16.5
+ pos: 11.5,-9.5
parent: 2
- - uid: 12578
+ - uid: 551
components:
- type: Transform
- pos: 70.5,-16.5
+ pos: -64.5,-5.5
parent: 2
- - uid: 12579
+ - uid: 627
components:
- type: Transform
- pos: 71.5,-16.5
+ pos: -40.5,71.5
parent: 2
- - uid: 12580
+ - uid: 638
components:
- type: Transform
- pos: 72.5,-16.5
+ pos: -64.5,-10.5
parent: 2
- - uid: 12581
+ - uid: 639
components:
- type: Transform
- pos: 73.5,-16.5
+ pos: -64.5,-11.5
parent: 2
- - uid: 12582
+ - uid: 642
components:
- type: Transform
- pos: 74.5,-16.5
+ pos: -63.5,-11.5
parent: 2
- - uid: 12583
+ - uid: 646
components:
- type: Transform
- pos: 75.5,-16.5
+ pos: -35.5,30.5
parent: 2
- - uid: 12584
+ - uid: 651
components:
- type: Transform
- pos: 15.5,47.5
+ pos: -62.5,-11.5
parent: 2
- - uid: 12585
+ - uid: 655
components:
- type: Transform
- pos: -39.5,-30.5
+ pos: -35.5,31.5
parent: 2
- - uid: 12586
+ - uid: 659
components:
- type: Transform
- pos: 77.5,-15.5
+ pos: -61.5,-12.5
parent: 2
- - uid: 12587
+ - uid: 661
components:
- type: Transform
- pos: 78.5,-15.5
+ pos: -61.5,-23.5
parent: 2
- - uid: 12588
+ - uid: 662
components:
- type: Transform
- pos: 79.5,-15.5
+ pos: -61.5,-22.5
parent: 2
- - uid: 12589
+ - uid: 663
components:
- type: Transform
- pos: 80.5,-15.5
+ pos: -61.5,-20.5
parent: 2
- - uid: 12590
+ - uid: 664
components:
- type: Transform
- pos: 81.5,-15.5
+ pos: -42.5,58.5
parent: 2
- - uid: 12591
+ - uid: 665
components:
- type: Transform
- pos: 77.5,-17.5
+ pos: -42.5,69.5
parent: 2
- - uid: 12592
+ - uid: 666
components:
- type: Transform
- pos: 78.5,-17.5
+ pos: -41.5,69.5
parent: 2
- - uid: 12593
+ - uid: 667
components:
- type: Transform
- pos: 79.5,-17.5
+ pos: -61.5,-21.5
parent: 2
- - uid: 12594
+ - uid: 668
components:
- type: Transform
- pos: 80.5,-17.5
+ pos: -61.5,-18.5
parent: 2
- - uid: 12595
+ - uid: 671
components:
- type: Transform
- pos: 81.5,-17.5
+ pos: -61.5,-19.5
parent: 2
- - uid: 12597
+ - uid: 672
components:
- type: Transform
- pos: 51.5,49.5
+ pos: -61.5,-17.5
parent: 2
- - uid: 12598
+ - uid: 678
components:
- type: Transform
- pos: 76.5,-19.5
+ pos: -61.5,-16.5
parent: 2
- - uid: 12599
+ - uid: 683
components:
- type: Transform
- pos: 76.5,-20.5
+ pos: -64.5,-4.5
parent: 2
- - uid: 12600
+ - uid: 748
components:
- type: Transform
- pos: 75.5,-20.5
+ pos: -61.5,-13.5
parent: 2
- - uid: 12601
+ - uid: 797
components:
- type: Transform
- pos: 74.5,-20.5
+ pos: -42.5,-29.5
parent: 2
- - uid: 12602
+ - uid: 823
components:
- type: Transform
- pos: 73.5,-20.5
+ pos: -96.5,-9.5
parent: 2
- - uid: 12603
+ - uid: 828
components:
- type: Transform
- pos: 72.5,-20.5
+ pos: -61.5,-14.5
parent: 2
- - uid: 12604
+ - uid: 831
components:
- type: Transform
- pos: 71.5,-20.5
+ pos: -61.5,-15.5
parent: 2
- - uid: 12605
+ - uid: 891
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: 34.5,11.5
parent: 2
- - uid: 12606
+ - uid: 930
components:
- type: Transform
- pos: 70.5,-21.5
+ pos: 11.5,-9.5
parent: 2
- - uid: 12607
+ - uid: 935
components:
- type: Transform
- pos: 70.5,-22.5
+ pos: 7.5,-9.5
parent: 2
- - uid: 12608
+ - uid: 940
components:
- type: Transform
- pos: 70.5,-23.5
+ pos: 7.5,-9.5
parent: 2
- - uid: 12609
+ - uid: 962
components:
- type: Transform
- pos: 70.5,-24.5
+ pos: 8.5,13.5
parent: 2
- - uid: 12610
+ - uid: 999
components:
- type: Transform
- pos: 69.5,-24.5
+ pos: -37.5,-33.5
parent: 2
- - uid: 12611
+ - uid: 1028
components:
- type: Transform
- pos: 69.5,-25.5
+ pos: -37.5,-34.5
parent: 2
- - uid: 12612
+ - uid: 1083
components:
- type: Transform
- pos: 69.5,-26.5
+ pos: -43.5,-27.5
parent: 2
- - uid: 12613
+ - uid: 1161
components:
- type: Transform
- pos: 68.5,-26.5
+ pos: 31.5,3.5
parent: 2
- - uid: 12614
+ - uid: 1162
components:
- type: Transform
- pos: 68.5,-27.5
+ pos: 27.5,12.5
parent: 2
- - uid: 12615
+ - uid: 1243
components:
- type: Transform
- pos: 67.5,-27.5
+ pos: 32.5,-5.5
parent: 2
- - uid: 12616
+ - uid: 1275
components:
- type: Transform
- pos: 66.5,-27.5
+ pos: -9.5,3.5
parent: 2
- - uid: 12617
+ - uid: 1292
components:
- type: Transform
- pos: 66.5,-28.5
+ pos: 22.5,6.5
parent: 2
- - uid: 12618
+ - uid: 1323
components:
- type: Transform
- pos: 65.5,-28.5
+ pos: -52.5,-28.5
parent: 2
- - uid: 12619
+ - uid: 1350
components:
- type: Transform
- pos: 64.5,-28.5
+ pos: 19.5,14.5
parent: 2
- - uid: 12620
+ - uid: 1351
components:
- type: Transform
- pos: 63.5,-28.5
+ pos: 14.5,11.5
parent: 2
- - uid: 12621
+ - uid: 1352
components:
- type: Transform
- pos: 63.5,-29.5
+ pos: 13.5,11.5
parent: 2
- - uid: 12622
+ - uid: 1353
components:
- type: Transform
- pos: 62.5,-29.5
+ pos: 12.5,11.5
parent: 2
- - uid: 12623
+ - uid: 1378
components:
- type: Transform
- pos: 62.5,-30.5
+ pos: 31.5,5.5
parent: 2
- - uid: 12624
+ - uid: 1494
components:
- type: Transform
- pos: 61.5,-30.5
+ pos: 9.5,11.5
parent: 2
- - uid: 12626
+ - uid: 1495
components:
- type: Transform
- pos: 76.5,-14.5
+ pos: 11.5,11.5
parent: 2
- - uid: 12627
+ - uid: 1497
components:
- type: Transform
- pos: 76.5,-13.5
+ pos: 10.5,11.5
parent: 2
- - uid: 12628
+ - uid: 1498
components:
- type: Transform
- pos: 76.5,-12.5
+ pos: 16.5,11.5
parent: 2
- - uid: 12629
+ - uid: 1501
components:
- type: Transform
- pos: 76.5,-11.5
+ pos: 15.5,11.5
parent: 2
- - uid: 12630
+ - uid: 1502
components:
- type: Transform
- pos: 76.5,-10.5
+ pos: 20.5,12.5
parent: 2
- - uid: 12631
+ - uid: 1504
components:
- type: Transform
- pos: 77.5,-10.5
+ pos: 20.5,16.5
parent: 2
- - uid: 12632
+ - uid: 1506
components:
- type: Transform
- pos: 77.5,-9.5
+ pos: 21.5,6.5
parent: 2
- - uid: 12633
+ - uid: 1507
components:
- type: Transform
- pos: 77.5,-8.5
+ pos: 18.5,11.5
parent: 2
- - uid: 12634
+ - uid: 1508
components:
- type: Transform
- pos: 78.5,-8.5
+ pos: 14.5,9.5
parent: 2
- - uid: 12635
+ - uid: 1525
components:
- type: Transform
- pos: 78.5,-6.5
+ pos: 8.5,52.5
parent: 2
- - uid: 12636
+ - uid: 1526
components:
- type: Transform
- pos: 78.5,-7.5
+ pos: -107.5,11.5
parent: 2
- - uid: 12637
+ - uid: 1535
components:
- type: Transform
- pos: 79.5,-6.5
+ pos: 68.5,33.5
parent: 2
- - uid: 12638
+ - uid: 1541
components:
- type: Transform
- pos: 79.5,-5.5
+ pos: 0.5,-37.5
parent: 2
- - uid: 12639
+ - uid: 1542
components:
- type: Transform
- pos: 79.5,-4.5
+ pos: 1.5,-36.5
parent: 2
- - uid: 12640
+ - uid: 1543
components:
- type: Transform
- pos: 79.5,-3.5
+ pos: 1.5,-35.5
parent: 2
- - uid: 12641
+ - uid: 1555
components:
- type: Transform
- pos: 79.5,-2.5
+ pos: -11.5,-4.5
parent: 2
- - uid: 12642
+ - uid: 1557
components:
- type: Transform
- pos: 79.5,-1.5
+ pos: -72.5,17.5
parent: 2
- - uid: 12643
+ - uid: 1558
components:
- type: Transform
- pos: 79.5,-0.5
+ pos: -57.5,-15.5
parent: 2
- - uid: 12647
+ - uid: 1559
components:
- type: Transform
- pos: 75.5,-3.5
+ pos: -72.5,18.5
parent: 2
- - uid: 12648
+ - uid: 1581
components:
- type: Transform
- pos: 74.5,-3.5
+ pos: -12.5,-4.5
parent: 2
- - uid: 12649
+ - uid: 1648
components:
- type: Transform
- pos: 73.5,-3.5
+ pos: 33.5,-5.5
parent: 2
- - uid: 12650
+ - uid: 1651
components:
- type: Transform
- pos: 72.5,-3.5
+ pos: 34.5,-5.5
parent: 2
- - uid: 12651
+ - uid: 1680
components:
- type: Transform
- pos: 71.5,-3.5
+ pos: -13.5,-4.5
parent: 2
- - uid: 12652
+ - uid: 1688
components:
- type: Transform
- pos: 70.5,-3.5
+ pos: -56.5,-15.5
parent: 2
- - uid: 12653
+ - uid: 1692
components:
- type: Transform
- pos: 69.5,-3.5
+ pos: 9.5,53.5
parent: 2
- - uid: 12654
+ - uid: 1721
components:
- type: Transform
- pos: 68.5,-3.5
+ pos: -14.5,-4.5
parent: 2
- - uid: 12655
+ - uid: 1728
components:
- type: Transform
- pos: 67.5,-3.5
+ pos: -37.5,-29.5
parent: 2
- - uid: 12656
+ - uid: 1739
components:
- type: Transform
- pos: 66.5,-3.5
+ pos: -55.5,-15.5
parent: 2
- - uid: 12657
+ - uid: 1888
components:
- type: Transform
- pos: 65.5,-3.5
+ pos: -61.5,-25.5
parent: 2
- - uid: 12658
+ - uid: 1902
components:
- type: Transform
- pos: 64.5,-3.5
+ pos: -61.5,-27.5
parent: 2
- - uid: 12659
+ - uid: 1976
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: 9.5,52.5
parent: 2
- - uid: 12660
+ - uid: 1996
components:
- type: Transform
- pos: 62.5,-3.5
+ pos: 39.5,40.5
parent: 2
- - uid: 12661
+ - uid: 2005
components:
- type: Transform
- pos: 61.5,-3.5
+ pos: -61.5,-26.5
parent: 2
- - uid: 12662
+ - uid: 2035
components:
- type: Transform
- pos: 61.5,-9.5
+ pos: -60.5,-24.5
parent: 2
- - uid: 12663
+ - uid: 2042
components:
- type: Transform
- pos: 62.5,-9.5
+ pos: -16.5,39.5
parent: 2
- - uid: 12664
+ - uid: 2043
components:
- type: Transform
- pos: 63.5,-9.5
+ pos: 17.5,20.5
parent: 2
- - uid: 12665
+ - uid: 2060
components:
- type: Transform
- pos: 64.5,-9.5
+ pos: -61.5,-29.5
parent: 2
- - uid: 12666
+ - uid: 2068
components:
- type: Transform
- pos: 65.5,-9.5
+ pos: -17.5,39.5
parent: 2
- - uid: 12667
+ - uid: 2073
components:
- type: Transform
- pos: 66.5,-9.5
+ pos: -15.5,-4.5
parent: 2
- - uid: 12668
+ - uid: 2074
components:
- type: Transform
- pos: 66.5,-10.5
+ pos: -61.5,-28.5
parent: 2
- - uid: 12669
+ - uid: 2078
components:
- type: Transform
- pos: 66.5,-11.5
+ pos: -61.5,-31.5
parent: 2
- - uid: 12670
+ - uid: 2080
components:
- type: Transform
- pos: 66.5,-12.5
+ pos: -61.5,-30.5
parent: 2
- - uid: 12671
+ - uid: 2083
components:
- type: Transform
- pos: 66.5,-13.5
+ pos: -52.5,41.5
parent: 2
- - uid: 12672
+ - uid: 2089
components:
- type: Transform
- pos: 66.5,-14.5
+ pos: 9.5,54.5
parent: 2
- - uid: 12673
+ - uid: 2090
components:
- type: Transform
- pos: 66.5,-15.5
+ pos: -55.5,-31.5
parent: 2
- - uid: 12674
+ - uid: 2110
components:
- type: Transform
- pos: 72.5,-15.5
+ pos: 15.5,20.5
parent: 2
- - uid: 12675
+ - uid: 2117
components:
- type: Transform
- pos: 72.5,-14.5
+ pos: 11.5,20.5
parent: 2
- - uid: 12676
+ - uid: 2170
components:
- type: Transform
- pos: 72.5,-13.5
+ pos: 23.5,6.5
parent: 2
- - uid: 12677
+ - uid: 2178
components:
- type: Transform
- pos: 72.5,-12.5
+ pos: -41.5,20.5
parent: 2
- - uid: 12678
+ - uid: 2179
components:
- type: Transform
- pos: 72.5,-11.5
+ pos: -48.5,30.5
parent: 2
- - uid: 12679
+ - uid: 2180
components:
- type: Transform
- pos: 72.5,-10.5
+ pos: -26.5,-43.5
parent: 2
- - uid: 13111
+ - uid: 2220
components:
- type: Transform
- pos: -75.5,21.5
+ pos: 16.5,-35.5
parent: 2
- - uid: 13112
+ - uid: 2287
components:
- type: Transform
- pos: -76.5,21.5
+ pos: -40.5,56.5
parent: 2
- - uid: 13117
+ - uid: 2364
components:
- type: Transform
- pos: -79.5,21.5
+ pos: 5.5,7.5
parent: 2
- - uid: 13119
+ - uid: 2372
components:
- type: Transform
- pos: -78.5,21.5
+ pos: -13.5,58.5
parent: 2
- - uid: 13472
+ - uid: 2378
components:
- type: Transform
- pos: -89.5,-60.5
+ pos: -55.5,44.5
parent: 2
- - uid: 13476
+ - uid: 2410
components:
- type: Transform
- pos: -90.5,-59.5
+ pos: -81.5,-6.5
parent: 2
- - uid: 13477
+ - uid: 2428
components:
- type: Transform
- pos: -89.5,-61.5
+ pos: -80.5,-6.5
parent: 2
- - uid: 13478
+ - uid: 2431
components:
- type: Transform
- pos: -89.5,-62.5
+ pos: -79.5,-6.5
parent: 2
- - uid: 13479
+ - uid: 2534
components:
- type: Transform
- pos: -90.5,-50.5
+ pos: 2.5,66.5
parent: 2
- - uid: 13480
+ - uid: 2536
components:
- type: Transform
- pos: -90.5,-40.5
+ pos: 10.5,-22.5
parent: 2
- - uid: 13481
+ - uid: 2539
components:
- type: Transform
- pos: 56.5,-41.5
+ pos: 10.5,-21.5
parent: 2
- - uid: 13519
+ - uid: 2590
components:
- type: Transform
- pos: 53.5,49.5
+ pos: -54.5,-15.5
parent: 2
- - uid: 13585
+ - uid: 2605
components:
- type: Transform
- pos: -86.5,-34.5
+ pos: -63.5,9.5
parent: 2
- - uid: 13596
+ - uid: 2609
components:
- type: Transform
- pos: -89.5,-37.5
+ pos: -9.5,36.5
parent: 2
- - uid: 13597
+ - uid: 2611
components:
- type: Transform
- pos: -72.5,-33.5
+ pos: 5.5,66.5
parent: 2
- - uid: 13598
+ - uid: 2615
components:
- type: Transform
- pos: -89.5,-35.5
+ pos: 21.5,56.5
parent: 2
- - uid: 13599
+ - uid: 2628
components:
- type: Transform
- pos: -87.5,-34.5
+ pos: -46.5,57.5
parent: 2
- - uid: 13600
+ - uid: 2643
components:
- type: Transform
- pos: -89.5,-36.5
+ pos: 25.5,56.5
parent: 2
- - uid: 13601
+ - uid: 2646
components:
- type: Transform
- pos: -85.5,-34.5
+ pos: 23.5,56.5
parent: 2
- - uid: 13602
+ - uid: 2679
components:
- type: Transform
- pos: -88.5,-34.5
+ pos: 24.5,56.5
parent: 2
- - uid: 13603
+ - uid: 2686
components:
- type: Transform
- pos: -82.5,-34.5
+ pos: 22.5,56.5
parent: 2
- - uid: 13604
+ - uid: 2695
components:
- type: Transform
- pos: -84.5,-34.5
+ pos: 20.5,56.5
parent: 2
- - uid: 13605
+ - uid: 2704
components:
- type: Transform
- pos: -83.5,-34.5
+ pos: -49.5,30.5
parent: 2
- - uid: 13613
+ - uid: 2711
components:
- type: Transform
- pos: -89.5,-34.5
+ pos: 11.5,17.5
parent: 2
- - uid: 13657
+ - uid: 2714
components:
- type: Transform
- pos: -89.5,-33.5
+ pos: -44.5,62.5
parent: 2
- - uid: 13658
+ - uid: 2715
components:
- type: Transform
- pos: -81.5,-33.5
+ pos: -60.5,-31.5
parent: 2
- - uid: 13684
+ - uid: 2764
components:
- type: Transform
- pos: -89.5,-48.5
+ pos: 5.5,60.5
parent: 2
- - uid: 13685
+ - uid: 2780
components:
- type: Transform
- pos: -89.5,-44.5
+ pos: -19.5,49.5
parent: 2
- - uid: 13686
+ - uid: 2820
components:
- type: Transform
- pos: -89.5,-38.5
+ pos: -2.5,44.5
parent: 2
- - uid: 13687
+ - uid: 2833
components:
- type: Transform
- pos: -89.5,-51.5
+ pos: 7.5,-44.5
parent: 2
- - uid: 13688
+ - uid: 2844
components:
- type: Transform
- pos: -89.5,-53.5
+ pos: 34.5,31.5
parent: 2
- - uid: 13723
+ - uid: 2866
components:
- type: Transform
- pos: 56.5,-37.5
+ pos: 19.5,29.5
parent: 2
- - uid: 13757
+ - uid: 2933
components:
- type: Transform
- pos: 54.5,51.5
+ pos: 4.5,7.5
parent: 2
- - uid: 13829
+ - uid: 2938
components:
- type: Transform
- pos: -50.5,-31.5
+ pos: 6.5,7.5
parent: 2
- - uid: 13830
+ - uid: 2945
components:
- type: Transform
- pos: -50.5,-30.5
+ pos: -20.5,-45.5
parent: 2
- - uid: 13831
+ - uid: 2947
components:
- type: Transform
- pos: -50.5,-29.5
+ pos: 6.5,6.5
parent: 2
- - uid: 13832
+ - uid: 2948
components:
- type: Transform
- pos: -50.5,-28.5
+ pos: 6.5,5.5
parent: 2
- - uid: 13833
+ - uid: 2949
components:
- type: Transform
- pos: -50.5,-27.5
+ pos: 6.5,4.5
parent: 2
- - uid: 13834
+ - uid: 2950
components:
- type: Transform
- pos: -49.5,-27.5
+ pos: -2.5,-2.5
parent: 2
- - uid: 13835
+ - uid: 2951
components:
- type: Transform
- pos: -48.5,-27.5
+ pos: -3.5,-2.5
parent: 2
- - uid: 13836
+ - uid: 3027
components:
- type: Transform
- pos: -47.5,-27.5
+ pos: 11.5,-22.5
parent: 2
- - uid: 13837
+ - uid: 3030
components:
- type: Transform
- pos: -46.5,-27.5
+ pos: -1.5,-2.5
parent: 2
- - uid: 13838
+ - uid: 3048
components:
- type: Transform
- pos: -45.5,-27.5
+ pos: -0.5,-2.5
parent: 2
- - uid: 13839
+ - uid: 3050
components:
- type: Transform
- pos: -44.5,-27.5
+ pos: -0.5,-1.5
parent: 2
- - uid: 13841
+ - uid: 3089
components:
- type: Transform
- pos: 52.5,49.5
+ pos: -0.5,-0.5
parent: 2
- - uid: 13843
+ - uid: 3104
components:
- type: Transform
- pos: -45.5,56.5
+ pos: 16.5,-20.5
parent: 2
- - uid: 13844
+ - uid: 3105
components:
- type: Transform
- pos: -57.5,-20.5
+ pos: -62.5,-23.5
parent: 2
- - uid: 13845
+ - uid: 3106
components:
- type: Transform
- pos: -56.5,-20.5
+ pos: -59.5,-24.5
parent: 2
- - uid: 13846
+ - uid: 3110
components:
- type: Transform
- pos: -55.5,-20.5
+ pos: 12.5,-22.5
parent: 2
- - uid: 13847
+ - uid: 3112
components:
- type: Transform
- pos: -54.5,-20.5
+ pos: -43.5,62.5
parent: 2
- - uid: 13848
+ - uid: 3115
components:
- type: Transform
- pos: -53.5,-20.5
+ pos: 17.5,-20.5
parent: 2
- - uid: 13849
+ - uid: 3128
components:
- type: Transform
- pos: -52.5,-20.5
+ pos: -21.5,-43.5
parent: 2
- - uid: 13850
+ - uid: 3137
components:
- type: Transform
- pos: -52.5,-21.5
+ pos: -41.5,62.5
parent: 2
- - uid: 13851
+ - uid: 3144
components:
- type: Transform
- pos: -52.5,-22.5
+ pos: 25.5,-22.5
parent: 2
- - uid: 13852
+ - uid: 3178
components:
- type: Transform
- pos: -52.5,-23.5
+ pos: 26.5,-32.5
parent: 2
- - uid: 13853
+ - uid: 3180
components:
- type: Transform
- pos: -51.5,-23.5
+ pos: 25.5,-28.5
parent: 2
- - uid: 13854
+ - uid: 3181
components:
- type: Transform
- pos: -50.5,-23.5
+ pos: 25.5,-27.5
parent: 2
- - uid: 13855
+ - uid: 3182
components:
- type: Transform
- pos: -49.5,-23.5
+ pos: 25.5,-32.5
parent: 2
- - uid: 13856
+ - uid: 3183
components:
- type: Transform
- pos: -48.5,-23.5
+ pos: 25.5,-31.5
parent: 2
- - uid: 13857
+ - uid: 3184
components:
- type: Transform
- pos: -48.5,-24.5
+ pos: 25.5,-30.5
parent: 2
- - uid: 13858
+ - uid: 3185
components:
- type: Transform
- pos: -48.5,-25.5
+ pos: 25.5,-29.5
parent: 2
- - uid: 13859
+ - uid: 3187
components:
- type: Transform
- pos: -48.5,-26.5
+ pos: 21.5,-20.5
parent: 2
- - uid: 13863
+ - uid: 3208
components:
- type: Transform
- pos: -35.5,-27.5
+ pos: -0.5,0.5
parent: 2
- - uid: 13864
+ - uid: 3285
components:
- type: Transform
- pos: 52.5,43.5
+ pos: -20.5,-46.5
parent: 2
- - uid: 13873
+ - uid: 3364
components:
- type: Transform
- pos: -36.5,-25.5
+ pos: 25.5,-21.5
parent: 2
- - uid: 13874
+ - uid: 3365
components:
- type: Transform
- pos: -36.5,-24.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 13875
+ - uid: 3366
components:
- type: Transform
- pos: -36.5,-23.5
+ pos: 25.5,-19.5
parent: 2
- - uid: 13876
+ - uid: 3373
components:
- type: Transform
- pos: -36.5,-22.5
+ pos: -33.5,-6.5
parent: 2
- - uid: 13877
+ - uid: 3408
components:
- type: Transform
- pos: -36.5,-21.5
+ pos: 19.5,-20.5
parent: 2
- - uid: 13878
+ - uid: 3433
components:
- type: Transform
- pos: -36.5,-20.5
+ pos: -20.5,-37.5
parent: 2
- - uid: 13879
+ - uid: 3487
components:
- type: Transform
- pos: -36.5,-19.5
+ pos: -62.5,-24.5
parent: 2
- - uid: 13880
+ - uid: 3489
components:
- type: Transform
- pos: -37.5,-19.5
+ pos: -62.5,-25.5
parent: 2
- - uid: 13881
+ - uid: 3491
components:
- type: Transform
- pos: -38.5,-19.5
+ pos: 18.5,-20.5
parent: 2
- - uid: 13882
+ - uid: 3524
components:
- type: Transform
- pos: -39.5,-19.5
+ pos: 20.5,-20.5
parent: 2
- - uid: 13883
+ - uid: 3539
components:
- type: Transform
- pos: -40.5,-19.5
+ pos: -0.5,1.5
parent: 2
- - uid: 13884
+ - uid: 3540
components:
- type: Transform
- pos: -41.5,-19.5
+ pos: -0.5,2.5
parent: 2
- - uid: 13885
+ - uid: 3541
components:
- type: Transform
- pos: -42.5,-19.5
+ pos: 7.5,52.5
parent: 2
- - uid: 13886
+ - uid: 3571
components:
- type: Transform
- pos: -43.5,-19.5
+ pos: 31.5,4.5
parent: 2
- - uid: 13887
+ - uid: 3582
components:
- type: Transform
- pos: -44.5,-19.5
+ pos: -72.5,1.5
parent: 2
- - uid: 13888
+ - uid: 3613
components:
- type: Transform
- pos: -45.5,-19.5
+ pos: -53.5,-15.5
parent: 2
- - uid: 13889
+ - uid: 3650
components:
- type: Transform
- pos: -46.5,-19.5
+ pos: 73.5,-10.5
parent: 2
- - uid: 13890
+ - uid: 3690
components:
- type: Transform
- pos: -47.5,-19.5
+ pos: -31.5,47.5
parent: 2
- - uid: 13891
+ - uid: 3710
components:
- type: Transform
- pos: -48.5,-19.5
+ pos: -52.5,-15.5
parent: 2
- - uid: 13892
+ - uid: 3742
components:
- type: Transform
- pos: -49.5,-19.5
+ pos: -12.5,44.5
parent: 2
- - uid: 13893
+ - uid: 3788
components:
- type: Transform
- pos: -50.5,-19.5
+ pos: -66.5,24.5
parent: 2
- - uid: 13894
+ - uid: 3833
components:
- type: Transform
- pos: -50.5,-18.5
+ pos: -50.5,30.5
parent: 2
- - uid: 13895
+ - uid: 3835
components:
- type: Transform
- pos: -50.5,-17.5
+ pos: -51.5,30.5
parent: 2
- - uid: 13896
+ - uid: 3843
components:
- type: Transform
- pos: -50.5,-16.5
+ pos: -43.5,20.5
parent: 2
- - uid: 13897
+ - uid: 3851
components:
- type: Transform
- pos: -50.5,-15.5
+ pos: -52.5,30.5
parent: 2
- - uid: 13898
+ - uid: 3930
components:
- type: Transform
- pos: -50.5,-14.5
+ pos: 52.5,40.5
parent: 2
- - uid: 13899
+ - uid: 4013
components:
- type: Transform
- pos: -49.5,-14.5
+ pos: -87.5,-15.5
parent: 2
- - uid: 13900
+ - uid: 4021
components:
- type: Transform
- pos: -48.5,-14.5
+ pos: -52.5,44.5
parent: 2
- - uid: 13901
+ - uid: 4058
components:
- type: Transform
- pos: -47.5,-14.5
+ pos: -86.5,-15.5
parent: 2
- - uid: 13902
+ - uid: 4060
components:
- type: Transform
- pos: -46.5,-14.5
+ pos: -85.5,-15.5
parent: 2
- - uid: 13903
+ - uid: 4113
components:
- type: Transform
- pos: -45.5,-14.5
+ pos: -84.5,-15.5
parent: 2
- - uid: 13904
+ - uid: 4115
components:
- type: Transform
- pos: -54.5,-11.5
+ pos: -83.5,-15.5
parent: 2
- - uid: 13905
+ - uid: 4121
components:
- type: Transform
- pos: -54.5,-10.5
+ pos: 83.5,5.5
parent: 2
- - uid: 13906
+ - uid: 4133
components:
- type: Transform
- pos: -54.5,-9.5
+ pos: 56.5,-36.5
parent: 2
- - uid: 13907
+ - uid: 4164
components:
- type: Transform
- pos: -54.5,-8.5
+ pos: -86.5,32.5
parent: 2
- - uid: 13908
+ - uid: 4167
components:
- type: Transform
- pos: -54.5,-7.5
+ pos: -84.5,32.5
parent: 2
- - uid: 13910
+ - uid: 4168
components:
- type: Transform
- pos: -50.5,-10.5
+ pos: -82.5,32.5
parent: 2
- - uid: 13911
+ - uid: 4223
components:
- type: Transform
- pos: -50.5,-9.5
+ pos: -31.5,45.5
parent: 2
- - uid: 14363
+ - uid: 4241
components:
- type: Transform
- pos: -72.5,4.5
+ pos: -53.5,30.5
parent: 2
- - uid: 14365
+ - uid: 4296
components:
- type: Transform
- pos: -43.5,23.5
+ pos: -108.5,10.5
parent: 2
- - uid: 14366
+ - uid: 4297
components:
- type: Transform
- pos: -33.5,22.5
+ pos: -108.5,8.5
parent: 2
- - uid: 14367
+ - uid: 4298
components:
- type: Transform
- pos: -33.5,23.5
+ pos: -107.5,13.5
parent: 2
- - uid: 14369
+ - uid: 4299
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -105.5,14.5
parent: 2
- - uid: 14371
+ - uid: 4300
components:
- type: Transform
- pos: 67.5,-7.5
+ pos: -104.5,14.5
parent: 2
- - uid: 14374
+ - uid: 4301
components:
- type: Transform
- pos: 67.5,-6.5
+ pos: -103.5,15.5
parent: 2
- - uid: 14378
+ - uid: 4306
components:
- type: Transform
- pos: -9.5,71.5
+ pos: -101.5,15.5
parent: 2
- - uid: 14381
+ - uid: 4355
components:
- type: Transform
- pos: -32.5,-14.5
+ pos: -98.5,29.5
parent: 2
- - uid: 14382
+ - uid: 4368
components:
- type: Transform
- pos: 32.5,6.5
+ pos: -30.5,-12.5
parent: 2
- - uid: 14383
+ - uid: 4409
components:
- type: Transform
- pos: 21.5,11.5
+ pos: 70.5,27.5
parent: 2
- - uid: 14385
+ - uid: 4411
components:
- type: Transform
- pos: 3.5,-1.5
+ pos: 71.5,27.5
parent: 2
- - uid: 14396
+ - uid: 4457
components:
- type: Transform
- pos: 16.5,45.5
+ pos: -44.5,21.5
parent: 2
- - uid: 14397
+ - uid: 4468
components:
- type: Transform
- pos: 17.5,45.5
+ pos: 73.5,27.5
parent: 2
- - uid: 14398
+ - uid: 4469
components:
- type: Transform
- pos: 18.5,45.5
+ pos: 74.5,27.5
parent: 2
- - uid: 14399
+ - uid: 4470
components:
- type: Transform
- pos: 18.5,46.5
+ pos: 75.5,27.5
parent: 2
- - uid: 14400
+ - uid: 4471
components:
- type: Transform
- pos: 18.5,47.5
+ pos: 76.5,27.5
parent: 2
- - uid: 14402
+ - uid: 4472
components:
- type: Transform
- pos: 8.5,3.5
+ pos: 77.5,27.5
parent: 2
- - uid: 14407
+ - uid: 4473
components:
- type: Transform
- pos: 17.5,53.5
+ pos: 78.5,27.5
parent: 2
- - uid: 14408
+ - uid: 4474
components:
- type: Transform
- pos: 17.5,54.5
+ pos: 79.5,27.5
parent: 2
- - uid: 14409
+ - uid: 4475
components:
- type: Transform
- pos: 17.5,55.5
+ pos: 80.5,27.5
parent: 2
- - uid: 14410
+ - uid: 4476
components:
- type: Transform
- pos: 17.5,56.5
+ pos: 81.5,27.5
parent: 2
- - uid: 14411
+ - uid: 4477
components:
- type: Transform
- pos: 17.5,57.5
+ pos: 82.5,27.5
parent: 2
- - uid: 14412
+ - uid: 4478
components:
- type: Transform
- pos: 18.5,57.5
+ pos: 83.5,27.5
parent: 2
- - uid: 14413
+ - uid: 4479
components:
- type: Transform
- pos: 19.5,57.5
+ pos: 84.5,27.5
parent: 2
- - uid: 14414
+ - uid: 4495
components:
- type: Transform
- pos: 19.5,56.5
+ pos: -108.5,7.5
parent: 2
- - uid: 14415
+ - uid: 4497
components:
- type: Transform
- pos: 19.5,55.5
+ pos: -106.5,-4.5
parent: 2
- - uid: 14416
+ - uid: 4558
components:
- type: Transform
- pos: 19.5,54.5
+ pos: 48.5,50.5
parent: 2
- - uid: 14417
+ - uid: 4559
components:
- type: Transform
- pos: 19.5,53.5
+ pos: 38.5,42.5
parent: 2
- - uid: 14418
+ - uid: 4560
components:
- type: Transform
- pos: 21.5,10.5
+ pos: -107.5,-4.5
parent: 2
- - uid: 14419
+ - uid: 4570
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: 13.5,-35.5
parent: 2
- - uid: 14421
+ - uid: 4574
components:
- type: Transform
- pos: 12.5,-2.5
+ pos: 15.5,-35.5
parent: 2
- - uid: 14423
+ - uid: 4617
components:
- type: Transform
- pos: 22.5,7.5
+ pos: -47.5,-33.5
parent: 2
- - uid: 14424
+ - uid: 4618
components:
- type: Transform
- pos: 22.5,49.5
+ pos: -47.5,-34.5
parent: 2
- - uid: 14425
+ - uid: 4628
components:
- type: Transform
- pos: 23.5,49.5
+ pos: 85.5,26.5
parent: 2
- - uid: 14426
+ - uid: 4686
components:
- type: Transform
- pos: 24.5,49.5
+ pos: 52.5,-31.5
parent: 2
- - uid: 14427
+ - uid: 4689
components:
- type: Transform
- pos: 25.5,49.5
+ pos: 52.5,-32.5
parent: 2
- - uid: 14428
+ - uid: 4705
components:
- type: Transform
- pos: 26.5,49.5
+ pos: 3.5,-23.5
parent: 2
- - uid: 14429
+ - uid: 4706
components:
- type: Transform
- pos: 27.5,49.5
+ pos: 4.5,-23.5
parent: 2
- - uid: 14430
+ - uid: 4710
components:
- type: Transform
- pos: 28.5,49.5
+ pos: 73.5,29.5
parent: 2
- - uid: 14431
+ - uid: 4717
components:
- type: Transform
- pos: 29.5,49.5
+ pos: 73.5,32.5
parent: 2
- - uid: 14432
+ - uid: 4728
components:
- type: Transform
- pos: 17.5,48.5
+ pos: 94.5,75.5
parent: 2
- - uid: 14433
+ - uid: 4747
components:
- type: Transform
- pos: 16.5,48.5
+ pos: 52.5,-33.5
parent: 2
- - uid: 14434
+ - uid: 4748
components:
- type: Transform
- pos: 15.5,48.5
+ pos: 51.5,-33.5
parent: 2
- - uid: 14435
+ - uid: 4751
components:
- type: Transform
- pos: 14.5,48.5
+ pos: 22.5,-20.5
parent: 2
- - uid: 14436
+ - uid: 4752
components:
- type: Transform
- pos: 13.5,48.5
+ pos: 85.5,25.5
parent: 2
- - uid: 14437
+ - uid: 4757
components:
- type: Transform
- pos: 12.5,48.5
+ pos: 71.5,32.5
parent: 2
- - uid: 14438
+ - uid: 4760
components:
- type: Transform
- pos: 11.5,48.5
+ pos: 85.5,27.5
parent: 2
- - uid: 14439
+ - uid: 4780
components:
- type: Transform
- pos: 10.5,48.5
+ pos: 69.5,41.5
parent: 2
- - uid: 14440
+ - uid: 4784
components:
- type: Transform
- pos: 9.5,48.5
+ pos: 69.5,40.5
parent: 2
- - uid: 14441
+ - uid: 4798
components:
- type: Transform
- pos: 8.5,48.5
+ pos: -31.5,49.5
parent: 2
- - uid: 14442
+ - uid: 4808
components:
- type: Transform
- pos: 7.5,48.5
+ pos: 68.5,27.5
parent: 2
- - uid: 14443
+ - uid: 4809
components:
- type: Transform
- pos: 6.5,48.5
+ pos: 72.5,27.5
parent: 2
- - uid: 14444
+ - uid: 4850
components:
- type: Transform
- pos: 6.5,49.5
+ pos: 79.5,-20.5
parent: 2
- - uid: 14445
+ - uid: 4863
components:
- type: Transform
- pos: 6.5,50.5
+ pos: 6.5,70.5
parent: 2
- - uid: 14446
+ - uid: 4868
components:
- type: Transform
- pos: 6.5,51.5
+ pos: -51.5,44.5
parent: 2
- - uid: 14447
+ - uid: 4871
components:
- type: Transform
- pos: 6.5,52.5
+ pos: -40.5,62.5
parent: 2
- - uid: 14448
+ - uid: 4886
components:
- type: Transform
- pos: 6.5,53.5
+ pos: 54.5,-37.5
parent: 2
- - uid: 14449
+ - uid: 4888
components:
- type: Transform
- pos: 6.5,54.5
+ pos: -31.5,50.5
parent: 2
- - uid: 14450
+ - uid: 4909
components:
- type: Transform
- pos: 6.5,55.5
+ pos: -91.5,-7.5
parent: 2
- - uid: 14457
+ - uid: 4913
components:
- type: Transform
- pos: 7.5,55.5
+ pos: 92.5,71.5
parent: 2
- - uid: 14458
+ - uid: 4921
components:
- type: Transform
- pos: 8.5,55.5
+ pos: 96.5,71.5
parent: 2
- - uid: 14459
+ - uid: 4925
components:
- type: Transform
- pos: 9.5,55.5
+ pos: 97.5,77.5
parent: 2
- - uid: 14460
+ - uid: 4928
components:
- type: Transform
- pos: 10.5,55.5
+ pos: 99.5,71.5
parent: 2
- - uid: 14461
+ - uid: 4937
components:
- type: Transform
- pos: 24.5,4.5
+ pos: 50.5,-33.5
parent: 2
- - uid: 14462
+ - uid: 4952
components:
- type: Transform
- pos: 18.5,44.5
+ pos: -48.5,-30.5
parent: 2
- - uid: 14463
+ - uid: 5019
components:
- type: Transform
- pos: 18.5,43.5
+ pos: 39.5,10.5
parent: 2
- - uid: 14464
+ - uid: 5044
components:
- type: Transform
- pos: 18.5,42.5
+ pos: -103.5,18.5
parent: 2
- - uid: 14465
+ - uid: 5051
components:
- type: Transform
- pos: 18.5,41.5
+ pos: -104.5,18.5
parent: 2
- - uid: 14466
+ - uid: 5052
components:
- type: Transform
- pos: 18.5,40.5
+ pos: -39.5,-8.5
parent: 2
- - uid: 14467
+ - uid: 5088
components:
- type: Transform
- pos: 18.5,39.5
+ pos: -102.5,17.5
parent: 2
- - uid: 14468
+ - uid: 5101
components:
- type: Transform
- pos: 17.5,39.5
+ pos: -101.5,17.5
parent: 2
- - uid: 14469
+ - uid: 5155
components:
- type: Transform
- pos: 16.5,39.5
+ pos: -37.5,-31.5
parent: 2
- - uid: 14470
+ - uid: 5169
components:
- type: Transform
- pos: 15.5,39.5
+ pos: -37.5,-32.5
parent: 2
- - uid: 14471
+ - uid: 5171
components:
- type: Transform
- pos: 14.5,39.5
+ pos: -51.5,-28.5
parent: 2
- - uid: 14472
+ - uid: 5176
components:
- type: Transform
- pos: 13.5,39.5
+ pos: -53.5,-28.5
parent: 2
- - uid: 14473
+ - uid: 5207
components:
- type: Transform
- pos: 12.5,39.5
+ pos: -43.5,-34.5
parent: 2
- - uid: 14474
+ - uid: 5227
components:
- type: Transform
- pos: 11.5,39.5
+ pos: -44.5,26.5
parent: 2
- - uid: 14475
+ - uid: 5228
components:
- type: Transform
- pos: 10.5,39.5
+ pos: -100.5,17.5
parent: 2
- - uid: 14476
+ - uid: 5230
components:
- type: Transform
- pos: 9.5,39.5
+ pos: -41.5,26.5
parent: 2
- - uid: 14477
+ - uid: 5235
components:
- type: Transform
- pos: 8.5,39.5
+ pos: -38.5,-8.5
parent: 2
- - uid: 14478
+ - uid: 5236
components:
- type: Transform
- pos: 7.5,39.5
+ pos: 75.5,-10.5
parent: 2
- - uid: 14479
+ - uid: 5271
components:
- type: Transform
- pos: 6.5,39.5
+ pos: -103.5,-0.5
parent: 2
- - uid: 14480
+ - uid: 5284
components:
- type: Transform
- pos: 5.5,39.5
+ pos: 55.5,-37.5
parent: 2
- - uid: 14481
+ - uid: 5285
components:
- type: Transform
- pos: 4.5,39.5
+ pos: 56.5,-34.5
parent: 2
- - uid: 14482
+ - uid: 5286
components:
- type: Transform
- pos: 17.5,43.5
+ pos: 56.5,-35.5
parent: 2
- - uid: 14483
+ - uid: 5287
components:
- type: Transform
- pos: 16.5,43.5
+ pos: 25.5,-26.5
parent: 2
- - uid: 14484
+ - uid: 5289
components:
- type: Transform
- pos: 15.5,43.5
+ pos: -42.5,20.5
parent: 2
- - uid: 14485
+ - uid: 5290
components:
- type: Transform
- pos: 14.5,43.5
+ pos: -33.5,34.5
parent: 2
- - uid: 14486
+ - uid: 5291
components:
- type: Transform
- pos: 13.5,43.5
+ pos: -102.5,-0.5
parent: 2
- - uid: 14487
+ - uid: 5304
components:
- type: Transform
- pos: 13.5,42.5
+ pos: -101.5,-0.5
parent: 2
- - uid: 14488
+ - uid: 5305
components:
- type: Transform
- pos: 12.5,42.5
+ pos: -100.5,-0.5
parent: 2
- - uid: 14489
+ - uid: 5331
components:
- type: Transform
- pos: 11.5,42.5
+ pos: 72.5,32.5
parent: 2
- - uid: 14490
+ - uid: 5373
components:
- type: Transform
- pos: 10.5,42.5
+ pos: 85.5,24.5
parent: 2
- - uid: 14494
+ - uid: 5384
components:
- type: Transform
- pos: 22.5,45.5
+ pos: 70.5,32.5
parent: 2
- - uid: 14495
+ - uid: 5406
components:
- type: Transform
- pos: 23.5,45.5
+ pos: 10.5,68.5
parent: 2
- - uid: 14496
+ - uid: 5414
components:
- type: Transform
- pos: 24.5,45.5
+ pos: -20.5,-34.5
parent: 2
- - uid: 14497
+ - uid: 5417
components:
- type: Transform
- pos: 25.5,45.5
+ pos: -99.5,-0.5
parent: 2
- - uid: 14498
+ - uid: 5429
components:
- type: Transform
- pos: 26.5,45.5
+ pos: -20.5,-33.5
parent: 2
- - uid: 14499
+ - uid: 5435
components:
- type: Transform
- pos: 27.5,45.5
+ pos: 74.5,-10.5
parent: 2
- - uid: 14500
+ - uid: 5507
components:
- type: Transform
- pos: 27.5,44.5
+ pos: -97.5,18.5
parent: 2
- - uid: 14501
+ - uid: 5512
components:
- type: Transform
- pos: 27.5,43.5
+ pos: -20.5,-32.5
parent: 2
- - uid: 14502
+ - uid: 5513
components:
- type: Transform
- pos: 27.5,42.5
+ pos: -20.5,-31.5
parent: 2
- - uid: 14503
+ - uid: 5518
components:
- type: Transform
- pos: -1.5,53.5
+ pos: -46.5,67.5
parent: 2
- - uid: 14504
+ - uid: 5567
components:
- type: Transform
- pos: 27.5,40.5
+ pos: -31.5,61.5
parent: 2
- - uid: 14505
+ - uid: 5628
components:
- type: Transform
- pos: 27.5,39.5
+ pos: -90.5,22.5
parent: 2
- - uid: 14506
+ - uid: 5649
components:
- type: Transform
- pos: 27.5,38.5
+ pos: -92.5,22.5
parent: 2
- - uid: 14507
+ - uid: 5680
components:
- type: Transform
- pos: 27.5,37.5
+ pos: -93.5,22.5
parent: 2
- - uid: 14566
+ - uid: 5686
components:
- type: Transform
- pos: 34.5,6.5
+ pos: -39.5,-28.5
parent: 2
- - uid: 14586
+ - uid: 5694
components:
- type: Transform
- pos: 33.5,6.5
+ pos: 38.5,15.5
parent: 2
- - uid: 14589
+ - uid: 5700
components:
- type: Transform
- pos: -36.5,11.5
+ pos: -100.5,31.5
parent: 2
- - uid: 14590
+ - uid: 5702
components:
- type: Transform
- pos: -34.5,10.5
+ pos: -101.5,31.5
parent: 2
- - uid: 14601
+ - uid: 5709
components:
- type: Transform
- pos: -11.5,10.5
+ pos: -98.5,30.5
parent: 2
- - uid: 14602
+ - uid: 5710
components:
- type: Transform
- pos: -33.5,-10.5
+ pos: -98.5,31.5
parent: 2
- - uid: 14604
+ - uid: 5721
components:
- type: Transform
- pos: -7.5,-8.5
+ pos: -6.5,0.5
parent: 2
- - uid: 14616
+ - uid: 5731
components:
- type: Transform
- pos: 53.5,10.5
+ pos: 27.5,11.5
parent: 2
- - uid: 14638
+ - uid: 5732
components:
- type: Transform
- pos: 42.5,45.5
+ pos: 11.5,16.5
parent: 2
- - uid: 14639
+ - uid: 5735
components:
- type: Transform
- pos: 42.5,46.5
+ pos: 69.5,32.5
parent: 2
- - uid: 14640
+ - uid: 5746
components:
- type: Transform
- pos: 42.5,47.5
+ pos: 25.5,-25.5
parent: 2
- - uid: 14641
+ - uid: 5747
components:
- type: Transform
- pos: 42.5,48.5
+ pos: 25.5,-24.5
parent: 2
- - uid: 14642
+ - uid: 5890
components:
- type: Transform
- pos: 42.5,49.5
+ pos: 89.5,-20.5
parent: 2
- - uid: 14643
+ - uid: 5895
components:
- type: Transform
- pos: 43.5,49.5
+ pos: -107.5,-5.5
parent: 2
- - uid: 14644
+ - uid: 5905
components:
- type: Transform
- pos: 44.5,49.5
+ pos: 69.5,27.5
parent: 2
- - uid: 14645
+ - uid: 5910
components:
- type: Transform
- pos: 45.5,49.5
+ pos: -107.5,-10.5
parent: 2
- - uid: 14646
+ - uid: 5919
components:
- type: Transform
- pos: 46.5,49.5
+ pos: -46.5,66.5
parent: 2
- - uid: 14647
+ - uid: 5920
components:
- type: Transform
- pos: 47.5,49.5
+ pos: -46.5,65.5
parent: 2
- - uid: 14648
+ - uid: 5935
components:
- type: Transform
- pos: 48.5,49.5
+ pos: -107.5,-9.5
parent: 2
- - uid: 14649
+ - uid: 5951
components:
- type: Transform
- pos: 49.5,49.5
+ pos: 2.5,-23.5
parent: 2
- - uid: 14650
+ - uid: 5954
components:
- type: Transform
- pos: 50.5,49.5
+ pos: 5.5,-23.5
parent: 2
- - uid: 14651
+ - uid: 5955
components:
- type: Transform
- pos: 41.5,49.5
+ pos: -106.5,-10.5
parent: 2
- - uid: 14652
+ - uid: 5964
components:
- type: Transform
- pos: 40.5,49.5
+ pos: -106.5,-12.5
parent: 2
- - uid: 14653
+ - uid: 5966
components:
- type: Transform
- pos: 39.5,49.5
+ pos: -106.5,-11.5
parent: 2
- - uid: 14654
+ - uid: 5977
components:
- type: Transform
- pos: 38.5,49.5
+ pos: -105.5,-12.5
parent: 2
- - uid: 14655
+ - uid: 5999
components:
- type: Transform
- pos: 37.5,49.5
+ pos: -105.5,-13.5
parent: 2
- - uid: 14656
+ - uid: 6000
components:
- type: Transform
- pos: 36.5,49.5
+ pos: -86.5,-6.5
parent: 2
- - uid: 14657
+ - uid: 6059
components:
- type: Transform
- pos: 35.5,49.5
+ pos: 73.5,28.5
parent: 2
- - uid: 14658
+ - uid: 6116
components:
- type: Transform
- pos: 34.5,49.5
+ pos: 66.5,32.5
parent: 2
- - uid: 14660
+ - uid: 6119
components:
- type: Transform
- pos: -11.5,11.5
+ pos: 68.5,32.5
parent: 2
- - uid: 14661
+ - uid: 6126
components:
- type: Transform
- pos: 31.5,49.5
+ pos: 87.5,18.5
parent: 2
- - uid: 14662
+ - uid: 6129
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -85.5,-6.5
parent: 2
- - uid: 14663
+ - uid: 6137
components:
- type: Transform
- pos: 31.5,51.5
+ pos: -69.5,-12.5
parent: 2
- - uid: 14664
+ - uid: 6141
components:
- type: Transform
- pos: 31.5,48.5
+ pos: 62.5,31.5
parent: 2
- - uid: 14665
+ - uid: 6154
components:
- type: Transform
- pos: 31.5,47.5
+ pos: 89.5,-19.5
parent: 2
- - uid: 14666
+ - uid: 6164
components:
- type: Transform
- pos: 31.5,46.5
+ pos: -83.5,-6.5
parent: 2
- - uid: 14667
+ - uid: 6178
components:
- type: Transform
- pos: 31.5,45.5
+ pos: -82.5,-6.5
parent: 2
- - uid: 14668
+ - uid: 6180
components:
- type: Transform
- pos: 31.5,44.5
+ pos: -68.5,-12.5
parent: 2
- - uid: 14669
+ - uid: 6181
components:
- type: Transform
- pos: 31.5,43.5
+ pos: -67.5,-12.5
parent: 2
- - uid: 14670
+ - uid: 6223
components:
- type: Transform
- pos: 32.5,43.5
+ pos: -98.5,15.5
parent: 2
- - uid: 14671
+ - uid: 6243
components:
- type: Transform
- pos: 33.5,43.5
+ pos: 44.5,13.5
parent: 2
- - uid: 14672
+ - uid: 6244
components:
- type: Transform
- pos: 34.5,43.5
+ pos: 43.5,13.5
parent: 2
- - uid: 14673
+ - uid: 6245
components:
- type: Transform
- pos: 34.5,42.5
+ pos: 39.5,13.5
parent: 2
- - uid: 14674
+ - uid: 6246
components:
- type: Transform
- pos: 34.5,41.5
+ pos: 40.5,13.5
parent: 2
- - uid: 14675
+ - uid: 6301
components:
- type: Transform
- pos: 34.5,40.5
+ pos: 41.5,13.5
parent: 2
- - uid: 14676
+ - uid: 6322
components:
- type: Transform
- pos: 34.5,39.5
+ pos: -28.5,59.5
parent: 2
- - uid: 14677
+ - uid: 6356
components:
- type: Transform
- pos: 34.5,38.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 14678
+ - uid: 6370
components:
- type: Transform
- pos: 34.5,37.5
+ pos: 67.5,32.5
parent: 2
- - uid: 14679
+ - uid: 6387
components:
- type: Transform
- pos: 34.5,36.5
+ pos: 34.5,30.5
parent: 2
- - uid: 14680
+ - uid: 6415
components:
- type: Transform
- pos: 34.5,35.5
+ pos: -66.5,-12.5
parent: 2
- - uid: 14681
+ - uid: 6433
components:
- type: Transform
- pos: 34.5,34.5
+ pos: -90.5,23.5
parent: 2
- - uid: 14682
+ - uid: 6558
components:
- type: Transform
- pos: 34.5,33.5
+ pos: -29.5,59.5
parent: 2
- - uid: 14683
+ - uid: 6562
components:
- type: Transform
- pos: 33.5,33.5
+ pos: -30.5,59.5
parent: 2
- - uid: 14684
+ - uid: 6576
components:
- type: Transform
- pos: 32.5,33.5
+ pos: -16.5,-44.5
parent: 2
- - uid: 14685
+ - uid: 6618
components:
- type: Transform
- pos: 31.5,33.5
+ pos: -31.5,59.5
parent: 2
- - uid: 14686
+ - uid: 6621
components:
- type: Transform
- pos: 30.5,33.5
+ pos: -34.5,-45.5
parent: 2
- - uid: 14687
+ - uid: 6625
components:
- type: Transform
- pos: 29.5,33.5
+ pos: -31.5,58.5
parent: 2
- - uid: 14688
+ - uid: 6627
components:
- type: Transform
- pos: 28.5,33.5
+ pos: -24.5,-44.5
parent: 2
- - uid: 14689
+ - uid: 6629
components:
- type: Transform
- pos: 27.5,33.5
+ pos: -20.5,-47.5
parent: 2
- - uid: 14690
+ - uid: 6630
components:
- type: Transform
- pos: 26.5,33.5
+ pos: -30.5,-43.5
parent: 2
- - uid: 14691
+ - uid: 6631
components:
- type: Transform
- pos: 25.5,33.5
+ pos: -27.5,59.5
parent: 2
- - uid: 14692
+ - uid: 6636
components:
- type: Transform
- pos: 24.5,33.5
+ pos: -19.5,-43.5
parent: 2
- - uid: 14693
+ - uid: 6650
components:
- type: Transform
- pos: 23.5,33.5
+ pos: -27.5,-43.5
parent: 2
- - uid: 14694
+ - uid: 6651
components:
- type: Transform
- pos: 22.5,33.5
+ pos: -25.5,-43.5
parent: 2
- - uid: 14695
+ - uid: 6686
components:
- type: Transform
- pos: 21.5,33.5
+ pos: -34.5,-43.5
parent: 2
- - uid: 14696
+ - uid: 6690
components:
- type: Transform
- pos: 20.5,33.5
+ pos: -33.5,-43.5
parent: 2
- - uid: 14697
+ - uid: 6693
components:
- type: Transform
- pos: 19.5,33.5
+ pos: -34.5,-48.5
parent: 2
- - uid: 14698
+ - uid: 6699
components:
- type: Transform
- pos: 18.5,33.5
+ pos: -63.5,-21.5
parent: 2
- - uid: 14699
+ - uid: 6701
components:
- type: Transform
- pos: 17.5,33.5
+ pos: -64.5,-21.5
parent: 2
- - uid: 14700
+ - uid: 6702
components:
- type: Transform
- pos: 16.5,33.5
+ pos: -65.5,-22.5
parent: 2
- - uid: 14701
+ - uid: 6720
components:
- type: Transform
- pos: 15.5,33.5
+ pos: -31.5,-43.5
parent: 2
- - uid: 14702
+ - uid: 6721
components:
- type: Transform
- pos: 14.5,33.5
+ pos: -32.5,-43.5
parent: 2
- - uid: 14703
+ - uid: 6723
components:
- type: Transform
- pos: 13.5,33.5
+ pos: -20.5,-36.5
parent: 2
- - uid: 14704
+ - uid: 6748
components:
- type: Transform
- pos: 12.5,33.5
+ pos: -17.5,-43.5
parent: 2
- - uid: 14705
+ - uid: 6749
components:
- type: Transform
- pos: 11.5,33.5
+ pos: -20.5,-38.5
parent: 2
- - uid: 14706
+ - uid: 6755
components:
- type: Transform
- pos: 10.5,33.5
+ pos: -20.5,-39.5
parent: 2
- - uid: 14707
+ - uid: 6771
components:
- type: Transform
- pos: 9.5,33.5
+ pos: -89.5,23.5
parent: 2
- - uid: 14708
+ - uid: 6778
components:
- type: Transform
- pos: 8.5,33.5
+ pos: -62.5,-21.5
parent: 2
- - uid: 14709
+ - uid: 6799
components:
- type: Transform
- pos: 7.5,33.5
+ pos: -15.5,-43.5
parent: 2
- - uid: 14710
+ - uid: 6815
components:
- type: Transform
- pos: 6.5,33.5
+ pos: -72.5,20.5
parent: 2
- - uid: 14711
+ - uid: 6859
components:
- type: Transform
- pos: 5.5,33.5
+ pos: -72.5,19.5
parent: 2
- - uid: 14712
+ - uid: 6878
components:
- type: Transform
- pos: 4.5,33.5
+ pos: -49.5,41.5
parent: 2
- - uid: 14713
+ - uid: 6923
components:
- type: Transform
- pos: 39.5,48.5
+ pos: -34.5,-52.5
parent: 2
- - uid: 14714
+ - uid: 6924
components:
- type: Transform
- pos: 39.5,47.5
+ pos: -29.5,-43.5
parent: 2
- - uid: 14715
+ - uid: 7091
components:
- type: Transform
- pos: 39.5,46.5
+ pos: -78.5,-12.5
parent: 2
- - uid: 14716
+ - uid: 7092
components:
- type: Transform
- pos: -2.5,53.5
+ pos: -78.5,-11.5
parent: 2
- - uid: 14717
+ - uid: 7103
components:
- type: Transform
- pos: 39.5,44.5
+ pos: -104.5,-13.5
parent: 2
- - uid: 14718
+ - uid: 7104
components:
- type: Transform
- pos: 39.5,43.5
+ pos: -103.5,-13.5
parent: 2
- - uid: 14719
+ - uid: 7105
components:
- type: Transform
- pos: 39.5,42.5
+ pos: -103.5,-14.5
parent: 2
- - uid: 14720
+ - uid: 7114
components:
- type: Transform
- pos: 39.5,41.5
+ pos: -102.5,-14.5
parent: 2
- - uid: 14722
+ - uid: 7119
components:
- type: Transform
- pos: 39.5,39.5
+ pos: -101.5,-14.5
parent: 2
- - uid: 14723
+ - uid: 7127
components:
- type: Transform
- pos: 39.5,38.5
+ pos: -100.5,-14.5
parent: 2
- - uid: 14724
+ - uid: 7139
components:
- type: Transform
- pos: 39.5,37.5
+ pos: -44.5,8.5
parent: 2
- - uid: 14725
+ - uid: 7165
components:
- type: Transform
- pos: 39.5,36.5
+ pos: -99.5,-14.5
parent: 2
- - uid: 14726
+ - uid: 7169
components:
- type: Transform
- pos: 39.5,35.5
+ pos: -98.5,-14.5
parent: 2
- - uid: 14727
+ - uid: 7178
components:
- type: Transform
- pos: 39.5,34.5
+ pos: -98.5,-13.5
parent: 2
- - uid: 14728
+ - uid: 7216
components:
- type: Transform
- pos: 39.5,33.5
+ pos: -70.5,2.5
parent: 2
- - uid: 14729
+ - uid: 7227
components:
- type: Transform
- pos: 39.5,32.5
+ pos: -44.5,-34.5
parent: 2
- - uid: 14730
+ - uid: 7235
components:
- type: Transform
- pos: -11.5,12.5
+ pos: 25.5,-18.5
parent: 2
- - uid: 14731
+ - uid: 7263
components:
- type: Transform
- pos: -14.5,12.5
+ pos: -99.5,31.5
parent: 2
- - uid: 14732
+ - uid: 7298
components:
- type: Transform
- pos: 39.5,29.5
+ pos: -91.5,25.5
parent: 2
- - uid: 14733
+ - uid: 7311
components:
- type: Transform
- pos: 38.5,29.5
+ pos: -91.5,26.5
parent: 2
- - uid: 14734
+ - uid: 7324
components:
- type: Transform
- pos: 37.5,29.5
+ pos: -91.5,27.5
parent: 2
- - uid: 14735
+ - uid: 7338
components:
- type: Transform
- pos: 36.5,29.5
+ pos: -90.5,29.5
parent: 2
- - uid: 14736
+ - uid: 7339
components:
- type: Transform
- pos: 35.5,29.5
+ pos: -91.5,28.5
parent: 2
- - uid: 14737
+ - uid: 7379
components:
- type: Transform
- pos: 34.5,29.5
+ pos: 73.5,31.5
parent: 2
- - uid: 14738
+ - uid: 7453
components:
- type: Transform
- pos: 33.5,29.5
+ pos: -46.5,56.5
parent: 2
- - uid: 14739
+ - uid: 7456
components:
- type: Transform
- pos: 32.5,29.5
+ pos: -43.5,-30.5
parent: 2
- - uid: 14740
+ - uid: 7460
components:
- type: Transform
- pos: 31.5,29.5
+ pos: -43.5,-29.5
parent: 2
- - uid: 14741
+ - uid: 7461
components:
- type: Transform
- pos: 31.5,28.5
+ pos: -82.5,-15.5
parent: 2
- - uid: 14742
+ - uid: 7463
components:
- type: Transform
- pos: 31.5,27.5
+ pos: 2.5,19.5
parent: 2
- - uid: 14743
+ - uid: 7570
components:
- type: Transform
- pos: 31.5,26.5
+ pos: 17.5,29.5
parent: 2
- - uid: 14744
+ - uid: 7571
components:
- type: Transform
- pos: 31.5,25.5
+ pos: 20.5,29.5
parent: 2
- - uid: 14745
+ - uid: 7583
components:
- type: Transform
- pos: 31.5,24.5
+ pos: -33.5,-7.5
parent: 2
- - uid: 14746
+ - uid: 7611
components:
- type: Transform
- pos: 31.5,23.5
+ pos: 25.5,-23.5
parent: 2
- - uid: 14747
+ - uid: 7692
components:
- type: Transform
- pos: 24.5,32.5
+ pos: 20.5,25.5
parent: 2
- - uid: 14748
+ - uid: 7695
components:
- type: Transform
- pos: 24.5,31.5
+ pos: 20.5,23.5
parent: 2
- - uid: 14749
+ - uid: 7696
components:
- type: Transform
- pos: 24.5,30.5
+ pos: 20.5,24.5
parent: 2
- - uid: 14750
+ - uid: 7718
components:
- type: Transform
- pos: 24.5,29.5
+ pos: 20.5,26.5
parent: 2
- - uid: 14751
+ - uid: 7719
components:
- type: Transform
- pos: 24.5,28.5
+ pos: 20.5,28.5
parent: 2
- - uid: 14752
+ - uid: 7720
components:
- type: Transform
- pos: 24.5,27.5
+ pos: 20.5,27.5
parent: 2
- - uid: 14753
+ - uid: 7721
components:
- type: Transform
- pos: 24.5,26.5
+ pos: -54.5,38.5
parent: 2
- - uid: 14754
+ - uid: 7738
components:
- type: Transform
- pos: 24.5,25.5
+ pos: 17.5,23.5
parent: 2
- - uid: 14755
+ - uid: 7760
components:
- type: Transform
- pos: 24.5,24.5
+ pos: 17.5,25.5
parent: 2
- - uid: 14756
+ - uid: 7765
components:
- type: Transform
- pos: -15.5,14.5
+ pos: 17.5,24.5
parent: 2
- - uid: 14758
+ - uid: 7782
components:
- type: Transform
- pos: 26.5,27.5
+ pos: 17.5,26.5
parent: 2
- - uid: 14759
+ - uid: 7786
components:
- type: Transform
- pos: 27.5,27.5
+ pos: 17.5,28.5
parent: 2
- - uid: 14760
+ - uid: 7787
components:
- type: Transform
- pos: 28.5,27.5
+ pos: 17.5,27.5
parent: 2
- - uid: 14761
+ - uid: 7791
components:
- type: Transform
- pos: 29.5,27.5
+ pos: 4.5,29.5
parent: 2
- - uid: 14762
+ - uid: 7793
components:
- type: Transform
- pos: 30.5,27.5
+ pos: 6.5,29.5
parent: 2
- - uid: 14775
+ - uid: 7818
components:
- type: Transform
- pos: 35.5,28.5
+ pos: 5.5,29.5
parent: 2
- - uid: 14776
+ - uid: 7821
components:
- type: Transform
- pos: 35.5,27.5
+ pos: 3.5,29.5
parent: 2
- - uid: 14777
+ - uid: 7822
components:
- type: Transform
- pos: 35.5,26.5
+ pos: 8.5,29.5
parent: 2
- - uid: 14778
+ - uid: 7824
components:
- type: Transform
- pos: 35.5,25.5
+ pos: 7.5,29.5
parent: 2
- - uid: 14779
+ - uid: 7826
components:
- type: Transform
- pos: 35.5,24.5
+ pos: 9.5,29.5
parent: 2
- - uid: 14780
+ - uid: 7827
components:
- type: Transform
- pos: 36.5,24.5
+ pos: 10.5,29.5
parent: 2
- - uid: 14781
+ - uid: 7828
components:
- type: Transform
- pos: 37.5,24.5
+ pos: 12.5,29.5
parent: 2
- - uid: 14782
+ - uid: 7837
components:
- type: Transform
- pos: 38.5,24.5
+ pos: 11.5,29.5
parent: 2
- - uid: 14783
+ - uid: 7856
components:
- type: Transform
- pos: 39.5,24.5
+ pos: 13.5,29.5
parent: 2
- - uid: 14784
+ - uid: 7858
components:
- type: Transform
- pos: 40.5,24.5
+ pos: 14.5,29.5
parent: 2
- - uid: 14785
+ - uid: 7883
components:
- type: Transform
- pos: -9.5,13.5
+ pos: 16.5,29.5
parent: 2
- - uid: 14786
+ - uid: 7923
components:
- type: Transform
- pos: -14.5,11.5
+ pos: -44.5,-30.5
parent: 2
- - uid: 14788
+ - uid: 7950
components:
- type: Transform
- pos: 43.5,29.5
+ pos: -106.5,-2.5
parent: 2
- - uid: 14789
+ - uid: 7951
components:
- type: Transform
- pos: 44.5,29.5
+ pos: -106.5,-3.5
parent: 2
- - uid: 14790
+ - uid: 7953
components:
- type: Transform
- pos: 45.5,29.5
+ pos: -105.5,-2.5
parent: 2
- - uid: 14791
+ - uid: 7961
components:
- type: Transform
- pos: 46.5,29.5
+ pos: -98.5,-0.5
parent: 2
- - uid: 14792
+ - uid: 7963
components:
- type: Transform
- pos: 47.5,29.5
+ pos: -108.5,6.5
parent: 2
- - uid: 14793
+ - uid: 8109
components:
- type: Transform
- pos: 48.5,29.5
+ pos: 4.5,66.5
parent: 2
- - uid: 14794
+ - uid: 8156
components:
- type: Transform
- pos: 48.5,28.5
+ pos: 40.5,8.5
parent: 2
- - uid: 14795
+ - uid: 8173
components:
- type: Transform
- pos: 48.5,27.5
+ pos: 97.5,75.5
parent: 2
- - uid: 14796
+ - uid: 8175
components:
- type: Transform
- pos: 48.5,26.5
+ pos: 96.5,75.5
parent: 2
- - uid: 14797
+ - uid: 8177
components:
- type: Transform
- pos: 48.5,25.5
+ pos: 103.5,72.5
parent: 2
- - uid: 14798
+ - uid: 8188
components:
- type: Transform
- pos: 48.5,24.5
+ pos: 89.5,71.5
parent: 2
- - uid: 14799
+ - uid: 8231
components:
- type: Transform
- pos: 47.5,25.5
+ pos: 67.5,27.5
parent: 2
- - uid: 14800
+ - uid: 8254
components:
- type: Transform
- pos: 46.5,25.5
+ pos: 102.5,54.5
parent: 2
- - uid: 14801
+ - uid: 8280
components:
- type: Transform
- pos: 45.5,25.5
+ pos: -77.5,28.5
parent: 2
- - uid: 14802
+ - uid: 8281
components:
- type: Transform
- pos: 44.5,25.5
+ pos: -77.5,27.5
parent: 2
- - uid: 14803
+ - uid: 8282
components:
- type: Transform
- pos: 43.5,25.5
+ pos: -51.5,62.5
parent: 2
- - uid: 14804
+ - uid: 8284
components:
- type: Transform
- pos: 42.5,25.5
+ pos: -51.5,60.5
parent: 2
- - uid: 14806
+ - uid: 8314
components:
- type: Transform
- pos: 40.5,25.5
+ pos: -51.5,61.5
parent: 2
- - uid: 14807
+ - uid: 8316
components:
- type: Transform
- pos: 40.5,32.5
+ pos: -51.5,59.5
parent: 2
- - uid: 14808
+ - uid: 8322
components:
- type: Transform
- pos: 41.5,32.5
+ pos: -54.5,-28.5
parent: 2
- - uid: 14809
+ - uid: 8413
components:
- type: Transform
- pos: 42.5,32.5
+ pos: -98.5,-5.5
parent: 2
- - uid: 14810
+ - uid: 8419
components:
- type: Transform
- pos: 43.5,32.5
+ pos: -98.5,-10.5
parent: 2
- - uid: 14811
+ - uid: 8423
components:
- type: Transform
- pos: 44.5,32.5
+ pos: -98.5,-3.5
parent: 2
- - uid: 14812
+ - uid: 8424
components:
- type: Transform
- pos: 45.5,32.5
+ pos: -98.5,-4.5
parent: 2
- - uid: 14813
+ - uid: 8439
components:
- type: Transform
- pos: 46.5,32.5
+ pos: -56.5,20.5
parent: 2
- - uid: 14814
+ - uid: 8440
components:
- type: Transform
- pos: 47.5,32.5
+ pos: -55.5,20.5
parent: 2
- - uid: 14815
+ - uid: 8447
components:
- type: Transform
- pos: 48.5,32.5
+ pos: -46.5,-30.5
parent: 2
- - uid: 14816
+ - uid: 8453
components:
- type: Transform
- pos: 40.5,37.5
+ pos: -99.5,11.5
parent: 2
- - uid: 14817
+ - uid: 8454
components:
- type: Transform
- pos: 41.5,37.5
+ pos: -72.5,2.5
parent: 2
- - uid: 14818
+ - uid: 8455
components:
- type: Transform
- pos: 42.5,37.5
+ pos: -70.5,1.5
parent: 2
- - uid: 14819
+ - uid: 8458
components:
- type: Transform
- pos: 43.5,37.5
+ pos: -99.5,10.5
parent: 2
- - uid: 14820
+ - uid: 8460
components:
- type: Transform
- pos: 44.5,37.5
+ pos: -99.5,9.5
parent: 2
- - uid: 14821
+ - uid: 8463
components:
- type: Transform
- pos: 45.5,37.5
+ pos: -99.5,7.5
parent: 2
- - uid: 14822
+ - uid: 8464
components:
- type: Transform
- pos: 46.5,37.5
+ pos: -99.5,6.5
parent: 2
- - uid: 14823
+ - uid: 8465
components:
- type: Transform
- pos: 47.5,37.5
+ pos: -99.5,5.5
parent: 2
- - uid: 14824
+ - uid: 8467
components:
- type: Transform
- pos: 48.5,37.5
+ pos: -11.5,48.5
parent: 2
- - uid: 14825
+ - uid: 8620
components:
- type: Transform
- pos: 49.5,37.5
+ pos: -10.5,48.5
parent: 2
- - uid: 14826
+ - uid: 8646
components:
- type: Transform
- pos: 40.5,42.5
+ pos: -55.5,-28.5
parent: 2
- - uid: 14827
+ - uid: 8665
components:
- type: Transform
- pos: 41.5,42.5
+ pos: -98.5,20.5
parent: 2
- - uid: 14828
+ - uid: 8666
components:
- type: Transform
- pos: 42.5,42.5
+ pos: -98.5,21.5
parent: 2
- - uid: 14829
+ - uid: 8715
components:
- type: Transform
- pos: 43.5,42.5
+ pos: 13.5,20.5
parent: 2
- - uid: 14830
+ - uid: 8744
components:
- type: Transform
- pos: 44.5,42.5
+ pos: -55.5,16.5
parent: 2
- - uid: 14831
+ - uid: 8745
components:
- type: Transform
- pos: 45.5,42.5
+ pos: -56.5,16.5
parent: 2
- - uid: 14832
+ - uid: 8746
components:
- type: Transform
- pos: 46.5,42.5
+ pos: -60.5,17.5
parent: 2
- - uid: 14833
+ - uid: 8748
components:
- type: Transform
- pos: 47.5,42.5
+ pos: -58.5,17.5
parent: 2
- - uid: 14834
+ - uid: 8749
components:
- type: Transform
- pos: 48.5,42.5
+ pos: -57.5,17.5
parent: 2
- - uid: 14835
+ - uid: 8761
components:
- type: Transform
- pos: 49.5,42.5
+ pos: -99.5,3.5
parent: 2
- - uid: 14836
+ - uid: 9119
components:
- type: Transform
- pos: -35.5,10.5
+ pos: -44.5,23.5
parent: 2
- - uid: 14837
+ - uid: 9139
components:
- type: Transform
- pos: 50.5,26.5
+ pos: -56.5,-28.5
parent: 2
- - uid: 14838
+ - uid: 9289
components:
- type: Transform
- pos: 51.5,26.5
+ pos: -40.5,-34.5
parent: 2
- - uid: 14839
+ - uid: 9348
components:
- type: Transform
- pos: 52.5,26.5
+ pos: -44.5,41.5
parent: 2
- - uid: 14840
+ - uid: 9509
components:
- type: Transform
- pos: 53.5,26.5
+ pos: -98.5,18.5
parent: 2
- - uid: 14841
+ - uid: 9512
components:
- type: Transform
- pos: 54.5,26.5
+ pos: -98.5,27.5
parent: 2
- - uid: 14842
+ - uid: 9581
components:
- type: Transform
- pos: 55.5,26.5
+ pos: -98.5,28.5
parent: 2
- - uid: 14843
+ - uid: 9603
components:
- type: Transform
- pos: 56.5,26.5
+ pos: 13.5,14.5
parent: 2
- - uid: 14844
+ - uid: 9618
components:
- type: Transform
- pos: 57.5,26.5
+ pos: -43.5,30.5
parent: 2
- - uid: 14845
+ - uid: 9619
components:
- type: Transform
- pos: 58.5,26.5
+ pos: -45.5,30.5
parent: 2
- - uid: 14846
+ - uid: 9620
components:
- type: Transform
- pos: 59.5,26.5
+ pos: -44.5,30.5
parent: 2
- - uid: 14847
+ - uid: 9621
components:
- type: Transform
- pos: 60.5,26.5
+ pos: -46.5,30.5
parent: 2
- - uid: 14848
+ - uid: 9622
components:
- type: Transform
- pos: 61.5,26.5
+ pos: -47.5,30.5
parent: 2
- - uid: 14849
+ - uid: 9645
components:
- type: Transform
- pos: 62.5,26.5
+ pos: -98.5,-6.5
parent: 2
- - uid: 14852
+ - uid: 9651
components:
- type: Transform
- pos: 53.5,24.5
+ pos: -83.5,-4.5
parent: 2
- - uid: 14853
+ - uid: 9661
components:
- type: Transform
- pos: 53.5,23.5
+ pos: -44.5,22.5
parent: 2
- - uid: 14854
+ - uid: 9798
components:
- type: Transform
- pos: 53.5,22.5
+ pos: 62.5,-83.5
parent: 2
- - uid: 14855
+ - uid: 9799
components:
- type: Transform
- pos: 53.5,21.5
+ pos: -72.5,-34.5
parent: 2
- - uid: 14856
+ - uid: 9800
components:
- type: Transform
- pos: 53.5,20.5
+ pos: -76.5,-34.5
parent: 2
- - uid: 14857
+ - uid: 9801
components:
- type: Transform
- pos: 53.5,19.5
+ pos: -74.5,-34.5
parent: 2
- - uid: 14858
+ - uid: 9966
components:
- type: Transform
- pos: 53.5,18.5
+ pos: 18.5,29.5
parent: 2
- - uid: 14859
+ - uid: 10026
components:
- type: Transform
- pos: 53.5,17.5
+ pos: 15.5,14.5
parent: 2
- - uid: 14860
+ - uid: 10057
components:
- type: Transform
- pos: 53.5,16.5
+ pos: 7.5,70.5
parent: 2
- - uid: 14861
+ - uid: 10058
components:
- type: Transform
- pos: 53.5,15.5
+ pos: 8.5,68.5
parent: 2
- - uid: 14862
+ - uid: 10081
components:
- type: Transform
- pos: 53.5,14.5
+ pos: -64.5,35.5
parent: 2
- - uid: 14863
+ - uid: 10082
components:
- type: Transform
- pos: 53.5,13.5
+ pos: -64.5,34.5
parent: 2
- - uid: 14864
+ - uid: 10083
components:
- type: Transform
- pos: 53.5,12.5
+ pos: -63.5,34.5
parent: 2
- - uid: 14865
+ - uid: 10084
components:
- type: Transform
- pos: 53.5,11.5
+ pos: -62.5,34.5
parent: 2
- - uid: 14866
+ - uid: 10085
components:
- type: Transform
- pos: 54.5,17.5
+ pos: -61.5,34.5
parent: 2
- - uid: 14867
+ - uid: 10086
components:
- type: Transform
- pos: 55.5,17.5
+ pos: -60.5,34.5
parent: 2
- - uid: 14868
+ - uid: 10087
components:
- type: Transform
- pos: 56.5,17.5
+ pos: -59.5,34.5
parent: 2
- - uid: 14869
+ - uid: 10088
components:
- type: Transform
- pos: 57.5,17.5
+ pos: -58.5,34.5
parent: 2
- - uid: 14870
+ - uid: 10089
components:
- type: Transform
- pos: 58.5,17.5
+ pos: -57.5,34.5
parent: 2
- - uid: 14871
+ - uid: 10090
components:
- type: Transform
- pos: 59.5,17.5
+ pos: -56.5,34.5
parent: 2
- - uid: 14872
+ - uid: 10091
components:
- type: Transform
- pos: 60.5,17.5
+ pos: -55.5,34.5
parent: 2
- - uid: 14873
+ - uid: 10092
components:
- type: Transform
- pos: 61.5,17.5
+ pos: -54.5,34.5
parent: 2
- - uid: 14874
+ - uid: 10093
components:
- type: Transform
- pos: 62.5,17.5
+ pos: -54.5,35.5
parent: 2
- - uid: 14875
+ - uid: 10094
components:
- type: Transform
- pos: 63.5,17.5
+ pos: -54.5,36.5
parent: 2
- - uid: 14876
+ - uid: 10095
components:
- type: Transform
- pos: 64.5,17.5
+ pos: -54.5,37.5
parent: 2
- - uid: 14877
+ - uid: 10097
components:
- type: Transform
- pos: 65.5,17.5
+ pos: -54.5,39.5
parent: 2
- - uid: 14878
+ - uid: 10098
components:
- type: Transform
- pos: 66.5,17.5
+ pos: -55.5,39.5
parent: 2
- - uid: 14879
+ - uid: 10099
components:
- type: Transform
- pos: 67.5,17.5
+ pos: -56.5,39.5
parent: 2
- - uid: 14880
+ - uid: 10100
components:
- type: Transform
- pos: 68.5,17.5
+ pos: -57.5,39.5
parent: 2
- - uid: 14881
+ - uid: 10101
components:
- type: Transform
- pos: 69.5,17.5
+ pos: -58.5,39.5
parent: 2
- - uid: 14896
+ - uid: 10102
components:
- type: Transform
- pos: 63.5,16.5
+ pos: -59.5,39.5
parent: 2
- - uid: 14897
+ - uid: 10103
components:
- type: Transform
- pos: 63.5,15.5
+ pos: -60.5,39.5
parent: 2
- - uid: 14898
+ - uid: 10104
components:
- type: Transform
- pos: 63.5,14.5
+ pos: -61.5,39.5
parent: 2
- - uid: 14899
+ - uid: 10105
components:
- type: Transform
- pos: 63.5,13.5
+ pos: -61.5,40.5
parent: 2
- - uid: 14900
+ - uid: 10106
components:
- type: Transform
- pos: 63.5,12.5
+ pos: -62.5,40.5
parent: 2
- - uid: 14901
+ - uid: 10107
components:
- type: Transform
- pos: 63.5,11.5
+ pos: -63.5,40.5
parent: 2
- - uid: 14902
+ - uid: 10108
components:
- type: Transform
- pos: 63.5,10.5
+ pos: -64.5,40.5
parent: 2
- - uid: 14903
+ - uid: 10109
components:
- type: Transform
- pos: 63.5,18.5
+ pos: -65.5,40.5
parent: 2
- - uid: 14904
+ - uid: 10110
components:
- type: Transform
- pos: 63.5,19.5
+ pos: -66.5,40.5
parent: 2
- - uid: 14905
+ - uid: 10111
components:
- type: Transform
- pos: 63.5,20.5
+ pos: -66.5,41.5
parent: 2
- - uid: 14906
+ - uid: 10112
components:
- type: Transform
- pos: 63.5,21.5
+ pos: -66.5,42.5
parent: 2
- - uid: 14907
+ - uid: 10113
components:
- type: Transform
- pos: 63.5,22.5
+ pos: -66.5,43.5
parent: 2
- - uid: 14908
+ - uid: 10114
components:
- type: Transform
- pos: 63.5,23.5
+ pos: -66.5,44.5
parent: 2
- - uid: 14909
+ - uid: 10115
components:
- type: Transform
- pos: 63.5,24.5
+ pos: -66.5,45.5
parent: 2
- - uid: 14910
+ - uid: 10116
components:
- type: Transform
- pos: 58.5,24.5
+ pos: -66.5,46.5
parent: 2
- - uid: 14911
+ - uid: 10117
components:
- type: Transform
- pos: 58.5,23.5
+ pos: -66.5,47.5
parent: 2
- - uid: 14912
+ - uid: 10118
components:
- type: Transform
- pos: 58.5,22.5
+ pos: -66.5,48.5
parent: 2
- - uid: 14913
+ - uid: 10119
components:
- type: Transform
- pos: 58.5,21.5
+ pos: -65.5,34.5
parent: 2
- - uid: 14914
+ - uid: 10120
components:
- type: Transform
- pos: 58.5,20.5
+ pos: -66.5,34.5
parent: 2
- - uid: 14915
+ - uid: 10121
components:
- type: Transform
- pos: 58.5,19.5
+ pos: -67.5,34.5
parent: 2
- - uid: 14916
+ - uid: 10130
components:
- type: Transform
- pos: 58.5,18.5
+ pos: -68.5,29.5
parent: 2
- - uid: 14917
+ - uid: 10131
components:
- type: Transform
- pos: 58.5,16.5
+ pos: -68.5,28.5
parent: 2
- - uid: 14918
+ - uid: 10132
components:
- type: Transform
- pos: 58.5,15.5
+ pos: -68.5,27.5
parent: 2
- - uid: 14919
+ - uid: 10133
components:
- type: Transform
- pos: 58.5,14.5
+ pos: -68.5,26.5
parent: 2
- - uid: 14920
+ - uid: 10134
components:
- type: Transform
- pos: 58.5,13.5
+ pos: -68.5,25.5
parent: 2
- - uid: 14921
+ - uid: 10135
components:
- type: Transform
- pos: 58.5,12.5
+ pos: -68.5,24.5
parent: 2
- - uid: 14922
+ - uid: 10136
components:
- type: Transform
- pos: 58.5,11.5
+ pos: -68.5,23.5
parent: 2
- - uid: 14923
+ - uid: 10137
components:
- type: Transform
- pos: 58.5,10.5
+ pos: -68.5,22.5
parent: 2
- - uid: 14927
+ - uid: 10138
components:
- type: Transform
- pos: 53.5,6.5
+ pos: -68.5,21.5
parent: 2
- - uid: 14928
+ - uid: 10139
components:
- type: Transform
- pos: 53.5,5.5
+ pos: -68.5,20.5
parent: 2
- - uid: 14929
+ - uid: 10140
components:
- type: Transform
- pos: 53.5,4.5
+ pos: -68.5,19.5
parent: 2
- - uid: 14930
+ - uid: 10141
components:
- type: Transform
- pos: 53.5,3.5
+ pos: -67.5,19.5
parent: 2
- - uid: 14931
+ - uid: 10142
components:
- type: Transform
- pos: 54.5,3.5
+ pos: -66.5,19.5
parent: 2
- - uid: 14932
+ - uid: 10143
components:
- type: Transform
- pos: 54.5,2.5
+ pos: -65.5,19.5
parent: 2
- - uid: 14945
+ - uid: 10144
components:
- type: Transform
- pos: 49.5,43.5
+ pos: -65.5,18.5
parent: 2
- - uid: 14983
+ - uid: 10145
components:
- type: Transform
- pos: 83.5,56.5
+ pos: -65.5,17.5
parent: 2
- - uid: 14986
+ - uid: 10146
components:
- type: Transform
- pos: 37.5,50.5
+ pos: -65.5,16.5
parent: 2
- - uid: 14987
+ - uid: 10147
components:
- type: Transform
- pos: 37.5,51.5
+ pos: -65.5,15.5
parent: 2
- - uid: 14988
+ - uid: 10148
components:
- type: Transform
- pos: 37.5,52.5
+ pos: -65.5,14.5
parent: 2
- - uid: 14989
+ - uid: 10149
components:
- type: Transform
- pos: 37.5,53.5
+ pos: -65.5,13.5
parent: 2
- - uid: 14990
+ - uid: 10150
components:
- type: Transform
- pos: 37.5,54.5
+ pos: -65.5,12.5
parent: 2
- - uid: 14991
+ - uid: 10152
components:
- type: Transform
- pos: 37.5,55.5
+ pos: -57.5,-28.5
parent: 2
- - uid: 14992
+ - uid: 10153
components:
- type: Transform
- pos: 37.5,56.5
+ pos: -54.5,33.5
parent: 2
- - uid: 14993
+ - uid: 10154
components:
- type: Transform
- pos: 37.5,57.5
+ pos: -54.5,32.5
parent: 2
- - uid: 14994
+ - uid: 10155
components:
- type: Transform
- pos: 38.5,57.5
+ pos: -54.5,31.5
parent: 2
- - uid: 14995
+ - uid: 10156
components:
- type: Transform
- pos: 39.5,57.5
+ pos: -54.5,30.5
parent: 2
- - uid: 14996
+ - uid: 10157
components:
- type: Transform
- pos: 40.5,57.5
+ pos: -54.5,29.5
parent: 2
- - uid: 14997
+ - uid: 10158
components:
- type: Transform
- pos: 41.5,57.5
+ pos: -54.5,28.5
parent: 2
- - uid: 14998
+ - uid: 10159
components:
- type: Transform
- pos: 41.5,56.5
+ pos: -54.5,27.5
parent: 2
- - uid: 14999
+ - uid: 10160
components:
- type: Transform
- pos: 41.5,55.5
+ pos: -54.5,26.5
parent: 2
- - uid: 15000
+ - uid: 10161
components:
- type: Transform
- pos: 41.5,54.5
+ pos: -54.5,25.5
parent: 2
- - uid: 15001
+ - uid: 10163
components:
- type: Transform
- pos: 41.5,53.5
+ pos: -68.5,1.5
parent: 2
- - uid: 15002
+ - uid: 10164
components:
- type: Transform
- pos: 40.5,53.5
+ pos: -54.5,22.5
parent: 2
- - uid: 15003
+ - uid: 10165
components:
- type: Transform
- pos: 39.5,53.5
+ pos: -54.5,21.5
parent: 2
- - uid: 15004
+ - uid: 10166
components:
- type: Transform
- pos: 38.5,53.5
+ pos: -54.5,20.5
parent: 2
- - uid: 15005
+ - uid: 10167
components:
- type: Transform
- pos: 39.5,54.5
+ pos: -54.5,19.5
parent: 2
- - uid: 15006
+ - uid: 10168
components:
- type: Transform
- pos: 39.5,55.5
+ pos: -54.5,18.5
parent: 2
- - uid: 15007
+ - uid: 10169
components:
- type: Transform
- pos: 43.5,57.5
+ pos: -54.5,17.5
parent: 2
- - uid: 15008
+ - uid: 10170
components:
- type: Transform
- pos: 43.5,56.5
+ pos: -54.5,16.5
parent: 2
- - uid: 15009
+ - uid: 10171
components:
- type: Transform
- pos: 43.5,55.5
+ pos: -54.5,15.5
parent: 2
- - uid: 15010
+ - uid: 10172
components:
- type: Transform
- pos: 43.5,54.5
+ pos: -54.5,14.5
parent: 2
- - uid: 15011
+ - uid: 10173
components:
- type: Transform
- pos: 43.5,53.5
+ pos: -54.5,13.5
parent: 2
- - uid: 15012
+ - uid: 10174
components:
- type: Transform
- pos: 44.5,53.5
+ pos: -54.5,12.5
parent: 2
- - uid: 15013
+ - uid: 10175
components:
- type: Transform
- pos: 45.5,53.5
+ pos: -55.5,12.5
parent: 2
- - uid: 15014
+ - uid: 10176
components:
- type: Transform
- pos: 46.5,53.5
+ pos: -56.5,12.5
parent: 2
- - uid: 15015
+ - uid: 10177
components:
- type: Transform
- pos: 47.5,53.5
+ pos: -57.5,12.5
parent: 2
- - uid: 15016
+ - uid: 10178
components:
- type: Transform
- pos: 47.5,54.5
+ pos: -58.5,12.5
parent: 2
- - uid: 15017
+ - uid: 10179
components:
- type: Transform
- pos: 47.5,55.5
+ pos: -59.5,12.5
parent: 2
- - uid: 15018
+ - uid: 10180
components:
- type: Transform
- pos: 47.5,56.5
+ pos: -60.5,12.5
parent: 2
- - uid: 15019
+ - uid: 10181
components:
- type: Transform
- pos: 47.5,57.5
+ pos: -61.5,12.5
parent: 2
- - uid: 15020
+ - uid: 10182
components:
- type: Transform
- pos: 46.5,57.5
+ pos: -53.5,12.5
parent: 2
- - uid: 15021
+ - uid: 10183
components:
- type: Transform
- pos: 45.5,57.5
+ pos: -52.5,12.5
parent: 2
- - uid: 15022
+ - uid: 10184
components:
- type: Transform
- pos: 44.5,57.5
+ pos: -51.5,12.5
parent: 2
- - uid: 15023
+ - uid: 10185
components:
- type: Transform
- pos: 45.5,55.5
+ pos: -50.5,12.5
parent: 2
- - uid: 15024
+ - uid: 10186
components:
- type: Transform
- pos: 45.5,54.5
+ pos: -49.5,12.5
parent: 2
- - uid: 15025
+ - uid: 10187
components:
- type: Transform
- pos: 47.5,52.5
+ pos: -48.5,12.5
parent: 2
- - uid: 15026
+ - uid: 10191
components:
- type: Transform
- pos: 47.5,51.5
+ pos: 59.5,50.5
parent: 2
- - uid: 15027
+ - uid: 10192
components:
- type: Transform
- pos: 47.5,50.5
+ pos: 68.5,34.5
parent: 2
- - uid: 15028
+ - uid: 10193
components:
- type: Transform
- pos: 26.5,56.5
+ pos: 61.5,50.5
parent: 2
- - uid: 15029
+ - uid: 10194
components:
- type: Transform
- pos: 27.5,56.5
+ pos: 60.5,50.5
parent: 2
- - uid: 15030
+ - uid: 10196
components:
- type: Transform
- pos: 28.5,56.5
+ pos: -53.5,17.5
parent: 2
- - uid: 15031
+ - uid: 10197
components:
- type: Transform
- pos: 29.5,56.5
+ pos: -52.5,17.5
parent: 2
- - uid: 15032
+ - uid: 10198
components:
- type: Transform
- pos: 20.5,54.5
+ pos: -51.5,17.5
parent: 2
- - uid: 15033
+ - uid: 10199
components:
- type: Transform
- pos: 21.5,54.5
+ pos: -50.5,17.5
parent: 2
- - uid: 15034
+ - uid: 10200
components:
- type: Transform
- pos: 22.5,54.5
+ pos: -49.5,17.5
parent: 2
- - uid: 15035
+ - uid: 10201
components:
- type: Transform
- pos: 23.5,54.5
+ pos: -48.5,17.5
parent: 2
- - uid: 15036
+ - uid: 10202
components:
- type: Transform
- pos: 24.5,54.5
+ pos: -53.5,22.5
parent: 2
- - uid: 15037
+ - uid: 10203
components:
- type: Transform
- pos: 25.5,54.5
+ pos: -52.5,22.5
parent: 2
- - uid: 15038
+ - uid: 10204
components:
- type: Transform
- pos: 26.5,54.5
+ pos: -51.5,22.5
parent: 2
- - uid: 15039
+ - uid: 10205
components:
- type: Transform
- pos: 27.5,54.5
+ pos: -50.5,22.5
parent: 2
- - uid: 15040
+ - uid: 10206
components:
- type: Transform
- pos: 28.5,54.5
+ pos: -49.5,22.5
parent: 2
- - uid: 15041
+ - uid: 10207
components:
- type: Transform
- pos: 29.5,54.5
+ pos: -49.5,23.5
parent: 2
- - uid: 15329
+ - uid: 10208
components:
- type: Transform
- pos: 4.5,69.5
+ pos: -49.5,24.5
parent: 2
- - uid: 15330
+ - uid: 10209
components:
- type: Transform
- pos: -68.5,2.5
+ pos: -49.5,25.5
parent: 2
- - uid: 15332
+ - uid: 10210
components:
- type: Transform
- pos: -7.5,67.5
+ pos: -49.5,26.5
parent: 2
- - uid: 15454
+ - uid: 10222
components:
- type: Transform
- pos: -35.5,29.5
+ pos: -43.5,31.5
parent: 2
- - uid: 15488
+ - uid: 10223
components:
- type: Transform
- pos: -8.5,67.5
+ pos: -43.5,32.5
parent: 2
- - uid: 15519
+ - uid: 10224
components:
- type: Transform
- pos: -44.5,24.5
+ pos: -43.5,33.5
parent: 2
- - uid: 15521
+ - uid: 10225
components:
- type: Transform
- pos: -44.5,25.5
+ pos: -43.5,34.5
parent: 2
- - uid: 15522
+ - uid: 10226
components:
- type: Transform
- pos: -34.5,34.5
+ pos: -43.5,35.5
parent: 2
- - uid: 15526
+ - uid: 10228
components:
- type: Transform
- pos: -35.5,33.5
+ pos: -55.5,-9.5
parent: 2
- - uid: 15541
+ - uid: 10229
components:
- type: Transform
- pos: 7.5,67.5
+ pos: -43.5,38.5
parent: 2
- - uid: 15564
+ - uid: 10237
components:
- type: Transform
- pos: -12.5,42.5
+ pos: -48.5,41.5
parent: 2
- - uid: 15567
+ - uid: 10239
components:
- type: Transform
- pos: -12.5,41.5
+ pos: -50.5,41.5
parent: 2
- - uid: 15572
+ - uid: 10240
components:
- type: Transform
- pos: 3.5,30.5
+ pos: -50.5,42.5
parent: 2
- - uid: 15575
+ - uid: 10241
components:
- type: Transform
- pos: -26.5,2.5
+ pos: -50.5,43.5
parent: 2
- - uid: 15576
+ - uid: 10242
components:
- type: Transform
- pos: -25.5,2.5
+ pos: -50.5,44.5
parent: 2
- - uid: 15627
+ - uid: 10243
components:
- type: Transform
- pos: -35.5,32.5
+ pos: -50.5,45.5
parent: 2
- - uid: 15628
+ - uid: 10244
components:
- type: Transform
- pos: -35.5,34.5
+ pos: -50.5,46.5
parent: 2
- - uid: 15644
+ - uid: 10245
components:
- type: Transform
- pos: -11.5,37.5
+ pos: -49.5,46.5
parent: 2
- - uid: 15673
+ - uid: 10246
components:
- type: Transform
- pos: -43.5,26.5
+ pos: -48.5,46.5
parent: 2
- - uid: 15772
+ - uid: 10247
components:
- type: Transform
- pos: -10.5,35.5
+ pos: -47.5,46.5
parent: 2
- - uid: 15806
+ - uid: 10248
components:
- type: Transform
- pos: -44.5,20.5
+ pos: -46.5,46.5
parent: 2
- - uid: 15820
+ - uid: 10249
components:
- type: Transform
- pos: 9.5,68.5
+ pos: -45.5,46.5
parent: 2
- - uid: 15829
+ - uid: 10250
components:
- type: Transform
- pos: -45.5,69.5
+ pos: -44.5,46.5
parent: 2
- - uid: 15833
+ - uid: 10251
components:
- type: Transform
- pos: -103.5,1.5
+ pos: -43.5,46.5
parent: 2
- - uid: 15844
+ - uid: 10252
components:
- type: Transform
- pos: 60.5,-9.5
+ pos: -42.5,46.5
parent: 2
- - uid: 15845
+ - uid: 10253
components:
- type: Transform
- pos: -47.5,-30.5
+ pos: -41.5,46.5
parent: 2
- - uid: 15846
+ - uid: 10254
components:
- type: Transform
- pos: 1.5,24.5
+ pos: -40.5,46.5
parent: 2
- - uid: 15851
+ - uid: 10255
components:
- type: Transform
- pos: -40.5,26.5
+ pos: -39.5,46.5
parent: 2
- - uid: 15859
+ - uid: 10256
components:
- type: Transform
- pos: -23.5,43.5
+ pos: -38.5,46.5
parent: 2
- - uid: 15883
+ - uid: 10257
components:
- type: Transform
- pos: -48.5,-30.5
+ pos: -37.5,46.5
parent: 2
- - uid: 15941
+ - uid: 10259
components:
- type: Transform
- pos: -43.5,69.5
+ pos: -68.5,0.5
parent: 2
- - uid: 15949
+ - uid: 10272
components:
- type: Transform
- pos: -102.5,1.5
+ pos: -17.5,38.5
parent: 2
- - uid: 15971
+ - uid: 10275
components:
- type: Transform
- pos: -101.5,1.5
+ pos: -36.5,38.5
parent: 2
- - uid: 15972
+ - uid: 10276
components:
- type: Transform
- pos: -12.5,37.5
+ pos: -37.5,38.5
parent: 2
- - uid: 15974
+ - uid: 10277
components:
- type: Transform
- pos: -8.5,40.5
+ pos: -38.5,38.5
parent: 2
- - uid: 15981
+ - uid: 10278
components:
- type: Transform
- pos: -12.5,38.5
+ pos: -39.5,38.5
parent: 2
- - uid: 15982
+ - uid: 10279
components:
- type: Transform
- pos: -99.5,1.5
+ pos: -40.5,38.5
parent: 2
- - uid: 15984
+ - uid: 10280
components:
- type: Transform
- pos: -107.5,3.5
+ pos: -41.5,38.5
parent: 2
- - uid: 16085
+ - uid: 10281
components:
- type: Transform
- pos: -9.5,35.5
+ pos: -42.5,38.5
parent: 2
- - uid: 16091
+ - uid: 10282
components:
- type: Transform
- pos: -10.5,40.5
+ pos: -50.5,47.5
parent: 2
- - uid: 16092
+ - uid: 10283
components:
- type: Transform
- pos: -10.5,41.5
+ pos: -50.5,48.5
parent: 2
- - uid: 16093
+ - uid: 10284
components:
- type: Transform
- pos: -10.5,42.5
+ pos: -50.5,49.5
parent: 2
- - uid: 16094
+ - uid: 10285
components:
- type: Transform
- pos: -12.5,40.5
+ pos: -50.5,50.5
parent: 2
- - uid: 16095
+ - uid: 10286
components:
- type: Transform
- pos: -10.5,44.5
+ pos: -50.5,51.5
parent: 2
- - uid: 16096
+ - uid: 10287
components:
- type: Transform
- pos: -10.5,45.5
+ pos: -50.5,52.5
parent: 2
- - uid: 16098
+ - uid: 10288
components:
- type: Transform
- pos: -11.5,44.5
+ pos: -48.5,47.5
parent: 2
- - uid: 16099
+ - uid: 10289
components:
- type: Transform
- pos: -12.5,44.5
+ pos: -48.5,48.5
parent: 2
- - uid: 16100
+ - uid: 10290
components:
- type: Transform
- pos: -12.5,45.5
+ pos: -48.5,49.5
parent: 2
- - uid: 16102
+ - uid: 10291
components:
- type: Transform
- pos: -12.5,47.5
+ pos: -48.5,50.5
parent: 2
- - uid: 16103
+ - uid: 10292
components:
- type: Transform
- pos: -12.5,48.5
+ pos: -48.5,51.5
parent: 2
- - uid: 16104
+ - uid: 10293
components:
- type: Transform
- pos: -12.5,49.5
+ pos: -48.5,52.5
parent: 2
- - uid: 16105
+ - uid: 10294
components:
- type: Transform
- pos: -12.5,50.5
+ pos: -46.5,47.5
parent: 2
- - uid: 16106
+ - uid: 10295
components:
- type: Transform
- pos: -12.5,51.5
+ pos: -46.5,48.5
parent: 2
- - uid: 16107
+ - uid: 10296
components:
- type: Transform
- pos: -12.5,52.5
+ pos: -46.5,49.5
parent: 2
- - uid: 16108
+ - uid: 10297
components:
- type: Transform
- pos: -12.5,53.5
+ pos: -46.5,50.5
parent: 2
- - uid: 16109
+ - uid: 10298
components:
- type: Transform
- pos: -12.5,54.5
+ pos: -46.5,51.5
parent: 2
- - uid: 16110
+ - uid: 10299
components:
- type: Transform
- pos: -12.5,55.5
+ pos: -46.5,52.5
parent: 2
- - uid: 16111
+ - uid: 10300
components:
- type: Transform
- pos: -12.5,56.5
+ pos: -44.5,47.5
parent: 2
- - uid: 16112
+ - uid: 10301
components:
- type: Transform
- pos: -12.5,57.5
+ pos: -44.5,48.5
parent: 2
- - uid: 16113
+ - uid: 10302
components:
- type: Transform
- pos: -12.5,58.5
+ pos: -44.5,49.5
parent: 2
- - uid: 16114
+ - uid: 10303
components:
- type: Transform
- pos: -11.5,58.5
+ pos: -44.5,50.5
parent: 2
- - uid: 16115
+ - uid: 10304
components:
- type: Transform
- pos: -10.5,58.5
+ pos: -44.5,51.5
parent: 2
- - uid: 16116
+ - uid: 10305
components:
- type: Transform
- pos: -9.5,58.5
+ pos: -44.5,52.5
parent: 2
- - uid: 16117
+ - uid: 10306
components:
- type: Transform
- pos: -8.5,58.5
+ pos: -42.5,47.5
parent: 2
- - uid: 16118
+ - uid: 10307
components:
- type: Transform
- pos: -7.5,58.5
+ pos: -42.5,48.5
parent: 2
- - uid: 16119
+ - uid: 10308
components:
- type: Transform
- pos: -6.5,58.5
+ pos: -42.5,49.5
parent: 2
- - uid: 16120
+ - uid: 10309
components:
- type: Transform
- pos: -5.5,58.5
+ pos: -42.5,50.5
parent: 2
- - uid: 16121
+ - uid: 10310
components:
- type: Transform
- pos: -4.5,58.5
+ pos: -42.5,51.5
parent: 2
- - uid: 16122
+ - uid: 10311
components:
- type: Transform
- pos: -3.5,58.5
+ pos: -42.5,52.5
parent: 2
- - uid: 16123
+ - uid: 10312
components:
- type: Transform
- pos: -3.5,59.5
+ pos: -40.5,47.5
parent: 2
- - uid: 16124
+ - uid: 10313
components:
- type: Transform
- pos: -3.5,60.5
+ pos: -40.5,48.5
parent: 2
- - uid: 16125
+ - uid: 10314
components:
- type: Transform
- pos: -3.5,61.5
+ pos: -40.5,49.5
parent: 2
- - uid: 16126
+ - uid: 10315
components:
- type: Transform
- pos: -4.5,61.5
+ pos: -40.5,50.5
parent: 2
- - uid: 16127
+ - uid: 10316
components:
- type: Transform
- pos: -5.5,61.5
+ pos: -40.5,51.5
parent: 2
- - uid: 16128
+ - uid: 10317
components:
- type: Transform
- pos: -6.5,61.5
+ pos: -40.5,52.5
parent: 2
- - uid: 16129
+ - uid: 10318
components:
- type: Transform
- pos: -7.5,61.5
+ pos: -38.5,47.5
parent: 2
- - uid: 16130
+ - uid: 10319
components:
- type: Transform
- pos: -8.5,61.5
+ pos: -38.5,48.5
parent: 2
- - uid: 16131
+ - uid: 10320
components:
- type: Transform
- pos: -8.5,60.5
+ pos: -38.5,49.5
parent: 2
- - uid: 16132
+ - uid: 10321
components:
- type: Transform
- pos: -8.5,59.5
+ pos: -38.5,50.5
parent: 2
- - uid: 16133
+ - uid: 10322
components:
- type: Transform
- pos: -11.5,51.5
+ pos: -38.5,51.5
parent: 2
- - uid: 16134
+ - uid: 10323
components:
- type: Transform
- pos: -10.5,51.5
+ pos: -38.5,52.5
parent: 2
- - uid: 16135
+ - uid: 10327
components:
- type: Transform
- pos: -9.5,51.5
+ pos: -2.5,45.5
parent: 2
- - uid: 16136
+ - uid: 10352
components:
- type: Transform
- pos: -8.5,51.5
+ pos: 73.5,30.5
parent: 2
- - uid: 16137
+ - uid: 10362
components:
- type: Transform
- pos: -7.5,51.5
+ pos: 8.5,16.5
parent: 2
- - uid: 16138
+ - uid: 10376
components:
- type: Transform
- pos: -6.5,51.5
+ pos: -12.5,43.5
parent: 2
- - uid: 16139
+ - uid: 10377
components:
- type: Transform
- pos: -5.5,51.5
+ pos: -2.5,42.5
parent: 2
- - uid: 16140
+ - uid: 10450
components:
- type: Transform
- pos: -4.5,51.5
+ pos: -68.5,-34.5
parent: 2
- - uid: 16141
+ - uid: 10451
components:
- type: Transform
- pos: -3.5,51.5
+ pos: -73.5,-34.5
parent: 2
- - uid: 16142
+ - uid: 10493
components:
- type: Transform
- pos: -2.5,51.5
+ pos: -78.5,-34.5
parent: 2
- - uid: 16144
+ - uid: 10494
components:
- type: Transform
- pos: -12.5,39.5
+ pos: -80.5,-34.5
parent: 2
- - uid: 16145
+ - uid: 10495
components:
- type: Transform
- pos: -13.5,39.5
+ pos: -81.5,-34.5
parent: 2
- - uid: 16146
+ - uid: 10496
components:
- type: Transform
- pos: -14.5,39.5
+ pos: -79.5,-34.5
parent: 2
- - uid: 16147
+ - uid: 10507
components:
- type: Transform
- pos: -15.5,39.5
+ pos: -69.5,-34.5
parent: 2
- - uid: 16151
+ - uid: 10508
components:
- type: Transform
- pos: -71.5,1.5
+ pos: -70.5,-34.5
parent: 2
- - uid: 16152
+ - uid: 10509
components:
- type: Transform
- pos: -20.5,39.5
+ pos: -71.5,-34.5
parent: 2
- - uid: 16153
+ - uid: 10510
components:
- type: Transform
- pos: -21.5,39.5
+ pos: -77.5,-34.5
parent: 2
- - uid: 16154
+ - uid: 10511
components:
- type: Transform
- pos: -22.5,39.5
+ pos: -75.5,-34.5
parent: 2
- - uid: 16155
+ - uid: 10617
components:
- type: Transform
- pos: -23.5,39.5
+ pos: -91.5,22.5
parent: 2
- - uid: 16156
+ - uid: 10707
components:
- type: Transform
- pos: -24.5,39.5
+ pos: -39.5,-34.5
parent: 2
- - uid: 16157
+ - uid: 10932
components:
- type: Transform
- pos: -25.5,39.5
+ pos: 12.5,14.5
parent: 2
- - uid: 16158
+ - uid: 10933
components:
- type: Transform
- pos: -26.5,39.5
+ pos: 16.5,14.5
parent: 2
- - uid: 16159
+ - uid: 10934
components:
- type: Transform
- pos: -27.5,39.5
+ pos: 14.5,14.5
parent: 2
- - uid: 16160
+ - uid: 10936
components:
- type: Transform
- pos: -27.5,40.5
+ pos: 17.5,14.5
parent: 2
- - uid: 16161
+ - uid: 11008
components:
- type: Transform
- pos: -28.5,40.5
+ pos: -48.5,1.5
parent: 2
- - uid: 16162
+ - uid: 11012
components:
- type: Transform
- pos: -29.5,40.5
+ pos: -34.5,-44.5
parent: 2
- - uid: 16163
+ - uid: 11023
components:
- type: Transform
- pos: -27.5,41.5
+ pos: -50.5,-28.5
parent: 2
- - uid: 16164
+ - uid: 11024
components:
- type: Transform
- pos: -9.5,40.5
+ pos: -49.5,-28.5
parent: 2
- - uid: 16166
+ - uid: 11025
components:
- type: Transform
- pos: -17.5,38.5
+ pos: -48.5,-32.5
parent: 2
- - uid: 16167
+ - uid: 11026
components:
- type: Transform
- pos: -17.5,37.5
+ pos: -47.5,-32.5
parent: 2
- - uid: 16168
+ - uid: 11027
components:
- type: Transform
- pos: -17.5,36.5
+ pos: -48.5,-28.5
parent: 2
- - uid: 16169
+ - uid: 11033
components:
- type: Transform
- pos: -18.5,36.5
+ pos: -48.5,-29.5
parent: 2
- - uid: 16170
+ - uid: 11045
components:
- type: Transform
- pos: -19.5,36.5
+ pos: -48.5,-31.5
parent: 2
- - uid: 16171
+ - uid: 11047
components:
- type: Transform
- pos: -20.5,36.5
+ pos: -55.5,-22.5
parent: 2
- - uid: 16172
+ - uid: 11048
components:
- type: Transform
- pos: -21.5,36.5
+ pos: -58.5,-24.5
parent: 2
- - uid: 16173
+ - uid: 11049
components:
- type: Transform
- pos: -22.5,36.5
+ pos: -58.5,-23.5
parent: 2
- - uid: 16174
+ - uid: 11050
components:
- type: Transform
- pos: -23.5,36.5
+ pos: -58.5,-22.5
parent: 2
- - uid: 16175
+ - uid: 11051
components:
- type: Transform
- pos: -24.5,36.5
+ pos: -58.5,-21.5
parent: 2
- - uid: 16176
+ - uid: 11052
components:
- type: Transform
- pos: -25.5,36.5
+ pos: -58.5,-20.5
parent: 2
- - uid: 16177
+ - uid: 11053
components:
- type: Transform
- pos: -26.5,36.5
+ pos: -58.5,-19.5
parent: 2
- - uid: 16178
+ - uid: 11054
components:
- type: Transform
- pos: -27.5,36.5
+ pos: -58.5,-18.5
parent: 2
- - uid: 16179
+ - uid: 11055
components:
- type: Transform
- pos: -28.5,37.5
+ pos: -58.5,-17.5
parent: 2
- - uid: 16180
+ - uid: 11056
components:
- type: Transform
- pos: -29.5,37.5
+ pos: -58.5,-16.5
parent: 2
- - uid: 16181
+ - uid: 11057
components:
- type: Transform
- pos: -10.5,34.5
+ pos: -58.5,-15.5
parent: 2
- - uid: 16182
+ - uid: 11060
components:
- type: Transform
- pos: -10.5,33.5
+ pos: -58.5,-12.5
parent: 2
- - uid: 16183
+ - uid: 11061
components:
- type: Transform
- pos: -10.5,32.5
+ pos: -57.5,-12.5
parent: 2
- - uid: 16184
+ - uid: 11062
components:
- type: Transform
- pos: -10.5,31.5
+ pos: -56.5,-12.5
parent: 2
- - uid: 16185
+ - uid: 11063
components:
- type: Transform
- pos: -10.5,30.5
+ pos: -55.5,-12.5
parent: 2
- - uid: 16186
+ - uid: 11064
components:
- type: Transform
- pos: -10.5,29.5
+ pos: -54.5,-12.5
parent: 2
- - uid: 16187
+ - uid: 11065
components:
- type: Transform
- pos: -9.5,29.5
+ pos: -53.5,-12.5
parent: 2
- - uid: 16188
+ - uid: 11066
components:
- type: Transform
- pos: -8.5,29.5
+ pos: -52.5,-12.5
parent: 2
- - uid: 16189
+ - uid: 11067
components:
- type: Transform
- pos: -7.5,29.5
+ pos: -52.5,-11.5
parent: 2
- - uid: 16190
+ - uid: 11068
components:
- type: Transform
- pos: -6.5,29.5
+ pos: -51.5,-11.5
parent: 2
- - uid: 16191
+ - uid: 11069
components:
- type: Transform
- pos: -5.5,29.5
+ pos: -50.5,-11.5
parent: 2
- - uid: 16192
+ - uid: 11071
components:
- type: Transform
- pos: -5.5,30.5
+ pos: -58.5,-11.5
parent: 2
- - uid: 16193
+ - uid: 11072
components:
- type: Transform
- pos: -5.5,31.5
+ pos: -59.5,-11.5
parent: 2
- - uid: 16194
+ - uid: 11073
components:
- type: Transform
- pos: -5.5,32.5
+ pos: -59.5,-10.5
parent: 2
- - uid: 16195
+ - uid: 11074
components:
- type: Transform
- pos: -5.5,33.5
+ pos: -59.5,-9.5
parent: 2
- - uid: 16196
+ - uid: 11075
components:
- type: Transform
- pos: -5.5,34.5
+ pos: -59.5,-8.5
parent: 2
- - uid: 16197
+ - uid: 11076
components:
- type: Transform
- pos: -5.5,28.5
+ pos: -59.5,-7.5
parent: 2
- - uid: 16198
+ - uid: 11077
components:
- type: Transform
- pos: -5.5,27.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 16199
+ - uid: 11078
components:
- type: Transform
- pos: -5.5,26.5
+ pos: -59.5,-31.5
parent: 2
- - uid: 16200
+ - uid: 11079
components:
- type: Transform
- pos: -6.5,26.5
+ pos: -59.5,-4.5
parent: 2
- - uid: 16201
+ - uid: 11080
components:
- type: Transform
- pos: -7.5,26.5
+ pos: -59.5,-3.5
parent: 2
- - uid: 16202
+ - uid: 11081
components:
- type: Transform
- pos: -8.5,26.5
+ pos: -59.5,-2.5
parent: 2
- - uid: 16203
+ - uid: 11082
components:
- type: Transform
- pos: -9.5,26.5
+ pos: -59.5,-1.5
parent: 2
- - uid: 16204
+ - uid: 11083
components:
- type: Transform
- pos: -10.5,26.5
+ pos: -59.5,-0.5
parent: 2
- - uid: 16205
+ - uid: 11084
components:
- type: Transform
- pos: -11.5,26.5
+ pos: -59.5,0.5
parent: 2
- - uid: 16206
+ - uid: 11085
components:
- type: Transform
- pos: -11.5,30.5
+ pos: -59.5,1.5
parent: 2
- - uid: 16207
+ - uid: 11086
components:
- type: Transform
- pos: -12.5,30.5
+ pos: -59.5,2.5
parent: 2
- - uid: 16208
+ - uid: 11087
components:
- type: Transform
- pos: -13.5,30.5
+ pos: -59.5,3.5
parent: 2
- - uid: 16209
+ - uid: 11088
components:
- type: Transform
- pos: -14.5,30.5
+ pos: -59.5,4.5
parent: 2
- - uid: 16210
+ - uid: 11089
components:
- type: Transform
- pos: -15.5,30.5
+ pos: -59.5,5.5
parent: 2
- - uid: 16211
+ - uid: 11090
components:
- type: Transform
- pos: -16.5,30.5
+ pos: -58.5,5.5
parent: 2
- - uid: 16212
+ - uid: 11091
components:
- type: Transform
- pos: -15.5,29.5
+ pos: -57.5,5.5
parent: 2
- - uid: 16213
+ - uid: 11092
components:
- type: Transform
- pos: -15.5,28.5
+ pos: -56.5,5.5
parent: 2
- - uid: 16214
+ - uid: 11093
components:
- type: Transform
- pos: -15.5,27.5
+ pos: -55.5,5.5
parent: 2
- - uid: 16215
+ - uid: 11094
components:
- type: Transform
- pos: -15.5,26.5
+ pos: -54.5,5.5
parent: 2
- - uid: 16216
+ - uid: 11095
components:
- type: Transform
- pos: -15.5,25.5
+ pos: -53.5,5.5
parent: 2
- - uid: 16217
+ - uid: 11096
components:
- type: Transform
- pos: -16.5,25.5
+ pos: -52.5,5.5
parent: 2
- - uid: 16218
+ - uid: 11097
components:
- type: Transform
- pos: -17.5,25.5
+ pos: -51.5,5.5
parent: 2
- - uid: 16219
+ - uid: 11098
components:
- type: Transform
- pos: -18.5,25.5
+ pos: -50.5,5.5
parent: 2
- - uid: 16220
+ - uid: 11099
components:
- type: Transform
- pos: -19.5,25.5
+ pos: -49.5,5.5
parent: 2
- - uid: 16221
+ - uid: 11144
components:
- type: Transform
- pos: -20.5,25.5
+ pos: -64.5,-20.5
parent: 2
- - uid: 16222
+ - uid: 11149
components:
- type: Transform
- pos: -21.5,25.5
+ pos: -65.5,-6.5
parent: 2
- - uid: 16223
+ - uid: 11150
components:
- type: Transform
- pos: -17.5,30.5
+ pos: -66.5,-6.5
parent: 2
- - uid: 16225
+ - uid: 11153
components:
- type: Transform
- pos: -19.5,30.5
+ pos: -85.5,30.5
parent: 2
- - uid: 16226
+ - uid: 11157
components:
- type: Transform
- pos: -20.5,30.5
+ pos: -72.5,5.5
parent: 2
- - uid: 16227
+ - uid: 11158
components:
- type: Transform
- pos: -21.5,30.5
+ pos: -72.5,6.5
parent: 2
- - uid: 16228
+ - uid: 11159
components:
- type: Transform
- pos: -22.5,30.5
+ pos: -72.5,7.5
parent: 2
- - uid: 16229
+ - uid: 11160
components:
- type: Transform
- pos: -22.5,29.5
+ pos: -72.5,8.5
parent: 2
- - uid: 16230
+ - uid: 11161
components:
- type: Transform
- pos: -23.5,29.5
+ pos: -71.5,8.5
parent: 2
- - uid: 16231
+ - uid: 11162
components:
- type: Transform
- pos: -24.5,29.5
+ pos: -70.5,8.5
parent: 2
- - uid: 16232
+ - uid: 11163
components:
- type: Transform
- pos: -25.5,29.5
+ pos: -69.5,8.5
parent: 2
- - uid: 16233
+ - uid: 11164
components:
- type: Transform
- pos: -26.5,29.5
+ pos: -68.5,8.5
parent: 2
- - uid: 16234
+ - uid: 11165
components:
- type: Transform
- pos: -27.5,29.5
+ pos: -67.5,8.5
parent: 2
- - uid: 16235
+ - uid: 11168
components:
- type: Transform
- pos: -28.5,29.5
+ pos: -64.5,8.5
parent: 2
- - uid: 16236
+ - uid: 11173
components:
- type: Transform
- pos: -29.5,29.5
+ pos: -64.5,3.5
parent: 2
- - uid: 16237
+ - uid: 11174
components:
- type: Transform
- pos: -30.5,29.5
+ pos: -64.5,2.5
parent: 2
- - uid: 16238
+ - uid: 11175
components:
- type: Transform
- pos: -31.5,29.5
+ pos: -64.5,1.5
parent: 2
- - uid: 16239
+ - uid: 11176
components:
- type: Transform
- pos: -32.5,29.5
+ pos: -64.5,0.5
parent: 2
- - uid: 16240
+ - uid: 11177
components:
- type: Transform
- pos: -33.5,29.5
+ pos: -64.5,-0.5
parent: 2
- - uid: 16241
+ - uid: 11178
components:
- type: Transform
- pos: -34.5,29.5
+ pos: -64.5,-1.5
parent: 2
- - uid: 16244
+ - uid: 11179
components:
- type: Transform
- pos: -34.5,32.5
+ pos: -64.5,-2.5
parent: 2
- - uid: 16247
+ - uid: 11180
components:
- type: Transform
- pos: -29.5,30.5
+ pos: -64.5,-3.5
parent: 2
- - uid: 16248
+ - uid: 11181
components:
- type: Transform
- pos: -29.5,31.5
+ pos: -65.5,-3.5
parent: 2
- - uid: 16249
+ - uid: 11182
components:
- type: Transform
- pos: -29.5,32.5
+ pos: -66.5,-3.5
parent: 2
- - uid: 16250
+ - uid: 11183
components:
- type: Transform
- pos: -29.5,33.5
+ pos: -67.5,-3.5
parent: 2
- - uid: 16251
+ - uid: 11184
components:
- type: Transform
- pos: -107.5,5.5
+ pos: -68.5,-3.5
parent: 2
- - uid: 16252
+ - uid: 11185
components:
- type: Transform
- pos: -29.5,28.5
+ pos: -72.5,9.5
parent: 2
- - uid: 16253
+ - uid: 11186
components:
- type: Transform
- pos: -29.5,27.5
+ pos: -72.5,10.5
parent: 2
- - uid: 16254
+ - uid: 11187
components:
- type: Transform
- pos: -29.5,26.5
+ pos: -72.5,11.5
parent: 2
- - uid: 16255
+ - uid: 11188
components:
- type: Transform
- pos: -29.5,25.5
+ pos: -72.5,12.5
parent: 2
- - uid: 16256
+ - uid: 11189
components:
- type: Transform
- pos: -29.5,24.5
+ pos: -72.5,13.5
parent: 2
- - uid: 16257
+ - uid: 11190
components:
- type: Transform
- pos: -25.5,24.5
+ pos: -72.5,14.5
parent: 2
- - uid: 16258
+ - uid: 11191
components:
- type: Transform
- pos: -25.5,25.5
+ pos: -72.5,15.5
parent: 2
- - uid: 16259
+ - uid: 11192
components:
- type: Transform
- pos: -25.5,26.5
+ pos: -72.5,16.5
parent: 2
- - uid: 16260
+ - uid: 11203
components:
- type: Transform
- pos: -25.5,27.5
+ pos: -72.5,21.5
parent: 2
- - uid: 16261
+ - uid: 11209
components:
- type: Transform
- pos: -25.5,28.5
+ pos: -73.5,21.5
parent: 2
- - uid: 16262
+ - uid: 11284
components:
- type: Transform
- pos: -25.5,30.5
+ pos: -90.5,-12.5
parent: 2
- - uid: 16263
+ - uid: 11286
components:
- type: Transform
- pos: -25.5,31.5
+ pos: -18.5,5.5
parent: 2
- - uid: 16264
+ - uid: 11289
components:
- type: Transform
- pos: -25.5,32.5
+ pos: -100.5,15.5
parent: 2
- - uid: 16265
+ - uid: 11294
components:
- type: Transform
- pos: -25.5,33.5
+ pos: -107.5,-8.5
parent: 2
- - uid: 16266
+ - uid: 11304
components:
- type: Transform
- pos: -106.5,3.5
+ pos: -89.5,-6.5
parent: 2
- - uid: 16267
+ - uid: 11307
components:
- type: Transform
- pos: -106.5,2.5
+ pos: -98.5,-11.5
parent: 2
- - uid: 16268
+ - uid: 11308
components:
- type: Transform
- pos: -21.5,33.5
+ pos: -99.5,12.5
parent: 2
- - uid: 16269
+ - uid: 11322
components:
- type: Transform
- pos: -21.5,32.5
+ pos: -88.5,-6.5
parent: 2
- - uid: 16270
+ - uid: 11333
components:
- type: Transform
- pos: -21.5,31.5
+ pos: -98.5,-12.5
parent: 2
- - uid: 16271
+ - uid: 11337
components:
- type: Transform
- pos: -17.5,31.5
+ pos: -102.5,31.5
parent: 2
- - uid: 16272
+ - uid: 11341
components:
- type: Transform
- pos: -17.5,32.5
+ pos: -46.5,-34.5
parent: 2
- - uid: 16273
+ - uid: 11348
components:
- type: Transform
- pos: -17.5,33.5
+ pos: -103.5,31.5
parent: 2
- - uid: 16274
+ - uid: 11354
components:
- type: Transform
- pos: -100.5,1.5
+ pos: -84.5,-6.5
parent: 2
- - uid: 16277
+ - uid: 11355
components:
- type: Transform
- pos: 3.5,28.5
+ pos: -84.5,-5.5
parent: 2
- - uid: 16301
+ - uid: 11356
components:
- type: Transform
- pos: -108.5,5.5
+ pos: -84.5,-4.5
parent: 2
- - uid: 16328
+ - uid: 11357
components:
- type: Transform
- pos: -107.5,4.5
+ pos: -84.5,-3.5
parent: 2
- - uid: 16333
+ - uid: 11358
components:
- type: Transform
- pos: -12.5,39.5
+ pos: -84.5,-2.5
parent: 2
- - uid: 16334
+ - uid: 11359
components:
- type: Transform
- pos: -11.5,40.5
+ pos: -84.5,-1.5
parent: 2
- - uid: 16350
+ - uid: 11360
components:
- type: Transform
- pos: -104.5,2.5
+ pos: -84.5,-0.5
parent: 2
- - uid: 16407
+ - uid: 11361
components:
- type: Transform
- pos: -9.5,69.5
+ pos: -84.5,0.5
parent: 2
- - uid: 16408
+ - uid: 11362
components:
- type: Transform
- pos: -9.5,70.5
+ pos: -84.5,1.5
parent: 2
- - uid: 16418
+ - uid: 11363
components:
- type: Transform
- pos: -7.5,40.5
+ pos: -84.5,2.5
parent: 2
- - uid: 16419
+ - uid: 11364
components:
- type: Transform
- pos: -6.5,40.5
+ pos: -84.5,3.5
parent: 2
- - uid: 16420
+ - uid: 11365
components:
- type: Transform
- pos: -5.5,40.5
+ pos: -84.5,4.5
parent: 2
- - uid: 16421
+ - uid: 11366
components:
- type: Transform
- pos: -4.5,40.5
+ pos: -84.5,5.5
parent: 2
- - uid: 16422
+ - uid: 11367
components:
- type: Transform
- pos: -3.5,40.5
+ pos: -84.5,6.5
parent: 2
- - uid: 16423
+ - uid: 11368
components:
- type: Transform
- pos: -2.5,40.5
+ pos: -84.5,7.5
parent: 2
- - uid: 16424
+ - uid: 11369
components:
- type: Transform
- pos: -2.5,41.5
+ pos: -84.5,8.5
parent: 2
- - uid: 16425
+ - uid: 11370
components:
- type: Transform
- pos: -2.5,42.5
+ pos: -84.5,9.5
parent: 2
- - uid: 16426
+ - uid: 11371
components:
- type: Transform
- pos: -2.5,43.5
+ pos: -84.5,10.5
parent: 2
- - uid: 16427
+ - uid: 11372
components:
- type: Transform
- pos: -2.5,44.5
+ pos: -84.5,11.5
parent: 2
- - uid: 16428
+ - uid: 11373
components:
- type: Transform
- pos: -2.5,45.5
+ pos: -84.5,12.5
parent: 2
- - uid: 16429
+ - uid: 11374
components:
- type: Transform
- pos: -3.5,45.5
+ pos: -84.5,13.5
parent: 2
- - uid: 16430
+ - uid: 11375
components:
- type: Transform
- pos: -4.5,45.5
+ pos: -84.5,14.5
parent: 2
- - uid: 16431
+ - uid: 11376
components:
- type: Transform
- pos: -5.5,45.5
+ pos: -84.5,15.5
parent: 2
- - uid: 16432
+ - uid: 11377
components:
- type: Transform
- pos: -2.5,39.5
+ pos: -84.5,16.5
parent: 2
- - uid: 16433
+ - uid: 11378
components:
- type: Transform
- pos: -2.5,38.5
+ pos: -84.5,17.5
parent: 2
- - uid: 16434
+ - uid: 11379
components:
- type: Transform
- pos: -2.5,37.5
+ pos: -84.5,18.5
parent: 2
- - uid: 16435
+ - uid: 11380
components:
- type: Transform
- pos: -2.5,36.5
+ pos: -84.5,19.5
parent: 2
- - uid: 16436
+ - uid: 11381
components:
- type: Transform
- pos: -2.5,35.5
+ pos: -84.5,20.5
parent: 2
- - uid: 16437
+ - uid: 11382
components:
- type: Transform
- pos: -2.5,34.5
+ pos: -84.5,21.5
parent: 2
- - uid: 16438
+ - uid: 11383
components:
- type: Transform
- pos: -2.5,33.5
+ pos: -84.5,22.5
parent: 2
- - uid: 16439
+ - uid: 11384
components:
- type: Transform
- pos: -2.5,32.5
+ pos: -84.5,23.5
parent: 2
- - uid: 16440
+ - uid: 11389
components:
- type: Transform
- pos: -2.5,31.5
+ pos: -54.5,-22.5
parent: 2
- - uid: 16441
+ - uid: 11394
components:
- type: Transform
- pos: -2.5,30.5
+ pos: -5.5,-37.5
parent: 2
- - uid: 16442
+ - uid: 11398
components:
- type: Transform
- pos: -2.5,29.5
+ pos: -83.5,8.5
parent: 2
- - uid: 16443
+ - uid: 11408
components:
- type: Transform
- pos: -2.5,28.5
+ pos: -107.5,12.5
parent: 2
- - uid: 16444
+ - uid: 11413
components:
- type: Transform
- pos: -1.5,28.5
+ pos: 14.5,-20.5
parent: 2
- - uid: 16468
+ - uid: 11419
components:
- type: Transform
- pos: -105.5,2.5
+ pos: -106.5,13.5
parent: 2
- - uid: 16472
+ - uid: 11421
components:
- type: Transform
- pos: -77.5,-10.5
+ pos: -89.5,31.5
parent: 2
- - uid: 16494
+ - uid: 11422
components:
- type: Transform
- pos: -91.5,-9.5
+ pos: -88.5,31.5
parent: 2
- - uid: 16495
+ - uid: 11423
components:
- type: Transform
- pos: -91.5,-10.5
+ pos: -99.5,8.5
parent: 2
- - uid: 16502
+ - uid: 11424
components:
- type: Transform
- pos: -90.5,-11.5
+ pos: -98.5,8.5
parent: 2
- - uid: 16557
+ - uid: 11425
components:
- type: Transform
- pos: -39.5,26.5
+ pos: -97.5,8.5
parent: 2
- - uid: 16558
+ - uid: 11426
components:
- type: Transform
- pos: -38.5,26.5
+ pos: -96.5,8.5
parent: 2
- - uid: 16559
+ - uid: 11427
components:
- type: Transform
- pos: -37.5,26.5
+ pos: -95.5,8.5
parent: 2
- - uid: 16560
+ - uid: 11428
components:
- type: Transform
- pos: -36.5,26.5
+ pos: -94.5,8.5
parent: 2
- - uid: 16561
+ - uid: 11429
components:
- type: Transform
- pos: -35.5,26.5
+ pos: -93.5,8.5
parent: 2
- - uid: 16562
+ - uid: 11430
components:
- type: Transform
- pos: -34.5,26.5
+ pos: -92.5,8.5
parent: 2
- - uid: 16563
+ - uid: 11431
components:
- type: Transform
- pos: -33.5,26.5
+ pos: -91.5,8.5
parent: 2
- - uid: 16564
+ - uid: 11432
components:
- type: Transform
- pos: -32.5,26.5
+ pos: -90.5,8.5
parent: 2
- - uid: 16568
+ - uid: 11433
components:
- type: Transform
- pos: -38.5,27.5
+ pos: -89.5,8.5
parent: 2
- - uid: 16569
+ - uid: 11434
components:
- type: Transform
- pos: -38.5,28.5
+ pos: -88.5,8.5
parent: 2
- - uid: 16570
+ - uid: 11435
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -87.5,8.5
parent: 2
- - uid: 16571
+ - uid: 11436
components:
- type: Transform
- pos: -38.5,30.5
+ pos: -86.5,8.5
parent: 2
- - uid: 16572
+ - uid: 11437
components:
- type: Transform
- pos: -38.5,31.5
+ pos: -85.5,8.5
parent: 2
- - uid: 16573
+ - uid: 11438
components:
- type: Transform
- pos: -38.5,32.5
+ pos: -82.5,8.5
parent: 2
- - uid: 16574
+ - uid: 11441
components:
- type: Transform
- pos: -38.5,33.5
+ pos: -79.5,8.5
parent: 2
- - uid: 16576
+ - uid: 11442
components:
- type: Transform
- pos: 37.5,20.5
+ pos: -78.5,8.5
parent: 2
- - uid: 16582
+ - uid: 11443
components:
- type: Transform
- pos: -9.5,68.5
+ pos: -77.5,8.5
parent: 2
- - uid: 16619
+ - uid: 11444
components:
- type: Transform
- pos: -59.5,17.5
+ pos: -76.5,8.5
parent: 2
- - uid: 16622
+ - uid: 11445
components:
- type: Transform
- pos: -57.5,16.5
+ pos: -75.5,8.5
parent: 2
- - uid: 17532
+ - uid: 11448
components:
- type: Transform
- pos: -44.5,69.5
+ pos: -83.5,32.5
parent: 2
- - uid: 17618
+ - uid: 11451
components:
- type: Transform
- pos: -46.5,68.5
+ pos: -85.5,32.5
parent: 2
- - uid: 17703
+ - uid: 11452
components:
- type: Transform
- pos: -24.5,2.5
+ pos: -87.5,32.5
parent: 2
- - uid: 17704
+ - uid: 11456
components:
- type: Transform
- pos: -23.5,2.5
+ pos: -91.5,24.5
parent: 2
- - uid: 17705
+ - uid: 11461
components:
- type: Transform
- pos: -22.5,2.5
+ pos: -89.5,30.5
parent: 2
- - uid: 17807
+ - uid: 11465
components:
- type: Transform
- pos: 51.5,-11.5
+ pos: -98.5,-2.5
parent: 2
- - uid: 17882
+ - uid: 11467
components:
- type: Transform
- pos: -21.5,2.5
+ pos: -90.5,30.5
parent: 2
- - uid: 17930
+ - uid: 11470
components:
- type: Transform
- pos: 61.5,-1.5
+ pos: -90.5,28.5
parent: 2
- - uid: 17931
+ - uid: 11491
components:
- type: Transform
- pos: 62.5,-1.5
+ pos: -105.5,-1.5
parent: 2
- - uid: 17932
+ - uid: 11494
components:
- type: Transform
- pos: 63.5,-1.5
+ pos: -77.5,-11.5
parent: 2
- - uid: 17933
+ - uid: 11497
components:
- type: Transform
- pos: 64.5,-1.5
+ pos: -77.5,-7.5
parent: 2
- - uid: 17934
+ - uid: 11499
components:
- type: Transform
- pos: 65.5,-1.5
+ pos: -98.5,17.5
parent: 2
- - uid: 17935
+ - uid: 11501
components:
- type: Transform
- pos: 66.5,-1.5
+ pos: -91.5,-6.5
parent: 2
- - uid: 17936
+ - uid: 11503
components:
- type: Transform
- pos: 67.5,-1.5
+ pos: -91.5,-8.5
parent: 2
- - uid: 17937
+ - uid: 11505
components:
- type: Transform
- pos: 68.5,-1.5
+ pos: -99.5,17.5
parent: 2
- - uid: 17938
+ - uid: 11506
components:
- type: Transform
- pos: 69.5,-1.5
+ pos: -78.5,-13.5
parent: 2
- - uid: 17939
+ - uid: 11508
components:
- type: Transform
- pos: 70.5,-1.5
+ pos: -77.5,-8.5
parent: 2
- - uid: 17940
+ - uid: 11510
components:
- type: Transform
- pos: 71.5,-1.5
+ pos: -91.5,-11.5
parent: 2
- - uid: 17941
+ - uid: 11518
components:
- type: Transform
- pos: 72.5,-1.5
+ pos: -104.5,1.5
parent: 2
- - uid: 17942
+ - uid: 11522
components:
- type: Transform
- pos: 73.5,-1.5
+ pos: -16.5,5.5
parent: 2
- - uid: 17943
+ - uid: 11525
components:
- type: Transform
- pos: 74.5,-1.5
+ pos: -22.5,5.5
parent: 2
- - uid: 17944
+ - uid: 11633
components:
- type: Transform
- pos: 64.5,-0.5
+ pos: 22.5,-21.5
parent: 2
- - uid: 17945
+ - uid: 11648
components:
- type: Transform
- pos: 64.5,0.5
+ pos: 0.5,-18.5
parent: 2
- - uid: 17946
+ - uid: 11651
components:
- type: Transform
- pos: 72.5,-0.5
+ pos: 2.5,-18.5
parent: 2
- - uid: 17947
+ - uid: 11662
components:
- type: Transform
- pos: 72.5,0.5
+ pos: -20.5,5.5
parent: 2
- - uid: 17948
+ - uid: 11712
components:
- type: Transform
- pos: 66.5,-8.5
+ pos: 15.5,-20.5
parent: 2
- - uid: 17949
+ - uid: 11773
components:
- type: Transform
- pos: 67.5,-8.5
+ pos: -23.5,-22.5
parent: 2
- - uid: 17950
+ - uid: 11774
components:
- type: Transform
- pos: 49.5,-11.5
+ pos: -22.5,-22.5
parent: 2
- - uid: 17952
+ - uid: 11775
components:
- type: Transform
- pos: 70.5,-8.5
+ pos: -22.5,-22.5
parent: 2
- - uid: 17953
+ - uid: 11776
components:
- type: Transform
- pos: 71.5,-8.5
+ pos: -22.5,-21.5
parent: 2
- - uid: 17954
+ - uid: 11777
components:
- type: Transform
- pos: 72.5,-8.5
+ pos: -22.5,-20.5
parent: 2
- - uid: 17955
+ - uid: 11778
components:
- type: Transform
- pos: 73.5,-8.5
+ pos: -21.5,-20.5
parent: 2
- - uid: 17957
+ - uid: 11779
components:
- type: Transform
- pos: -30.5,-29.5
+ pos: -20.5,-20.5
parent: 2
- - uid: 17958
+ - uid: 11780
components:
- type: Transform
- pos: 73.5,-5.5
+ pos: -19.5,-20.5
parent: 2
- - uid: 17959
+ - uid: 11781
components:
- type: Transform
- pos: 74.5,-5.5
+ pos: -18.5,-20.5
parent: 2
- - uid: 17960
+ - uid: 11782
components:
- type: Transform
- pos: 75.5,-5.5
+ pos: -17.5,-20.5
parent: 2
- - uid: 17961
+ - uid: 11783
components:
- type: Transform
- pos: 75.5,-4.5
+ pos: -16.5,-20.5
parent: 2
- - uid: 17962
+ - uid: 11784
components:
- type: Transform
- pos: -30.5,-28.5
+ pos: -15.5,-20.5
parent: 2
- - uid: 17994
+ - uid: 11785
components:
- type: Transform
- pos: 5.5,69.5
+ pos: -14.5,-20.5
parent: 2
- - uid: 17998
+ - uid: 11786
components:
- type: Transform
- pos: 7.5,68.5
+ pos: -13.5,-20.5
parent: 2
- - uid: 18004
+ - uid: 11787
components:
- type: Transform
- pos: 8.5,68.5
+ pos: -12.5,-20.5
parent: 2
- - uid: 18019
+ - uid: 11788
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: -11.5,-20.5
parent: 2
- - uid: 18028
+ - uid: 11789
components:
- type: Transform
- pos: 8.5,58.5
+ pos: -23.5,-20.5
parent: 2
- - uid: 18030
+ - uid: 11790
components:
- type: Transform
- pos: 7.5,66.5
+ pos: -24.5,-20.5
parent: 2
- - uid: 18041
+ - uid: 11791
components:
- type: Transform
- pos: -30.5,-14.5
+ pos: -25.5,-20.5
parent: 2
- - uid: 18046
+ - uid: 11792
components:
- type: Transform
- pos: -36.5,-14.5
+ pos: -26.5,-20.5
parent: 2
- - uid: 18047
+ - uid: 11793
components:
- type: Transform
- pos: -30.5,-13.5
+ pos: -27.5,-20.5
parent: 2
- - uid: 18106
+ - uid: 11794
components:
- type: Transform
- pos: 5.5,70.5
+ pos: -28.5,-20.5
parent: 2
- - uid: 18107
+ - uid: 11795
components:
- type: Transform
- pos: 11.5,68.5
+ pos: -29.5,-20.5
parent: 2
- - uid: 18119
+ - uid: 11796
components:
- type: Transform
- pos: -40.5,-17.5
+ pos: -29.5,-21.5
parent: 2
- - uid: 18201
+ - uid: 11797
components:
- type: Transform
- pos: 8.5,57.5
+ pos: -29.5,-22.5
parent: 2
- - uid: 18216
+ - uid: 11798
components:
- type: Transform
- pos: -40.5,-18.5
+ pos: -29.5,-23.5
parent: 2
- - uid: 18228
+ - uid: 11799
components:
- type: Transform
- pos: 6.5,66.5
+ pos: -29.5,-24.5
parent: 2
- - uid: 18235
+ - uid: 11800
components:
- type: Transform
- pos: -38.5,66.5
+ pos: -28.5,-24.5
parent: 2
- - uid: 18236
+ - uid: 11801
components:
- type: Transform
- pos: 8.5,59.5
+ pos: -27.5,-24.5
parent: 2
- - uid: 18257
+ - uid: 11802
components:
- type: Transform
- pos: -14.5,58.5
+ pos: -26.5,-24.5
parent: 2
- - uid: 18261
+ - uid: 11803
components:
- type: Transform
- pos: -18.5,58.5
+ pos: -25.5,-24.5
parent: 2
- - uid: 18262
+ - uid: 11804
components:
- type: Transform
- pos: -19.5,58.5
+ pos: -22.5,-23.5
parent: 2
- - uid: 18263
+ - uid: 11805
components:
- type: Transform
- pos: -20.5,58.5
+ pos: -22.5,-24.5
parent: 2
- - uid: 18264
+ - uid: 11806
components:
- type: Transform
- pos: -21.5,58.5
+ pos: -21.5,-24.5
parent: 2
- - uid: 18265
+ - uid: 11807
components:
- type: Transform
- pos: -22.5,58.5
+ pos: -20.5,-24.5
parent: 2
- - uid: 18266
+ - uid: 11808
components:
- type: Transform
- pos: -23.5,58.5
+ pos: -20.5,-25.5
parent: 2
- - uid: 18267
+ - uid: 11810
components:
- type: Transform
- pos: -24.5,58.5
+ pos: -12.5,-29.5
parent: 2
- - uid: 18268
+ - uid: 11811
components:
- type: Transform
- pos: -25.5,58.5
+ pos: -20.5,-28.5
parent: 2
- - uid: 18269
+ - uid: 11812
components:
- type: Transform
- pos: -26.5,58.5
+ pos: -20.5,-29.5
parent: 2
- - uid: 18271
+ - uid: 11813
components:
- type: Transform
- pos: -36.5,64.5
+ pos: -19.5,-29.5
parent: 2
- - uid: 18275
+ - uid: 11814
components:
- type: Transform
- pos: -31.5,65.5
+ pos: -18.5,-29.5
parent: 2
- - uid: 18276
+ - uid: 11815
components:
- type: Transform
- pos: -29.5,65.5
+ pos: -18.5,-30.5
parent: 2
- - uid: 18277
+ - uid: 11816
components:
- type: Transform
- pos: -33.5,65.5
+ pos: -18.5,-31.5
parent: 2
- - uid: 18280
+ - uid: 11817
components:
- type: Transform
- pos: -29.5,64.5
+ pos: -18.5,-32.5
parent: 2
- - uid: 18281
+ - uid: 11818
components:
- type: Transform
- pos: -28.5,64.5
+ pos: -18.5,-33.5
parent: 2
- - uid: 18282
+ - uid: 11820
components:
- type: Transform
- pos: -27.5,64.5
+ pos: -28.5,-43.5
parent: 2
- - uid: 18283
+ - uid: 11828
components:
- type: Transform
- pos: -26.5,64.5
+ pos: 44.5,-25.5
parent: 2
- - uid: 18284
+ - uid: 11829
components:
- type: Transform
- pos: -25.5,64.5
+ pos: -34.5,-49.5
parent: 2
- - uid: 18285
+ - uid: 11830
components:
- type: Transform
- pos: -24.5,64.5
+ pos: -34.5,-53.5
parent: 2
- - uid: 18286
+ - uid: 11831
components:
- type: Transform
- pos: -23.5,64.5
+ pos: -34.5,-50.5
parent: 2
- - uid: 18287
+ - uid: 11838
components:
- type: Transform
- pos: -22.5,64.5
+ pos: -34.5,-51.5
parent: 2
- - uid: 18288
+ - uid: 11841
components:
- type: Transform
- pos: -21.5,64.5
+ pos: -34.5,-54.5
parent: 2
- - uid: 18289
+ - uid: 11843
components:
- type: Transform
- pos: -20.5,64.5
+ pos: -34.5,-46.5
parent: 2
- - uid: 18290
+ - uid: 11844
components:
- type: Transform
- pos: -19.5,64.5
+ pos: -34.5,-47.5
parent: 2
- - uid: 18291
+ - uid: 11880
components:
- type: Transform
- pos: -18.5,64.5
+ pos: -17.5,-39.5
parent: 2
- - uid: 18292
+ - uid: 11881
components:
- type: Transform
- pos: -17.5,64.5
+ pos: -16.5,-39.5
parent: 2
- - uid: 18293
+ - uid: 11882
components:
- type: Transform
- pos: -16.5,64.5
+ pos: -15.5,-39.5
parent: 2
- - uid: 18294
+ - uid: 11883
components:
- type: Transform
- pos: -15.5,64.5
+ pos: -14.5,-39.5
parent: 2
- - uid: 18295
+ - uid: 11884
components:
- type: Transform
- pos: -14.5,64.5
+ pos: -13.5,-39.5
parent: 2
- - uid: 18296
+ - uid: 11885
components:
- type: Transform
- pos: -13.5,64.5
+ pos: -12.5,-39.5
parent: 2
- - uid: 18297
+ - uid: 11886
components:
- type: Transform
- pos: -12.5,64.5
+ pos: -11.5,-39.5
parent: 2
- - uid: 18298
+ - uid: 11887
components:
- type: Transform
- pos: -11.5,64.5
+ pos: -10.5,-39.5
parent: 2
- - uid: 18299
+ - uid: 11888
components:
- type: Transform
- pos: -10.5,64.5
+ pos: -10.5,-40.5
parent: 2
- - uid: 18300
+ - uid: 11889
components:
- type: Transform
- pos: -9.5,64.5
+ pos: -9.5,-40.5
parent: 2
- - uid: 18301
+ - uid: 11890
components:
- type: Transform
- pos: -8.5,64.5
+ pos: -8.5,-40.5
parent: 2
- - uid: 18302
+ - uid: 11891
components:
- type: Transform
- pos: -7.5,64.5
+ pos: -7.5,-40.5
parent: 2
- - uid: 18303
+ - uid: 11893
components:
- type: Transform
- pos: -6.5,64.5
+ pos: 27.5,41.5
parent: 2
- - uid: 18304
+ - uid: 11899
components:
- type: Transform
- pos: -5.5,64.5
+ pos: 2.5,-1.5
parent: 2
- - uid: 18305
+ - uid: 11900
components:
- type: Transform
- pos: -4.5,64.5
+ pos: -6.5,-32.5
parent: 2
- - uid: 18306
+ - uid: 11901
components:
- type: Transform
- pos: -3.5,64.5
+ pos: -6.5,-31.5
parent: 2
- - uid: 18307
+ - uid: 11902
components:
- type: Transform
- pos: -2.5,64.5
+ pos: -6.5,-30.5
parent: 2
- - uid: 18309
+ - uid: 11903
components:
- type: Transform
- pos: -20.5,63.5
+ pos: -6.5,-29.5
parent: 2
- - uid: 18310
+ - uid: 11904
components:
- type: Transform
- pos: -20.5,62.5
+ pos: -6.5,-28.5
parent: 2
- - uid: 18311
+ - uid: 11905
components:
- type: Transform
- pos: -20.5,61.5
+ pos: -6.5,-33.5
parent: 2
- - uid: 18312
+ - uid: 11906
components:
- type: Transform
- pos: -20.5,60.5
+ pos: -6.5,-34.5
parent: 2
- - uid: 18313
+ - uid: 11907
components:
- type: Transform
- pos: -20.5,59.5
+ pos: -6.5,-35.5
parent: 2
- - uid: 18322
+ - uid: 11908
components:
- type: Transform
- pos: -33.5,63.5
+ pos: -6.5,-36.5
parent: 2
- - uid: 18365
+ - uid: 11909
components:
- type: Transform
- pos: 3.5,69.5
+ pos: -6.5,-32.5
parent: 2
- - uid: 18515
+ - uid: 11910
components:
- type: Transform
- pos: -20.5,2.5
+ pos: -1.5,-27.5
parent: 2
- - uid: 18699
+ - uid: 11911
components:
- type: Transform
- pos: -95.5,67.5
+ pos: -1.5,-26.5
parent: 2
- - uid: 18790
+ - uid: 11912
components:
- type: Transform
- pos: -89.5,-50.5
+ pos: -1.5,-25.5
parent: 2
- - uid: 18886
+ - uid: 11913
components:
- type: Transform
- pos: -89.5,-45.5
+ pos: -1.5,-24.5
parent: 2
- - uid: 18898
+ - uid: 11914
components:
- type: Transform
- pos: -89.5,-47.5
+ pos: -1.5,-23.5
parent: 2
- - uid: 19100
+ - uid: 11915
components:
- type: Transform
- pos: -16.5,36.5
+ pos: -1.5,-22.5
parent: 2
- - uid: 19101
+ - uid: 11916
components:
- type: Transform
- pos: 81.5,1.5
+ pos: -1.5,-21.5
parent: 2
- - uid: 19102
+ - uid: 11917
components:
- type: Transform
- pos: -89.5,-57.5
+ pos: -1.5,-20.5
parent: 2
- - uid: 19146
+ - uid: 11918
components:
- type: Transform
- pos: -95.5,66.5
+ pos: -2.5,-20.5
parent: 2
- - uid: 19166
+ - uid: 11920
components:
- type: Transform
- pos: -89.5,-56.5
+ pos: -3.5,-19.5
parent: 2
- - uid: 19179
+ - uid: 11921
components:
- type: Transform
- pos: -98.5,55.5
+ pos: -4.5,-19.5
parent: 2
- - uid: 19180
+ - uid: 11922
components:
- type: Transform
- pos: -98.5,54.5
+ pos: -10.5,-20.5
parent: 2
- - uid: 19181
+ - uid: 11923
components:
- type: Transform
- pos: -99.5,54.5
+ pos: -9.5,-20.5
parent: 2
- - uid: 19182
+ - uid: 11924
components:
- type: Transform
- pos: -100.5,54.5
+ pos: -8.5,-20.5
parent: 2
- - uid: 19183
+ - uid: 11925
components:
- type: Transform
- pos: -100.5,55.5
+ pos: -7.5,-20.5
parent: 2
- - uid: 19184
+ - uid: 11926
components:
- type: Transform
- pos: -100.5,56.5
+ pos: -6.5,-20.5
parent: 2
- - uid: 19185
+ - uid: 11927
components:
- type: Transform
- pos: -101.5,56.5
+ pos: -6.5,-21.5
parent: 2
- - uid: 19186
+ - uid: 11928
components:
- type: Transform
- pos: -102.5,56.5
+ pos: -6.5,-22.5
parent: 2
- - uid: 19187
+ - uid: 11929
components:
- type: Transform
- pos: -103.5,56.5
+ pos: -6.5,-23.5
parent: 2
- - uid: 19188
+ - uid: 11930
components:
- type: Transform
- pos: -104.5,56.5
+ pos: -6.5,-24.5
parent: 2
- - uid: 19189
+ - uid: 11931
components:
- type: Transform
- pos: -105.5,56.5
+ pos: -7.5,-24.5
parent: 2
- - uid: 19190
+ - uid: 11932
components:
- type: Transform
- pos: -105.5,57.5
+ pos: -8.5,-24.5
parent: 2
- - uid: 19191
+ - uid: 11933
components:
- type: Transform
- pos: -105.5,58.5
+ pos: -9.5,-24.5
parent: 2
- - uid: 19192
+ - uid: 11934
components:
- type: Transform
- pos: -106.5,58.5
+ pos: -10.5,-24.5
parent: 2
- - uid: 19193
+ - uid: 11935
components:
- type: Transform
- pos: -107.5,58.5
+ pos: -10.5,-25.5
parent: 2
- - uid: 19194
+ - uid: 11936
components:
- type: Transform
- pos: -108.5,58.5
+ pos: -10.5,-26.5
parent: 2
- - uid: 19195
+ - uid: 11937
components:
- type: Transform
- pos: -109.5,58.5
+ pos: -10.5,-27.5
parent: 2
- - uid: 19196
+ - uid: 11938
components:
- type: Transform
- pos: -110.5,58.5
+ pos: -10.5,-28.5
parent: 2
- - uid: 19197
+ - uid: 11939
components:
- type: Transform
- pos: -111.5,58.5
+ pos: -13.5,-29.5
parent: 2
- - uid: 19198
+ - uid: 11940
components:
- type: Transform
- pos: -112.5,58.5
+ pos: -15.5,-29.5
parent: 2
- - uid: 19199
+ - uid: 11941
components:
- type: Transform
- pos: -113.5,58.5
+ pos: -13.5,-28.5
parent: 2
- - uid: 19200
+ - uid: 11942
components:
- type: Transform
- pos: -114.5,58.5
+ pos: -13.5,-27.5
parent: 2
- - uid: 19201
+ - uid: 11943
components:
- type: Transform
- pos: -115.5,58.5
+ pos: -13.5,-26.5
parent: 2
- - uid: 19202
+ - uid: 11944
components:
- type: Transform
- pos: -116.5,58.5
+ pos: -13.5,-25.5
parent: 2
- - uid: 19203
+ - uid: 11945
components:
- type: Transform
- pos: -117.5,58.5
+ pos: -13.5,-24.5
parent: 2
- - uid: 19204
+ - uid: 11946
components:
- type: Transform
- pos: -118.5,58.5
+ pos: -13.5,-23.5
parent: 2
- - uid: 19205
+ - uid: 11947
components:
- type: Transform
- pos: -119.5,58.5
+ pos: -13.5,-22.5
parent: 2
- - uid: 19206
+ - uid: 11948
components:
- type: Transform
- pos: -119.5,57.5
+ pos: -13.5,-21.5
parent: 2
- - uid: 19207
+ - uid: 11949
components:
- type: Transform
- pos: -119.5,56.5
+ pos: -12.5,-32.5
parent: 2
- - uid: 19208
+ - uid: 11953
components:
- type: Transform
- pos: -119.5,55.5
+ pos: -11.5,-33.5
parent: 2
- - uid: 19209
+ - uid: 11954
components:
- type: Transform
- pos: -119.5,54.5
+ pos: -12.5,-33.5
parent: 2
- - uid: 19210
+ - uid: 11955
components:
- type: Transform
- pos: -119.5,53.5
+ pos: -13.5,-33.5
parent: 2
- - uid: 19211
+ - uid: 11956
components:
- type: Transform
- pos: -119.5,52.5
+ pos: -14.5,-33.5
parent: 2
- - uid: 19212
+ - uid: 11957
components:
- type: Transform
- pos: -119.5,51.5
+ pos: -15.5,-33.5
parent: 2
- - uid: 19213
+ - uid: 11958
components:
- type: Transform
- pos: -119.5,50.5
+ pos: -15.5,-34.5
parent: 2
- - uid: 19214
+ - uid: 11959
components:
- type: Transform
- pos: -119.5,49.5
+ pos: -15.5,-35.5
parent: 2
- - uid: 19215
+ - uid: 11960
components:
- type: Transform
- pos: -119.5,48.5
+ pos: -15.5,-36.5
parent: 2
- - uid: 19216
+ - uid: 11961
components:
- type: Transform
- pos: -119.5,47.5
+ pos: -15.5,-37.5
parent: 2
- - uid: 19217
+ - uid: 11962
components:
- type: Transform
- pos: -119.5,46.5
+ pos: -15.5,-38.5
parent: 2
- - uid: 19218
+ - uid: 11985
components:
- type: Transform
- pos: -119.5,45.5
+ pos: 8.5,-28.5
parent: 2
- - uid: 19219
+ - uid: 12003
components:
- type: Transform
- pos: -119.5,44.5
+ pos: -53.5,-22.5
parent: 2
- - uid: 19220
+ - uid: 12091
components:
- type: Transform
- pos: -118.5,44.5
+ pos: 7.5,-23.5
parent: 2
- - uid: 19221
+ - uid: 12097
components:
- type: Transform
- pos: -117.5,44.5
+ pos: 67.5,-5.5
parent: 2
- - uid: 19222
+ - uid: 12119
components:
- type: Transform
- pos: -116.5,44.5
+ pos: 54.5,-36.5
parent: 2
- - uid: 19223
+ - uid: 12120
components:
- type: Transform
- pos: -115.5,44.5
+ pos: -37.5,-27.5
parent: 2
- - uid: 19224
+ - uid: 12122
components:
- type: Transform
- pos: -114.5,44.5
+ pos: 1.5,-28.5
parent: 2
- - uid: 19225
+ - uid: 12125
components:
- type: Transform
- pos: -113.5,44.5
+ pos: 1.5,-25.5
parent: 2
- - uid: 19226
+ - uid: 12126
components:
- type: Transform
- pos: -112.5,44.5
+ pos: 1.5,-24.5
parent: 2
- - uid: 19227
+ - uid: 12127
components:
- type: Transform
- pos: -111.5,44.5
+ pos: 1.5,-23.5
parent: 2
- - uid: 19228
+ - uid: 12132
components:
- type: Transform
- pos: -110.5,44.5
+ pos: 1.5,-18.5
parent: 2
- - uid: 19229
+ - uid: 12133
components:
- type: Transform
- pos: -109.5,44.5
+ pos: 1.5,-17.5
parent: 2
- - uid: 19230
+ - uid: 12134
components:
- type: Transform
- pos: -108.5,44.5
+ pos: 1.5,-29.5
parent: 2
- - uid: 19231
+ - uid: 12135
components:
- type: Transform
- pos: -107.5,44.5
+ pos: 1.5,-30.5
parent: 2
- - uid: 19232
+ - uid: 12136
components:
- type: Transform
- pos: -106.5,44.5
+ pos: 1.5,-31.5
parent: 2
- - uid: 19233
+ - uid: 12137
components:
- type: Transform
- pos: -105.5,44.5
+ pos: 1.5,-32.5
parent: 2
- - uid: 19234
+ - uid: 12138
components:
- type: Transform
- pos: -105.5,45.5
+ pos: 1.5,-33.5
parent: 2
- - uid: 19235
+ - uid: 12139
components:
- type: Transform
- pos: -105.5,46.5
+ pos: 1.5,-34.5
parent: 2
- - uid: 19236
+ - uid: 12142
components:
- type: Transform
- pos: -105.5,47.5
+ pos: 1.5,-37.5
parent: 2
- - uid: 19237
+ - uid: 12149
components:
- type: Transform
- pos: -105.5,48.5
+ pos: 1.5,-44.5
parent: 2
- - uid: 19238
+ - uid: 12150
components:
- type: Transform
- pos: -105.5,49.5
+ pos: 1.5,-45.5
parent: 2
- - uid: 19239
+ - uid: 12151
components:
- type: Transform
- pos: -105.5,50.5
+ pos: 1.5,-46.5
parent: 2
- - uid: 19240
+ - uid: 12152
components:
- type: Transform
- pos: -105.5,51.5
+ pos: 1.5,-47.5
parent: 2
- - uid: 19241
+ - uid: 12153
components:
- type: Transform
- pos: -105.5,52.5
+ pos: 1.5,-48.5
parent: 2
- - uid: 19242
+ - uid: 12154
components:
- type: Transform
- pos: -105.5,53.5
+ pos: 1.5,-49.5
parent: 2
- - uid: 19243
+ - uid: 12155
components:
- type: Transform
- pos: -105.5,54.5
+ pos: 1.5,-50.5
parent: 2
- - uid: 19244
+ - uid: 12156
components:
- type: Transform
- pos: -105.5,55.5
+ pos: 1.5,-51.5
parent: 2
- - uid: 19245
+ - uid: 12157
components:
- type: Transform
- pos: -104.5,46.5
+ pos: 2.5,-51.5
parent: 2
- - uid: 19246
+ - uid: 12158
components:
- type: Transform
- pos: -103.5,46.5
+ pos: 3.5,-51.5
parent: 2
- - uid: 19247
+ - uid: 12159
components:
- type: Transform
- pos: -102.5,46.5
+ pos: 4.5,-51.5
parent: 2
- - uid: 19248
+ - uid: 12160
components:
- type: Transform
- pos: -101.5,46.5
+ pos: 5.5,-51.5
parent: 2
- - uid: 19249
+ - uid: 12161
components:
- type: Transform
- pos: -100.5,46.5
+ pos: 6.5,-51.5
parent: 2
- - uid: 19250
+ - uid: 12162
components:
- type: Transform
- pos: -100.5,47.5
+ pos: 7.5,-51.5
parent: 2
- - uid: 19251
+ - uid: 12163
components:
- type: Transform
- pos: -100.5,48.5
+ pos: 8.5,-51.5
parent: 2
- - uid: 19252
+ - uid: 12164
components:
- type: Transform
- pos: -100.5,49.5
+ pos: 9.5,-51.5
parent: 2
- - uid: 19253
+ - uid: 12165
components:
- type: Transform
- pos: -100.5,50.5
+ pos: 10.5,-51.5
parent: 2
- - uid: 19254
+ - uid: 12166
components:
- type: Transform
- pos: -100.5,51.5
+ pos: 0.5,-51.5
parent: 2
- - uid: 19255
+ - uid: 12167
components:
- type: Transform
- pos: -100.5,52.5
+ pos: -0.5,-51.5
parent: 2
- - uid: 19256
+ - uid: 12168
components:
- type: Transform
- pos: -100.5,53.5
+ pos: -1.5,-51.5
parent: 2
- - uid: 19257
+ - uid: 12169
components:
- type: Transform
- pos: -99.5,51.5
+ pos: -2.5,-51.5
parent: 2
- - uid: 19258
+ - uid: 12170
components:
- type: Transform
- pos: -98.5,51.5
+ pos: -3.5,-51.5
parent: 2
- - uid: 19259
+ - uid: 12171
components:
- type: Transform
- pos: -97.5,51.5
+ pos: -4.5,-51.5
parent: 2
- - uid: 19260
+ - uid: 12172
components:
- type: Transform
- pos: -96.5,51.5
+ pos: -5.5,-51.5
parent: 2
- - uid: 19261
+ - uid: 12173
components:
- type: Transform
- pos: -95.5,51.5
+ pos: -6.5,-51.5
parent: 2
- - uid: 19262
+ - uid: 12174
components:
- type: Transform
- pos: -94.5,51.5
+ pos: -7.5,-51.5
parent: 2
- - uid: 19263
+ - uid: 12175
components:
- type: Transform
- pos: -93.5,51.5
+ pos: -7.5,-52.5
parent: 2
- - uid: 19264
+ - uid: 12176
components:
- type: Transform
- pos: -92.5,51.5
+ pos: -7.5,-53.5
parent: 2
- - uid: 19265
+ - uid: 12177
components:
- type: Transform
- pos: -91.5,51.5
+ pos: -7.5,-54.5
parent: 2
- - uid: 19266
+ - uid: 12178
components:
- type: Transform
- pos: -90.5,51.5
+ pos: -7.5,-55.5
parent: 2
- - uid: 19267
+ - uid: 12179
components:
- type: Transform
- pos: -89.5,51.5
+ pos: -7.5,-56.5
parent: 2
- - uid: 19268
+ - uid: 12180
components:
- type: Transform
- pos: -54.5,39.5
+ pos: -5.5,-52.5
parent: 2
- - uid: 19269
+ - uid: 12181
components:
- type: Transform
- pos: -61.5,41.5
+ pos: -5.5,-53.5
parent: 2
- - uid: 19270
+ - uid: 12182
components:
- type: Transform
- pos: -60.5,41.5
+ pos: -5.5,-54.5
parent: 2
- - uid: 19271
+ - uid: 12183
components:
- type: Transform
- pos: -59.5,41.5
+ pos: -5.5,-55.5
parent: 2
- - uid: 19272
+ - uid: 12184
components:
- type: Transform
- pos: -58.5,41.5
+ pos: -5.5,-56.5
parent: 2
- - uid: 19273
+ - uid: 12185
components:
- type: Transform
- pos: -57.5,41.5
+ pos: 0.5,-52.5
parent: 2
- - uid: 19274
+ - uid: 12186
components:
- type: Transform
- pos: -56.5,41.5
+ pos: 0.5,-53.5
parent: 2
- - uid: 19275
+ - uid: 12187
components:
- type: Transform
- pos: -55.5,41.5
+ pos: 0.5,-54.5
parent: 2
- - uid: 19276
+ - uid: 12188
components:
- type: Transform
- pos: -54.5,41.5
+ pos: 0.5,-55.5
parent: 2
- - uid: 19277
+ - uid: 12189
components:
- type: Transform
- pos: -54.5,40.5
+ pos: 0.5,-56.5
parent: 2
- - uid: 19278
+ - uid: 12190
components:
- type: Transform
- pos: -55.5,37.5
+ pos: 2.5,-52.5
parent: 2
- - uid: 19279
+ - uid: 12191
components:
- type: Transform
- pos: -56.5,37.5
+ pos: 2.5,-53.5
parent: 2
- - uid: 19280
+ - uid: 12192
components:
- type: Transform
- pos: -53.5,37.5
+ pos: 2.5,-54.5
parent: 2
- - uid: 19281
+ - uid: 12193
components:
- type: Transform
- pos: -52.5,37.5
+ pos: 2.5,-55.5
parent: 2
- - uid: 19293
+ - uid: 12194
components:
- type: Transform
- pos: -62.5,35.5
+ pos: 2.5,-56.5
parent: 2
- - uid: 19294
+ - uid: 12195
components:
- type: Transform
- pos: -61.5,35.5
+ pos: 8.5,-52.5
parent: 2
- - uid: 19295
+ - uid: 12196
components:
- type: Transform
- pos: -60.5,35.5
+ pos: 8.5,-53.5
parent: 2
- - uid: 19296
+ - uid: 12197
components:
- type: Transform
- pos: -0.5,-37.5
+ pos: 8.5,-54.5
parent: 2
- - uid: 19297
+ - uid: 12198
components:
- type: Transform
- pos: 0.5,-37.5
+ pos: 8.5,-55.5
parent: 2
- - uid: 19298
+ - uid: 12199
components:
- type: Transform
- pos: 1.5,-37.5
+ pos: 8.5,-56.5
parent: 2
- - uid: 19299
+ - uid: 12200
components:
- type: Transform
- pos: 2.5,-37.5
+ pos: 10.5,-52.5
parent: 2
- - uid: 19300
+ - uid: 12201
components:
- type: Transform
- pos: 3.5,-37.5
+ pos: 10.5,-53.5
parent: 2
- - uid: 19302
+ - uid: 12202
components:
- type: Transform
- pos: 1.5,-38.5
+ pos: 10.5,-54.5
parent: 2
- - uid: 19303
+ - uid: 12203
components:
- type: Transform
- pos: 5.5,-35.5
+ pos: 10.5,-55.5
parent: 2
- - uid: 19304
+ - uid: 12204
components:
- type: Transform
- pos: 5.5,-34.5
+ pos: 10.5,-56.5
parent: 2
- - uid: 19307
+ - uid: 12205
components:
- type: Transform
- pos: -1.5,-28.5
+ pos: -2.5,-32.5
parent: 2
- - uid: 19308
+ - uid: 12206
components:
- type: Transform
- pos: -2.5,-28.5
+ pos: -2.5,-33.5
parent: 2
- - uid: 19309
+ - uid: 12207
components:
- type: Transform
- pos: -3.5,-28.5
+ pos: -2.5,-34.5
parent: 2
- - uid: 19310
+ - uid: 12208
components:
- type: Transform
- pos: -4.5,-28.5
+ pos: -2.5,-35.5
parent: 2
- - uid: 19311
+ - uid: 12209
components:
- type: Transform
- pos: -5.5,-28.5
+ pos: -2.5,-36.5
parent: 2
- - uid: 19323
+ - uid: 12210
components:
- type: Transform
- pos: 84.5,56.5
+ pos: -2.5,-37.5
parent: 2
- - uid: 19404
+ - uid: 12211
components:
- type: Transform
- pos: -2.5,-11.5
+ pos: -2.5,-38.5
parent: 2
- - uid: 19436
+ - uid: 12216
components:
- type: Transform
- pos: -77.5,21.5
+ pos: -1.5,-37.5
parent: 2
- - uid: 19600
+ - uid: 12221
components:
- type: Transform
- pos: 2.5,69.5
+ pos: 4.5,-37.5
parent: 2
- - uid: 19601
+ - uid: 12222
components:
- type: Transform
- pos: 3.5,66.5
+ pos: 5.5,-37.5
parent: 2
- - uid: 19602
+ - uid: 12226
components:
- type: Transform
- pos: -6.5,-12.5
+ pos: 20.5,48.5
parent: 2
- - uid: 19603
+ - uid: 12227
components:
- type: Transform
- pos: -2.5,-12.5
+ pos: 10.5,-37.5
parent: 2
- - uid: 19640
+ - uid: 12228
components:
- type: Transform
- pos: -6.5,-11.5
+ pos: 10.5,-36.5
parent: 2
- - uid: 19642
+ - uid: 12229
components:
- type: Transform
- pos: 3.5,65.5
+ pos: 10.5,-35.5
parent: 2
- - uid: 19649
+ - uid: 12230
components:
- type: Transform
- pos: 5.5,65.5
+ pos: 10.5,-34.5
parent: 2
- - uid: 19673
+ - uid: 12233
components:
- type: Transform
- pos: -46.5,58.5
+ pos: 6.5,-37.5
parent: 2
- - uid: 19720
+ - uid: 12234
components:
- type: Transform
- pos: -89.5,-49.5
+ pos: 7.5,-37.5
parent: 2
- - uid: 19741
+ - uid: 12235
components:
- type: Transform
- pos: 2.5,65.5
+ pos: 8.5,-37.5
parent: 2
- - uid: 19743
+ - uid: 12236
components:
- type: Transform
- pos: 4.5,65.5
+ pos: 5.5,-31.5
parent: 2
- - uid: 19761
+ - uid: 12237
components:
- type: Transform
- pos: -4.5,-12.5
+ pos: 5.5,-32.5
parent: 2
- - uid: 19879
+ - uid: 12238
components:
- type: Transform
- pos: 8.5,70.5
+ pos: 5.5,-33.5
parent: 2
- - uid: 20202
+ - uid: 12240
components:
- type: Transform
- pos: -42.5,56.5
+ pos: 5.5,-35.5
parent: 2
- - uid: 20203
+ - uid: 12241
components:
- type: Transform
- pos: -43.5,56.5
+ pos: 5.5,-36.5
parent: 2
- - uid: 20204
+ - uid: 12242
components:
- type: Transform
- pos: -44.5,56.5
+ pos: 5.5,-38.5
parent: 2
- - uid: 20226
+ - uid: 12248
components:
- type: Transform
- pos: 35.5,10.5
+ pos: -2.5,-31.5
parent: 2
- - uid: 20227
+ - uid: 12269
components:
- type: Transform
- pos: 34.5,10.5
+ pos: -6.5,-37.5
parent: 2
- - uid: 20228
+ - uid: 12284
components:
- type: Transform
- pos: 33.5,10.5
+ pos: 9.5,-37.5
parent: 2
- - uid: 20229
+ - uid: 12297
components:
- type: Transform
- pos: 32.5,10.5
+ pos: 20.5,49.5
parent: 2
- - uid: 20230
+ - uid: 12349
components:
- type: Transform
- pos: 31.5,10.5
+ pos: 29.5,-24.5
parent: 2
- - uid: 20231
+ - uid: 12350
components:
- type: Transform
- pos: 30.5,10.5
+ pos: 29.5,-25.5
parent: 2
- - uid: 20232
+ - uid: 12351
components:
- type: Transform
- pos: 29.5,10.5
+ pos: 29.5,-26.5
parent: 2
- - uid: 20233
+ - uid: 12352
components:
- type: Transform
- pos: 28.5,10.5
+ pos: 30.5,-24.5
parent: 2
- - uid: 20234
+ - uid: 12353
components:
- type: Transform
- pos: 27.5,10.5
+ pos: 31.5,-24.5
parent: 2
- - uid: 20235
+ - uid: 12354
components:
- type: Transform
- pos: 26.5,10.5
+ pos: 32.5,-24.5
parent: 2
- - uid: 20236
+ - uid: 12355
components:
- type: Transform
- pos: 25.5,10.5
+ pos: 33.5,-24.5
parent: 2
- - uid: 20237
+ - uid: 12356
components:
- type: Transform
- pos: 25.5,11.5
+ pos: 34.5,-24.5
parent: 2
- - uid: 20238
+ - uid: 12357
components:
- type: Transform
- pos: 25.5,12.5
+ pos: 35.5,-24.5
parent: 2
- - uid: 20239
+ - uid: 12358
components:
- type: Transform
- pos: 25.5,13.5
+ pos: 36.5,-24.5
parent: 2
- - uid: 20240
+ - uid: 12359
components:
- type: Transform
- pos: 25.5,14.5
+ pos: 37.5,-24.5
parent: 2
- - uid: 20241
+ - uid: 12360
components:
- type: Transform
- pos: 25.5,15.5
+ pos: 38.5,-24.5
parent: 2
- - uid: 20242
+ - uid: 12361
components:
- type: Transform
- pos: 25.5,16.5
+ pos: 38.5,-25.5
parent: 2
- - uid: 20243
+ - uid: 12362
components:
- type: Transform
- pos: 32.5,11.5
+ pos: 38.5,-26.5
parent: 2
- - uid: 20244
+ - uid: 12363
components:
- type: Transform
- pos: 32.5,12.5
+ pos: 38.5,-27.5
parent: 2
- - uid: 20245
+ - uid: 12364
components:
- type: Transform
- pos: 32.5,13.5
+ pos: 38.5,-28.5
parent: 2
- - uid: 20246
+ - uid: 12365
components:
- type: Transform
- pos: 32.5,14.5
+ pos: 38.5,-29.5
parent: 2
- - uid: 20247
+ - uid: 12366
components:
- type: Transform
- pos: 32.5,15.5
+ pos: 38.5,-30.5
parent: 2
- - uid: 20248
+ - uid: 12367
components:
- type: Transform
- pos: 25.5,9.5
+ pos: 38.5,-31.5
parent: 2
- - uid: 20249
+ - uid: 12368
components:
- type: Transform
- pos: -33.5,18.5
+ pos: 38.5,-32.5
parent: 2
- - uid: 20251
+ - uid: 12369
components:
- type: Transform
- pos: 25.5,6.5
+ pos: 38.5,-33.5
parent: 2
- - uid: 20252
+ - uid: 12370
components:
- type: Transform
- pos: 24.5,6.5
+ pos: 37.5,-33.5
parent: 2
- - uid: 20253
+ - uid: 12371
components:
- type: Transform
- pos: 23.5,6.5
+ pos: 36.5,-33.5
parent: 2
- - uid: 20254
+ - uid: 12372
components:
- type: Transform
- pos: 22.5,6.5
+ pos: 35.5,-33.5
parent: 2
- - uid: 20255
+ - uid: 12373
components:
- type: Transform
- pos: 21.5,6.5
+ pos: 34.5,-33.5
parent: 2
- - uid: 20256
+ - uid: 12374
components:
- type: Transform
- pos: 20.5,6.5
+ pos: 33.5,-33.5
parent: 2
- - uid: 20257
+ - uid: 12375
components:
- type: Transform
- pos: 19.5,6.5
+ pos: 32.5,-33.5
parent: 2
- - uid: 20258
+ - uid: 12376
components:
- type: Transform
- pos: 18.5,6.5
+ pos: 31.5,-33.5
parent: 2
- - uid: 20259
+ - uid: 12377
components:
- type: Transform
- pos: 17.5,6.5
+ pos: 30.5,-33.5
parent: 2
- - uid: 20260
+ - uid: 12378
components:
- type: Transform
- pos: 16.5,6.5
+ pos: 29.5,-33.5
parent: 2
- - uid: 20261
+ - uid: 12379
components:
- type: Transform
- pos: 15.5,6.5
+ pos: 29.5,-32.5
parent: 2
- - uid: 20262
+ - uid: 12380
components:
- type: Transform
- pos: 14.5,6.5
+ pos: 29.5,-31.5
parent: 2
- - uid: 20263
+ - uid: 12381
components:
- type: Transform
- pos: 13.5,6.5
+ pos: 29.5,-30.5
parent: 2
- - uid: 20264
+ - uid: 12382
components:
- type: Transform
- pos: 12.5,6.5
+ pos: 29.5,-29.5
parent: 2
- - uid: 20265
+ - uid: 12383
components:
- type: Transform
- pos: 11.5,6.5
+ pos: 29.5,-28.5
parent: 2
- - uid: 20266
+ - uid: 12384
components:
- type: Transform
- pos: 10.5,6.5
+ pos: 29.5,-27.5
parent: 2
- - uid: 20269
+ - uid: 12385
components:
- type: Transform
- pos: 10.5,9.5
+ pos: 39.5,-24.5
parent: 2
- - uid: 20270
+ - uid: 12386
components:
- type: Transform
- pos: 10.5,10.5
+ pos: 39.5,-23.5
parent: 2
- - uid: 20271
+ - uid: 12387
components:
- type: Transform
- pos: 10.5,11.5
+ pos: 39.5,-22.5
parent: 2
- - uid: 20272
+ - uid: 12388
components:
- type: Transform
- pos: 10.5,12.5
+ pos: 40.5,-22.5
parent: 2
- - uid: 20273
+ - uid: 12389
components:
- type: Transform
- pos: 10.5,13.5
+ pos: 41.5,-22.5
parent: 2
- - uid: 20274
+ - uid: 12390
components:
- type: Transform
- pos: 10.5,14.5
+ pos: 42.5,-22.5
parent: 2
- - uid: 20275
+ - uid: 12391
components:
- type: Transform
- pos: 10.5,15.5
+ pos: 43.5,-22.5
parent: 2
- - uid: 20279
+ - uid: 12392
components:
- type: Transform
- pos: 17.5,9.5
+ pos: 35.5,-23.5
parent: 2
- - uid: 20280
+ - uid: 12393
components:
- type: Transform
- pos: 17.5,10.5
+ pos: 35.5,-22.5
parent: 2
- - uid: 20281
+ - uid: 12394
components:
- type: Transform
- pos: 17.5,11.5
+ pos: 35.5,-21.5
parent: 2
- - uid: 20282
+ - uid: 12395
components:
- type: Transform
- pos: 17.5,12.5
+ pos: 35.5,-20.5
parent: 2
- - uid: 20283
+ - uid: 12396
components:
- type: Transform
- pos: 17.5,13.5
+ pos: 35.5,-19.5
parent: 2
- - uid: 20284
+ - uid: 12397
components:
- type: Transform
- pos: 17.5,14.5
+ pos: 35.5,-18.5
parent: 2
- - uid: 20285
+ - uid: 12452
components:
- type: Transform
- pos: 17.5,15.5
+ pos: 18.5,53.5
parent: 2
- - uid: 20286
+ - uid: 12454
components:
- type: Transform
- pos: 7.5,11.5
+ pos: 42.5,-26.5
parent: 2
- - uid: 20287
+ - uid: 12455
components:
- type: Transform
- pos: 5.5,11.5
+ pos: 43.5,-26.5
parent: 2
- - uid: 20288
+ - uid: 12456
components:
- type: Transform
- pos: 6.5,11.5
+ pos: 44.5,-26.5
parent: 2
- - uid: 20289
+ - uid: 12457
components:
- type: Transform
- pos: 8.5,11.5
+ pos: 45.5,-26.5
parent: 2
- - uid: 20290
+ - uid: 12458
components:
- type: Transform
- pos: 9.5,11.5
+ pos: 46.5,-26.5
parent: 2
- - uid: 20291
+ - uid: 12459
components:
- type: Transform
- pos: 11.5,11.5
+ pos: 46.5,-25.5
parent: 2
- - uid: 20292
+ - uid: 12460
components:
- type: Transform
- pos: 12.5,11.5
+ pos: 46.5,-24.5
parent: 2
- - uid: 20293
+ - uid: 12461
components:
- type: Transform
- pos: 9.5,2.5
+ pos: 46.5,-23.5
parent: 2
- - uid: 20294
+ - uid: 12462
components:
- type: Transform
- pos: 9.5,1.5
+ pos: 46.5,-22.5
parent: 2
- - uid: 20295
+ - uid: 12463
components:
- type: Transform
- pos: 9.5,0.5
+ pos: 46.5,-21.5
parent: 2
- - uid: 20296
+ - uid: 12465
components:
- type: Transform
- pos: 9.5,-0.5
+ pos: 44.5,-27.5
parent: 2
- - uid: 20297
+ - uid: 12466
components:
- type: Transform
- pos: 9.5,-1.5
+ pos: 44.5,-28.5
parent: 2
- - uid: 20322
+ - uid: 12467
components:
- type: Transform
- pos: 16.5,3.5
+ pos: 44.5,-29.5
parent: 2
- - uid: 20323
+ - uid: 12468
components:
- type: Transform
- pos: 16.5,2.5
+ pos: 44.5,-30.5
parent: 2
- - uid: 20324
+ - uid: 12469
components:
- type: Transform
- pos: 16.5,1.5
+ pos: 44.5,-31.5
parent: 2
- - uid: 20325
+ - uid: 12470
components:
- type: Transform
- pos: 16.5,0.5
+ pos: 44.5,-32.5
parent: 2
- - uid: 20326
+ - uid: 12471
components:
- type: Transform
- pos: 16.5,-0.5
+ pos: 44.5,-33.5
parent: 2
- - uid: 20327
+ - uid: 12472
components:
- type: Transform
- pos: 16.5,-1.5
+ pos: 45.5,-33.5
parent: 2
- - uid: 20328
+ - uid: 12473
components:
- type: Transform
- pos: 16.5,-2.5
+ pos: 46.5,-33.5
parent: 2
- - uid: 20329
+ - uid: 12474
components:
- type: Transform
- pos: 16.5,-3.5
+ pos: 47.5,-33.5
parent: 2
- - uid: 20330
+ - uid: 12475
components:
- type: Transform
- pos: 16.5,-4.5
+ pos: 48.5,-33.5
parent: 2
- - uid: 20331
+ - uid: 12476
components:
- type: Transform
- pos: 34.5,2.5
+ pos: 49.5,-33.5
parent: 2
- - uid: 20332
+ - uid: 12479
components:
- type: Transform
- pos: 15.5,-5.5
+ pos: -67.5,24.5
parent: 2
- - uid: 20333
+ - uid: 12482
components:
- type: Transform
- pos: 15.5,-6.5
+ pos: 52.5,-30.5
parent: 2
- - uid: 20334
+ - uid: 12483
components:
- type: Transform
- pos: 15.5,-7.5
+ pos: 53.5,-30.5
parent: 2
- - uid: 20335
+ - uid: 12484
components:
- type: Transform
- pos: 15.5,-8.5
+ pos: 54.5,-30.5
parent: 2
- - uid: 20336
+ - uid: 12485
components:
- type: Transform
- pos: 15.5,-9.5
+ pos: 55.5,-30.5
parent: 2
- - uid: 20337
+ - uid: 12486
components:
- type: Transform
- pos: 15.5,-10.5
+ pos: 56.5,-30.5
parent: 2
- - uid: 20338
+ - uid: 12487
components:
- type: Transform
- pos: 15.5,-11.5
+ pos: 57.5,-30.5
parent: 2
- - uid: 20339
+ - uid: 12488
components:
- type: Transform
- pos: 16.5,-11.5
+ pos: 58.5,-30.5
parent: 2
- - uid: 20340
+ - uid: 12489
components:
- type: Transform
- pos: 17.5,-11.5
+ pos: 59.5,-30.5
parent: 2
- - uid: 20341
+ - uid: 12490
components:
- type: Transform
- pos: 18.5,-11.5
+ pos: 60.5,-30.5
parent: 2
- - uid: 20342
+ - uid: 12491
components:
- type: Transform
- pos: 19.5,-11.5
+ pos: 21.5,49.5
parent: 2
- - uid: 20343
+ - uid: 12492
components:
- type: Transform
- pos: 20.5,-11.5
+ pos: 28.5,53.5
parent: 2
- - uid: 20344
+ - uid: 12493
components:
- type: Transform
- pos: 21.5,-11.5
+ pos: 27.5,53.5
parent: 2
- - uid: 20345
+ - uid: 12494
components:
- type: Transform
- pos: 21.5,-10.5
+ pos: 60.5,-26.5
parent: 2
- - uid: 20346
+ - uid: 12495
components:
- type: Transform
- pos: 21.5,-9.5
+ pos: 60.5,-25.5
parent: 2
- - uid: 20347
+ - uid: 12496
components:
- type: Transform
- pos: 21.5,-8.5
+ pos: 60.5,-24.5
parent: 2
- - uid: 20348
+ - uid: 12497
components:
- type: Transform
- pos: 21.5,-7.5
+ pos: 60.5,-23.5
parent: 2
- - uid: 20349
+ - uid: 12498
components:
- type: Transform
- pos: 20.5,-7.5
+ pos: 60.5,-22.5
parent: 2
- - uid: 20350
+ - uid: 12499
components:
- type: Transform
- pos: 19.5,-7.5
+ pos: 60.5,-21.5
parent: 2
- - uid: 20351
+ - uid: 12500
components:
- type: Transform
- pos: 18.5,-7.5
+ pos: 60.5,-20.5
parent: 2
- - uid: 20352
+ - uid: 12501
components:
- type: Transform
- pos: 17.5,-7.5
+ pos: 60.5,-19.5
parent: 2
- - uid: 20353
+ - uid: 12502
components:
- type: Transform
- pos: 16.5,-7.5
+ pos: 60.5,-18.5
parent: 2
- - uid: 20354
+ - uid: 12503
components:
- type: Transform
- pos: 17.5,-1.5
+ pos: 60.5,-17.5
parent: 2
- - uid: 20355
+ - uid: 12504
components:
- type: Transform
- pos: 18.5,-1.5
+ pos: 60.5,-16.5
parent: 2
- - uid: 20356
+ - uid: 12506
components:
- type: Transform
- pos: 19.5,-1.5
+ pos: 60.5,-14.5
parent: 2
- - uid: 20357
+ - uid: 12507
components:
- type: Transform
- pos: 20.5,-1.5
+ pos: 60.5,-13.5
parent: 2
- - uid: 20358
+ - uid: 12508
components:
- type: Transform
- pos: 21.5,-1.5
+ pos: 60.5,-12.5
parent: 2
- - uid: 20359
+ - uid: 12509
components:
- type: Transform
- pos: 22.5,-1.5
+ pos: 60.5,-11.5
parent: 2
- - uid: 20360
+ - uid: 12510
components:
- type: Transform
- pos: 23.5,-1.5
+ pos: 60.5,-10.5
parent: 2
- - uid: 20361
+ - uid: 12512
components:
- type: Transform
- pos: 24.5,-1.5
+ pos: 60.5,-8.5
parent: 2
- - uid: 20362
+ - uid: 12513
components:
- type: Transform
- pos: 25.5,-1.5
+ pos: 60.5,-7.5
parent: 2
- - uid: 20363
+ - uid: 12514
components:
- type: Transform
- pos: 26.5,-1.5
+ pos: 60.5,-6.5
parent: 2
- - uid: 20364
+ - uid: 12515
components:
- type: Transform
- pos: 27.5,-1.5
+ pos: 60.5,-5.5
parent: 2
- - uid: 20366
+ - uid: 12516
components:
- type: Transform
- pos: -38.5,-28.5
+ pos: 60.5,-4.5
parent: 2
- - uid: 20367
+ - uid: 12517
components:
- type: Transform
- pos: 15.5,0.5
+ pos: 60.5,-3.5
parent: 2
- - uid: 20368
+ - uid: 12518
components:
- type: Transform
- pos: 14.5,0.5
+ pos: 60.5,-2.5
parent: 2
- - uid: 20369
+ - uid: 12519
components:
- type: Transform
- pos: 13.5,0.5
+ pos: 60.5,-1.5
parent: 2
- - uid: 20370
+ - uid: 12520
components:
- type: Transform
- pos: 12.5,0.5
+ pos: 59.5,-1.5
parent: 2
- - uid: 20371
+ - uid: 12521
components:
- type: Transform
- pos: 12.5,-0.5
+ pos: 58.5,-1.5
parent: 2
- - uid: 20372
+ - uid: 12522
components:
- type: Transform
- pos: 12.5,-1.5
+ pos: 57.5,-1.5
parent: 2
- - uid: 20374
+ - uid: 12523
components:
- type: Transform
- pos: 13.5,-2.5
+ pos: 56.5,-1.5
parent: 2
- - uid: 20375
+ - uid: 12524
components:
- type: Transform
- pos: 14.5,-2.5
+ pos: 55.5,-1.5
parent: 2
- - uid: 20376
+ - uid: 12525
components:
- type: Transform
- pos: 15.5,-2.5
+ pos: 54.5,-1.5
parent: 2
- - uid: 20377
+ - uid: 12526
components:
- type: Transform
- pos: 15.5,3.5
+ pos: 53.5,-1.5
parent: 2
- - uid: 20378
+ - uid: 12527
components:
- type: Transform
- pos: 14.5,3.5
+ pos: 53.5,-2.5
parent: 2
- - uid: 20379
+ - uid: 12528
components:
- type: Transform
- pos: 13.5,3.5
+ pos: 53.5,-3.5
parent: 2
- - uid: 20380
+ - uid: 12529
components:
- type: Transform
- pos: 12.5,3.5
+ pos: 53.5,-4.5
parent: 2
- - uid: 20381
+ - uid: 12530
components:
- type: Transform
- pos: -83.5,30.5
+ pos: 53.5,-5.5
parent: 2
- - uid: 20383
+ - uid: 12531
components:
- type: Transform
- pos: 20.5,3.5
+ pos: 54.5,-5.5
parent: 2
- - uid: 20384
+ - uid: 12532
components:
- type: Transform
- pos: 20.5,2.5
+ pos: 54.5,-6.5
parent: 2
- - uid: 20385
+ - uid: 12533
components:
- type: Transform
- pos: 21.5,2.5
+ pos: 54.5,-7.5
parent: 2
- - uid: 20386
+ - uid: 12534
components:
- type: Transform
- pos: 22.5,2.5
+ pos: 54.5,-8.5
parent: 2
- - uid: 20387
+ - uid: 12535
components:
- type: Transform
- pos: 23.5,2.5
+ pos: 54.5,-9.5
parent: 2
- - uid: 20388
+ - uid: 12536
components:
- type: Transform
- pos: 24.5,2.5
+ pos: 54.5,-10.5
parent: 2
- - uid: 20389
+ - uid: 12537
components:
- type: Transform
- pos: 25.5,2.5
+ pos: 54.5,-11.5
parent: 2
- - uid: 20390
+ - uid: 12538
components:
- type: Transform
- pos: 26.5,2.5
+ pos: 54.5,-12.5
parent: 2
- - uid: 20391
+ - uid: 12539
components:
- type: Transform
- pos: 27.5,2.5
+ pos: 54.5,-13.5
parent: 2
- - uid: 20393
+ - uid: 12540
components:
- type: Transform
- pos: 26.5,6.5
+ pos: 54.5,-14.5
parent: 2
- - uid: 20394
+ - uid: 12541
components:
- type: Transform
- pos: 27.5,6.5
+ pos: 54.5,-15.5
parent: 2
- - uid: 20395
+ - uid: 12542
components:
- type: Transform
- pos: 28.5,6.5
+ pos: 54.5,-16.5
parent: 2
- - uid: 20396
+ - uid: 12543
components:
- type: Transform
- pos: 29.5,6.5
+ pos: 54.5,-17.5
parent: 2
- - uid: 20397
+ - uid: 12544
components:
- type: Transform
- pos: 30.5,6.5
+ pos: 54.5,-18.5
parent: 2
- - uid: 20398
+ - uid: 12545
components:
- type: Transform
- pos: 31.5,6.5
+ pos: 54.5,-19.5
parent: 2
- - uid: 20402
+ - uid: 12546
components:
- type: Transform
- pos: 31.5,2.5
+ pos: 54.5,-20.5
parent: 2
- - uid: 20403
+ - uid: 12547
components:
- type: Transform
- pos: 32.5,2.5
+ pos: 54.5,-21.5
parent: 2
- - uid: 20404
+ - uid: 12548
components:
- type: Transform
- pos: 33.5,2.5
+ pos: 54.5,-22.5
parent: 2
- - uid: 20406
+ - uid: 12549
components:
- type: Transform
- pos: -44.5,9.5
+ pos: 54.5,-23.5
parent: 2
- - uid: 20409
+ - uid: 12550
components:
- type: Transform
- pos: 38.5,2.5
+ pos: 54.5,-24.5
parent: 2
- - uid: 20410
+ - uid: 12551
components:
- type: Transform
- pos: 38.5,3.5
+ pos: 54.5,-25.5
parent: 2
- - uid: 20411
+ - uid: 12552
components:
- type: Transform
- pos: 38.5,4.5
+ pos: 54.5,-26.5
parent: 2
- - uid: 20412
+ - uid: 12553
components:
- type: Transform
- pos: 38.5,5.5
+ pos: 55.5,-26.5
parent: 2
- - uid: 20413
+ - uid: 12554
components:
- type: Transform
- pos: 38.5,6.5
+ pos: 56.5,-26.5
parent: 2
- - uid: 20414
+ - uid: 12555
components:
- type: Transform
- pos: 38.5,7.5
+ pos: 57.5,-26.5
parent: 2
- - uid: 20415
+ - uid: 12556
components:
- type: Transform
- pos: 38.5,8.5
+ pos: 58.5,-26.5
parent: 2
- - uid: 20416
+ - uid: 12557
components:
- type: Transform
- pos: 38.5,9.5
+ pos: 59.5,-26.5
parent: 2
- - uid: 20417
+ - uid: 12558
components:
- type: Transform
- pos: 38.5,10.5
+ pos: 53.5,-20.5
parent: 2
- - uid: 20437
+ - uid: 12559
components:
- type: Transform
- pos: 31.5,-1.5
+ pos: 52.5,-20.5
parent: 2
- - uid: 20438
+ - uid: 12560
components:
- type: Transform
- pos: 31.5,-0.5
+ pos: 51.5,-20.5
parent: 2
- - uid: 20439
+ - uid: 12561
components:
- type: Transform
- pos: 31.5,0.5
+ pos: 50.5,-20.5
parent: 2
- - uid: 20440
+ - uid: 12562
components:
- type: Transform
- pos: 31.5,1.5
+ pos: 50.5,-21.5
parent: 2
- - uid: 20441
+ - uid: 12563
components:
- type: Transform
- pos: 31.5,-2.5
+ pos: 50.5,-22.5
parent: 2
- - uid: 20442
+ - uid: 12564
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 50.5,-23.5
parent: 2
- - uid: 20443
+ - uid: 12565
components:
- type: Transform
- pos: 31.5,-4.5
+ pos: 50.5,-24.5
parent: 2
- - uid: 20444
+ - uid: 12566
components:
- type: Transform
- pos: 31.5,-5.5
+ pos: 51.5,-24.5
parent: 2
- - uid: 20445
+ - uid: 12567
components:
- type: Transform
- pos: 31.5,-6.5
+ pos: 52.5,-24.5
parent: 2
- - uid: 20446
+ - uid: 12568
components:
- type: Transform
- pos: 31.5,-7.5
+ pos: 53.5,-24.5
parent: 2
- - uid: 20447
+ - uid: 12569
components:
- type: Transform
- pos: 31.5,-8.5
+ pos: 61.5,-16.5
parent: 2
- - uid: 20448
+ - uid: 12570
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: 62.5,-16.5
parent: 2
- - uid: 20449
+ - uid: 12571
components:
- type: Transform
- pos: 31.5,-10.5
+ pos: 63.5,-16.5
parent: 2
- - uid: 20450
+ - uid: 12572
components:
- type: Transform
- pos: 31.5,-11.5
+ pos: 64.5,-16.5
parent: 2
- - uid: 20451
+ - uid: 12573
components:
- type: Transform
- pos: 30.5,-11.5
+ pos: 65.5,-16.5
parent: 2
- - uid: 20452
+ - uid: 12574
components:
- type: Transform
- pos: 29.5,-11.5
+ pos: 66.5,-16.5
parent: 2
- - uid: 20453
+ - uid: 12575
components:
- type: Transform
- pos: 28.5,-11.5
+ pos: 67.5,-16.5
parent: 2
- - uid: 20454
+ - uid: 12576
components:
- type: Transform
- pos: 27.5,-11.5
+ pos: 68.5,-16.5
parent: 2
- - uid: 20455
+ - uid: 12577
components:
- type: Transform
- pos: 26.5,-11.5
+ pos: 69.5,-16.5
parent: 2
- - uid: 20456
+ - uid: 12578
components:
- type: Transform
- pos: 26.5,-10.5
+ pos: 70.5,-16.5
parent: 2
- - uid: 20457
+ - uid: 12579
components:
- type: Transform
- pos: 26.5,-9.5
+ pos: 71.5,-16.5
parent: 2
- - uid: 20458
+ - uid: 12580
components:
- type: Transform
- pos: 26.5,-8.5
+ pos: 72.5,-16.5
parent: 2
- - uid: 20459
+ - uid: 12581
components:
- type: Transform
- pos: 26.5,-7.5
+ pos: 73.5,-16.5
parent: 2
- - uid: 20460
+ - uid: 12582
components:
- type: Transform
- pos: 26.5,-6.5
+ pos: 74.5,-16.5
parent: 2
- - uid: 20461
+ - uid: 12583
components:
- type: Transform
- pos: 26.5,-5.5
+ pos: 75.5,-16.5
parent: 2
- - uid: 20462
+ - uid: 12584
components:
- type: Transform
- pos: 26.5,-4.5
+ pos: 6.5,60.5
parent: 2
- - uid: 20463
+ - uid: 12585
components:
- type: Transform
- pos: 27.5,-4.5
+ pos: -39.5,-30.5
parent: 2
- - uid: 20464
+ - uid: 12597
components:
- type: Transform
- pos: 28.5,-4.5
+ pos: 51.5,49.5
parent: 2
- - uid: 20465
+ - uid: 12600
components:
- type: Transform
- pos: 29.5,-4.5
+ pos: 75.5,-20.5
parent: 2
- - uid: 20466
+ - uid: 12601
components:
- type: Transform
- pos: 30.5,-4.5
+ pos: 74.5,-20.5
parent: 2
- - uid: 20467
+ - uid: 12602
components:
- type: Transform
- pos: -43.5,70.5
+ pos: 73.5,-20.5
parent: 2
- - uid: 20468
+ - uid: 12603
components:
- type: Transform
- pos: -42.5,70.5
+ pos: 72.5,-20.5
parent: 2
- - uid: 20470
+ - uid: 12604
components:
- type: Transform
- pos: 37.5,11.5
+ pos: 71.5,-20.5
parent: 2
- - uid: 20471
+ - uid: 12605
components:
- type: Transform
- pos: 37.5,10.5
+ pos: 71.5,-21.5
parent: 2
- - uid: 20472
+ - uid: 12606
components:
- type: Transform
- pos: 37.5,12.5
+ pos: 70.5,-21.5
parent: 2
- - uid: 20473
+ - uid: 12607
components:
- type: Transform
- pos: 37.5,13.5
+ pos: 70.5,-22.5
parent: 2
- - uid: 20474
+ - uid: 12608
components:
- type: Transform
- pos: 37.5,14.5
+ pos: 70.5,-23.5
parent: 2
- - uid: 20475
+ - uid: 12609
components:
- type: Transform
- pos: 37.5,15.5
+ pos: 70.5,-24.5
parent: 2
- - uid: 20477
+ - uid: 12610
components:
- type: Transform
- pos: -41.5,66.5
+ pos: 69.5,-24.5
parent: 2
- - uid: 20478
+ - uid: 12611
components:
- type: Transform
- pos: 39.5,14.5
+ pos: 69.5,-25.5
parent: 2
- - uid: 20479
+ - uid: 12612
components:
- type: Transform
- pos: 39.5,15.5
+ pos: 69.5,-26.5
parent: 2
- - uid: 20480
+ - uid: 12613
components:
- type: Transform
- pos: 39.5,16.5
+ pos: 68.5,-26.5
parent: 2
- - uid: 20481
+ - uid: 12614
components:
- type: Transform
- pos: 40.5,15.5
+ pos: 68.5,-27.5
parent: 2
- - uid: 20482
+ - uid: 12615
components:
- type: Transform
- pos: 41.5,15.5
+ pos: 67.5,-27.5
parent: 2
- - uid: 20483
+ - uid: 12616
components:
- type: Transform
- pos: 42.5,15.5
+ pos: 66.5,-27.5
parent: 2
- - uid: 20484
+ - uid: 12617
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 66.5,-28.5
parent: 2
- - uid: 20485
+ - uid: 12618
components:
- type: Transform
- pos: 44.5,15.5
+ pos: 65.5,-28.5
parent: 2
- - uid: 20486
+ - uid: 12619
components:
- type: Transform
- pos: 45.5,15.5
+ pos: 64.5,-28.5
parent: 2
- - uid: 20487
+ - uid: 12620
components:
- type: Transform
- pos: 46.5,15.5
+ pos: 63.5,-28.5
parent: 2
- - uid: 20488
+ - uid: 12621
components:
- type: Transform
- pos: 46.5,14.5
+ pos: 63.5,-29.5
parent: 2
- - uid: 20489
+ - uid: 12622
components:
- type: Transform
- pos: 46.5,13.5
+ pos: 62.5,-29.5
parent: 2
- - uid: 20490
+ - uid: 12623
components:
- type: Transform
- pos: 46.5,12.5
+ pos: 62.5,-30.5
parent: 2
- - uid: 20491
+ - uid: 12624
components:
- type: Transform
- pos: 46.5,11.5
+ pos: 61.5,-30.5
parent: 2
- - uid: 20492
+ - uid: 12628
components:
- type: Transform
- pos: 46.5,10.5
+ pos: 76.5,-12.5
parent: 2
- - uid: 20493
+ - uid: 12629
components:
- type: Transform
- pos: 46.5,9.5
+ pos: 76.5,-11.5
parent: 2
- - uid: 20494
+ - uid: 12630
components:
- type: Transform
- pos: 46.5,8.5
+ pos: 76.5,-10.5
parent: 2
- - uid: 20495
+ - uid: 12631
components:
- type: Transform
- pos: 46.5,7.5
+ pos: 77.5,-10.5
parent: 2
- - uid: 20496
+ - uid: 12632
components:
- type: Transform
- pos: 46.5,6.5
+ pos: 77.5,-9.5
parent: 2
- - uid: 20497
+ - uid: 12633
components:
- type: Transform
- pos: 46.5,5.5
+ pos: 77.5,-8.5
parent: 2
- - uid: 20498
+ - uid: 12634
components:
- type: Transform
- pos: 46.5,4.5
+ pos: 78.5,-8.5
parent: 2
- - uid: 20499
+ - uid: 12635
components:
- type: Transform
- pos: 46.5,3.5
+ pos: 78.5,-6.5
parent: 2
- - uid: 20500
+ - uid: 12636
components:
- type: Transform
- pos: 46.5,2.5
+ pos: 78.5,-7.5
parent: 2
- - uid: 20501
+ - uid: 12637
components:
- type: Transform
- pos: 46.5,1.5
+ pos: 79.5,-6.5
parent: 2
- - uid: 20502
+ - uid: 12638
components:
- type: Transform
- pos: 47.5,1.5
+ pos: 79.5,-5.5
parent: 2
- - uid: 20503
+ - uid: 12639
components:
- type: Transform
- pos: 47.5,0.5
+ pos: 79.5,-4.5
parent: 2
- - uid: 20504
+ - uid: 12640
components:
- type: Transform
- pos: 47.5,-0.5
+ pos: 79.5,-3.5
parent: 2
- - uid: 20505
+ - uid: 12641
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: 79.5,-2.5
parent: 2
- - uid: 20506
+ - uid: 12642
components:
- type: Transform
- pos: 47.5,-2.5
+ pos: 79.5,-1.5
parent: 2
- - uid: 20507
+ - uid: 12643
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: 79.5,-0.5
parent: 2
- - uid: 20508
+ - uid: 12647
components:
- type: Transform
- pos: 47.5,-4.5
+ pos: 75.5,-3.5
parent: 2
- - uid: 20509
+ - uid: 12648
components:
- type: Transform
- pos: 47.5,-5.5
+ pos: 74.5,-3.5
parent: 2
- - uid: 20510
+ - uid: 12649
components:
- type: Transform
- pos: 47.5,-6.5
+ pos: 73.5,-3.5
parent: 2
- - uid: 20511
+ - uid: 12650
components:
- type: Transform
- pos: 47.5,-7.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 20512
+ - uid: 12651
components:
- type: Transform
- pos: 47.5,-8.5
+ pos: 71.5,-3.5
parent: 2
- - uid: 20513
+ - uid: 12652
components:
- type: Transform
- pos: 47.5,-9.5
+ pos: 70.5,-3.5
parent: 2
- - uid: 20514
+ - uid: 12653
components:
- type: Transform
- pos: 46.5,-9.5
+ pos: 69.5,-3.5
parent: 2
- - uid: 20515
+ - uid: 12654
components:
- type: Transform
- pos: 45.5,-9.5
+ pos: 68.5,-3.5
parent: 2
- - uid: 20516
+ - uid: 12655
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: 67.5,-3.5
parent: 2
- - uid: 20517
+ - uid: 12656
components:
- type: Transform
- pos: 43.5,-9.5
+ pos: 66.5,-3.5
parent: 2
- - uid: 20518
+ - uid: 12657
components:
- type: Transform
- pos: 42.5,-9.5
+ pos: 65.5,-3.5
parent: 2
- - uid: 20519
+ - uid: 12658
components:
- type: Transform
- pos: 41.5,-9.5
+ pos: 64.5,-3.5
parent: 2
- - uid: 20520
+ - uid: 12659
components:
- type: Transform
- pos: 42.5,-10.5
+ pos: 63.5,-3.5
parent: 2
- - uid: 20521
+ - uid: 12660
components:
- type: Transform
- pos: 42.5,-11.5
+ pos: 62.5,-3.5
parent: 2
- - uid: 20522
+ - uid: 12661
components:
- type: Transform
- pos: 42.5,-12.5
+ pos: 61.5,-3.5
parent: 2
- - uid: 20523
+ - uid: 12662
components:
- type: Transform
- pos: 42.5,-13.5
+ pos: 61.5,-9.5
parent: 2
- - uid: 20524
+ - uid: 12663
components:
- type: Transform
- pos: 42.5,-14.5
+ pos: 62.5,-9.5
parent: 2
- - uid: 20525
+ - uid: 12664
components:
- type: Transform
- pos: 38.5,1.5
+ pos: 63.5,-9.5
parent: 2
- - uid: 20526
+ - uid: 12665
components:
- type: Transform
- pos: 38.5,0.5
+ pos: 64.5,-9.5
parent: 2
- - uid: 20527
+ - uid: 12666
components:
- type: Transform
- pos: 38.5,-0.5
+ pos: 65.5,-9.5
parent: 2
- - uid: 20528
+ - uid: 12667
components:
- type: Transform
- pos: 38.5,-1.5
+ pos: 66.5,-9.5
parent: 2
- - uid: 20529
+ - uid: 12668
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: 66.5,-10.5
parent: 2
- - uid: 20530
+ - uid: 12669
components:
- type: Transform
- pos: 38.5,-3.5
+ pos: 66.5,-11.5
parent: 2
- - uid: 20531
+ - uid: 12670
components:
- type: Transform
- pos: 38.5,-4.5
+ pos: 66.5,-12.5
parent: 2
- - uid: 20532
+ - uid: 12671
components:
- type: Transform
- pos: 38.5,-5.5
+ pos: 66.5,-13.5
parent: 2
- - uid: 20533
+ - uid: 12672
components:
- type: Transform
- pos: 38.5,-6.5
+ pos: 66.5,-14.5
parent: 2
- - uid: 20534
+ - uid: 12673
components:
- type: Transform
- pos: 38.5,-7.5
+ pos: 66.5,-15.5
parent: 2
- - uid: 20535
+ - uid: 12674
components:
- type: Transform
- pos: 38.5,-8.5
+ pos: 72.5,-15.5
parent: 2
- - uid: 20536
+ - uid: 12675
components:
- type: Transform
- pos: 38.5,-9.5
+ pos: 72.5,-14.5
parent: 2
- - uid: 20537
+ - uid: 12676
components:
- type: Transform
- pos: 38.5,-10.5
+ pos: 72.5,-13.5
parent: 2
- - uid: 20538
+ - uid: 12677
components:
- type: Transform
- pos: 38.5,-11.5
+ pos: 72.5,-12.5
parent: 2
- - uid: 20539
+ - uid: 12678
components:
- type: Transform
- pos: 32.5,-1.5
+ pos: 72.5,-11.5
parent: 2
- - uid: 20540
+ - uid: 12679
components:
- type: Transform
- pos: 33.5,-1.5
+ pos: 72.5,-10.5
parent: 2
- - uid: 20541
+ - uid: 12990
components:
- type: Transform
- pos: 34.5,-1.5
+ pos: 39.5,8.5
parent: 2
- - uid: 20542
+ - uid: 13006
components:
- type: Transform
- pos: 35.5,-1.5
+ pos: 40.5,10.5
parent: 2
- - uid: 20543
+ - uid: 13008
components:
- type: Transform
- pos: 9.5,16.5
+ pos: 32.5,52.5
parent: 2
- - uid: 20544
+ - uid: 13111
components:
- type: Transform
- pos: 8.5,16.5
+ pos: -75.5,21.5
parent: 2
- - uid: 20545
+ - uid: 13112
components:
- type: Transform
- pos: 7.5,16.5
+ pos: -76.5,21.5
parent: 2
- - uid: 20546
+ - uid: 13117
components:
- type: Transform
- pos: 6.5,16.5
+ pos: -79.5,21.5
parent: 2
- - uid: 20547
+ - uid: 13119
components:
- type: Transform
- pos: 10.5,16.5
+ pos: -78.5,21.5
parent: 2
- - uid: 20548
+ - uid: 13192
components:
- type: Transform
- pos: 11.5,16.5
+ pos: 24.5,-28.5
parent: 2
- - uid: 20549
+ - uid: 13288
components:
- type: Transform
- pos: 12.5,16.5
+ pos: 41.5,-40.5
parent: 2
- - uid: 20550
+ - uid: 13315
components:
- type: Transform
- pos: 13.5,16.5
+ pos: -31.5,13.5
parent: 2
- - uid: 20551
+ - uid: 13390
components:
- type: Transform
- pos: 1.5,6.5
+ pos: -10.5,-4.5
parent: 2
- - uid: 20552
+ - uid: 13472
components:
- type: Transform
- pos: 1.5,5.5
+ pos: -89.5,-60.5
parent: 2
- - uid: 20553
+ - uid: 13476
components:
- type: Transform
- pos: 1.5,4.5
+ pos: -90.5,-59.5
parent: 2
- - uid: 20554
+ - uid: 13477
components:
- type: Transform
- pos: 1.5,3.5
+ pos: -89.5,-61.5
parent: 2
- - uid: 20555
+ - uid: 13478
components:
- type: Transform
- pos: 1.5,2.5
+ pos: -89.5,-62.5
parent: 2
- - uid: 20556
+ - uid: 13479
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -90.5,-50.5
parent: 2
- - uid: 20557
+ - uid: 13480
components:
- type: Transform
- pos: 1.5,0.5
+ pos: -90.5,-40.5
parent: 2
- - uid: 20558
+ - uid: 13481
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: 56.5,-41.5
parent: 2
- - uid: 20559
+ - uid: 13519
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: 53.5,49.5
parent: 2
- - uid: 20560
+ - uid: 13585
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: -86.5,-34.5
parent: 2
- - uid: 20563
+ - uid: 13596
components:
- type: Transform
- pos: -15.5,-49.5
+ pos: -89.5,-37.5
parent: 2
- - uid: 20564
+ - uid: 13597
components:
- type: Transform
- pos: 6.5,3.5
+ pos: -72.5,-33.5
parent: 2
- - uid: 20565
+ - uid: 13598
components:
- type: Transform
- pos: 7.5,3.5
+ pos: -89.5,-35.5
parent: 2
- - uid: 20566
+ - uid: 13599
components:
- type: Transform
- pos: -41.5,67.5
+ pos: -87.5,-34.5
parent: 2
- - uid: 20567
+ - uid: 13600
components:
- type: Transform
- pos: 9.5,3.5
+ pos: -89.5,-36.5
parent: 2
- - uid: 20568
+ - uid: 13601
components:
- type: Transform
- pos: 9.5,4.5
+ pos: -85.5,-34.5
parent: 2
- - uid: 20569
+ - uid: 13602
components:
- type: Transform
- pos: 9.5,5.5
+ pos: -88.5,-34.5
parent: 2
- - uid: 20570
+ - uid: 13603
components:
- type: Transform
- pos: 9.5,6.5
+ pos: -82.5,-34.5
parent: 2
- - uid: 20573
+ - uid: 13604
components:
- type: Transform
- pos: -0.5,3.5
+ pos: -84.5,-34.5
parent: 2
- - uid: 20574
+ - uid: 13605
components:
- type: Transform
- pos: -1.5,3.5
+ pos: -83.5,-34.5
parent: 2
- - uid: 20575
+ - uid: 13613
components:
- type: Transform
- pos: -2.5,3.5
+ pos: -89.5,-34.5
parent: 2
- - uid: 20576
+ - uid: 13657
components:
- type: Transform
- pos: -3.5,3.5
+ pos: -89.5,-33.5
parent: 2
- - uid: 20577
+ - uid: 13658
components:
- type: Transform
- pos: -4.5,3.5
+ pos: -81.5,-33.5
parent: 2
- - uid: 20578
+ - uid: 13684
components:
- type: Transform
- pos: -5.5,3.5
+ pos: -89.5,-48.5
parent: 2
- - uid: 20579
+ - uid: 13685
components:
- type: Transform
- pos: -6.5,3.5
+ pos: -89.5,-44.5
parent: 2
- - uid: 20580
+ - uid: 13686
components:
- type: Transform
- pos: -7.5,3.5
+ pos: -89.5,-38.5
parent: 2
- - uid: 20581
+ - uid: 13687
components:
- type: Transform
- pos: -8.5,3.5
+ pos: -89.5,-51.5
parent: 2
- - uid: 20582
+ - uid: 13688
components:
- type: Transform
- pos: -9.5,3.5
+ pos: -89.5,-53.5
parent: 2
- - uid: 20583
+ - uid: 13723
components:
- type: Transform
- pos: -10.5,3.5
+ pos: 56.5,-37.5
parent: 2
- - uid: 20584
+ - uid: 13757
components:
- type: Transform
- pos: -11.5,3.5
+ pos: 54.5,51.5
parent: 2
- - uid: 20585
+ - uid: 13813
components:
- type: Transform
- pos: -12.5,3.5
+ pos: 19.5,-35.5
parent: 2
- - uid: 20586
+ - uid: 13831
components:
- type: Transform
- pos: -13.5,3.5
+ pos: -45.5,-34.5
parent: 2
- - uid: 20587
+ - uid: 13835
components:
- type: Transform
- pos: -79.5,31.5
+ pos: -48.5,-27.5
parent: 2
- - uid: 20588
+ - uid: 13836
components:
- type: Transform
- pos: -78.5,30.5
+ pos: -47.5,-27.5
parent: 2
- - uid: 20599
+ - uid: 13837
components:
- type: Transform
- pos: -80.5,-14.5
+ pos: -46.5,-27.5
parent: 2
- - uid: 20602
+ - uid: 13838
components:
- type: Transform
- pos: -81.5,31.5
+ pos: -45.5,-27.5
parent: 2
- - uid: 20614
+ - uid: 13839
components:
- type: Transform
- pos: -15.5,2.5
+ pos: -44.5,-27.5
parent: 2
- - uid: 20615
+ - uid: 13841
components:
- type: Transform
- pos: -15.5,1.5
+ pos: 52.5,49.5
parent: 2
- - uid: 20616
+ - uid: 13843
components:
- type: Transform
- pos: -15.5,0.5
+ pos: -45.5,56.5
parent: 2
- - uid: 20617
+ - uid: 13844
components:
- type: Transform
- pos: -15.5,-0.5
+ pos: -57.5,-20.5
parent: 2
- - uid: 20618
+ - uid: 13845
components:
- type: Transform
- pos: -19.5,2.5
+ pos: -56.5,-20.5
parent: 2
- - uid: 20619
+ - uid: 13846
components:
- type: Transform
- pos: 52.5,44.5
+ pos: -55.5,-20.5
parent: 2
- - uid: 20621
+ - uid: 13847
components:
- type: Transform
- pos: -21.5,1.5
+ pos: -54.5,-20.5
parent: 2
- - uid: 20622
+ - uid: 13848
components:
- type: Transform
- pos: -21.5,0.5
+ pos: -53.5,-20.5
parent: 2
- - uid: 20623
+ - uid: 13849
components:
- type: Transform
- pos: -21.5,-0.5
+ pos: -52.5,-20.5
parent: 2
- - uid: 20624
+ - uid: 13850
components:
- type: Transform
- pos: -18.5,2.5
+ pos: -52.5,-21.5
parent: 2
- - uid: 20625
+ - uid: 13851
components:
- type: Transform
- pos: 52.5,45.5
+ pos: -52.5,-22.5
parent: 2
- - uid: 20626
+ - uid: 13857
components:
- type: Transform
- pos: -27.5,2.5
+ pos: -48.5,-24.5
parent: 2
- - uid: 20627
+ - uid: 13858
components:
- type: Transform
- pos: -27.5,1.5
+ pos: -48.5,-25.5
parent: 2
- - uid: 20628
+ - uid: 13859
components:
- type: Transform
- pos: -27.5,0.5
+ pos: -48.5,-26.5
parent: 2
- - uid: 20629
+ - uid: 13863
components:
- type: Transform
- pos: -27.5,-0.5
+ pos: 8.5,12.5
parent: 2
- - uid: 20630
+ - uid: 13867
components:
- type: Transform
- pos: -17.5,2.5
+ pos: 8.5,15.5
parent: 2
- - uid: 20631
+ - uid: 13878
components:
- type: Transform
- pos: -16.5,2.5
+ pos: -36.5,-20.5
parent: 2
- - uid: 20632
+ - uid: 13879
components:
- type: Transform
- pos: 54.5,1.5
+ pos: -36.5,-19.5
parent: 2
- - uid: 20633
+ - uid: 13880
components:
- type: Transform
- pos: -21.5,-5.5
+ pos: -37.5,-19.5
parent: 2
- - uid: 20634
+ - uid: 13881
components:
- type: Transform
- pos: -22.5,-5.5
+ pos: -38.5,-19.5
parent: 2
- - uid: 20635
+ - uid: 13882
components:
- type: Transform
- pos: -23.5,-5.5
+ pos: -39.5,-19.5
parent: 2
- - uid: 20636
+ - uid: 13883
components:
- type: Transform
- pos: 54.5,-0.5
+ pos: -40.5,-19.5
parent: 2
- - uid: 20637
+ - uid: 13884
components:
- type: Transform
- pos: 54.5,0.5
+ pos: -41.5,-19.5
parent: 2
- - uid: 20638
+ - uid: 13885
components:
- type: Transform
- pos: 66.5,25.5
+ pos: -42.5,-19.5
parent: 2
- - uid: 20639
+ - uid: 13886
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: -43.5,-19.5
parent: 2
- - uid: 20640
+ - uid: 13887
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: -44.5,-19.5
parent: 2
- - uid: 20641
+ - uid: 13888
components:
- type: Transform
- pos: -29.5,-5.5
+ pos: -45.5,-19.5
parent: 2
- - uid: 20642
+ - uid: 13889
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: -46.5,-19.5
parent: 2
- - uid: 20643
+ - uid: 13890
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -47.5,-19.5
parent: 2
- - uid: 20644
+ - uid: 13891
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: -48.5,-19.5
parent: 2
- - uid: 20645
+ - uid: 13892
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: -49.5,-19.5
parent: 2
- - uid: 20646
+ - uid: 13893
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -50.5,-19.5
parent: 2
- - uid: 20650
+ - uid: 13894
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -50.5,-18.5
parent: 2
- - uid: 20651
+ - uid: 13895
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: -50.5,-17.5
parent: 2
- - uid: 20652
+ - uid: 13896
components:
- type: Transform
- pos: -32.5,-9.5
+ pos: -50.5,-16.5
parent: 2
- - uid: 20653
+ - uid: 13897
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: -50.5,-15.5
parent: 2
- - uid: 20660
+ - uid: 13898
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: -50.5,-14.5
parent: 2
- - uid: 20661
+ - uid: 13899
components:
- type: Transform
- pos: -28.5,-10.5
+ pos: -49.5,-14.5
parent: 2
- - uid: 20662
+ - uid: 13900
components:
- type: Transform
- pos: -27.5,-10.5
+ pos: -48.5,-14.5
parent: 2
- - uid: 20663
+ - uid: 13901
components:
- type: Transform
- pos: -26.5,-10.5
+ pos: -47.5,-14.5
parent: 2
- - uid: 20664
+ - uid: 13902
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: -46.5,-14.5
parent: 2
- - uid: 20665
+ - uid: 13903
components:
- type: Transform
- pos: -21.5,-7.5
+ pos: -45.5,-14.5
parent: 2
- - uid: 20666
+ - uid: 13904
components:
- type: Transform
- pos: -21.5,-8.5
+ pos: -54.5,-11.5
parent: 2
- - uid: 20667
+ - uid: 13905
components:
- type: Transform
- pos: -21.5,-9.5
+ pos: -54.5,-10.5
parent: 2
- - uid: 20668
+ - uid: 13906
components:
- type: Transform
- pos: -21.5,-10.5
+ pos: -54.5,-9.5
parent: 2
- - uid: 20669
+ - uid: 13907
components:
- type: Transform
- pos: -21.5,-11.5
+ pos: -54.5,-8.5
parent: 2
- - uid: 20670
+ - uid: 13908
components:
- type: Transform
- pos: -20.5,-5.5
+ pos: -54.5,-7.5
parent: 2
- - uid: 20671
+ - uid: 13910
components:
- type: Transform
- pos: -19.5,-5.5
+ pos: -50.5,-10.5
parent: 2
- - uid: 20672
+ - uid: 13911
components:
- type: Transform
- pos: -18.5,-5.5
+ pos: -50.5,-9.5
parent: 2
- - uid: 20673
+ - uid: 14167
components:
- type: Transform
- pos: -17.5,-5.5
+ pos: 9.5,60.5
parent: 2
- - uid: 20674
+ - uid: 14168
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: 12.5,67.5
parent: 2
- - uid: 20675
+ - uid: 14363
components:
- type: Transform
- pos: -15.5,-5.5
+ pos: -72.5,4.5
parent: 2
- - uid: 20676
+ - uid: 14366
components:
- type: Transform
- pos: -15.5,-6.5
+ pos: -33.5,22.5
parent: 2
- - uid: 20677
+ - uid: 14367
components:
- type: Transform
- pos: -15.5,-7.5
+ pos: -33.5,23.5
parent: 2
- - uid: 20678
+ - uid: 14369
components:
- type: Transform
- pos: -15.5,-8.5
+ pos: 1.5,23.5
parent: 2
- - uid: 20679
+ - uid: 14371
components:
- type: Transform
- pos: -15.5,-9.5
+ pos: 67.5,-7.5
parent: 2
- - uid: 20680
+ - uid: 14374
components:
- type: Transform
- pos: -15.5,-10.5
+ pos: 67.5,-6.5
parent: 2
- - uid: 20681
+ - uid: 14378
components:
- type: Transform
- pos: -15.5,-11.5
+ pos: -9.5,71.5
parent: 2
- - uid: 20682
+ - uid: 14381
components:
- type: Transform
- pos: -14.5,-5.5
+ pos: -32.5,-14.5
parent: 2
- - uid: 20683
+ - uid: 14382
components:
- type: Transform
- pos: -13.5,-5.5
+ pos: 32.5,6.5
parent: 2
- - uid: 20684
+ - uid: 14385
components:
- type: Transform
- pos: -12.5,-5.5
+ pos: 3.5,-1.5
parent: 2
- - uid: 20685
+ - uid: 14396
components:
- type: Transform
- pos: -11.5,-5.5
+ pos: 16.5,45.5
parent: 2
- - uid: 20686
+ - uid: 14397
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: 17.5,45.5
parent: 2
- - uid: 20687
+ - uid: 14398
components:
- type: Transform
- pos: -10.5,-6.5
+ pos: 18.5,45.5
parent: 2
- - uid: 20688
+ - uid: 14399
components:
- type: Transform
- pos: -10.5,-7.5
+ pos: 18.5,46.5
parent: 2
- - uid: 20689
+ - uid: 14400
components:
- type: Transform
- pos: -10.5,-8.5
+ pos: 18.5,47.5
parent: 2
- - uid: 20690
+ - uid: 14402
components:
- type: Transform
- pos: -10.5,-9.5
+ pos: 8.5,3.5
parent: 2
- - uid: 20691
+ - uid: 14407
components:
- type: Transform
- pos: -9.5,-9.5
+ pos: 17.5,53.5
parent: 2
- - uid: 20692
+ - uid: 14408
components:
- type: Transform
- pos: -8.5,-9.5
+ pos: 17.5,54.5
parent: 2
- - uid: 20693
+ - uid: 14409
components:
- type: Transform
- pos: -8.5,-8.5
+ pos: 17.5,55.5
parent: 2
- - uid: 20694
+ - uid: 14410
components:
- type: Transform
- pos: -8.5,-7.5
+ pos: 17.5,56.5
parent: 2
- - uid: 20695
+ - uid: 14411
components:
- type: Transform
- pos: 22.5,8.5
+ pos: 17.5,57.5
parent: 2
- - uid: 20696
+ - uid: 14412
components:
- type: Transform
- pos: 24.5,3.5
+ pos: 18.5,57.5
parent: 2
- - uid: 20699
+ - uid: 14413
components:
- type: Transform
- pos: -6.5,-4.5
+ pos: 19.5,57.5
parent: 2
- - uid: 20702
+ - uid: 14414
components:
- type: Transform
- pos: -6.5,-1.5
+ pos: 19.5,56.5
parent: 2
- - uid: 20703
+ - uid: 14415
components:
- type: Transform
- pos: -6.5,-0.5
+ pos: 19.5,55.5
parent: 2
- - uid: 20704
+ - uid: 14416
components:
- type: Transform
- pos: -7.5,-1.5
+ pos: 19.5,54.5
parent: 2
- - uid: 20705
+ - uid: 14417
components:
- type: Transform
- pos: -8.5,-1.5
+ pos: 19.5,53.5
parent: 2
- - uid: 20706
+ - uid: 14419
components:
- type: Transform
- pos: -9.5,-1.5
+ pos: 22.5,-3.5
parent: 2
- - uid: 20707
+ - uid: 14421
components:
- type: Transform
- pos: -10.5,-1.5
+ pos: 12.5,-2.5
parent: 2
- - uid: 20708
+ - uid: 14424
components:
- type: Transform
- pos: -10.5,-0.5
+ pos: 22.5,49.5
parent: 2
- - uid: 20709
+ - uid: 14425
components:
- type: Transform
- pos: -10.5,0.5
+ pos: 23.5,49.5
parent: 2
- - uid: 20710
+ - uid: 14426
components:
- type: Transform
- pos: -10.5,1.5
+ pos: 24.5,49.5
parent: 2
- - uid: 20711
+ - uid: 14427
components:
- type: Transform
- pos: -10.5,2.5
+ pos: 25.5,49.5
parent: 2
- - uid: 20712
+ - uid: 14428
components:
- type: Transform
- pos: -10.5,4.5
+ pos: 26.5,49.5
parent: 2
- - uid: 20713
+ - uid: 14429
components:
- type: Transform
- pos: -10.5,5.5
+ pos: 27.5,49.5
parent: 2
- - uid: 20714
+ - uid: 14430
components:
- type: Transform
- pos: -10.5,6.5
+ pos: 28.5,49.5
parent: 2
- - uid: 20715
+ - uid: 14431
components:
- type: Transform
- pos: -10.5,7.5
+ pos: 29.5,49.5
parent: 2
- - uid: 20723
+ - uid: 14432
components:
- type: Transform
- pos: -31.5,49.5
+ pos: 17.5,48.5
parent: 2
- - uid: 20725
+ - uid: 14433
components:
- type: Transform
- pos: 2.5,2.5
+ pos: 16.5,48.5
parent: 2
- - uid: 20726
+ - uid: 14434
components:
- type: Transform
- pos: 3.5,2.5
+ pos: 8.5,60.5
parent: 2
- - uid: 20727
+ - uid: 14435
components:
- type: Transform
- pos: 4.5,2.5
+ pos: 14.5,67.5
parent: 2
- - uid: 20728
+ - uid: 14436
components:
- type: Transform
- pos: 5.5,2.5
+ pos: 13.5,48.5
parent: 2
- - uid: 20729
+ - uid: 14437
components:
- type: Transform
- pos: 6.5,2.5
+ pos: 12.5,48.5
parent: 2
- - uid: 20730
+ - uid: 14438
components:
- type: Transform
- pos: -3.5,9.5
+ pos: 11.5,48.5
parent: 2
- - uid: 20731
+ - uid: 14439
components:
- type: Transform
- pos: -3.5,10.5
+ pos: 10.5,48.5
parent: 2
- - uid: 20732
+ - uid: 14440
components:
- type: Transform
- pos: -3.5,11.5
+ pos: 9.5,48.5
parent: 2
- - uid: 20733
+ - uid: 14441
components:
- type: Transform
- pos: -3.5,12.5
+ pos: 8.5,48.5
parent: 2
- - uid: 20734
+ - uid: 14442
components:
- type: Transform
- pos: -3.5,13.5
+ pos: 7.5,48.5
parent: 2
- - uid: 20735
+ - uid: 14443
components:
- type: Transform
- pos: -4.5,13.5
+ pos: 6.5,48.5
parent: 2
- - uid: 20736
+ - uid: 14444
components:
- type: Transform
- pos: -5.5,13.5
+ pos: 6.5,49.5
parent: 2
- - uid: 20737
+ - uid: 14445
components:
- type: Transform
- pos: -6.5,13.5
+ pos: 6.5,50.5
parent: 2
- - uid: 20738
+ - uid: 14446
components:
- type: Transform
- pos: -7.5,13.5
+ pos: 6.5,51.5
parent: 2
- - uid: 20739
+ - uid: 14447
components:
- type: Transform
- pos: -8.5,13.5
+ pos: 6.5,52.5
parent: 2
- - uid: 20741
+ - uid: 14448
components:
- type: Transform
- pos: -10.5,13.5
+ pos: 6.5,53.5
parent: 2
- - uid: 20742
+ - uid: 14449
components:
- type: Transform
- pos: -11.5,13.5
+ pos: 6.5,54.5
parent: 2
- - uid: 20743
+ - uid: 14450
components:
- type: Transform
- pos: -14.5,10.5
+ pos: 6.5,55.5
parent: 2
- - uid: 20744
+ - uid: 14457
components:
- type: Transform
- pos: -36.5,9.5
+ pos: 7.5,55.5
parent: 2
- - uid: 20745
+ - uid: 14458
components:
- type: Transform
- pos: -36.5,10.5
+ pos: 8.5,55.5
parent: 2
- - uid: 20746
+ - uid: 14459
components:
- type: Transform
- pos: 15.5,46.5
+ pos: 9.5,55.5
parent: 2
- - uid: 20747
+ - uid: 14460
components:
- type: Transform
- pos: 43.5,43.5
+ pos: 7.5,60.5
parent: 2
- - uid: 20748
+ - uid: 14461
components:
- type: Transform
- pos: -12.5,13.5
+ pos: 24.5,4.5
parent: 2
- - uid: 20749
+ - uid: 14462
components:
- type: Transform
- pos: -13.5,13.5
+ pos: 18.5,44.5
parent: 2
- - uid: 20750
+ - uid: 14463
components:
- type: Transform
- pos: -14.5,13.5
+ pos: 18.5,43.5
parent: 2
- - uid: 20751
+ - uid: 14464
components:
- type: Transform
- pos: -15.5,13.5
+ pos: 18.5,42.5
parent: 2
- - uid: 20752
+ - uid: 14465
components:
- type: Transform
- pos: -16.5,13.5
+ pos: 18.5,41.5
parent: 2
- - uid: 20753
+ - uid: 14466
components:
- type: Transform
- pos: -17.5,13.5
+ pos: 18.5,40.5
parent: 2
- - uid: 20754
+ - uid: 14467
components:
- type: Transform
- pos: -18.5,13.5
+ pos: 18.5,39.5
parent: 2
- - uid: 20755
+ - uid: 14468
components:
- type: Transform
- pos: -19.5,13.5
+ pos: 17.5,39.5
parent: 2
- - uid: 20756
+ - uid: 14469
components:
- type: Transform
- pos: -20.5,13.5
+ pos: 16.5,39.5
parent: 2
- - uid: 20757
+ - uid: 14470
components:
- type: Transform
- pos: -21.5,13.5
+ pos: 15.5,39.5
parent: 2
- - uid: 20758
+ - uid: 14471
components:
- type: Transform
- pos: -22.5,13.5
+ pos: 14.5,39.5
parent: 2
- - uid: 20759
+ - uid: 14472
components:
- type: Transform
- pos: -23.5,13.5
+ pos: 13.5,39.5
parent: 2
- - uid: 20760
+ - uid: 14473
components:
- type: Transform
- pos: -24.5,13.5
+ pos: 12.5,39.5
parent: 2
- - uid: 20761
+ - uid: 14474
components:
- type: Transform
- pos: -25.5,13.5
+ pos: 11.5,39.5
parent: 2
- - uid: 20762
+ - uid: 14475
components:
- type: Transform
- pos: -26.5,13.5
+ pos: 10.5,39.5
parent: 2
- - uid: 20763
+ - uid: 14476
components:
- type: Transform
- pos: -27.5,13.5
+ pos: 9.5,39.5
parent: 2
- - uid: 20764
+ - uid: 14477
components:
- type: Transform
- pos: -28.5,13.5
+ pos: 8.5,39.5
parent: 2
- - uid: 20765
+ - uid: 14478
components:
- type: Transform
- pos: -29.5,13.5
+ pos: 7.5,39.5
parent: 2
- - uid: 20766
+ - uid: 14479
components:
- type: Transform
- pos: 31.5,52.5
+ pos: 6.5,39.5
parent: 2
- - uid: 20767
+ - uid: 14480
components:
- type: Transform
- pos: -31.5,13.5
+ pos: 5.5,39.5
parent: 2
- - uid: 20768
+ - uid: 14481
components:
- type: Transform
- pos: -32.5,13.5
+ pos: 4.5,39.5
parent: 2
- - uid: 20769
+ - uid: 14482
components:
- type: Transform
- pos: -32.5,14.5
+ pos: 17.5,43.5
parent: 2
- - uid: 20770
+ - uid: 14483
components:
- type: Transform
- pos: -32.5,15.5
+ pos: 16.5,43.5
parent: 2
- - uid: 20771
+ - uid: 14484
components:
- type: Transform
- pos: -32.5,16.5
+ pos: 15.5,43.5
parent: 2
- - uid: 20772
+ - uid: 14485
components:
- type: Transform
- pos: -33.5,13.5
+ pos: 14.5,43.5
parent: 2
- - uid: 20773
+ - uid: 14486
components:
- type: Transform
- pos: -33.5,12.5
+ pos: 13.5,43.5
parent: 2
- - uid: 20774
+ - uid: 14487
components:
- type: Transform
- pos: -33.5,11.5
+ pos: 13.5,42.5
parent: 2
- - uid: 20775
+ - uid: 14488
components:
- type: Transform
- pos: -33.5,10.5
+ pos: 12.5,42.5
parent: 2
- - uid: 20776
+ - uid: 14489
components:
- type: Transform
- pos: -33.5,9.5
+ pos: 11.5,42.5
parent: 2
- - uid: 20777
+ - uid: 14490
components:
- type: Transform
- pos: -33.5,8.5
+ pos: 10.5,42.5
parent: 2
- - uid: 20778
+ - uid: 14494
components:
- type: Transform
- pos: -33.5,7.5
+ pos: 22.5,45.5
parent: 2
- - uid: 20779
+ - uid: 14495
components:
- type: Transform
- pos: -33.5,6.5
+ pos: 23.5,45.5
parent: 2
- - uid: 20780
+ - uid: 14496
components:
- type: Transform
- pos: -33.5,5.5
+ pos: 24.5,45.5
parent: 2
- - uid: 20781
+ - uid: 14497
components:
- type: Transform
- pos: -33.5,4.5
+ pos: 25.5,45.5
parent: 2
- - uid: 20782
+ - uid: 14498
components:
- type: Transform
- pos: -33.5,3.5
+ pos: 26.5,45.5
parent: 2
- - uid: 20783
+ - uid: 14499
components:
- type: Transform
- pos: -33.5,2.5
+ pos: 27.5,45.5
parent: 2
- - uid: 20784
+ - uid: 14500
components:
- type: Transform
- pos: -33.5,1.5
+ pos: 27.5,44.5
parent: 2
- - uid: 20785
+ - uid: 14501
components:
- type: Transform
- pos: -33.5,0.5
+ pos: 27.5,43.5
parent: 2
- - uid: 20786
+ - uid: 14502
components:
- type: Transform
- pos: -33.5,-0.5
+ pos: 27.5,42.5
parent: 2
- - uid: 20787
+ - uid: 14503
components:
- type: Transform
- pos: -33.5,-1.5
+ pos: -1.5,53.5
parent: 2
- - uid: 20788
+ - uid: 14504
components:
- type: Transform
- pos: -33.5,-2.5
+ pos: 27.5,40.5
parent: 2
- - uid: 20789
+ - uid: 14505
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: 27.5,39.5
parent: 2
- - uid: 20790
+ - uid: 14506
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: 27.5,38.5
parent: 2
- - uid: 20792
+ - uid: 14507
components:
- type: Transform
- pos: 53.5,51.5
+ pos: 27.5,37.5
parent: 2
- - uid: 20793
+ - uid: 14566
components:
- type: Transform
- pos: 53.5,50.5
+ pos: 34.5,6.5
parent: 2
- - uid: 20795
+ - uid: 14586
components:
- type: Transform
- pos: -28.5,2.5
+ pos: 33.5,6.5
parent: 2
- - uid: 20796
+ - uid: 14589
components:
- type: Transform
- pos: -34.5,6.5
+ pos: -36.5,11.5
parent: 2
- - uid: 20797
+ - uid: 14590
components:
- type: Transform
- pos: -35.5,6.5
+ pos: -34.5,10.5
parent: 2
- - uid: 20798
+ - uid: 14601
components:
- type: Transform
- pos: -36.5,6.5
+ pos: -11.5,10.5
parent: 2
- - uid: 20799
+ - uid: 14602
components:
- type: Transform
- pos: -37.5,6.5
+ pos: -33.5,-10.5
parent: 2
- - uid: 20801
+ - uid: 14604
components:
- type: Transform
- pos: -34.5,4.5
+ pos: -7.5,-8.5
parent: 2
- - uid: 20802
+ - uid: 14607
components:
- type: Transform
- pos: -35.5,4.5
+ pos: -37.5,68.5
parent: 2
- - uid: 20803
+ - uid: 14616
components:
- type: Transform
- pos: -36.5,4.5
+ pos: 53.5,10.5
parent: 2
- - uid: 20804
+ - uid: 14634
components:
- type: Transform
- pos: -37.5,4.5
+ pos: 6.5,-23.5
parent: 2
- - uid: 20809
+ - uid: 14638
components:
- type: Transform
- pos: -41.5,7.5
+ pos: 42.5,45.5
parent: 2
- - uid: 20810
+ - uid: 14642
components:
- type: Transform
- pos: -42.5,7.5
+ pos: 42.5,49.5
parent: 2
- - uid: 20811
+ - uid: 14643
components:
- type: Transform
- pos: -42.5,6.5
+ pos: 43.5,49.5
parent: 2
- - uid: 20812
+ - uid: 14644
components:
- type: Transform
- pos: -42.5,5.5
+ pos: 44.5,49.5
parent: 2
- - uid: 20813
+ - uid: 14645
components:
- type: Transform
- pos: -42.5,4.5
+ pos: 45.5,49.5
parent: 2
- - uid: 20814
+ - uid: 14646
components:
- type: Transform
- pos: -42.5,3.5
+ pos: 46.5,49.5
parent: 2
- - uid: 20815
+ - uid: 14647
components:
- type: Transform
- pos: -42.5,2.5
+ pos: 47.5,49.5
parent: 2
- - uid: 20816
+ - uid: 14648
components:
- type: Transform
- pos: -43.5,2.5
+ pos: 48.5,49.5
parent: 2
- - uid: 20817
+ - uid: 14649
components:
- type: Transform
- pos: -43.5,1.5
+ pos: 49.5,49.5
parent: 2
- - uid: 20818
+ - uid: 14650
components:
- type: Transform
- pos: -43.5,0.5
+ pos: 50.5,49.5
parent: 2
- - uid: 20819
+ - uid: 14651
components:
- type: Transform
- pos: -43.5,-0.5
+ pos: 41.5,49.5
parent: 2
- - uid: 20820
+ - uid: 14652
components:
- type: Transform
- pos: -43.5,-1.5
+ pos: 40.5,49.5
parent: 2
- - uid: 20821
+ - uid: 14653
components:
- type: Transform
- pos: -43.5,-2.5
+ pos: 39.5,49.5
parent: 2
- - uid: 20822
+ - uid: 14654
components:
- type: Transform
- pos: -43.5,-3.5
+ pos: 38.5,49.5
parent: 2
- - uid: 20823
+ - uid: 14655
components:
- type: Transform
- pos: -43.5,-4.5
+ pos: 37.5,49.5
parent: 2
- - uid: 20824
+ - uid: 14656
components:
- type: Transform
- pos: -43.5,-5.5
+ pos: 36.5,49.5
parent: 2
- - uid: 20825
+ - uid: 14657
components:
- type: Transform
- pos: -43.5,-6.5
+ pos: 35.5,49.5
parent: 2
- - uid: 20826
+ - uid: 14660
components:
- type: Transform
- pos: -42.5,-6.5
+ pos: -11.5,11.5
parent: 2
- - uid: 20827
+ - uid: 14661
components:
- type: Transform
- pos: -42.5,-7.5
+ pos: 31.5,49.5
parent: 2
- - uid: 20828
+ - uid: 14662
components:
- type: Transform
- pos: -41.5,-7.5
+ pos: 31.5,50.5
parent: 2
- - uid: 20829
+ - uid: 14663
components:
- type: Transform
- pos: -41.5,-8.5
+ pos: 31.5,51.5
parent: 2
- - uid: 20830
+ - uid: 14664
components:
- type: Transform
- pos: -40.5,-8.5
+ pos: 31.5,48.5
parent: 2
- - uid: 20831
+ - uid: 14665
components:
- type: Transform
- pos: -40.5,-9.5
+ pos: 31.5,47.5
parent: 2
- - uid: 20832
+ - uid: 14666
components:
- type: Transform
- pos: -39.5,-9.5
+ pos: 31.5,46.5
parent: 2
- - uid: 20833
+ - uid: 14667
components:
- type: Transform
- pos: 5.5,63.5
+ pos: 31.5,45.5
parent: 2
- - uid: 20992
+ - uid: 14668
components:
- type: Transform
- pos: -87.5,23.5
+ pos: 31.5,44.5
parent: 2
- - uid: 21015
+ - uid: 14669
components:
- type: Transform
- pos: 12.5,70.5
+ pos: 31.5,43.5
parent: 2
- - uid: 21074
+ - uid: 14670
components:
- type: Transform
- pos: 49.5,17.5
+ pos: 32.5,43.5
parent: 2
- - uid: 21096
+ - uid: 14671
components:
- type: Transform
- pos: -107.5,24.5
+ pos: 33.5,43.5
parent: 2
- - uid: 21103
+ - uid: 14672
components:
- type: Transform
- pos: -107.5,23.5
+ pos: 34.5,43.5
parent: 2
- - uid: 21124
+ - uid: 14673
components:
- type: Transform
- pos: -61.5,-11.5
+ pos: 34.5,42.5
parent: 2
- - uid: 21134
+ - uid: 14674
components:
- type: Transform
- pos: -52.5,59.5
+ pos: 34.5,41.5
parent: 2
- - uid: 21135
+ - uid: 14675
components:
- type: Transform
- pos: -55.5,-32.5
+ pos: 34.5,40.5
parent: 2
- - uid: 21136
+ - uid: 14676
components:
- type: Transform
- pos: -55.5,-33.5
+ pos: 34.5,39.5
parent: 2
- - uid: 21137
+ - uid: 14677
components:
- type: Transform
- pos: -55.5,-34.5
+ pos: 34.5,38.5
parent: 2
- - uid: 21138
+ - uid: 14678
components:
- type: Transform
- pos: -55.5,-35.5
+ pos: 34.5,37.5
parent: 2
- - uid: 21139
+ - uid: 14679
components:
- type: Transform
- pos: -54.5,-35.5
+ pos: 34.5,36.5
parent: 2
- - uid: 21140
+ - uid: 14680
components:
- type: Transform
- pos: -53.5,-35.5
+ pos: 34.5,35.5
parent: 2
- - uid: 21141
+ - uid: 14681
components:
- type: Transform
- pos: -52.5,-35.5
+ pos: 34.5,34.5
parent: 2
- - uid: 21142
+ - uid: 14682
components:
- type: Transform
- pos: -56.5,-35.5
+ pos: 34.5,33.5
parent: 2
- - uid: 21143
+ - uid: 14683
components:
- type: Transform
- pos: -57.5,-35.5
+ pos: 33.5,33.5
parent: 2
- - uid: 21144
+ - uid: 14684
components:
- type: Transform
- pos: -58.5,-35.5
+ pos: 32.5,33.5
parent: 2
- - uid: 21145
+ - uid: 14685
components:
- type: Transform
- pos: -58.5,-34.5
+ pos: 31.5,33.5
parent: 2
- - uid: 21146
+ - uid: 14686
components:
- type: Transform
- pos: -58.5,-33.5
+ pos: 30.5,33.5
parent: 2
- - uid: 21147
+ - uid: 14687
components:
- type: Transform
- pos: -57.5,-33.5
+ pos: 29.5,33.5
parent: 2
- - uid: 21148
+ - uid: 14688
components:
- type: Transform
- pos: -56.5,-33.5
+ pos: 28.5,33.5
parent: 2
- - uid: 21149
+ - uid: 14689
components:
- type: Transform
- pos: -59.5,-34.5
+ pos: 27.5,33.5
parent: 2
- - uid: 21150
+ - uid: 14690
components:
- type: Transform
- pos: -60.5,-34.5
+ pos: 26.5,33.5
parent: 2
- - uid: 21151
+ - uid: 14691
components:
- type: Transform
- pos: -61.5,-34.5
+ pos: 25.5,33.5
parent: 2
- - uid: 21152
+ - uid: 14692
components:
- type: Transform
- pos: -62.5,-34.5
+ pos: 24.5,33.5
parent: 2
- - uid: 21153
+ - uid: 14693
components:
- type: Transform
- pos: -63.5,-34.5
+ pos: 23.5,33.5
parent: 2
- - uid: 21154
+ - uid: 14694
components:
- type: Transform
- pos: -64.5,-34.5
+ pos: 22.5,33.5
parent: 2
- - uid: 21155
+ - uid: 14695
components:
- type: Transform
- pos: -65.5,-34.5
+ pos: 21.5,33.5
parent: 2
- - uid: 21156
+ - uid: 14696
components:
- type: Transform
- pos: -66.5,-34.5
+ pos: 20.5,33.5
parent: 2
- - uid: 21157
+ - uid: 14697
components:
- type: Transform
- pos: -67.5,-34.5
+ pos: 19.5,33.5
parent: 2
- - uid: 21158
+ - uid: 14698
components:
- type: Transform
- pos: -66.5,-33.5
+ pos: 18.5,33.5
parent: 2
- - uid: 21159
+ - uid: 14699
components:
- type: Transform
- pos: -66.5,-32.5
+ pos: 17.5,33.5
parent: 2
- - uid: 21160
+ - uid: 14700
components:
- type: Transform
- pos: -66.5,-31.5
+ pos: 16.5,33.5
parent: 2
- - uid: 21161
+ - uid: 14701
components:
- type: Transform
- pos: -66.5,-30.5
+ pos: 15.5,33.5
parent: 2
- - uid: 21166
+ - uid: 14702
components:
- type: Transform
- pos: -51.5,-35.5
+ pos: 14.5,33.5
parent: 2
- - uid: 21167
+ - uid: 14703
components:
- type: Transform
- pos: -50.5,-35.5
+ pos: 13.5,33.5
parent: 2
- - uid: 21168
+ - uid: 14704
components:
- type: Transform
- pos: -49.5,-35.5
+ pos: 12.5,33.5
parent: 2
- - uid: 21169
+ - uid: 14705
components:
- type: Transform
- pos: -48.5,-35.5
+ pos: 11.5,33.5
parent: 2
- - uid: 21170
+ - uid: 14706
components:
- type: Transform
- pos: -47.5,-35.5
+ pos: 10.5,33.5
parent: 2
- - uid: 21171
+ - uid: 14707
components:
- type: Transform
- pos: -46.5,-35.5
+ pos: 9.5,33.5
parent: 2
- - uid: 21172
+ - uid: 14708
components:
- type: Transform
- pos: -45.5,-35.5
+ pos: 8.5,33.5
parent: 2
- - uid: 21173
+ - uid: 14709
components:
- type: Transform
- pos: -44.5,-35.5
+ pos: 7.5,33.5
parent: 2
- - uid: 21174
+ - uid: 14710
components:
- type: Transform
- pos: -43.5,-35.5
+ pos: 6.5,33.5
parent: 2
- - uid: 21175
+ - uid: 14711
components:
- type: Transform
- pos: -42.5,-35.5
+ pos: 5.5,33.5
parent: 2
- - uid: 21176
+ - uid: 14712
components:
- type: Transform
- pos: -41.5,-35.5
+ pos: 4.5,33.5
parent: 2
- - uid: 21177
+ - uid: 14716
components:
- type: Transform
- pos: -40.5,-35.5
+ pos: -2.5,53.5
parent: 2
- - uid: 21178
+ - uid: 14719
components:
- type: Transform
- pos: -39.5,-35.5
+ pos: 39.5,42.5
parent: 2
- - uid: 21179
+ - uid: 14720
components:
- type: Transform
- pos: -62.5,-16.5
+ pos: 39.5,41.5
parent: 2
- - uid: 21180
+ - uid: 14722
components:
- type: Transform
- pos: -63.5,-16.5
+ pos: 39.5,39.5
parent: 2
- - uid: 21181
+ - uid: 14723
components:
- type: Transform
- pos: -64.5,-16.5
+ pos: 39.5,38.5
parent: 2
- - uid: 21182
+ - uid: 14724
components:
- type: Transform
- pos: -65.5,-16.5
+ pos: 39.5,37.5
parent: 2
- - uid: 21284
+ - uid: 14725
components:
- type: Transform
- pos: 18.5,48.5
+ pos: 39.5,36.5
parent: 2
- - uid: 21286
+ - uid: 14726
components:
- type: Transform
- pos: -32.5,22.5
+ pos: 39.5,35.5
parent: 2
- - uid: 21287
+ - uid: 14727
components:
- type: Transform
- pos: -32.5,21.5
+ pos: 39.5,34.5
parent: 2
- - uid: 21288
+ - uid: 14728
components:
- type: Transform
- pos: -32.5,20.5
+ pos: 39.5,33.5
parent: 2
- - uid: 21289
+ - uid: 14729
components:
- type: Transform
- pos: -31.5,20.5
+ pos: 39.5,32.5
parent: 2
- - uid: 21290
+ - uid: 14730
components:
- type: Transform
- pos: -30.5,20.5
+ pos: -11.5,12.5
parent: 2
- - uid: 21291
+ - uid: 14731
components:
- type: Transform
- pos: -29.5,20.5
+ pos: -14.5,12.5
parent: 2
- - uid: 21292
+ - uid: 14732
components:
- type: Transform
- pos: -28.5,20.5
+ pos: 39.5,29.5
parent: 2
- - uid: 21293
+ - uid: 14733
components:
- type: Transform
- pos: -27.5,20.5
+ pos: 38.5,29.5
parent: 2
- - uid: 21294
+ - uid: 14734
components:
- type: Transform
- pos: -26.5,20.5
+ pos: 37.5,29.5
parent: 2
- - uid: 21295
+ - uid: 14735
components:
- type: Transform
- pos: -25.5,20.5
+ pos: 36.5,29.5
parent: 2
- - uid: 21296
+ - uid: 14736
components:
- type: Transform
- pos: -24.5,20.5
+ pos: 35.5,29.5
parent: 2
- - uid: 21297
+ - uid: 14737
components:
- type: Transform
- pos: -23.5,20.5
+ pos: 34.5,29.5
parent: 2
- - uid: 21298
+ - uid: 14738
components:
- type: Transform
- pos: -22.5,20.5
+ pos: 33.5,29.5
parent: 2
- - uid: 21299
+ - uid: 14739
components:
- type: Transform
- pos: -21.5,20.5
+ pos: 32.5,29.5
parent: 2
- - uid: 21300
+ - uid: 14740
components:
- type: Transform
- pos: -20.5,20.5
+ pos: 31.5,29.5
parent: 2
- - uid: 21301
+ - uid: 14741
components:
- type: Transform
- pos: -19.5,20.5
+ pos: 31.5,28.5
parent: 2
- - uid: 21302
+ - uid: 14742
components:
- type: Transform
- pos: -18.5,20.5
+ pos: 31.5,27.5
parent: 2
- - uid: 21303
+ - uid: 14743
components:
- type: Transform
- pos: -17.5,20.5
+ pos: 31.5,26.5
parent: 2
- - uid: 21304
+ - uid: 14744
components:
- type: Transform
- pos: -16.5,20.5
+ pos: 31.5,25.5
parent: 2
- - uid: 21305
+ - uid: 14745
components:
- type: Transform
- pos: -15.5,20.5
+ pos: 31.5,24.5
parent: 2
- - uid: 21306
+ - uid: 14746
components:
- type: Transform
- pos: -14.5,20.5
+ pos: 31.5,23.5
parent: 2
- - uid: 21307
+ - uid: 14747
components:
- type: Transform
- pos: -13.5,20.5
+ pos: 24.5,32.5
parent: 2
- - uid: 21308
+ - uid: 14748
components:
- type: Transform
- pos: -12.5,20.5
+ pos: 24.5,31.5
parent: 2
- - uid: 21309
+ - uid: 14749
components:
- type: Transform
- pos: -11.5,20.5
+ pos: 24.5,30.5
parent: 2
- - uid: 21310
+ - uid: 14750
components:
- type: Transform
- pos: -10.5,20.5
+ pos: 24.5,29.5
parent: 2
- - uid: 21311
+ - uid: 14751
components:
- type: Transform
- pos: -9.5,20.5
+ pos: 24.5,28.5
parent: 2
- - uid: 21312
+ - uid: 14752
components:
- type: Transform
- pos: -8.5,20.5
+ pos: 24.5,27.5
parent: 2
- - uid: 21313
+ - uid: 14753
components:
- type: Transform
- pos: -7.5,20.5
+ pos: 24.5,26.5
parent: 2
- - uid: 21314
+ - uid: 14754
components:
- type: Transform
- pos: -6.5,20.5
+ pos: 24.5,25.5
parent: 2
- - uid: 21315
+ - uid: 14755
components:
- type: Transform
- pos: -6.5,19.5
+ pos: 24.5,24.5
parent: 2
- - uid: 21316
+ - uid: 14756
components:
- type: Transform
- pos: -5.5,19.5
+ pos: -15.5,14.5
parent: 2
- - uid: 21317
+ - uid: 14758
components:
- type: Transform
- pos: -4.5,19.5
+ pos: 26.5,27.5
parent: 2
- - uid: 21318
+ - uid: 14759
components:
- type: Transform
- pos: -3.5,19.5
+ pos: 27.5,27.5
parent: 2
- - uid: 21319
+ - uid: 14760
components:
- type: Transform
- pos: -2.5,19.5
+ pos: 28.5,27.5
parent: 2
- - uid: 21320
+ - uid: 14761
components:
- type: Transform
- pos: -1.5,19.5
+ pos: 29.5,27.5
parent: 2
- - uid: 21321
+ - uid: 14762
components:
- type: Transform
- pos: -0.5,19.5
+ pos: 30.5,27.5
parent: 2
- - uid: 21322
+ - uid: 14775
components:
- type: Transform
- pos: 0.5,19.5
+ pos: 35.5,28.5
parent: 2
- - uid: 21323
+ - uid: 14776
components:
- type: Transform
- pos: 1.5,19.5
+ pos: 35.5,27.5
parent: 2
- - uid: 21325
+ - uid: 14777
components:
- type: Transform
- pos: 3.5,19.5
+ pos: 35.5,26.5
parent: 2
- - uid: 21326
+ - uid: 14778
components:
- type: Transform
- pos: 4.5,19.5
+ pos: 35.5,25.5
parent: 2
- - uid: 21327
+ - uid: 14779
components:
- type: Transform
- pos: 5.5,19.5
+ pos: 35.5,24.5
parent: 2
- - uid: 21328
+ - uid: 14780
components:
- type: Transform
- pos: 6.5,19.5
+ pos: 36.5,24.5
parent: 2
- - uid: 21329
+ - uid: 14781
components:
- type: Transform
- pos: 7.5,19.5
+ pos: 37.5,24.5
parent: 2
- - uid: 21330
+ - uid: 14782
components:
- type: Transform
- pos: 8.5,19.5
+ pos: 38.5,24.5
parent: 2
- - uid: 21331
+ - uid: 14783
components:
- type: Transform
- pos: 9.5,19.5
+ pos: 39.5,24.5
parent: 2
- - uid: 21332
+ - uid: 14784
components:
- type: Transform
- pos: 10.5,19.5
+ pos: 40.5,24.5
parent: 2
- - uid: 21333
+ - uid: 14785
components:
- type: Transform
- pos: 11.5,19.5
+ pos: -9.5,13.5
parent: 2
- - uid: 21334
+ - uid: 14786
components:
- type: Transform
- pos: 12.5,19.5
+ pos: -14.5,11.5
parent: 2
- - uid: 21335
+ - uid: 14788
components:
- type: Transform
- pos: 13.5,19.5
+ pos: 43.5,29.5
parent: 2
- - uid: 21336
+ - uid: 14789
components:
- type: Transform
- pos: 14.5,19.5
+ pos: 44.5,29.5
parent: 2
- - uid: 21337
+ - uid: 14790
components:
- type: Transform
- pos: 15.5,19.5
+ pos: 45.5,29.5
parent: 2
- - uid: 21338
+ - uid: 14791
components:
- type: Transform
- pos: 16.5,19.5
+ pos: 46.5,29.5
parent: 2
- - uid: 21339
+ - uid: 14792
components:
- type: Transform
- pos: 17.5,19.5
+ pos: 47.5,29.5
parent: 2
- - uid: 21340
+ - uid: 14793
components:
- type: Transform
- pos: 18.5,19.5
+ pos: 48.5,29.5
parent: 2
- - uid: 21341
+ - uid: 14794
components:
- type: Transform
- pos: 19.5,19.5
+ pos: 48.5,28.5
parent: 2
- - uid: 21342
+ - uid: 14795
components:
- type: Transform
- pos: 20.5,19.5
+ pos: 48.5,27.5
parent: 2
- - uid: 21343
+ - uid: 14796
components:
- type: Transform
- pos: 21.5,19.5
+ pos: 48.5,26.5
parent: 2
- - uid: 21344
+ - uid: 14797
components:
- type: Transform
- pos: 22.5,19.5
+ pos: 48.5,25.5
parent: 2
- - uid: 21345
+ - uid: 14798
components:
- type: Transform
- pos: 23.5,19.5
+ pos: 48.5,24.5
parent: 2
- - uid: 21346
+ - uid: 14799
components:
- type: Transform
- pos: 24.5,19.5
+ pos: 47.5,25.5
parent: 2
- - uid: 21347
+ - uid: 14800
components:
- type: Transform
- pos: 25.5,19.5
+ pos: 46.5,25.5
parent: 2
- - uid: 21348
+ - uid: 14801
components:
- type: Transform
- pos: 26.5,19.5
+ pos: 45.5,25.5
parent: 2
- - uid: 21349
+ - uid: 14802
components:
- type: Transform
- pos: 27.5,19.5
+ pos: 44.5,25.5
parent: 2
- - uid: 21350
+ - uid: 14803
components:
- type: Transform
- pos: 28.5,19.5
+ pos: 43.5,25.5
parent: 2
- - uid: 21351
+ - uid: 14804
components:
- type: Transform
- pos: 29.5,19.5
+ pos: 42.5,25.5
parent: 2
- - uid: 21352
+ - uid: 14805
components:
- type: Transform
- pos: 30.5,19.5
+ pos: -38.5,68.5
parent: 2
- - uid: 21353
+ - uid: 14806
components:
- type: Transform
- pos: 31.5,19.5
+ pos: 40.5,25.5
parent: 2
- - uid: 21354
+ - uid: 14807
components:
- type: Transform
- pos: 32.5,19.5
+ pos: 40.5,32.5
parent: 2
- - uid: 21355
+ - uid: 14808
components:
- type: Transform
- pos: 33.5,19.5
+ pos: 41.5,32.5
parent: 2
- - uid: 21356
+ - uid: 14809
components:
- type: Transform
- pos: 34.5,19.5
+ pos: 42.5,32.5
parent: 2
- - uid: 21357
+ - uid: 14810
components:
- type: Transform
- pos: 35.5,19.5
+ pos: 43.5,32.5
parent: 2
- - uid: 21358
+ - uid: 14811
components:
- type: Transform
- pos: 36.5,19.5
+ pos: 44.5,32.5
parent: 2
- - uid: 21359
+ - uid: 14812
components:
- type: Transform
- pos: 37.5,19.5
+ pos: 45.5,32.5
parent: 2
- - uid: 21365
+ - uid: 14813
components:
- type: Transform
- pos: 43.5,19.5
+ pos: 46.5,32.5
parent: 2
- - uid: 21366
+ - uid: 14814
components:
- type: Transform
- pos: 44.5,19.5
+ pos: 47.5,32.5
parent: 2
- - uid: 21367
+ - uid: 14815
components:
- type: Transform
- pos: 45.5,19.5
+ pos: 48.5,32.5
parent: 2
- - uid: 21368
+ - uid: 14816
components:
- type: Transform
- pos: 46.5,19.5
+ pos: 40.5,37.5
parent: 2
- - uid: 21369
+ - uid: 14817
components:
- type: Transform
- pos: 47.5,19.5
+ pos: 41.5,37.5
parent: 2
- - uid: 21370
+ - uid: 14818
components:
- type: Transform
- pos: 48.5,19.5
+ pos: 42.5,37.5
parent: 2
- - uid: 21371
+ - uid: 14819
components:
- type: Transform
- pos: 48.5,18.5
+ pos: 43.5,37.5
parent: 2
- - uid: 21372
+ - uid: 14820
components:
- type: Transform
- pos: 48.5,17.5
+ pos: 44.5,37.5
parent: 2
- - uid: 21373
+ - uid: 14821
components:
- type: Transform
- pos: 49.5,16.5
+ pos: 45.5,37.5
parent: 2
- - uid: 21374
+ - uid: 14822
components:
- type: Transform
- pos: 49.5,15.5
+ pos: 46.5,37.5
parent: 2
- - uid: 21375
+ - uid: 14823
components:
- type: Transform
- pos: 49.5,14.5
+ pos: 47.5,37.5
parent: 2
- - uid: 21376
+ - uid: 14824
components:
- type: Transform
- pos: 49.5,13.5
+ pos: 48.5,37.5
parent: 2
- - uid: 21377
+ - uid: 14825
components:
- type: Transform
- pos: 49.5,12.5
+ pos: 49.5,37.5
parent: 2
- - uid: 21378
+ - uid: 14826
components:
- type: Transform
- pos: 49.5,11.5
+ pos: 40.5,42.5
parent: 2
- - uid: 21379
+ - uid: 14827
components:
- type: Transform
- pos: 49.5,10.5
+ pos: 41.5,42.5
parent: 2
- - uid: 21380
+ - uid: 14828
components:
- type: Transform
- pos: 49.5,9.5
+ pos: 42.5,42.5
parent: 2
- - uid: 21381
+ - uid: 14829
components:
- type: Transform
- pos: 49.5,8.5
+ pos: 43.5,42.5
parent: 2
- - uid: 21382
+ - uid: 14830
components:
- type: Transform
- pos: 49.5,7.5
+ pos: 44.5,42.5
parent: 2
- - uid: 21383
+ - uid: 14831
components:
- type: Transform
- pos: 49.5,6.5
+ pos: 45.5,42.5
parent: 2
- - uid: 21384
+ - uid: 14832
components:
- type: Transform
- pos: 49.5,5.5
+ pos: 46.5,42.5
parent: 2
- - uid: 21385
+ - uid: 14833
components:
- type: Transform
- pos: 49.5,4.5
+ pos: 47.5,42.5
parent: 2
- - uid: 21386
+ - uid: 14834
components:
- type: Transform
- pos: 49.5,3.5
+ pos: 48.5,42.5
parent: 2
- - uid: 21387
+ - uid: 14835
components:
- type: Transform
- pos: 50.5,3.5
+ pos: 49.5,42.5
parent: 2
- - uid: 21388
+ - uid: 14836
components:
- type: Transform
- pos: 50.5,2.5
+ pos: -35.5,10.5
parent: 2
- - uid: 21389
+ - uid: 14837
components:
- type: Transform
- pos: 50.5,1.5
+ pos: 50.5,26.5
parent: 2
- - uid: 21390
+ - uid: 14838
components:
- type: Transform
- pos: 50.5,0.5
+ pos: 51.5,26.5
parent: 2
- - uid: 21391
+ - uid: 14839
components:
- type: Transform
- pos: 50.5,-0.5
+ pos: 52.5,26.5
parent: 2
- - uid: 21392
+ - uid: 14840
components:
- type: Transform
- pos: 50.5,-1.5
+ pos: 53.5,26.5
parent: 2
- - uid: 21393
+ - uid: 14841
components:
- type: Transform
- pos: 50.5,-2.5
+ pos: 54.5,26.5
parent: 2
- - uid: 21394
+ - uid: 14842
components:
- type: Transform
- pos: 50.5,-3.5
+ pos: 55.5,26.5
parent: 2
- - uid: 21395
+ - uid: 14843
components:
- type: Transform
- pos: 50.5,-4.5
+ pos: 56.5,26.5
parent: 2
- - uid: 21396
+ - uid: 14844
components:
- type: Transform
- pos: 50.5,-5.5
+ pos: 57.5,26.5
parent: 2
- - uid: 21397
+ - uid: 14845
components:
- type: Transform
- pos: 50.5,-6.5
+ pos: 58.5,26.5
parent: 2
- - uid: 21398
+ - uid: 14846
components:
- type: Transform
- pos: 50.5,-7.5
+ pos: 59.5,26.5
parent: 2
- - uid: 21399
+ - uid: 14847
components:
- type: Transform
- pos: 50.5,-8.5
+ pos: 60.5,26.5
parent: 2
- - uid: 21401
+ - uid: 14848
components:
- type: Transform
- pos: 50.5,25.5
+ pos: 61.5,26.5
parent: 2
- - uid: 21402
+ - uid: 14849
components:
- type: Transform
- pos: 50.5,-11.5
+ pos: 62.5,26.5
parent: 2
- - uid: 21403
+ - uid: 14852
components:
- type: Transform
- pos: 50.5,-12.5
+ pos: 53.5,24.5
parent: 2
- - uid: 21404
+ - uid: 14853
components:
- type: Transform
- pos: 50.5,-13.5
+ pos: 53.5,23.5
parent: 2
- - uid: 21405
+ - uid: 14854
components:
- type: Transform
- pos: 49.5,-13.5
+ pos: 53.5,22.5
parent: 2
- - uid: 21406
+ - uid: 14855
components:
- type: Transform
- pos: 49.5,-14.5
+ pos: 53.5,21.5
parent: 2
- - uid: 21407
+ - uid: 14856
components:
- type: Transform
- pos: 48.5,-14.5
+ pos: 53.5,20.5
parent: 2
- - uid: 21408
+ - uid: 14857
components:
- type: Transform
- pos: 48.5,-15.5
+ pos: 53.5,19.5
parent: 2
- - uid: 21409
+ - uid: 14858
components:
- type: Transform
- pos: 47.5,-15.5
+ pos: 53.5,18.5
parent: 2
- - uid: 21410
+ - uid: 14859
components:
- type: Transform
- pos: 47.5,-16.5
+ pos: 53.5,17.5
parent: 2
- - uid: 21411
+ - uid: 14860
components:
- type: Transform
- pos: 46.5,-16.5
+ pos: 53.5,16.5
parent: 2
- - uid: 21412
+ - uid: 14861
components:
- type: Transform
- pos: 46.5,-17.5
+ pos: 53.5,15.5
parent: 2
- - uid: 21413
+ - uid: 14862
components:
- type: Transform
- pos: 45.5,-17.5
+ pos: 53.5,14.5
parent: 2
- - uid: 21414
+ - uid: 14863
components:
- type: Transform
- pos: 44.5,-17.5
+ pos: 53.5,13.5
parent: 2
- - uid: 21415
+ - uid: 14864
components:
- type: Transform
- pos: 43.5,-17.5
+ pos: 53.5,12.5
parent: 2
- - uid: 21416
+ - uid: 14865
components:
- type: Transform
- pos: 42.5,-17.5
+ pos: 53.5,11.5
parent: 2
- - uid: 21417
+ - uid: 14866
components:
- type: Transform
- pos: 41.5,-17.5
+ pos: 54.5,17.5
parent: 2
- - uid: 21418
+ - uid: 14867
components:
- type: Transform
- pos: 40.5,-17.5
+ pos: 55.5,17.5
parent: 2
- - uid: 21419
+ - uid: 14868
components:
- type: Transform
- pos: 39.5,-17.5
+ pos: 56.5,17.5
parent: 2
- - uid: 21420
+ - uid: 14869
components:
- type: Transform
- pos: 39.5,-16.5
+ pos: 57.5,17.5
parent: 2
- - uid: 21421
+ - uid: 14870
components:
- type: Transform
- pos: 38.5,-16.5
+ pos: 58.5,17.5
parent: 2
- - uid: 21422
+ - uid: 14871
components:
- type: Transform
- pos: -46.5,-8.5
+ pos: 59.5,17.5
parent: 2
- - uid: 21423
+ - uid: 14872
components:
- type: Transform
- pos: 38.5,-15.5
+ pos: 60.5,17.5
parent: 2
- - uid: 21424
+ - uid: 14873
components:
- type: Transform
- pos: 37.5,-15.5
+ pos: 61.5,17.5
parent: 2
- - uid: 21425
+ - uid: 14874
components:
- type: Transform
- pos: 36.5,-15.5
+ pos: 62.5,17.5
parent: 2
- - uid: 21426
+ - uid: 14875
components:
- type: Transform
- pos: 35.5,-15.5
+ pos: 63.5,17.5
parent: 2
- - uid: 21427
+ - uid: 14876
components:
- type: Transform
- pos: 34.5,-15.5
+ pos: 64.5,17.5
parent: 2
- - uid: 21428
+ - uid: 14877
components:
- type: Transform
- pos: 33.5,-15.5
+ pos: 65.5,17.5
parent: 2
- - uid: 21429
+ - uid: 14878
components:
- type: Transform
- pos: 32.5,-15.5
+ pos: 66.5,17.5
parent: 2
- - uid: 21430
+ - uid: 14879
components:
- type: Transform
- pos: 31.5,-15.5
+ pos: 67.5,17.5
parent: 2
- - uid: 21431
+ - uid: 14880
components:
- type: Transform
- pos: 30.5,-15.5
+ pos: 68.5,17.5
parent: 2
- - uid: 21432
+ - uid: 14881
components:
- type: Transform
- pos: 29.5,-15.5
+ pos: 69.5,17.5
parent: 2
- - uid: 21433
+ - uid: 14896
components:
- type: Transform
- pos: 28.5,-15.5
+ pos: 63.5,16.5
parent: 2
- - uid: 21434
+ - uid: 14897
components:
- type: Transform
- pos: 27.5,-15.5
+ pos: 63.5,15.5
parent: 2
- - uid: 21435
+ - uid: 14898
components:
- type: Transform
- pos: 26.5,-15.5
+ pos: 63.5,14.5
parent: 2
- - uid: 21436
+ - uid: 14899
components:
- type: Transform
- pos: 25.5,-15.5
+ pos: 63.5,13.5
parent: 2
- - uid: 21437
+ - uid: 14900
components:
- type: Transform
- pos: 24.5,-15.5
+ pos: 63.5,12.5
parent: 2
- - uid: 21438
+ - uid: 14901
components:
- type: Transform
- pos: 23.5,-15.5
+ pos: 63.5,11.5
parent: 2
- - uid: 21439
+ - uid: 14902
components:
- type: Transform
- pos: 22.5,-15.5
+ pos: 63.5,10.5
parent: 2
- - uid: 21440
+ - uid: 14903
components:
- type: Transform
- pos: 21.5,-15.5
+ pos: 63.5,18.5
parent: 2
- - uid: 21441
+ - uid: 14904
components:
- type: Transform
- pos: 20.5,-15.5
+ pos: 63.5,19.5
parent: 2
- - uid: 21442
+ - uid: 14905
components:
- type: Transform
- pos: 19.5,-15.5
+ pos: 63.5,20.5
parent: 2
- - uid: 21443
+ - uid: 14906
components:
- type: Transform
- pos: 18.5,-15.5
+ pos: 63.5,21.5
parent: 2
- - uid: 21444
+ - uid: 14907
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 63.5,22.5
parent: 2
- - uid: 21445
+ - uid: 14908
components:
- type: Transform
- pos: 16.5,-15.5
+ pos: 63.5,23.5
parent: 2
- - uid: 21446
+ - uid: 14909
components:
- type: Transform
- pos: 15.5,-15.5
+ pos: 63.5,24.5
parent: 2
- - uid: 21447
+ - uid: 14910
components:
- type: Transform
- pos: 14.5,-15.5
+ pos: 58.5,24.5
parent: 2
- - uid: 21448
+ - uid: 14911
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: 58.5,23.5
parent: 2
- - uid: 21449
+ - uid: 14912
components:
- type: Transform
- pos: 12.5,-15.5
+ pos: 58.5,22.5
parent: 2
- - uid: 21450
+ - uid: 14913
components:
- type: Transform
- pos: 11.5,-15.5
+ pos: 58.5,21.5
parent: 2
- - uid: 21451
+ - uid: 14914
components:
- type: Transform
- pos: 10.5,-15.5
+ pos: 58.5,20.5
parent: 2
- - uid: 21452
+ - uid: 14915
components:
- type: Transform
- pos: 9.5,-15.5
+ pos: 58.5,19.5
parent: 2
- - uid: 21453
+ - uid: 14916
components:
- type: Transform
- pos: 8.5,-15.5
+ pos: 58.5,18.5
parent: 2
- - uid: 21454
+ - uid: 14917
components:
- type: Transform
- pos: 7.5,-15.5
+ pos: 58.5,16.5
parent: 2
- - uid: 21455
+ - uid: 14918
components:
- type: Transform
- pos: 6.5,-15.5
+ pos: 58.5,15.5
parent: 2
- - uid: 21456
+ - uid: 14919
components:
- type: Transform
- pos: 5.5,-15.5
+ pos: 58.5,14.5
parent: 2
- - uid: 21457
+ - uid: 14920
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: 58.5,13.5
parent: 2
- - uid: 21458
+ - uid: 14921
components:
- type: Transform
- pos: 3.5,-15.5
+ pos: 58.5,12.5
parent: 2
- - uid: 21459
+ - uid: 14922
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: 58.5,11.5
parent: 2
- - uid: 21460
+ - uid: 14923
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: 58.5,10.5
parent: 2
- - uid: 21461
+ - uid: 14927
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: 53.5,6.5
parent: 2
- - uid: 21468
+ - uid: 14928
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: 53.5,5.5
parent: 2
- - uid: 21469
+ - uid: 14929
components:
- type: Transform
- pos: 1.5,-14.5
+ pos: 53.5,4.5
parent: 2
- - uid: 21470
+ - uid: 14930
components:
- type: Transform
- pos: 1.5,-13.5
+ pos: 53.5,3.5
parent: 2
- - uid: 21471
+ - uid: 14931
components:
- type: Transform
- pos: 1.5,-12.5
+ pos: 54.5,3.5
parent: 2
- - uid: 21472
+ - uid: 14932
components:
- type: Transform
- pos: 1.5,-11.5
+ pos: 54.5,2.5
parent: 2
- - uid: 21473
+ - uid: 14962
components:
- type: Transform
- pos: 1.5,-10.5
+ pos: 8.5,11.5
parent: 2
- - uid: 21474
+ - uid: 14986
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: 37.5,50.5
parent: 2
- - uid: 21475
+ - uid: 14987
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: 37.5,51.5
parent: 2
- - uid: 21476
+ - uid: 14988
components:
- type: Transform
- pos: 1.5,-7.5
+ pos: 37.5,52.5
parent: 2
- - uid: 21477
+ - uid: 14989
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: 37.5,53.5
parent: 2
- - uid: 21478
+ - uid: 14990
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 37.5,54.5
parent: 2
- - uid: 21480
+ - uid: 14991
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: 37.5,55.5
parent: 2
- - uid: 21481
+ - uid: 14992
components:
- type: Transform
- pos: -0.5,-15.5
+ pos: 37.5,56.5
parent: 2
- - uid: 21482
+ - uid: 14993
components:
- type: Transform
- pos: -1.5,-15.5
+ pos: 37.5,57.5
parent: 2
- - uid: 21483
+ - uid: 14994
components:
- type: Transform
- pos: -2.5,-15.5
+ pos: 38.5,57.5
parent: 2
- - uid: 21484
+ - uid: 14995
components:
- type: Transform
- pos: -3.5,-15.5
+ pos: 39.5,57.5
parent: 2
- - uid: 21485
+ - uid: 14996
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: 40.5,57.5
parent: 2
- - uid: 21486
+ - uid: 14997
components:
- type: Transform
- pos: -5.5,-15.5
+ pos: 41.5,57.5
parent: 2
- - uid: 21487
+ - uid: 14998
components:
- type: Transform
- pos: -6.5,-15.5
+ pos: 41.5,56.5
parent: 2
- - uid: 21488
+ - uid: 14999
components:
- type: Transform
- pos: -7.5,-15.5
+ pos: 41.5,55.5
parent: 2
- - uid: 21489
+ - uid: 15000
components:
- type: Transform
- pos: -8.5,-15.5
+ pos: 41.5,54.5
parent: 2
- - uid: 21490
+ - uid: 15001
components:
- type: Transform
- pos: -9.5,-15.5
+ pos: 41.5,53.5
parent: 2
- - uid: 21491
+ - uid: 15002
components:
- type: Transform
- pos: -10.5,-15.5
+ pos: 40.5,53.5
parent: 2
- - uid: 21492
+ - uid: 15003
components:
- type: Transform
- pos: -11.5,-15.5
+ pos: 39.5,53.5
parent: 2
- - uid: 21493
+ - uid: 15004
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 38.5,53.5
parent: 2
- - uid: 21494
+ - uid: 15005
components:
- type: Transform
- pos: -13.5,-15.5
+ pos: 39.5,54.5
parent: 2
- - uid: 21495
+ - uid: 15006
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: 39.5,55.5
parent: 2
- - uid: 21496
+ - uid: 15007
components:
- type: Transform
- pos: -15.5,-15.5
+ pos: 43.5,57.5
parent: 2
- - uid: 21497
+ - uid: 15008
components:
- type: Transform
- pos: -16.5,-15.5
+ pos: 43.5,56.5
parent: 2
- - uid: 21498
+ - uid: 15009
components:
- type: Transform
- pos: -17.5,-15.5
+ pos: 43.5,55.5
parent: 2
- - uid: 21499
+ - uid: 15010
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: 43.5,54.5
parent: 2
- - uid: 21500
+ - uid: 15011
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: 43.5,53.5
parent: 2
- - uid: 21501
+ - uid: 15012
components:
- type: Transform
- pos: -20.5,-15.5
+ pos: 44.5,53.5
parent: 2
- - uid: 21502
+ - uid: 15013
components:
- type: Transform
- pos: -21.5,-15.5
+ pos: 45.5,53.5
parent: 2
- - uid: 21503
+ - uid: 15014
components:
- type: Transform
- pos: -22.5,-15.5
+ pos: 46.5,53.5
parent: 2
- - uid: 21504
+ - uid: 15015
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: 47.5,53.5
parent: 2
- - uid: 21505
+ - uid: 15016
components:
- type: Transform
- pos: -24.5,-15.5
+ pos: 47.5,54.5
parent: 2
- - uid: 21506
+ - uid: 15017
components:
- type: Transform
- pos: -25.5,-15.5
+ pos: 47.5,55.5
parent: 2
- - uid: 21507
+ - uid: 15018
components:
- type: Transform
- pos: -26.5,-15.5
+ pos: 47.5,56.5
parent: 2
- - uid: 21508
+ - uid: 15019
components:
- type: Transform
- pos: -27.5,-15.5
+ pos: 47.5,57.5
parent: 2
- - uid: 21509
+ - uid: 15020
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: 46.5,57.5
parent: 2
- - uid: 21510
+ - uid: 15021
components:
- type: Transform
- pos: -29.5,-15.5
+ pos: 45.5,57.5
parent: 2
- - uid: 21511
+ - uid: 15022
components:
- type: Transform
- pos: -30.5,-15.5
+ pos: 44.5,57.5
parent: 2
- - uid: 21512
+ - uid: 15023
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: 45.5,55.5
parent: 2
- - uid: 21513
+ - uid: 15024
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: 45.5,54.5
parent: 2
- - uid: 21517
+ - uid: 15025
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: 47.5,52.5
parent: 2
- - uid: 21518
+ - uid: 15026
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: 47.5,51.5
parent: 2
- - uid: 21519
+ - uid: 15027
components:
- type: Transform
- pos: -33.5,-22.5
+ pos: 47.5,50.5
parent: 2
- - uid: 21520
+ - uid: 15028
components:
- type: Transform
- pos: -33.5,-23.5
+ pos: 26.5,56.5
parent: 2
- - uid: 21521
+ - uid: 15029
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: 27.5,56.5
parent: 2
- - uid: 21522
+ - uid: 15030
components:
- type: Transform
- pos: -33.5,-25.5
+ pos: 28.5,56.5
parent: 2
- - uid: 21523
+ - uid: 15031
components:
- type: Transform
- pos: -33.5,-26.5
+ pos: 29.5,56.5
parent: 2
- - uid: 21524
+ - uid: 15032
components:
- type: Transform
- pos: -33.5,-27.5
+ pos: 20.5,54.5
parent: 2
- - uid: 21525
+ - uid: 15033
components:
- type: Transform
- pos: -32.5,-27.5
+ pos: 21.5,54.5
parent: 2
- - uid: 21526
+ - uid: 15034
components:
- type: Transform
- pos: -31.5,-27.5
+ pos: 22.5,54.5
parent: 2
- - uid: 21527
+ - uid: 15035
components:
- type: Transform
- pos: -30.5,-27.5
+ pos: 23.5,54.5
parent: 2
- - uid: 21528
+ - uid: 15036
components:
- type: Transform
- pos: -29.5,-27.5
+ pos: 24.5,54.5
parent: 2
- - uid: 21529
+ - uid: 15037
components:
- type: Transform
- pos: -28.5,-27.5
+ pos: 25.5,54.5
parent: 2
- - uid: 21530
+ - uid: 15038
components:
- type: Transform
- pos: -27.5,-27.5
+ pos: 26.5,54.5
parent: 2
- - uid: 21531
+ - uid: 15039
components:
- type: Transform
- pos: -26.5,-27.5
+ pos: 27.5,54.5
parent: 2
- - uid: 21532
+ - uid: 15040
components:
- type: Transform
- pos: -25.5,-27.5
+ pos: 28.5,54.5
parent: 2
- - uid: 21538
+ - uid: 15041
components:
- type: Transform
- pos: -36.5,-15.5
+ pos: 29.5,54.5
parent: 2
- - uid: 21539
+ - uid: 15054
components:
- type: Transform
- pos: -37.5,-15.5
+ pos: -98.5,-1.5
parent: 2
- - uid: 21540
+ - uid: 15158
components:
- type: Transform
- pos: -38.5,-15.5
+ pos: 20.5,11.5
parent: 2
- - uid: 21541
+ - uid: 15192
components:
- type: Transform
- pos: -39.5,-15.5
+ pos: 10.5,-28.5
parent: 2
- - uid: 21543
+ - uid: 15212
components:
- type: Transform
- pos: -40.5,-14.5
+ pos: 12.5,-20.5
parent: 2
- - uid: 21544
+ - uid: 15319
components:
- type: Transform
- pos: -41.5,-14.5
+ pos: 13.5,67.5
parent: 2
- - uid: 21545
+ - uid: 15329
components:
- type: Transform
- pos: -41.5,-13.5
+ pos: 4.5,69.5
parent: 2
- - uid: 21546
+ - uid: 15330
components:
- type: Transform
- pos: -42.5,-13.5
+ pos: -68.5,2.5
parent: 2
- - uid: 21547
+ - uid: 15332
components:
- type: Transform
- pos: -42.5,-12.5
+ pos: -7.5,67.5
parent: 2
- - uid: 21548
+ - uid: 15454
components:
- type: Transform
- pos: -43.5,-12.5
+ pos: -35.5,29.5
parent: 2
- - uid: 21549
+ - uid: 15488
components:
- type: Transform
- pos: -43.5,-11.5
+ pos: -8.5,67.5
parent: 2
- - uid: 21550
+ - uid: 15519
components:
- type: Transform
- pos: -44.5,-11.5
+ pos: -44.5,24.5
parent: 2
- - uid: 21551
+ - uid: 15521
components:
- type: Transform
- pos: -44.5,-10.5
+ pos: -44.5,25.5
parent: 2
- - uid: 21552
+ - uid: 15522
components:
- type: Transform
- pos: -45.5,-10.5
+ pos: -34.5,34.5
parent: 2
- - uid: 21553
+ - uid: 15526
components:
- type: Transform
- pos: -45.5,-9.5
+ pos: -35.5,33.5
parent: 2
- - uid: 21554
+ - uid: 15541
components:
- type: Transform
- pos: -46.5,-9.5
+ pos: 7.5,67.5
parent: 2
- - uid: 21555
+ - uid: 15564
components:
- type: Transform
- pos: -46.5,-7.5
+ pos: -12.5,42.5
parent: 2
- - uid: 21556
+ - uid: 15567
components:
- type: Transform
- pos: -46.5,-6.5
+ pos: -12.5,41.5
parent: 2
- - uid: 21557
+ - uid: 15572
components:
- type: Transform
- pos: -46.5,-5.5
+ pos: 3.5,30.5
parent: 2
- - uid: 21558
+ - uid: 15621
components:
- type: Transform
- pos: -46.5,-4.5
+ pos: -26.5,47.5
parent: 2
- - uid: 21559
+ - uid: 15622
components:
- type: Transform
- pos: -46.5,-3.5
+ pos: -26.5,48.5
parent: 2
- - uid: 21560
+ - uid: 15627
components:
- type: Transform
- pos: -46.5,-2.5
+ pos: -35.5,32.5
parent: 2
- - uid: 21561
+ - uid: 15628
components:
- type: Transform
- pos: -46.5,-1.5
+ pos: -35.5,34.5
parent: 2
- - uid: 21562
+ - uid: 15668
components:
- type: Transform
- pos: -46.5,-0.5
+ pos: -28.5,39.5
parent: 2
- - uid: 21563
+ - uid: 15671
components:
- type: Transform
- pos: -46.5,0.5
+ pos: -2.5,43.5
parent: 2
- - uid: 21564
+ - uid: 15673
components:
- type: Transform
- pos: -46.5,1.5
+ pos: -43.5,26.5
parent: 2
- - uid: 21565
+ - uid: 15691
components:
- type: Transform
- pos: -46.5,2.5
+ pos: -21.5,45.5
parent: 2
- - uid: 21566
+ - uid: 15693
components:
- type: Transform
- pos: -46.5,3.5
+ pos: -22.5,45.5
parent: 2
- - uid: 21567
+ - uid: 15772
components:
- type: Transform
- pos: -46.5,4.5
+ pos: -10.5,35.5
parent: 2
- - uid: 21568
+ - uid: 15806
components:
- type: Transform
- pos: -45.5,4.5
+ pos: -44.5,20.5
parent: 2
- - uid: 21570
+ - uid: 15820
components:
- type: Transform
- pos: -45.5,5.5
+ pos: 9.5,68.5
parent: 2
- - uid: 21571
+ - uid: 15829
components:
- type: Transform
- pos: -45.5,6.5
+ pos: -45.5,69.5
parent: 2
- - uid: 21572
+ - uid: 15833
components:
- type: Transform
- pos: -45.5,7.5
+ pos: -103.5,1.5
parent: 2
- - uid: 21573
+ - uid: 15844
components:
- type: Transform
- pos: -45.5,8.5
+ pos: 60.5,-9.5
parent: 2
- - uid: 21574
+ - uid: 15845
components:
- type: Transform
- pos: -40.5,-16.5
+ pos: -47.5,-30.5
parent: 2
- - uid: 21576
+ - uid: 15846
components:
- type: Transform
- pos: -44.5,10.5
+ pos: 1.5,24.5
parent: 2
- - uid: 21577
+ - uid: 15851
components:
- type: Transform
- pos: -44.5,11.5
+ pos: -40.5,26.5
parent: 2
- - uid: 21578
+ - uid: 15868
components:
- type: Transform
- pos: -44.5,12.5
+ pos: 80.5,-3.5
parent: 2
- - uid: 21579
+ - uid: 15873
components:
- type: Transform
- pos: -44.5,13.5
+ pos: 81.5,-3.5
parent: 2
- - uid: 21580
+ - uid: 15880
components:
- type: Transform
- pos: -44.5,14.5
+ pos: 82.5,-3.5
parent: 2
- - uid: 21581
+ - uid: 15941
components:
- type: Transform
- pos: -44.5,15.5
+ pos: -43.5,69.5
parent: 2
- - uid: 21582
+ - uid: 15949
components:
- type: Transform
- pos: -44.5,16.5
+ pos: -102.5,1.5
parent: 2
- - uid: 21583
+ - uid: 15951
components:
- type: Transform
- pos: -43.5,16.5
+ pos: -26.5,44.5
parent: 2
- - uid: 21584
+ - uid: 15961
components:
- type: Transform
- pos: -42.5,16.5
+ pos: 83.5,-3.5
parent: 2
- - uid: 21585
+ - uid: 15971
components:
- type: Transform
- pos: -41.5,16.5
+ pos: -101.5,1.5
parent: 2
- - uid: 21586
+ - uid: 15972
components:
- type: Transform
- pos: -40.5,16.5
+ pos: -12.5,37.5
parent: 2
- - uid: 21587
+ - uid: 15974
components:
- type: Transform
- pos: -39.5,16.5
+ pos: -8.5,40.5
parent: 2
- - uid: 21588
+ - uid: 15980
components:
- type: Transform
- pos: -39.5,17.5
+ pos: -23.5,45.5
parent: 2
- - uid: 21589
+ - uid: 15981
components:
- type: Transform
- pos: -38.5,17.5
+ pos: -12.5,38.5
parent: 2
- - uid: 21590
+ - uid: 15982
components:
- type: Transform
- pos: -37.5,17.5
+ pos: -99.5,1.5
parent: 2
- - uid: 21595
+ - uid: 15983
components:
- type: Transform
- pos: -63.5,10.5
+ pos: -24.5,45.5
parent: 2
- - uid: 21596
+ - uid: 15984
components:
- type: Transform
- pos: -33.5,19.5
+ pos: -107.5,3.5
parent: 2
- - uid: 21597
+ - uid: 15996
components:
- type: Transform
- pos: -33.5,20.5
+ pos: 84.5,-3.5
parent: 2
- - uid: 21598
+ - uid: 15997
components:
- type: Transform
- pos: -46.5,8.5
+ pos: -26.5,46.5
parent: 2
- - uid: 21599
+ - uid: 16085
components:
- type: Transform
- pos: -47.5,8.5
+ pos: -9.5,35.5
parent: 2
- - uid: 21600
+ - uid: 16091
components:
- type: Transform
- pos: -48.5,8.5
+ pos: -10.5,40.5
parent: 2
- - uid: 21601
+ - uid: 16092
components:
- type: Transform
- pos: -49.5,8.5
+ pos: -10.5,41.5
parent: 2
- - uid: 21602
+ - uid: 16093
components:
- type: Transform
- pos: -50.5,8.5
+ pos: -10.5,42.5
parent: 2
- - uid: 21603
+ - uid: 16094
components:
- type: Transform
- pos: -51.5,8.5
+ pos: -12.5,40.5
parent: 2
- - uid: 21604
+ - uid: 16099
components:
- type: Transform
- pos: -52.5,8.5
+ pos: -12.5,44.5
parent: 2
- - uid: 21605
+ - uid: 16100
components:
- type: Transform
- pos: -53.5,8.5
+ pos: -12.5,45.5
parent: 2
- - uid: 21606
+ - uid: 16103
components:
- type: Transform
- pos: -54.5,8.5
+ pos: -12.5,48.5
parent: 2
- - uid: 21607
+ - uid: 16104
components:
- type: Transform
- pos: -55.5,8.5
+ pos: -12.5,49.5
parent: 2
- - uid: 21608
+ - uid: 16105
components:
- type: Transform
- pos: -56.5,8.5
+ pos: -12.5,50.5
parent: 2
- - uid: 21609
+ - uid: 16106
components:
- type: Transform
- pos: -57.5,8.5
+ pos: -12.5,51.5
parent: 2
- - uid: 21610
+ - uid: 16107
components:
- type: Transform
- pos: -58.5,8.5
+ pos: -12.5,52.5
parent: 2
- - uid: 21611
+ - uid: 16108
components:
- type: Transform
- pos: -59.5,8.5
+ pos: -12.5,53.5
parent: 2
- - uid: 21612
+ - uid: 16109
components:
- type: Transform
- pos: -60.5,8.5
+ pos: -12.5,54.5
parent: 2
- - uid: 21613
+ - uid: 16110
components:
- type: Transform
- pos: -61.5,8.5
+ pos: -12.5,55.5
parent: 2
- - uid: 21614
+ - uid: 16111
components:
- type: Transform
- pos: 1.5,18.5
+ pos: -12.5,56.5
parent: 2
- - uid: 21615
+ - uid: 16112
components:
- type: Transform
- pos: 1.5,17.5
+ pos: -12.5,57.5
parent: 2
- - uid: 21616
+ - uid: 16113
components:
- type: Transform
- pos: 1.5,16.5
+ pos: -12.5,58.5
parent: 2
- - uid: 21617
+ - uid: 16114
components:
- type: Transform
- pos: 1.5,15.5
+ pos: -11.5,58.5
parent: 2
- - uid: 21618
+ - uid: 16115
components:
- type: Transform
- pos: 1.5,14.5
+ pos: -10.5,58.5
parent: 2
- - uid: 21619
+ - uid: 16116
components:
- type: Transform
- pos: 1.5,13.5
+ pos: -9.5,58.5
parent: 2
- - uid: 21620
+ - uid: 16117
components:
- type: Transform
- pos: 1.5,12.5
+ pos: -8.5,58.5
parent: 2
- - uid: 21621
+ - uid: 16118
components:
- type: Transform
- pos: 1.5,11.5
+ pos: -7.5,58.5
parent: 2
- - uid: 21622
+ - uid: 16119
components:
- type: Transform
- pos: 1.5,10.5
+ pos: -6.5,58.5
parent: 2
- - uid: 21623
+ - uid: 16120
components:
- type: Transform
- pos: 1.5,20.5
+ pos: -5.5,58.5
parent: 2
- - uid: 21624
+ - uid: 16121
components:
- type: Transform
- pos: 1.5,21.5
+ pos: -4.5,58.5
parent: 2
- - uid: 21625
+ - uid: 16122
components:
- type: Transform
- pos: 1.5,22.5
+ pos: -3.5,58.5
parent: 2
- - uid: 21626
+ - uid: 16123
components:
- type: Transform
- pos: -56.5,-31.5
+ pos: -3.5,59.5
parent: 2
- - uid: 21627
+ - uid: 16124
components:
- type: Transform
- pos: -57.5,-31.5
+ pos: -3.5,60.5
parent: 2
- - uid: 21628
+ - uid: 16125
components:
- type: Transform
- pos: 1.5,25.5
+ pos: -3.5,61.5
parent: 2
- - uid: 21629
+ - uid: 16126
components:
- type: Transform
- pos: 1.5,26.5
+ pos: -4.5,61.5
parent: 2
- - uid: 21630
+ - uid: 16127
components:
- type: Transform
- pos: 1.5,27.5
+ pos: -5.5,61.5
parent: 2
- - uid: 21631
+ - uid: 16128
components:
- type: Transform
- pos: 1.5,28.5
+ pos: -6.5,61.5
parent: 2
- - uid: 21632
+ - uid: 16129
components:
- type: Transform
- pos: 1.5,29.5
+ pos: -7.5,61.5
parent: 2
- - uid: 21633
+ - uid: 16130
components:
- type: Transform
- pos: 1.5,30.5
+ pos: -8.5,61.5
parent: 2
- - uid: 21634
+ - uid: 16131
components:
- type: Transform
- pos: 1.5,31.5
+ pos: -8.5,60.5
parent: 2
- - uid: 21635
+ - uid: 16132
components:
- type: Transform
- pos: 1.5,32.5
+ pos: -8.5,59.5
parent: 2
- - uid: 21636
+ - uid: 16133
components:
- type: Transform
- pos: 1.5,33.5
+ pos: -11.5,51.5
parent: 2
- - uid: 21637
+ - uid: 16134
components:
- type: Transform
- pos: 1.5,34.5
+ pos: -10.5,51.5
parent: 2
- - uid: 21638
+ - uid: 16135
components:
- type: Transform
- pos: 1.5,35.5
+ pos: -9.5,51.5
parent: 2
- - uid: 21639
+ - uid: 16136
components:
- type: Transform
- pos: 1.5,36.5
+ pos: -8.5,51.5
parent: 2
- - uid: 21640
+ - uid: 16137
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -7.5,51.5
parent: 2
- - uid: 21641
+ - uid: 16138
components:
- type: Transform
- pos: 1.5,38.5
+ pos: -6.5,51.5
parent: 2
- - uid: 21642
+ - uid: 16139
components:
- type: Transform
- pos: 1.5,39.5
+ pos: -5.5,51.5
parent: 2
- - uid: 21643
+ - uid: 16140
components:
- type: Transform
- pos: 1.5,40.5
+ pos: -4.5,51.5
parent: 2
- - uid: 21644
+ - uid: 16141
components:
- type: Transform
- pos: 1.5,41.5
+ pos: -3.5,51.5
parent: 2
- - uid: 21645
+ - uid: 16142
components:
- type: Transform
- pos: 1.5,42.5
+ pos: -2.5,51.5
parent: 2
- - uid: 21646
+ - uid: 16144
components:
- type: Transform
- pos: 1.5,43.5
+ pos: -12.5,39.5
parent: 2
- - uid: 21647
+ - uid: 16145
components:
- type: Transform
- pos: 1.5,44.5
+ pos: -13.5,39.5
parent: 2
- - uid: 21648
+ - uid: 16146
components:
- type: Transform
- pos: 1.5,45.5
+ pos: -14.5,39.5
parent: 2
- - uid: 21649
+ - uid: 16147
components:
- type: Transform
- pos: 1.5,46.5
+ pos: -15.5,39.5
parent: 2
- - uid: 21650
+ - uid: 16151
components:
- type: Transform
- pos: 1.5,47.5
+ pos: -71.5,1.5
parent: 2
- - uid: 21651
+ - uid: 16164
components:
- type: Transform
- pos: 1.5,48.5
+ pos: -9.5,40.5
parent: 2
- - uid: 21652
+ - uid: 16172
components:
- type: Transform
- pos: 1.5,49.5
+ pos: -26.5,42.5
parent: 2
- - uid: 21653
+ - uid: 16173
components:
- type: Transform
- pos: 1.5,50.5
+ pos: -26.5,43.5
parent: 2
- - uid: 21654
+ - uid: 16174
components:
- type: Transform
- pos: 1.5,51.5
+ pos: -19.5,46.5
parent: 2
- - uid: 21655
+ - uid: 16175
components:
- type: Transform
- pos: 1.5,52.5
+ pos: -19.5,45.5
parent: 2
- - uid: 21656
+ - uid: 16181
components:
- type: Transform
- pos: 1.5,53.5
+ pos: -10.5,34.5
parent: 2
- - uid: 21657
+ - uid: 16182
components:
- type: Transform
- pos: 1.5,54.5
+ pos: -10.5,33.5
parent: 2
- - uid: 21658
+ - uid: 16183
components:
- type: Transform
- pos: 1.5,55.5
+ pos: -10.5,32.5
parent: 2
- - uid: 21659
+ - uid: 16184
components:
- type: Transform
- pos: 1.5,56.5
+ pos: -10.5,31.5
parent: 2
- - uid: 21660
+ - uid: 16185
components:
- type: Transform
- pos: 1.5,57.5
+ pos: -10.5,30.5
parent: 2
- - uid: 21661
+ - uid: 16186
components:
- type: Transform
- pos: 1.5,58.5
+ pos: -10.5,29.5
parent: 2
- - uid: 21662
+ - uid: 16187
components:
- type: Transform
- pos: 1.5,59.5
+ pos: -9.5,29.5
parent: 2
- - uid: 21663
+ - uid: 16188
components:
- type: Transform
- pos: 1.5,60.5
+ pos: -8.5,29.5
parent: 2
- - uid: 21664
+ - uid: 16189
components:
- type: Transform
- pos: 1.5,61.5
+ pos: -7.5,29.5
parent: 2
- - uid: 21665
+ - uid: 16190
components:
- type: Transform
- pos: 1.5,62.5
+ pos: -6.5,29.5
parent: 2
- - uid: 21666
+ - uid: 16191
components:
- type: Transform
- pos: 1.5,63.5
+ pos: -5.5,29.5
parent: 2
- - uid: 21667
+ - uid: 16192
components:
- type: Transform
- pos: 1.5,64.5
+ pos: -5.5,30.5
parent: 2
- - uid: 21668
+ - uid: 16193
components:
- type: Transform
- pos: 1.5,65.5
+ pos: -5.5,31.5
parent: 2
- - uid: 21669
+ - uid: 16194
components:
- type: Transform
- pos: 1.5,66.5
+ pos: -5.5,32.5
parent: 2
- - uid: 21670
+ - uid: 16195
components:
- type: Transform
- pos: 1.5,67.5
+ pos: -5.5,33.5
parent: 2
- - uid: 21671
+ - uid: 16196
components:
- type: Transform
- pos: 1.5,68.5
+ pos: -5.5,34.5
parent: 2
- - uid: 21672
+ - uid: 16197
components:
- type: Transform
- pos: 1.5,69.5
+ pos: -5.5,28.5
parent: 2
- - uid: 21673
+ - uid: 16198
components:
- type: Transform
- pos: 1.5,70.5
+ pos: -5.5,27.5
parent: 2
- - uid: 21674
+ - uid: 16199
components:
- type: Transform
- pos: 1.5,71.5
+ pos: -5.5,26.5
parent: 2
- - uid: 21675
+ - uid: 16200
components:
- type: Transform
- pos: 1.5,72.5
+ pos: -6.5,26.5
parent: 2
- - uid: 21676
+ - uid: 16201
components:
- type: Transform
- pos: 1.5,73.5
+ pos: -7.5,26.5
parent: 2
- - uid: 21677
+ - uid: 16202
components:
- type: Transform
- pos: 1.5,74.5
+ pos: -8.5,26.5
parent: 2
- - uid: 21678
+ - uid: 16203
components:
- type: Transform
- pos: 1.5,75.5
+ pos: -9.5,26.5
parent: 2
- - uid: 21679
+ - uid: 16204
components:
- type: Transform
- pos: 1.5,76.5
+ pos: -10.5,26.5
parent: 2
- - uid: 21680
+ - uid: 16205
components:
- type: Transform
- pos: 1.5,77.5
+ pos: -11.5,26.5
parent: 2
- - uid: 21681
+ - uid: 16206
components:
- type: Transform
- pos: 1.5,78.5
+ pos: -11.5,30.5
parent: 2
- - uid: 21682
+ - uid: 16207
components:
- type: Transform
- pos: 0.5,78.5
+ pos: -12.5,30.5
parent: 2
- - uid: 21683
+ - uid: 16208
components:
- type: Transform
- pos: -0.5,78.5
+ pos: -13.5,30.5
parent: 2
- - uid: 21684
+ - uid: 16209
components:
- type: Transform
- pos: -1.5,78.5
+ pos: -14.5,30.5
parent: 2
- - uid: 21685
+ - uid: 16210
components:
- type: Transform
- pos: -2.5,78.5
+ pos: -15.5,30.5
parent: 2
- - uid: 21686
+ - uid: 16211
components:
- type: Transform
- pos: -3.5,78.5
+ pos: -16.5,30.5
parent: 2
- - uid: 21687
+ - uid: 16212
components:
- type: Transform
- pos: -4.5,78.5
+ pos: -15.5,29.5
parent: 2
- - uid: 21688
+ - uid: 16213
components:
- type: Transform
- pos: -5.5,78.5
+ pos: -15.5,28.5
parent: 2
- - uid: 21689
+ - uid: 16214
components:
- type: Transform
- pos: -6.5,78.5
+ pos: -15.5,27.5
parent: 2
- - uid: 21690
+ - uid: 16215
components:
- type: Transform
- pos: -7.5,78.5
+ pos: -15.5,26.5
parent: 2
- - uid: 21691
+ - uid: 16216
components:
- type: Transform
- pos: -8.5,78.5
+ pos: -15.5,25.5
parent: 2
- - uid: 21692
+ - uid: 16217
components:
- type: Transform
- pos: -9.5,78.5
+ pos: -16.5,25.5
parent: 2
- - uid: 21693
+ - uid: 16218
components:
- type: Transform
- pos: -10.5,78.5
+ pos: -17.5,25.5
parent: 2
- - uid: 21694
+ - uid: 16219
components:
- type: Transform
- pos: -11.5,78.5
+ pos: -18.5,25.5
parent: 2
- - uid: 21695
+ - uid: 16220
components:
- type: Transform
- pos: -11.5,77.5
+ pos: -19.5,25.5
parent: 2
- - uid: 21696
+ - uid: 16221
components:
- type: Transform
- pos: -11.5,76.5
+ pos: -20.5,25.5
parent: 2
- - uid: 21697
+ - uid: 16222
components:
- type: Transform
- pos: -11.5,75.5
+ pos: -21.5,25.5
parent: 2
- - uid: 21698
+ - uid: 16223
components:
- type: Transform
- pos: -11.5,74.5
+ pos: -17.5,30.5
parent: 2
- - uid: 21699
+ - uid: 16225
components:
- type: Transform
- pos: -11.5,73.5
+ pos: -19.5,30.5
parent: 2
- - uid: 21700
+ - uid: 16226
components:
- type: Transform
- pos: -10.5,73.5
+ pos: -20.5,30.5
parent: 2
- - uid: 21701
+ - uid: 16227
components:
- type: Transform
- pos: -9.5,73.5
+ pos: -21.5,30.5
parent: 2
- - uid: 21702
+ - uid: 16228
components:
- type: Transform
- pos: -8.5,73.5
+ pos: -22.5,30.5
parent: 2
- - uid: 21703
+ - uid: 16229
components:
- type: Transform
- pos: -7.5,73.5
+ pos: -22.5,29.5
parent: 2
- - uid: 21704
+ - uid: 16230
components:
- type: Transform
- pos: -6.5,73.5
+ pos: -23.5,29.5
parent: 2
- - uid: 21705
+ - uid: 16231
components:
- type: Transform
- pos: -5.5,73.5
+ pos: -24.5,29.5
parent: 2
- - uid: 21706
+ - uid: 16232
components:
- type: Transform
- pos: -4.5,73.5
+ pos: -25.5,29.5
parent: 2
- - uid: 21707
+ - uid: 16233
components:
- type: Transform
- pos: -3.5,73.5
+ pos: -26.5,29.5
parent: 2
- - uid: 21708
+ - uid: 16234
components:
- type: Transform
- pos: -2.5,73.5
+ pos: -27.5,29.5
parent: 2
- - uid: 21709
+ - uid: 16235
components:
- type: Transform
- pos: -1.5,73.5
+ pos: -28.5,29.5
parent: 2
- - uid: 21710
+ - uid: 16236
components:
- type: Transform
- pos: -0.5,73.5
+ pos: -29.5,29.5
parent: 2
- - uid: 21711
+ - uid: 16237
components:
- type: Transform
- pos: 0.5,73.5
+ pos: -30.5,29.5
parent: 2
- - uid: 21712
+ - uid: 16238
components:
- type: Transform
- pos: 2.5,73.5
+ pos: -31.5,29.5
parent: 2
- - uid: 21713
+ - uid: 16239
components:
- type: Transform
- pos: 3.5,73.5
+ pos: -32.5,29.5
parent: 2
- - uid: 21714
+ - uid: 16240
components:
- type: Transform
- pos: 4.5,73.5
+ pos: -33.5,29.5
parent: 2
- - uid: 21715
+ - uid: 16241
components:
- type: Transform
- pos: 5.5,73.5
+ pos: -34.5,29.5
parent: 2
- - uid: 21716
+ - uid: 16244
components:
- type: Transform
- pos: 6.5,73.5
+ pos: -34.5,32.5
parent: 2
- - uid: 21717
+ - uid: 16247
components:
- type: Transform
- pos: 7.5,73.5
+ pos: -29.5,30.5
parent: 2
- - uid: 21718
+ - uid: 16248
components:
- type: Transform
- pos: 8.5,73.5
+ pos: -29.5,31.5
parent: 2
- - uid: 21719
+ - uid: 16249
components:
- type: Transform
- pos: 9.5,73.5
+ pos: -29.5,32.5
parent: 2
- - uid: 21720
+ - uid: 16250
components:
- type: Transform
- pos: 10.5,73.5
+ pos: -29.5,33.5
parent: 2
- - uid: 21721
+ - uid: 16251
components:
- type: Transform
- pos: 11.5,73.5
+ pos: -107.5,5.5
parent: 2
- - uid: 21722
+ - uid: 16252
components:
- type: Transform
- pos: 12.5,73.5
+ pos: -29.5,28.5
parent: 2
- - uid: 21723
+ - uid: 16253
components:
- type: Transform
- pos: 13.5,73.5
+ pos: -29.5,27.5
parent: 2
- - uid: 21724
+ - uid: 16254
components:
- type: Transform
- pos: 14.5,73.5
+ pos: -29.5,26.5
parent: 2
- - uid: 21725
+ - uid: 16255
components:
- type: Transform
- pos: 14.5,74.5
+ pos: -29.5,25.5
parent: 2
- - uid: 21726
+ - uid: 16256
components:
- type: Transform
- pos: 14.5,75.5
+ pos: -29.5,24.5
parent: 2
- - uid: 21727
+ - uid: 16257
components:
- type: Transform
- pos: 14.5,76.5
+ pos: -25.5,24.5
parent: 2
- - uid: 21728
+ - uid: 16258
components:
- type: Transform
- pos: 14.5,77.5
+ pos: -25.5,25.5
parent: 2
- - uid: 21729
+ - uid: 16259
components:
- type: Transform
- pos: 14.5,78.5
+ pos: -25.5,26.5
parent: 2
- - uid: 21730
+ - uid: 16260
components:
- type: Transform
- pos: 13.5,78.5
+ pos: -25.5,27.5
parent: 2
- - uid: 21731
+ - uid: 16261
components:
- type: Transform
- pos: 12.5,78.5
+ pos: -25.5,28.5
parent: 2
- - uid: 21732
+ - uid: 16262
components:
- type: Transform
- pos: 11.5,78.5
+ pos: -25.5,30.5
parent: 2
- - uid: 21733
+ - uid: 16263
components:
- type: Transform
- pos: 10.5,78.5
+ pos: -25.5,31.5
parent: 2
- - uid: 21734
+ - uid: 16264
components:
- type: Transform
- pos: 9.5,78.5
+ pos: -25.5,32.5
parent: 2
- - uid: 21735
+ - uid: 16265
components:
- type: Transform
- pos: 8.5,78.5
+ pos: -25.5,33.5
parent: 2
- - uid: 21736
+ - uid: 16266
components:
- type: Transform
- pos: 7.5,78.5
+ pos: -106.5,3.5
parent: 2
- - uid: 21737
+ - uid: 16267
components:
- type: Transform
- pos: 6.5,78.5
+ pos: -106.5,2.5
parent: 2
- - uid: 21738
+ - uid: 16268
components:
- type: Transform
- pos: 5.5,78.5
+ pos: -21.5,33.5
parent: 2
- - uid: 21739
+ - uid: 16269
components:
- type: Transform
- pos: 4.5,78.5
+ pos: -21.5,32.5
parent: 2
- - uid: 21740
+ - uid: 16270
components:
- type: Transform
- pos: 3.5,78.5
+ pos: -21.5,31.5
parent: 2
- - uid: 21741
+ - uid: 16271
components:
- type: Transform
- pos: 2.5,78.5
+ pos: -17.5,31.5
parent: 2
- - uid: 21742
+ - uid: 16272
components:
- type: Transform
- pos: 2.5,79.5
+ pos: -17.5,32.5
parent: 2
- - uid: 21743
+ - uid: 16273
components:
- type: Transform
- pos: 2.5,80.5
+ pos: -17.5,33.5
parent: 2
- - uid: 21744
+ - uid: 16274
components:
- type: Transform
- pos: 2.5,81.5
+ pos: -100.5,1.5
parent: 2
- - uid: 21745
+ - uid: 16277
components:
- type: Transform
- pos: 0.5,81.5
+ pos: 3.5,28.5
parent: 2
- - uid: 21746
+ - uid: 16297
components:
- type: Transform
- pos: 0.5,80.5
+ pos: 85.5,-3.5
parent: 2
- - uid: 21747
+ - uid: 16301
components:
- type: Transform
- pos: 0.5,79.5
+ pos: -108.5,5.5
parent: 2
- - uid: 21748
+ - uid: 16328
components:
- type: Transform
- pos: -5.5,79.5
+ pos: -107.5,4.5
parent: 2
- - uid: 21749
+ - uid: 16333
components:
- type: Transform
- pos: -5.5,80.5
+ pos: -12.5,39.5
parent: 2
- - uid: 21750
+ - uid: 16334
components:
- type: Transform
- pos: -5.5,81.5
+ pos: -11.5,40.5
parent: 2
- - uid: 21751
+ - uid: 16350
components:
- type: Transform
- pos: -7.5,81.5
+ pos: -104.5,2.5
parent: 2
- - uid: 21752
+ - uid: 16396
components:
- type: Transform
- pos: -7.5,80.5
+ pos: 86.5,-3.5
parent: 2
- - uid: 21753
+ - uid: 16407
components:
- type: Transform
- pos: -7.5,79.5
+ pos: -9.5,69.5
parent: 2
- - uid: 21754
+ - uid: 16408
components:
- type: Transform
- pos: -7.5,82.5
+ pos: -9.5,70.5
parent: 2
- - uid: 21755
+ - uid: 16418
components:
- type: Transform
- pos: -5.5,82.5
+ pos: -7.5,40.5
parent: 2
- - uid: 21756
+ - uid: 16419
components:
- type: Transform
- pos: 0.5,82.5
+ pos: -6.5,40.5
parent: 2
- - uid: 21757
+ - uid: 16420
components:
- type: Transform
- pos: 2.5,82.5
+ pos: -5.5,40.5
parent: 2
- - uid: 21758
+ - uid: 16421
components:
- type: Transform
- pos: 8.5,82.5
+ pos: -4.5,40.5
parent: 2
- - uid: 21759
+ - uid: 16422
components:
- type: Transform
- pos: 8.5,81.5
+ pos: -3.5,40.5
parent: 2
- - uid: 21760
+ - uid: 16423
components:
- type: Transform
- pos: 8.5,80.5
+ pos: -2.5,40.5
parent: 2
- - uid: 21761
+ - uid: 16424
components:
- type: Transform
- pos: 8.5,79.5
+ pos: -2.5,41.5
parent: 2
- - uid: 21762
+ - uid: 16432
components:
- type: Transform
- pos: 10.5,79.5
+ pos: -2.5,39.5
parent: 2
- - uid: 21763
+ - uid: 16433
components:
- type: Transform
- pos: 10.5,80.5
+ pos: -2.5,38.5
parent: 2
- - uid: 21764
+ - uid: 16434
components:
- type: Transform
- pos: 10.5,81.5
+ pos: -2.5,37.5
parent: 2
- - uid: 21765
+ - uid: 16435
components:
- type: Transform
- pos: 10.5,82.5
+ pos: -2.5,36.5
parent: 2
- - uid: 21766
+ - uid: 16436
components:
- type: Transform
- pos: -3.5,52.5
+ pos: -2.5,35.5
parent: 2
- - uid: 21767
+ - uid: 16437
components:
- type: Transform
- pos: -3.5,53.5
+ pos: -2.5,34.5
parent: 2
- - uid: 21768
+ - uid: 16438
components:
- type: Transform
- pos: -3.5,54.5
+ pos: -2.5,33.5
parent: 2
- - uid: 21769
+ - uid: 16439
components:
- type: Transform
- pos: -3.5,55.5
+ pos: -2.5,32.5
parent: 2
- - uid: 21770
+ - uid: 16440
components:
- type: Transform
- pos: -3.5,56.5
+ pos: -2.5,31.5
parent: 2
- - uid: 21771
+ - uid: 16441
components:
- type: Transform
- pos: -4.5,56.5
+ pos: -2.5,30.5
parent: 2
- - uid: 21772
+ - uid: 16442
components:
- type: Transform
- pos: -5.5,56.5
+ pos: -2.5,29.5
parent: 2
- - uid: 21773
+ - uid: 16468
components:
- type: Transform
- pos: -6.5,56.5
+ pos: -105.5,2.5
parent: 2
- - uid: 21774
+ - uid: 16472
components:
- type: Transform
- pos: -7.5,56.5
+ pos: -77.5,-10.5
parent: 2
- - uid: 21775
+ - uid: 16494
components:
- type: Transform
- pos: -8.5,56.5
+ pos: -91.5,-9.5
parent: 2
- - uid: 21776
+ - uid: 16495
components:
- type: Transform
- pos: -9.5,56.5
+ pos: -91.5,-10.5
parent: 2
- - uid: 21777
+ - uid: 16496
components:
- type: Transform
- pos: -10.5,56.5
+ pos: -19.5,47.5
parent: 2
- - uid: 21778
+ - uid: 16502
components:
- type: Transform
- pos: -11.5,56.5
+ pos: -90.5,-11.5
parent: 2
- - uid: 21779
+ - uid: 16527
components:
- type: Transform
- pos: -11.5,47.5
+ pos: 87.5,-3.5
parent: 2
- - uid: 21780
+ - uid: 16555
components:
- type: Transform
- pos: -10.5,47.5
+ pos: 88.5,-3.5
parent: 2
- - uid: 21781
+ - uid: 16557
components:
- type: Transform
- pos: -9.5,47.5
+ pos: -39.5,26.5
parent: 2
- - uid: 21782
+ - uid: 16558
components:
- type: Transform
- pos: -8.5,47.5
+ pos: -38.5,26.5
parent: 2
- - uid: 21783
+ - uid: 16559
components:
- type: Transform
- pos: -7.5,47.5
+ pos: -37.5,26.5
parent: 2
- - uid: 21784
+ - uid: 16560
components:
- type: Transform
- pos: -6.5,47.5
+ pos: -36.5,26.5
parent: 2
- - uid: 21785
+ - uid: 16561
components:
- type: Transform
- pos: -5.5,47.5
+ pos: -35.5,26.5
parent: 2
- - uid: 21786
+ - uid: 16562
components:
- type: Transform
- pos: -4.5,47.5
+ pos: -34.5,26.5
parent: 2
- - uid: 21787
+ - uid: 16563
components:
- type: Transform
- pos: -3.5,47.5
+ pos: -33.5,26.5
parent: 2
- - uid: 21788
+ - uid: 16564
components:
- type: Transform
- pos: -3.5,48.5
+ pos: -32.5,26.5
parent: 2
- - uid: 21789
+ - uid: 16568
components:
- type: Transform
- pos: -3.5,49.5
+ pos: -38.5,27.5
parent: 2
- - uid: 21790
+ - uid: 16569
components:
- type: Transform
- pos: -3.5,50.5
+ pos: -38.5,28.5
parent: 2
- - uid: 21791
+ - uid: 16570
components:
- type: Transform
- pos: -13.5,44.5
+ pos: -38.5,29.5
parent: 2
- - uid: 21792
+ - uid: 16571
components:
- type: Transform
- pos: -14.5,44.5
+ pos: -38.5,30.5
parent: 2
- - uid: 21793
+ - uid: 16572
components:
- type: Transform
- pos: -15.5,44.5
+ pos: -38.5,31.5
parent: 2
- - uid: 21794
+ - uid: 16573
components:
- type: Transform
- pos: -16.5,44.5
+ pos: -38.5,32.5
parent: 2
- - uid: 21795
+ - uid: 16574
components:
- type: Transform
- pos: -17.5,44.5
+ pos: -38.5,33.5
parent: 2
- - uid: 21796
+ - uid: 16576
components:
- type: Transform
- pos: -18.5,44.5
+ pos: 37.5,20.5
parent: 2
- - uid: 21797
+ - uid: 16582
components:
- type: Transform
- pos: -19.5,44.5
+ pos: -9.5,68.5
parent: 2
- - uid: 21798
+ - uid: 16590
components:
- type: Transform
- pos: -20.5,44.5
+ pos: -9.5,-4.5
parent: 2
- - uid: 21799
+ - uid: 16619
components:
- type: Transform
- pos: -21.5,44.5
+ pos: -59.5,17.5
parent: 2
- - uid: 21800
+ - uid: 16622
components:
- type: Transform
- pos: -22.5,44.5
+ pos: -57.5,16.5
parent: 2
- - uid: 21801
+ - uid: 16680
components:
- type: Transform
- pos: -23.5,44.5
+ pos: 24.5,-32.5
parent: 2
- - uid: 21802
+ - uid: 16681
components:
- type: Transform
- pos: -24.5,44.5
+ pos: 11.5,-20.5
parent: 2
- - uid: 21803
+ - uid: 16847
components:
- type: Transform
- pos: -25.5,44.5
+ pos: 12.5,-35.5
parent: 2
- - uid: 21804
+ - uid: 17386
components:
- type: Transform
- pos: -26.5,44.5
+ pos: 13.5,-20.5
parent: 2
- - uid: 21805
+ - uid: 17392
components:
- type: Transform
- pos: -26.5,45.5
+ pos: 14.5,-35.5
parent: 2
- - uid: 21806
+ - uid: 17394
components:
- type: Transform
- pos: -26.5,46.5
+ pos: 22.5,-35.5
parent: 2
- - uid: 21807
+ - uid: 17395
components:
- type: Transform
- pos: -26.5,47.5
+ pos: 21.5,-35.5
parent: 2
- - uid: 21808
+ - uid: 17532
components:
- type: Transform
- pos: -26.5,48.5
+ pos: -44.5,69.5
parent: 2
- - uid: 21809
+ - uid: 17618
components:
- type: Transform
- pos: -25.5,48.5
+ pos: -46.5,68.5
parent: 2
- - uid: 21810
+ - uid: 17705
components:
- type: Transform
- pos: -24.5,48.5
+ pos: -22.5,2.5
parent: 2
- - uid: 21811
+ - uid: 17714
components:
- type: Transform
- pos: -23.5,48.5
+ pos: 20.5,-35.5
parent: 2
- - uid: 21812
+ - uid: 17741
components:
- type: Transform
- pos: -22.5,48.5
+ pos: -42.5,-34.5
parent: 2
- - uid: 21813
+ - uid: 17768
components:
- type: Transform
- pos: -21.5,48.5
+ pos: 10.5,-27.5
parent: 2
- - uid: 21814
+ - uid: 17807
components:
- type: Transform
- pos: -20.5,48.5
+ pos: 51.5,-11.5
parent: 2
- - uid: 21816
+ - uid: 17816
components:
- type: Transform
- pos: -26.5,58.5
+ pos: -13.5,42.5
parent: 2
- - uid: 21817
+ - uid: 17882
components:
- type: Transform
- pos: -26.5,57.5
+ pos: -21.5,2.5
parent: 2
- - uid: 21818
+ - uid: 17930
components:
- type: Transform
- pos: -26.5,56.5
+ pos: 61.5,-1.5
parent: 2
- - uid: 21819
+ - uid: 17931
components:
- type: Transform
- pos: -26.5,55.5
+ pos: 62.5,-1.5
parent: 2
- - uid: 21820
+ - uid: 17932
components:
- type: Transform
- pos: -25.5,55.5
+ pos: 63.5,-1.5
parent: 2
- - uid: 21821
+ - uid: 17933
components:
- type: Transform
- pos: -24.5,55.5
+ pos: 64.5,-1.5
parent: 2
- - uid: 21822
+ - uid: 17934
components:
- type: Transform
- pos: -23.5,55.5
+ pos: 65.5,-1.5
parent: 2
- - uid: 21823
+ - uid: 17935
components:
- type: Transform
- pos: -22.5,55.5
+ pos: 66.5,-1.5
parent: 2
- - uid: 21824
+ - uid: 17936
components:
- type: Transform
- pos: -21.5,55.5
+ pos: 67.5,-1.5
parent: 2
- - uid: 21825
+ - uid: 17937
components:
- type: Transform
- pos: -20.5,55.5
+ pos: 68.5,-1.5
parent: 2
- - uid: 21826
+ - uid: 17938
components:
- type: Transform
- pos: -20.5,54.5
+ pos: 69.5,-1.5
parent: 2
- - uid: 21827
+ - uid: 17939
components:
- type: Transform
- pos: -20.5,53.5
+ pos: 70.5,-1.5
parent: 2
- - uid: 21828
+ - uid: 17940
components:
- type: Transform
- pos: -26.5,59.5
+ pos: 71.5,-1.5
parent: 2
- - uid: 21829
+ - uid: 17941
components:
- type: Transform
- pos: -26.5,60.5
+ pos: 72.5,-1.5
parent: 2
- - uid: 21830
+ - uid: 17942
components:
- type: Transform
- pos: -26.5,61.5
+ pos: 73.5,-1.5
parent: 2
- - uid: 21831
+ - uid: 17943
components:
- type: Transform
- pos: -26.5,62.5
+ pos: 74.5,-1.5
parent: 2
- - uid: 21832
+ - uid: 17944
components:
- type: Transform
- pos: -26.5,63.5
+ pos: 64.5,-0.5
parent: 2
- - uid: 21834
+ - uid: 17945
components:
- type: Transform
- pos: -58.5,-31.5
+ pos: 64.5,0.5
parent: 2
- - uid: 21842
+ - uid: 17946
components:
- type: Transform
- pos: -35.5,51.5
+ pos: 72.5,-0.5
parent: 2
- - uid: 21843
+ - uid: 17947
components:
- type: Transform
- pos: -36.5,51.5
+ pos: 72.5,0.5
parent: 2
- - uid: 21844
+ - uid: 17948
components:
- type: Transform
- pos: -37.5,51.5
+ pos: 66.5,-8.5
parent: 2
- - uid: 21845
+ - uid: 17949
components:
- type: Transform
- pos: -38.5,51.5
+ pos: 67.5,-8.5
parent: 2
- - uid: 21846
+ - uid: 17950
components:
- type: Transform
- pos: -39.5,51.5
+ pos: 49.5,-11.5
parent: 2
- - uid: 21847
+ - uid: 17952
components:
- type: Transform
- pos: -40.5,51.5
+ pos: 70.5,-8.5
parent: 2
- - uid: 21848
+ - uid: 17953
components:
- type: Transform
- pos: -41.5,51.5
+ pos: 71.5,-8.5
parent: 2
- - uid: 21849
+ - uid: 17954
components:
- type: Transform
- pos: -42.5,51.5
+ pos: 72.5,-8.5
parent: 2
- - uid: 21850
+ - uid: 17955
components:
- type: Transform
- pos: -43.5,51.5
+ pos: 73.5,-8.5
parent: 2
- - uid: 21851
+ - uid: 17958
components:
- type: Transform
- pos: -44.5,51.5
+ pos: 73.5,-5.5
parent: 2
- - uid: 21852
+ - uid: 17959
components:
- type: Transform
- pos: -45.5,51.5
+ pos: 74.5,-5.5
parent: 2
- - uid: 21853
+ - uid: 17960
components:
- type: Transform
- pos: -46.5,51.5
+ pos: 75.5,-5.5
parent: 2
- - uid: 21854
+ - uid: 17961
components:
- type: Transform
- pos: -47.5,51.5
+ pos: 75.5,-4.5
parent: 2
- - uid: 21855
+ - uid: 17994
components:
- type: Transform
- pos: -48.5,51.5
+ pos: 5.5,69.5
parent: 2
- - uid: 21856
+ - uid: 17998
components:
- type: Transform
- pos: -49.5,51.5
+ pos: 7.5,68.5
parent: 2
- - uid: 21857
+ - uid: 18004
components:
- type: Transform
- pos: -49.5,50.5
+ pos: 8.5,68.5
parent: 2
- - uid: 21858
+ - uid: 18019
components:
- type: Transform
- pos: -49.5,49.5
+ pos: -29.5,-19.5
parent: 2
- - uid: 21859
+ - uid: 18030
components:
- type: Transform
- pos: -49.5,48.5
+ pos: 7.5,66.5
parent: 2
- - uid: 21860
+ - uid: 18041
components:
- type: Transform
- pos: -43.5,39.5
+ pos: -30.5,-14.5
parent: 2
- - uid: 21861
+ - uid: 18046
components:
- type: Transform
- pos: -43.5,40.5
+ pos: -36.5,-14.5
parent: 2
- - uid: 21862
+ - uid: 18047
components:
- type: Transform
- pos: -43.5,41.5
+ pos: -30.5,-13.5
parent: 2
- - uid: 21863
+ - uid: 18106
components:
- type: Transform
- pos: -43.5,42.5
+ pos: 5.5,70.5
parent: 2
- - uid: 21864
+ - uid: 18107
components:
- type: Transform
- pos: -43.5,43.5
+ pos: 11.5,68.5
parent: 2
- - uid: 21865
+ - uid: 18119
components:
- type: Transform
- pos: -49.5,43.5
+ pos: -40.5,-17.5
parent: 2
- - uid: 21866
+ - uid: 18201
components:
- type: Transform
- pos: -48.5,43.5
+ pos: 10.5,60.5
parent: 2
- - uid: 21867
+ - uid: 18216
components:
- type: Transform
- pos: -47.5,43.5
+ pos: -40.5,-18.5
parent: 2
- - uid: 21868
+ - uid: 18228
components:
- type: Transform
- pos: -46.5,43.5
+ pos: 6.5,66.5
parent: 2
- - uid: 21869
+ - uid: 18235
components:
- type: Transform
- pos: -45.5,43.5
+ pos: -38.5,66.5
parent: 2
- - uid: 21870
+ - uid: 18257
components:
- type: Transform
- pos: -44.5,43.5
+ pos: -14.5,58.5
parent: 2
- - uid: 21871
+ - uid: 18261
components:
- type: Transform
- pos: -42.5,43.5
+ pos: -18.5,58.5
parent: 2
- - uid: 21872
+ - uid: 18262
components:
- type: Transform
- pos: -41.5,43.5
+ pos: -19.5,58.5
parent: 2
- - uid: 21873
+ - uid: 18263
components:
- type: Transform
- pos: -40.5,43.5
+ pos: -20.5,58.5
parent: 2
- - uid: 21874
+ - uid: 18264
components:
- type: Transform
- pos: -39.5,43.5
+ pos: -21.5,58.5
parent: 2
- - uid: 21875
+ - uid: 18265
components:
- type: Transform
- pos: -38.5,43.5
+ pos: -22.5,58.5
parent: 2
- - uid: 21876
+ - uid: 18266
components:
- type: Transform
- pos: -37.5,43.5
+ pos: -23.5,58.5
parent: 2
- - uid: 21877
+ - uid: 18267
components:
- type: Transform
- pos: -36.5,43.5
+ pos: -24.5,58.5
parent: 2
- - uid: 21879
+ - uid: 18268
components:
- type: Transform
- pos: -34.5,43.5
+ pos: -25.5,58.5
parent: 2
- - uid: 21885
+ - uid: 18269
components:
- type: Transform
- pos: -89.5,22.5
+ pos: -26.5,58.5
parent: 2
- - uid: 21887
+ - uid: 18271
components:
- type: Transform
- pos: -83.5,23.5
+ pos: -36.5,64.5
parent: 2
- - uid: 21889
+ - uid: 18275
components:
- type: Transform
- pos: -82.5,23.5
+ pos: -31.5,65.5
parent: 2
- - uid: 21891
+ - uid: 18276
components:
- type: Transform
- pos: -81.5,23.5
+ pos: -29.5,65.5
parent: 2
- - uid: 21892
+ - uid: 18277
components:
- type: Transform
- pos: -80.5,22.5
+ pos: -33.5,65.5
parent: 2
- - uid: 21893
+ - uid: 18280
components:
- type: Transform
- pos: -80.5,23.5
+ pos: -29.5,64.5
parent: 2
- - uid: 21895
+ - uid: 18281
components:
- type: Transform
- pos: -79.5,23.5
+ pos: -28.5,64.5
parent: 2
- - uid: 21896
+ - uid: 18282
components:
- type: Transform
- pos: -97.5,-1.5
+ pos: -27.5,64.5
parent: 2
- - uid: 21897
+ - uid: 18283
components:
- type: Transform
- pos: -97.5,-2.5
+ pos: -26.5,64.5
parent: 2
- - uid: 21898
+ - uid: 18284
components:
- type: Transform
- pos: -97.5,-3.5
+ pos: -25.5,64.5
parent: 2
- - uid: 21899
+ - uid: 18285
components:
- type: Transform
- pos: -97.5,-4.5
+ pos: -24.5,64.5
parent: 2
- - uid: 21900
+ - uid: 18286
components:
- type: Transform
- pos: -97.5,-5.5
+ pos: -23.5,64.5
parent: 2
- - uid: 21901
+ - uid: 18287
components:
- type: Transform
- pos: -97.5,-6.5
+ pos: -22.5,64.5
parent: 2
- - uid: 21902
+ - uid: 18288
components:
- type: Transform
- pos: -97.5,-7.5
+ pos: -21.5,64.5
parent: 2
- - uid: 21903
+ - uid: 18289
components:
- type: Transform
- pos: -97.5,-8.5
+ pos: -20.5,64.5
parent: 2
- - uid: 21904
+ - uid: 18290
components:
- type: Transform
- pos: -97.5,-9.5
+ pos: -19.5,64.5
parent: 2
- - uid: 21905
+ - uid: 18291
components:
- type: Transform
- pos: -97.5,-10.5
+ pos: -18.5,64.5
parent: 2
- - uid: 21906
+ - uid: 18292
components:
- type: Transform
- pos: -97.5,-11.5
+ pos: -17.5,64.5
parent: 2
- - uid: 21907
+ - uid: 18293
components:
- type: Transform
- pos: -97.5,-12.5
+ pos: -16.5,64.5
parent: 2
- - uid: 21908
+ - uid: 18294
components:
- type: Transform
- pos: -96.5,-1.5
+ pos: -15.5,64.5
parent: 2
- - uid: 21922
+ - uid: 18295
components:
- type: Transform
- pos: -91.5,7.5
+ pos: -14.5,64.5
parent: 2
- - uid: 21923
+ - uid: 18296
components:
- type: Transform
- pos: -91.5,9.5
+ pos: -13.5,64.5
parent: 2
- - uid: 21937
+ - uid: 18297
components:
- type: Transform
- pos: -96.5,18.5
+ pos: -12.5,64.5
parent: 2
- - uid: 21946
+ - uid: 18298
components:
- type: Transform
- pos: -97.5,26.5
+ pos: -11.5,64.5
parent: 2
- - uid: 21962
+ - uid: 18299
components:
- type: Transform
- pos: -98.5,26.5
+ pos: -10.5,64.5
parent: 2
- - uid: 21963
+ - uid: 18300
components:
- type: Transform
- pos: -98.5,24.5
+ pos: -9.5,64.5
parent: 2
- - uid: 21967
+ - uid: 18301
components:
- type: Transform
- pos: -40.5,-28.5
+ pos: -8.5,64.5
parent: 2
- - uid: 21978
+ - uid: 18302
components:
- type: Transform
- pos: -98.5,-7.5
+ pos: -7.5,64.5
parent: 2
- - uid: 22043
+ - uid: 18303
components:
- type: Transform
- pos: -87.5,31.5
+ pos: -6.5,64.5
parent: 2
- - uid: 22066
+ - uid: 18304
components:
- type: Transform
- pos: -99.5,15.5
+ pos: -5.5,64.5
parent: 2
- - uid: 22071
+ - uid: 18305
components:
- type: Transform
- pos: -107.5,-7.5
+ pos: -4.5,64.5
parent: 2
- - uid: 22095
+ - uid: 18306
components:
- type: Transform
- pos: -87.5,-6.5
+ pos: -3.5,64.5
parent: 2
- - uid: 22101
+ - uid: 18307
components:
- type: Transform
- pos: -103.5,17.5
+ pos: -2.5,64.5
parent: 2
- - uid: 22106
+ - uid: 18309
components:
- type: Transform
- pos: -98.5,22.5
+ pos: -20.5,63.5
parent: 2
- - uid: 22108
+ - uid: 18310
components:
- type: Transform
- pos: -98.5,-8.5
+ pos: -20.5,62.5
parent: 2
- - uid: 22169
+ - uid: 18311
components:
- type: Transform
- pos: -78.5,28.5
+ pos: -20.5,61.5
parent: 2
- - uid: 22175
+ - uid: 18312
components:
- type: Transform
- pos: -99.5,4.5
+ pos: -20.5,60.5
parent: 2
- - uid: 22176
+ - uid: 18313
components:
- type: Transform
- pos: -98.5,-9.5
+ pos: -20.5,59.5
parent: 2
- - uid: 22177
+ - uid: 18322
components:
- type: Transform
- pos: -98.5,19.5
+ pos: -33.5,63.5
parent: 2
- - uid: 22273
+ - uid: 18365
components:
- type: Transform
- pos: 11.5,70.5
+ pos: 3.5,69.5
parent: 2
- - uid: 22289
+ - uid: 18515
components:
- type: Transform
- pos: -14.5,2.5
+ pos: -20.5,2.5
parent: 2
- - uid: 22290
+ - uid: 18582
components:
- type: Transform
- pos: -26.5,4.5
+ pos: 73.5,71.5
parent: 2
- - uid: 22321
+ - uid: 18751
components:
- type: Transform
- pos: 8.5,60.5
+ pos: 71.5,81.5
parent: 2
- - uid: 22322
+ - uid: 18790
components:
- type: Transform
- pos: 7.5,60.5
+ pos: -89.5,-50.5
parent: 2
- - uid: 22323
+ - uid: 18863
components:
- type: Transform
- pos: 6.5,60.5
+ pos: 23.5,50.5
parent: 2
- - uid: 22324
+ - uid: 18886
components:
- type: Transform
- pos: 9.5,60.5
+ pos: -89.5,-45.5
parent: 2
- - uid: 22325
+ - uid: 18898
components:
- type: Transform
- pos: 10.5,60.5
+ pos: -89.5,-47.5
parent: 2
- - uid: 22326
+ - uid: 19102
components:
- type: Transform
- pos: 10.5,61.5
+ pos: -89.5,-57.5
parent: 2
- - uid: 22327
+ - uid: 19120
components:
- type: Transform
- pos: 10.5,62.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 22328
+ - uid: 19132
components:
- type: Transform
- pos: 10.5,59.5
+ pos: -32.5,8.5
parent: 2
- - uid: 22329
+ - uid: 19149
components:
- type: Transform
- pos: 10.5,58.5
+ pos: -32.5,6.5
parent: 2
- - uid: 22330
+ - uid: 19150
components:
- type: Transform
- pos: 5.5,60.5
+ pos: -32.5,7.5
parent: 2
- - uid: 22331
+ - uid: 19158
components:
- type: Transform
- pos: 5.5,61.5
+ pos: -32.5,11.5
parent: 2
- - uid: 22332
+ - uid: 19161
components:
- type: Transform
- pos: 5.5,62.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 22333
+ - uid: 19166
components:
- type: Transform
- pos: 5.5,59.5
+ pos: -89.5,-56.5
parent: 2
- - uid: 22334
+ - uid: 19176
components:
- type: Transform
- pos: 5.5,58.5
+ pos: -32.5,12.5
parent: 2
- - uid: 22346
+ - uid: 19197
components:
- type: Transform
- pos: 10.5,70.5
+ pos: -36.5,2.5
parent: 2
- - uid: 22347
+ - uid: 19244
components:
- type: Transform
- pos: 9.5,70.5
+ pos: 91.5,-27.5
parent: 2
- - uid: 22353
+ - uid: 19247
components:
- type: Transform
- pos: 13.5,69.5
+ pos: 93.5,-27.5
parent: 2
- - uid: 22354
+ - uid: 19250
components:
- type: Transform
- pos: 13.5,70.5
+ pos: 79.5,-14.5
parent: 2
- - uid: 22455
+ - uid: 19253
components:
- type: Transform
- pos: -90.5,-6.5
+ pos: 79.5,-13.5
parent: 2
- - uid: 22536
+ - uid: 19261
components:
- type: Transform
- pos: -51.5,63.5
+ pos: 93.5,-21.5
parent: 2
- - uid: 22572
+ - uid: 19262
components:
- type: Transform
- pos: -99.5,13.5
+ pos: 100.5,-27.5
parent: 2
- - uid: 22576
+ - uid: 19263
components:
- type: Transform
- pos: 9.5,47.5
+ pos: 91.5,-21.5
parent: 2
- - uid: 22631
+ - uid: 19264
components:
- type: Transform
- pos: 21.5,29.5
+ pos: 99.5,-27.5
parent: 2
- - uid: 22726
+ - uid: 19265
components:
- type: Transform
- pos: -80.5,31.5
+ pos: 89.5,-21.5
parent: 2
- - uid: 22728
+ - uid: 19266
components:
- type: Transform
- pos: -91.5,23.5
+ pos: 79.5,-18.5
parent: 2
- - uid: 22754
+ - uid: 19267
components:
- type: Transform
- pos: -88.5,23.5
+ pos: 79.5,-17.5
parent: 2
- - uid: 22755
+ - uid: 19268
components:
- type: Transform
- pos: -85.5,23.5
+ pos: -54.5,39.5
parent: 2
- - uid: 22985
+ - uid: 19269
components:
- type: Transform
- pos: -79.5,30.5
+ pos: -61.5,41.5
parent: 2
- - uid: 22986
+ - uid: 19270
components:
- type: Transform
- pos: -78.5,29.5
+ pos: -60.5,41.5
parent: 2
- - uid: 23003
+ - uid: 19271
components:
- type: Transform
- pos: -94.5,65.5
+ pos: -59.5,41.5
parent: 2
- - uid: 23004
+ - uid: 19272
components:
- type: Transform
- pos: -92.5,67.5
+ pos: -58.5,41.5
parent: 2
- - uid: 23005
+ - uid: 19273
components:
- type: Transform
- pos: -92.5,66.5
+ pos: -57.5,41.5
parent: 2
- - uid: 23006
+ - uid: 19274
components:
- type: Transform
- pos: -94.5,66.5
+ pos: -56.5,41.5
parent: 2
- - uid: 23008
+ - uid: 19275
components:
- type: Transform
- pos: -59.5,33.5
+ pos: -55.5,41.5
parent: 2
- - uid: 23009
+ - uid: 19276
components:
- type: Transform
- pos: -93.5,66.5
+ pos: -54.5,41.5
parent: 2
- - uid: 23033
+ - uid: 19277
components:
- type: Transform
- pos: -81.5,-14.5
+ pos: -54.5,40.5
parent: 2
- - uid: 23108
+ - uid: 19278
components:
- type: Transform
- pos: -79.5,-14.5
+ pos: -55.5,37.5
parent: 2
- - uid: 23109
+ - uid: 19279
components:
- type: Transform
- pos: -79.5,-13.5
+ pos: -56.5,37.5
parent: 2
- - uid: 23135
+ - uid: 19280
components:
- type: Transform
- pos: 9.5,46.5
+ pos: -53.5,37.5
parent: 2
- - uid: 23151
+ - uid: 19281
components:
- type: Transform
- pos: -107.5,22.5
+ pos: -52.5,37.5
parent: 2
- - uid: 23152
+ - uid: 19293
components:
- type: Transform
- pos: -107.5,21.5
+ pos: -62.5,35.5
parent: 2
- - uid: 23184
+ - uid: 19294
components:
- type: Transform
- pos: 14.5,45.5
+ pos: -61.5,35.5
parent: 2
- - uid: 23227
+ - uid: 19295
components:
- type: Transform
- pos: -9.5,4.5
+ pos: -60.5,35.5
parent: 2
- - uid: 23464
+ - uid: 19296
components:
- type: Transform
- pos: -104.5,15.5
+ pos: -0.5,-37.5
parent: 2
- - uid: 23465
+ - uid: 19297
components:
- type: Transform
- pos: -108.5,9.5
+ pos: 0.5,-37.5
parent: 2
- - uid: 23471
+ - uid: 19298
components:
- type: Transform
- pos: -108.5,11.5
+ pos: 1.5,-37.5
parent: 2
- - uid: 23517
+ - uid: 19299
components:
- type: Transform
- pos: -102.5,15.5
+ pos: 2.5,-37.5
parent: 2
- - uid: 23535
+ - uid: 19300
components:
- type: Transform
- pos: -106.5,14.5
+ pos: 3.5,-37.5
parent: 2
- - uid: 23629
+ - uid: 19302
components:
- type: Transform
- pos: -81.5,32.5
+ pos: 1.5,-38.5
parent: 2
- - uid: 23686
+ - uid: 19303
components:
- type: Transform
- pos: -98.5,23.5
+ pos: 5.5,-35.5
parent: 2
- - uid: 23701
+ - uid: 19304
components:
- type: Transform
- pos: -81.5,-15.5
+ pos: 5.5,-34.5
parent: 2
- - uid: 23728
+ - uid: 19307
components:
- type: Transform
- pos: 89.5,54.5
+ pos: -1.5,-28.5
parent: 2
- - uid: 23760
+ - uid: 19308
components:
- type: Transform
- pos: -26.5,3.5
+ pos: -2.5,-28.5
parent: 2
- - uid: 23787
+ - uid: 19309
components:
- type: Transform
- pos: -38.5,-35.5
+ pos: -3.5,-28.5
parent: 2
- - uid: 23795
+ - uid: 19310
components:
- type: Transform
- pos: -36.5,-35.5
+ pos: -4.5,-28.5
parent: 2
- - uid: 23801
+ - uid: 19311
components:
- type: Transform
- pos: -17.5,-48.5
+ pos: -5.5,-28.5
parent: 2
- - uid: 24225
+ - uid: 19353
components:
- type: Transform
- pos: 12.5,45.5
+ pos: 17.5,-21.5
parent: 2
- - uid: 24763
+ - uid: 19394
components:
- type: Transform
- pos: 17.5,9.5
+ pos: -27.5,45.5
parent: 2
- - uid: 25063
+ - uid: 19436
components:
- type: Transform
- pos: 71.5,32.5
+ pos: -77.5,21.5
parent: 2
- - uid: 26191
+ - uid: 19600
components:
- type: Transform
- pos: 1.5,66.5
+ pos: 2.5,69.5
parent: 2
- - uid: 26413
+ - uid: 19601
components:
- type: Transform
- pos: -82.5,11.5
+ pos: 3.5,66.5
parent: 2
- - uid: 26565
+ - uid: 19642
components:
- type: Transform
- pos: -107.5,-6.5
+ pos: 17.5,59.5
parent: 2
- - uid: 26590
+ - uid: 19673
components:
- type: Transform
- pos: -77.5,26.5
+ pos: -46.5,58.5
parent: 2
- - uid: 26591
+ - uid: 19720
components:
- type: Transform
- pos: -77.5,25.5
+ pos: -89.5,-49.5
parent: 2
- - uid: 26592
+ - uid: 19741
components:
- type: Transform
- pos: -78.5,23.5
+ pos: 8.5,59.5
parent: 2
- - uid: 26593
+ - uid: 19742
components:
- type: Transform
- pos: -77.5,24.5
+ pos: 82.5,-11.5
parent: 2
- - uid: 26594
+ - uid: 19743
components:
- type: Transform
- pos: -77.5,23.5
+ pos: 8.5,58.5
parent: 2
- - uid: 26749
+ - uid: 19761
components:
- type: Transform
- pos: -74.5,21.5
+ pos: -26.5,49.5
parent: 2
- - uid: 26756
+ - uid: 19879
components:
- type: Transform
- pos: -86.5,23.5
+ pos: 8.5,70.5
parent: 2
- - uid: 26769
+ - uid: 19887
components:
- type: Transform
- pos: -103.5,-1.5
+ pos: -70.5,3.5
parent: 2
- - uid: 26770
+ - uid: 19888
components:
- type: Transform
- pos: -104.5,-1.5
+ pos: -70.5,4.5
parent: 2
- - uid: 26782
+ - uid: 19895
components:
- type: Transform
- pos: -107.5,27.5
+ pos: 79.5,0.5
parent: 2
- - uid: 26805
+ - uid: 19896
components:
- type: Transform
- pos: -107.5,25.5
+ pos: 79.5,1.5
parent: 2
- - uid: 26834
+ - uid: 19897
components:
- type: Transform
- pos: -106.5,27.5
+ pos: 79.5,2.5
parent: 2
- - uid: 26975
+ - uid: 19900
components:
- type: Transform
- pos: -106.5,29.5
+ pos: 79.5,-19.5
parent: 2
- - uid: 27181
+ - uid: 19907
components:
- type: Transform
- pos: 10.5,45.5
+ pos: 79.5,-16.5
parent: 2
- - uid: 27202
+ - uid: 19912
components:
- type: Transform
- pos: -105.5,29.5
+ pos: 79.5,-15.5
parent: 2
- - uid: 27206
+ - uid: 19913
components:
- type: Transform
- pos: -107.5,26.5
+ pos: 108.5,-27.5
parent: 2
- - uid: 27210
+ - uid: 19914
components:
- type: Transform
- pos: -106.5,28.5
+ pos: 111.5,-27.5
parent: 2
- - uid: 27217
+ - uid: 19915
components:
- type: Transform
- pos: -105.5,30.5
+ pos: 110.5,-27.5
parent: 2
- - uid: 27218
+ - uid: 19916
components:
- type: Transform
- pos: -106.5,21.5
+ pos: 97.5,-24.5
parent: 2
- - uid: 27223
+ - uid: 19920
components:
- type: Transform
- pos: -106.5,20.5
+ pos: 107.5,-5.5
parent: 2
- - uid: 27227
+ - uid: 19921
components:
- type: Transform
- pos: -90.5,-5.5
+ pos: 102.5,-5.5
parent: 2
- - uid: 27230
+ - uid: 19922
components:
- type: Transform
- pos: -90.5,-13.5
+ pos: 109.5,-5.5
parent: 2
- - uid: 27231
+ - uid: 19924
components:
- type: Transform
- pos: -89.5,-13.5
+ pos: -69.5,4.5
parent: 2
- - uid: 27232
+ - uid: 19984
components:
- type: Transform
- pos: -89.5,-14.5
+ pos: 71.5,38.5
parent: 2
- - uid: 27233
+ - uid: 19993
components:
- type: Transform
- pos: -87.5,-14.5
+ pos: 69.5,38.5
parent: 2
- - uid: 27235
+ - uid: 20161
components:
- type: Transform
- pos: -88.5,-14.5
+ pos: 10.5,-20.5
parent: 2
- - uid: 27237
+ - uid: 20203
components:
- type: Transform
- pos: -106.5,19.5
+ pos: -43.5,56.5
parent: 2
- - uid: 27238
+ - uid: 20204
components:
- type: Transform
- pos: -77.5,-9.5
+ pos: -44.5,56.5
parent: 2
- - uid: 27241
+ - uid: 20206
components:
- type: Transform
- pos: -105.5,18.5
+ pos: -21.5,-5.5
parent: 2
- - uid: 27242
+ - uid: 20227
components:
- type: Transform
- pos: -105.5,19.5
+ pos: 34.5,10.5
parent: 2
- - uid: 27353
+ - uid: 20228
components:
- type: Transform
- pos: 18.5,9.5
+ pos: 33.5,10.5
parent: 2
- - uid: 27354
+ - uid: 20229
components:
- type: Transform
- pos: 19.5,9.5
+ pos: 32.5,10.5
parent: 2
- - uid: 27355
+ - uid: 20230
components:
- type: Transform
- pos: 20.5,9.5
+ pos: 31.5,10.5
parent: 2
- - uid: 27356
+ - uid: 20231
components:
- type: Transform
- pos: 21.5,9.5
+ pos: 30.5,10.5
parent: 2
- - uid: 27680
+ - uid: 20232
components:
- type: Transform
- pos: 60.5,-15.5
+ pos: 29.5,10.5
parent: 2
- - uid: 27832
+ - uid: 20233
components:
- type: Transform
- pos: -54.5,44.5
+ pos: 28.5,10.5
parent: 2
- - uid: 27869
+ - uid: 20234
components:
- type: Transform
- pos: -15.5,36.5
+ pos: 27.5,10.5
parent: 2
- - uid: 27872
+ - uid: 20243
components:
- type: Transform
- pos: -53.5,44.5
+ pos: 32.5,11.5
parent: 2
- - uid: 27933
+ - uid: 20244
components:
- type: Transform
- pos: 84.5,61.5
+ pos: 32.5,12.5
parent: 2
- - uid: 27949
+ - uid: 20245
components:
- type: Transform
- pos: -15.5,-40.5
+ pos: 32.5,13.5
parent: 2
- - uid: 27950
+ - uid: 20246
components:
- type: Transform
- pos: -15.5,-41.5
+ pos: 32.5,14.5
parent: 2
- - uid: 27951
+ - uid: 20247
components:
- type: Transform
- pos: -15.5,-42.5
+ pos: 32.5,15.5
parent: 2
- - uid: 27955
+ - uid: 20249
components:
- type: Transform
- pos: -36.5,-43.5
+ pos: -33.5,18.5
parent: 2
- - uid: 27956
+ - uid: 20251
components:
- type: Transform
- pos: -44.5,-43.5
+ pos: 25.5,6.5
parent: 2
- - uid: 27959
+ - uid: 20252
components:
- type: Transform
- pos: -42.5,-43.5
+ pos: 24.5,6.5
parent: 2
- - uid: 27960
+ - uid: 20256
components:
- type: Transform
- pos: -16.5,-44.5
+ pos: 20.5,6.5
parent: 2
- - uid: 27985
+ - uid: 20257
components:
- type: Transform
- pos: 83.5,59.5
+ pos: 19.5,6.5
parent: 2
- - uid: 27998
+ - uid: 20258
components:
- type: Transform
- pos: 84.5,59.5
+ pos: 18.5,6.5
parent: 2
- - uid: 28008
+ - uid: 20259
components:
- type: Transform
- pos: 83.5,61.5
+ pos: 17.5,6.5
parent: 2
- - uid: 28162
+ - uid: 20260
components:
- type: Transform
- pos: -14.5,36.5
+ pos: 16.5,6.5
parent: 2
- - uid: 28676
+ - uid: 20261
components:
- type: Transform
- pos: 7.5,47.5
+ pos: 15.5,6.5
parent: 2
- - uid: 28677
+ - uid: 20262
components:
- type: Transform
- pos: 7.5,46.5
+ pos: 14.5,6.5
parent: 2
- - uid: 28681
+ - uid: 20263
components:
- type: Transform
- pos: 9.5,45.5
+ pos: 13.5,6.5
parent: 2
- - uid: 28683
+ - uid: 20264
components:
- type: Transform
- pos: 8.5,45.5
+ pos: 12.5,6.5
parent: 2
- - uid: 28753
+ - uid: 20265
components:
- type: Transform
- pos: 6.5,65.5
+ pos: 11.5,6.5
parent: 2
- - uid: 28813
+ - uid: 20266
components:
- type: Transform
- pos: 32.5,0.5
+ pos: 10.5,6.5
parent: 2
- - uid: 28822
+ - uid: 20271
components:
- type: Transform
- pos: 11.5,45.5
+ pos: 27.5,13.5
parent: 2
- - uid: 28984
+ - uid: 20280
components:
- type: Transform
- pos: -24.5,5.5
+ pos: 14.5,10.5
parent: 2
- - uid: 28994
+ - uid: 20284
components:
- type: Transform
- pos: -24.5,4.5
+ pos: 20.5,14.5
parent: 2
- - uid: 29058
+ - uid: 20287
components:
- type: Transform
- pos: -72.5,3.5
+ pos: 17.5,11.5
parent: 2
- - uid: 29060
+ - uid: 20293
components:
- type: Transform
- pos: -24.5,3.5
+ pos: 9.5,2.5
parent: 2
- - uid: 29061
+ - uid: 20294
components:
- type: Transform
- pos: -22.5,5.5
+ pos: 9.5,1.5
parent: 2
- - uid: 29129
+ - uid: 20295
components:
- type: Transform
- pos: 10.5,27.5
+ pos: 9.5,0.5
parent: 2
- - uid: 29305
+ - uid: 20296
components:
- type: Transform
- pos: 85.5,22.5
+ pos: 9.5,-0.5
parent: 2
- - uid: 29348
+ - uid: 20297
components:
- type: Transform
- pos: 89.5,55.5
+ pos: 9.5,-1.5
parent: 2
- - uid: 29349
+ - uid: 20322
components:
- type: Transform
- pos: 82.5,54.5
+ pos: 16.5,3.5
parent: 2
- - uid: 29351
+ - uid: 20323
components:
- type: Transform
- pos: 84.5,54.5
+ pos: 16.5,2.5
parent: 2
- - uid: 29356
+ - uid: 20324
components:
- type: Transform
- pos: 89.5,56.5
+ pos: 16.5,1.5
parent: 2
- - uid: 29357
+ - uid: 20325
components:
- type: Transform
- pos: 88.5,55.5
+ pos: 16.5,0.5
parent: 2
- - uid: 29359
+ - uid: 20326
components:
- type: Transform
- pos: 83.5,54.5
+ pos: 16.5,-0.5
parent: 2
- - uid: 29402
+ - uid: 20327
components:
- type: Transform
- pos: 81.5,53.5
+ pos: 16.5,-1.5
parent: 2
- - uid: 29445
+ - uid: 20328
components:
- type: Transform
- pos: -95.5,-9.5
+ pos: 16.5,-2.5
parent: 2
- - uid: 29446
+ - uid: 20329
components:
- type: Transform
- pos: -94.5,-9.5
+ pos: 16.5,-3.5
parent: 2
- - uid: 29447
+ - uid: 20330
components:
- type: Transform
- pos: -94.5,-8.5
+ pos: 16.5,-4.5
parent: 2
- - uid: 29448
+ - uid: 20331
components:
- type: Transform
- pos: -94.5,-7.5
+ pos: 34.5,2.5
parent: 2
- - uid: 29449
+ - uid: 20332
components:
- type: Transform
- pos: -94.5,-6.5
+ pos: 15.5,-5.5
parent: 2
- - uid: 29450
+ - uid: 20333
components:
- type: Transform
- pos: -94.5,-5.5
+ pos: 15.5,-6.5
parent: 2
- - uid: 29451
+ - uid: 20334
components:
- type: Transform
- pos: -94.5,-4.5
+ pos: 15.5,-7.5
parent: 2
- - uid: 29454
+ - uid: 20335
components:
- type: Transform
- pos: -97.5,-0.5
+ pos: 15.5,-8.5
parent: 2
- - uid: 29455
+ - uid: 20336
components:
- type: Transform
- pos: -97.5,0.5
+ pos: 15.5,-9.5
parent: 2
- - uid: 29456
+ - uid: 20337
components:
- type: Transform
- pos: -97.5,1.5
+ pos: 15.5,-10.5
parent: 2
- - uid: 29457
+ - uid: 20338
components:
- type: Transform
- pos: -98.5,1.5
+ pos: 15.5,-11.5
parent: 2
- - uid: 29458
+ - uid: 20339
components:
- type: Transform
- pos: -98.5,2.5
+ pos: 16.5,-11.5
parent: 2
- - uid: 29464
+ - uid: 20340
components:
- type: Transform
- pos: -98.5,8.5
+ pos: 17.5,-11.5
parent: 2
- - uid: 29468
+ - uid: 20341
components:
- type: Transform
- pos: -98.5,12.5
+ pos: 18.5,-11.5
parent: 2
- - uid: 29469
+ - uid: 20342
components:
- type: Transform
- pos: -98.5,13.5
+ pos: 19.5,-11.5
parent: 2
- - uid: 29470
+ - uid: 20343
components:
- type: Transform
- pos: -98.5,14.5
+ pos: 20.5,-11.5
parent: 2
- - uid: 29472
+ - uid: 20344
components:
- type: Transform
- pos: -98.5,16.5
+ pos: 21.5,-11.5
parent: 2
- - uid: 29473
+ - uid: 20345
components:
- type: Transform
- pos: -97.5,16.5
+ pos: 21.5,-10.5
parent: 2
- - uid: 29474
+ - uid: 20346
components:
- type: Transform
- pos: -96.5,16.5
+ pos: 21.5,-9.5
parent: 2
- - uid: 29475
+ - uid: 20347
components:
- type: Transform
- pos: -96.5,17.5
+ pos: 21.5,-8.5
parent: 2
- - uid: 29476
+ - uid: 20348
components:
- type: Transform
- pos: -96.5,26.5
+ pos: 21.5,-7.5
parent: 2
- - uid: 29477
+ - uid: 20349
components:
- type: Transform
- pos: -95.5,26.5
+ pos: 20.5,-7.5
parent: 2
- - uid: 29478
+ - uid: 20350
components:
- type: Transform
- pos: -94.5,26.5
+ pos: 19.5,-7.5
parent: 2
- - uid: 29479
+ - uid: 20351
components:
- type: Transform
- pos: -94.5,25.5
+ pos: 18.5,-7.5
parent: 2
- - uid: 29480
+ - uid: 20352
components:
- type: Transform
- pos: -94.5,24.5
+ pos: 17.5,-7.5
parent: 2
- - uid: 29481
+ - uid: 20353
components:
- type: Transform
- pos: -94.5,23.5
+ pos: 16.5,-7.5
parent: 2
- - uid: 29482
+ - uid: 20354
components:
- type: Transform
- pos: -94.5,22.5
+ pos: 17.5,-1.5
parent: 2
- - uid: 29483
+ - uid: 20355
components:
- type: Transform
- pos: -94.5,21.5
+ pos: 18.5,-1.5
parent: 2
- - uid: 29490
+ - uid: 20356
components:
- type: Transform
- pos: -89.5,21.5
+ pos: 19.5,-1.5
parent: 2
- - uid: 29498
+ - uid: 20357
components:
- type: Transform
- pos: -80.5,21.5
+ pos: 20.5,-1.5
parent: 2
- - uid: 29499
+ - uid: 20358
components:
- type: Transform
- pos: -80.5,20.5
+ pos: 21.5,-1.5
parent: 2
- - uid: 29500
+ - uid: 20359
components:
- type: Transform
- pos: -80.5,19.5
+ pos: 22.5,-1.5
parent: 2
- - uid: 29501
+ - uid: 20360
components:
- type: Transform
- pos: -86.5,18.5
+ pos: 23.5,-1.5
parent: 2
- - uid: 29502
+ - uid: 20361
components:
- type: Transform
- pos: -86.5,17.5
+ pos: 24.5,-1.5
parent: 2
- - uid: 29503
+ - uid: 20362
components:
- type: Transform
- pos: -86.5,16.5
+ pos: 25.5,-1.5
parent: 2
- - uid: 29504
+ - uid: 20363
components:
- type: Transform
- pos: -86.5,15.5
+ pos: 26.5,-1.5
parent: 2
- - uid: 29505
+ - uid: 20364
components:
- type: Transform
- pos: -86.5,14.5
+ pos: 27.5,-1.5
parent: 2
- - uid: 29506
+ - uid: 20365
components:
- type: Transform
- pos: -86.5,13.5
+ pos: 71.5,37.5
parent: 2
- - uid: 29507
+ - uid: 20366
components:
- type: Transform
- pos: -86.5,12.5
+ pos: -38.5,-28.5
parent: 2
- - uid: 29508
+ - uid: 20367
components:
- type: Transform
- pos: -86.5,11.5
+ pos: 15.5,0.5
parent: 2
- - uid: 29509
+ - uid: 20368
components:
- type: Transform
- pos: -86.5,10.5
+ pos: 14.5,0.5
parent: 2
- - uid: 29510
+ - uid: 20369
components:
- type: Transform
- pos: -86.5,9.5
+ pos: 13.5,0.5
parent: 2
- - uid: 29518
+ - uid: 20370
components:
- type: Transform
- pos: -85.5,-4.5
+ pos: 12.5,0.5
parent: 2
- - uid: 29519
+ - uid: 20371
components:
- type: Transform
- pos: -86.5,-4.5
+ pos: 12.5,-0.5
parent: 2
- - uid: 29520
+ - uid: 20372
components:
- type: Transform
- pos: -87.5,-4.5
+ pos: 12.5,-1.5
parent: 2
- - uid: 29521
+ - uid: 20374
components:
- type: Transform
- pos: -88.5,-4.5
+ pos: 13.5,-2.5
parent: 2
- - uid: 29522
+ - uid: 20375
components:
- type: Transform
- pos: -89.5,-4.5
+ pos: 14.5,-2.5
parent: 2
- - uid: 29523
+ - uid: 20376
components:
- type: Transform
- pos: -90.5,-4.5
+ pos: 15.5,-2.5
parent: 2
- - uid: 29524
+ - uid: 20377
components:
- type: Transform
- pos: -91.5,-4.5
+ pos: 15.5,3.5
parent: 2
- - uid: 29525
+ - uid: 20378
components:
- type: Transform
- pos: -92.5,-4.5
+ pos: 14.5,3.5
parent: 2
- - uid: 29526
+ - uid: 20379
components:
- type: Transform
- pos: -93.5,-4.5
+ pos: 13.5,3.5
parent: 2
- - uid: 29527
+ - uid: 20380
components:
- type: Transform
- pos: -82.5,-4.5
+ pos: 12.5,3.5
parent: 2
- - uid: 29528
+ - uid: 20381
components:
- type: Transform
- pos: -81.5,-4.5
+ pos: -83.5,30.5
parent: 2
- - uid: 29529
+ - uid: 20383
components:
- type: Transform
- pos: -80.5,-4.5
+ pos: 16.5,20.5
parent: 2
- - uid: 29530
+ - uid: 20384
components:
- type: Transform
- pos: -69.5,1.5
+ pos: 20.5,2.5
parent: 2
- - uid: 29532
+ - uid: 20385
components:
- type: Transform
- pos: -74.5,8.5
+ pos: 21.5,2.5
parent: 2
- - uid: 29533
+ - uid: 20386
components:
- type: Transform
- pos: -76.5,-4.5
+ pos: 22.5,2.5
parent: 2
- - uid: 29534
+ - uid: 20387
components:
- type: Transform
- pos: -75.5,-4.5
+ pos: 23.5,2.5
parent: 2
- - uid: 29535
+ - uid: 20388
components:
- type: Transform
- pos: -74.5,-4.5
+ pos: 24.5,2.5
parent: 2
- - uid: 29536
+ - uid: 20389
components:
- type: Transform
- pos: -73.5,-4.5
+ pos: 25.5,2.5
parent: 2
- - uid: 29537
+ - uid: 20390
components:
- type: Transform
- pos: -72.5,-4.5
+ pos: 26.5,2.5
parent: 2
- - uid: 29546
+ - uid: 20391
components:
- type: Transform
- pos: -76.5,-2.5
+ pos: 27.5,2.5
parent: 2
- - uid: 29547
+ - uid: 20393
components:
- type: Transform
- pos: -76.5,-3.5
+ pos: 26.5,6.5
parent: 2
- - uid: 29548
+ - uid: 20394
components:
- type: Transform
- pos: -76.5,-1.5
+ pos: 27.5,6.5
parent: 2
- - uid: 29549
+ - uid: 20395
components:
- type: Transform
- pos: -76.5,-0.5
+ pos: 28.5,6.5
parent: 2
- - uid: 29550
+ - uid: 20396
components:
- type: Transform
- pos: -76.5,0.5
+ pos: 29.5,6.5
parent: 2
- - uid: 29551
+ - uid: 20397
components:
- type: Transform
- pos: -76.5,1.5
+ pos: 30.5,6.5
parent: 2
- - uid: 29552
+ - uid: 20398
components:
- type: Transform
- pos: -76.5,2.5
+ pos: 31.5,6.5
parent: 2
- - uid: 29553
+ - uid: 20402
components:
- type: Transform
- pos: -76.5,3.5
+ pos: 31.5,2.5
parent: 2
- - uid: 29554
+ - uid: 20403
components:
- type: Transform
- pos: -76.5,4.5
+ pos: 32.5,2.5
parent: 2
- - uid: 29555
+ - uid: 20404
components:
- type: Transform
- pos: -80.5,4.5
+ pos: 33.5,2.5
parent: 2
- - uid: 29556
+ - uid: 20406
components:
- type: Transform
- pos: -80.5,3.5
+ pos: -44.5,9.5
parent: 2
- - uid: 29557
+ - uid: 20409
components:
- type: Transform
- pos: -80.5,2.5
+ pos: 38.5,2.5
parent: 2
- - uid: 29558
+ - uid: 20410
components:
- type: Transform
- pos: -80.5,1.5
+ pos: 38.5,3.5
parent: 2
- - uid: 29559
+ - uid: 20411
components:
- type: Transform
- pos: -80.5,0.5
+ pos: 38.5,4.5
parent: 2
- - uid: 29560
+ - uid: 20412
components:
- type: Transform
- pos: -80.5,-0.5
+ pos: 38.5,5.5
parent: 2
- - uid: 29562
+ - uid: 20413
components:
- type: Transform
- pos: -80.5,-2.5
+ pos: 38.5,6.5
parent: 2
- - uid: 29564
+ - uid: 20414
components:
- type: Transform
- pos: -79.5,4.5
+ pos: 38.5,7.5
parent: 2
- - uid: 29565
+ - uid: 20415
components:
- type: Transform
- pos: -78.5,4.5
+ pos: 38.5,8.5
parent: 2
- - uid: 29566
+ - uid: 20416
components:
- type: Transform
- pos: -77.5,4.5
+ pos: 38.5,9.5
parent: 2
- - uid: 29567
+ - uid: 20417
components:
- type: Transform
- pos: -77.5,5.5
+ pos: 38.5,10.5
parent: 2
- - uid: 29618
+ - uid: 20437
components:
- type: Transform
- pos: 40.5,16.5
+ pos: 31.5,-1.5
parent: 2
- - uid: 29639
+ - uid: 20438
components:
- type: Transform
- pos: 20.5,22.5
+ pos: 31.5,-0.5
parent: 2
- - uid: 29643
+ - uid: 20439
components:
- type: Transform
- pos: -11.5,-29.5
+ pos: 31.5,0.5
parent: 2
- - uid: 29644
+ - uid: 20440
components:
- type: Transform
- pos: 4.5,25.5
+ pos: 31.5,1.5
parent: 2
- - uid: 29645
+ - uid: 20441
components:
- type: Transform
- pos: 5.5,25.5
+ pos: 31.5,-2.5
parent: 2
- - uid: 29646
+ - uid: 20442
components:
- type: Transform
- pos: 6.5,25.5
+ pos: 31.5,-3.5
parent: 2
- - uid: 29647
+ - uid: 20443
components:
- type: Transform
- pos: 7.5,25.5
+ pos: 31.5,-4.5
parent: 2
- - uid: 29648
+ - uid: 20444
components:
- type: Transform
- pos: 8.5,25.5
+ pos: 31.5,-5.5
parent: 2
- - uid: 29649
+ - uid: 20445
components:
- type: Transform
- pos: 9.5,25.5
+ pos: 31.5,-6.5
parent: 2
- - uid: 29650
+ - uid: 20446
components:
- type: Transform
- pos: 10.5,25.5
+ pos: 31.5,-7.5
parent: 2
- - uid: 29651
+ - uid: 20447
components:
- type: Transform
- pos: 11.5,25.5
+ pos: 31.5,-8.5
parent: 2
- - uid: 29652
+ - uid: 20448
components:
- type: Transform
- pos: 12.5,25.5
+ pos: 31.5,-9.5
parent: 2
- - uid: 29653
+ - uid: 20449
components:
- type: Transform
- pos: 13.5,25.5
+ pos: 31.5,-10.5
parent: 2
- - uid: 29654
+ - uid: 20450
components:
- type: Transform
- pos: 14.5,25.5
+ pos: 31.5,-11.5
parent: 2
- - uid: 29656
+ - uid: 20451
components:
- type: Transform
- pos: 16.5,25.5
+ pos: 30.5,-11.5
parent: 2
- - uid: 29657
+ - uid: 20452
components:
- type: Transform
- pos: 17.5,25.5
+ pos: 29.5,-11.5
parent: 2
- - uid: 29658
+ - uid: 20453
components:
- type: Transform
- pos: 18.5,25.5
+ pos: 28.5,-11.5
parent: 2
- - uid: 29659
+ - uid: 20454
components:
- type: Transform
- pos: 19.5,25.5
+ pos: 27.5,-11.5
parent: 2
- - uid: 29660
+ - uid: 20455
components:
- type: Transform
- pos: 20.5,25.5
+ pos: 26.5,-11.5
parent: 2
- - uid: 29661
+ - uid: 20456
components:
- type: Transform
- pos: 21.5,25.5
+ pos: 26.5,-10.5
parent: 2
- - uid: 29662
+ - uid: 20457
components:
- type: Transform
- pos: -12.5,-31.5
+ pos: 26.5,-9.5
parent: 2
- - uid: 29663
+ - uid: 20458
components:
- type: Transform
- pos: -10.5,-29.5
+ pos: 26.5,-8.5
parent: 2
- - uid: 29983
+ - uid: 20459
components:
- type: Transform
- pos: -18.5,-46.5
+ pos: 26.5,-7.5
parent: 2
- - uid: 30127
+ - uid: 20460
components:
- type: Transform
- pos: 81.5,40.5
+ pos: 26.5,-6.5
parent: 2
- - uid: 30128
+ - uid: 20461
components:
- type: Transform
- pos: 82.5,40.5
+ pos: 26.5,-5.5
parent: 2
- - uid: 30129
+ - uid: 20462
components:
- type: Transform
- pos: 82.5,41.5
+ pos: 26.5,-4.5
parent: 2
- - uid: 30130
+ - uid: 20463
components:
- type: Transform
- pos: 82.5,42.5
+ pos: 27.5,-4.5
parent: 2
- - uid: 30131
+ - uid: 20464
components:
- type: Transform
- pos: 83.5,42.5
+ pos: 28.5,-4.5
parent: 2
- - uid: 30132
+ - uid: 20465
components:
- type: Transform
- pos: 83.5,43.5
+ pos: 29.5,-4.5
parent: 2
- - uid: 30133
+ - uid: 20466
components:
- type: Transform
- pos: 83.5,44.5
+ pos: 30.5,-4.5
parent: 2
- - uid: 30134
+ - uid: 20470
components:
- type: Transform
- pos: 84.5,44.5
+ pos: 37.5,11.5
parent: 2
- - uid: 30135
+ - uid: 20471
components:
- type: Transform
- pos: 84.5,45.5
+ pos: 37.5,10.5
parent: 2
- - uid: 30136
+ - uid: 20472
components:
- type: Transform
- pos: 85.5,45.5
+ pos: 37.5,12.5
parent: 2
- - uid: 30137
+ - uid: 20473
components:
- type: Transform
- pos: 86.5,45.5
+ pos: 37.5,13.5
parent: 2
- - uid: 30138
+ - uid: 20474
components:
- type: Transform
- pos: 87.5,45.5
+ pos: 37.5,14.5
parent: 2
- - uid: 30139
+ - uid: 20475
components:
- type: Transform
- pos: 88.5,45.5
+ pos: 37.5,15.5
parent: 2
- - uid: 30140
+ - uid: 20478
components:
- type: Transform
- pos: 89.5,45.5
+ pos: 39.5,14.5
parent: 2
- - uid: 30141
+ - uid: 20488
components:
- type: Transform
- pos: 90.5,45.5
+ pos: 42.5,13.5
parent: 2
- - uid: 30142
+ - uid: 20525
components:
- type: Transform
- pos: 90.5,44.5
+ pos: 38.5,1.5
parent: 2
- - uid: 30143
+ - uid: 20526
components:
- type: Transform
- pos: 91.5,44.5
+ pos: 38.5,0.5
parent: 2
- - uid: 30144
+ - uid: 20527
components:
- type: Transform
- pos: 91.5,43.5
+ pos: 38.5,-0.5
parent: 2
- - uid: 30145
+ - uid: 20528
components:
- type: Transform
- pos: 91.5,42.5
+ pos: 38.5,-1.5
parent: 2
- - uid: 30146
+ - uid: 20529
components:
- type: Transform
- pos: 92.5,42.5
+ pos: 38.5,-2.5
parent: 2
- - uid: 30147
+ - uid: 20530
components:
- type: Transform
- pos: 92.5,41.5
+ pos: 38.5,-3.5
parent: 2
- - uid: 30148
+ - uid: 20531
components:
- type: Transform
- pos: 92.5,40.5
+ pos: 38.5,-4.5
parent: 2
- - uid: 30149
+ - uid: 20532
components:
- type: Transform
- pos: 92.5,39.5
+ pos: 38.5,-5.5
parent: 2
- - uid: 30150
+ - uid: 20533
components:
- type: Transform
- pos: 92.5,38.5
+ pos: 38.5,-6.5
parent: 2
- - uid: 30151
+ - uid: 20534
components:
- type: Transform
- pos: 91.5,38.5
+ pos: 38.5,-7.5
parent: 2
- - uid: 30152
+ - uid: 20535
components:
- type: Transform
- pos: 91.5,37.5
+ pos: 38.5,-8.5
parent: 2
- - uid: 30153
+ - uid: 20536
components:
- type: Transform
- pos: 91.5,36.5
+ pos: 38.5,-9.5
parent: 2
- - uid: 30154
+ - uid: 20537
components:
- type: Transform
- pos: 90.5,36.5
+ pos: 38.5,-10.5
parent: 2
- - uid: 30155
+ - uid: 20538
components:
- type: Transform
- pos: 90.5,35.5
+ pos: 38.5,-11.5
parent: 2
- - uid: 30156
+ - uid: 20539
components:
- type: Transform
- pos: 89.5,35.5
+ pos: 32.5,-1.5
parent: 2
- - uid: 30157
+ - uid: 20540
components:
- type: Transform
- pos: 87.5,35.5
+ pos: 33.5,-1.5
parent: 2
- - uid: 30158
+ - uid: 20541
components:
- type: Transform
- pos: 86.5,35.5
+ pos: 34.5,-1.5
parent: 2
- - uid: 30159
+ - uid: 20542
components:
- type: Transform
- pos: 86.5,35.5
+ pos: 35.5,-1.5
parent: 2
- - uid: 30160
+ - uid: 20544
components:
- type: Transform
- pos: 85.5,35.5
+ pos: 20.5,10.5
parent: 2
- - uid: 30161
+ - uid: 20549
components:
- type: Transform
- pos: 84.5,35.5
+ pos: 12.5,20.5
parent: 2
- - uid: 30162
+ - uid: 20550
components:
- type: Transform
- pos: 84.5,36.5
+ pos: 14.5,20.5
parent: 2
- - uid: 30163
+ - uid: 20551
components:
- type: Transform
- pos: 83.5,36.5
+ pos: 1.5,6.5
parent: 2
- - uid: 30164
+ - uid: 20552
components:
- type: Transform
- pos: 83.5,37.5
+ pos: 1.5,5.5
parent: 2
- - uid: 30165
+ - uid: 20553
components:
- type: Transform
- pos: 83.5,38.5
+ pos: 1.5,4.5
parent: 2
- - uid: 30166
+ - uid: 20554
components:
- type: Transform
- pos: 82.5,38.5
+ pos: 1.5,3.5
parent: 2
- - uid: 30167
+ - uid: 20555
components:
- type: Transform
- pos: 82.5,39.5
+ pos: 1.5,2.5
parent: 2
- - uid: 30178
+ - uid: 20556
components:
- type: Transform
- pos: 84.5,30.5
+ pos: 1.5,1.5
parent: 2
- - uid: 30179
+ - uid: 20557
components:
- type: Transform
- pos: 84.5,29.5
+ pos: 1.5,0.5
parent: 2
- - uid: 30180
+ - uid: 20558
components:
- type: Transform
- pos: 84.5,28.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 30181
+ - uid: 20559
components:
- type: Transform
- pos: 84.5,27.5
+ pos: 1.5,-1.5
parent: 2
- - uid: 30182
+ - uid: 20564
components:
- type: Transform
- pos: 84.5,26.5
+ pos: 6.5,3.5
parent: 2
- - uid: 30183
+ - uid: 20565
components:
- type: Transform
- pos: 84.5,25.5
+ pos: 7.5,3.5
parent: 2
- - uid: 30184
+ - uid: 20567
components:
- type: Transform
- pos: 84.5,24.5
+ pos: 9.5,3.5
parent: 2
- - uid: 30185
+ - uid: 20568
components:
- type: Transform
- pos: 84.5,23.5
+ pos: 9.5,4.5
parent: 2
- - uid: 30186
+ - uid: 20569
components:
- type: Transform
- pos: 84.5,22.5
+ pos: 9.5,5.5
parent: 2
- - uid: 30190
+ - uid: 20570
components:
- type: Transform
- pos: 85.5,18.5
+ pos: 9.5,6.5
parent: 2
- - uid: 30191
+ - uid: 20573
components:
- type: Transform
- pos: 85.5,17.5
+ pos: -0.5,3.5
parent: 2
- - uid: 30192
+ - uid: 20574
components:
- type: Transform
- pos: 85.5,16.5
+ pos: -1.5,3.5
parent: 2
- - uid: 30193
+ - uid: 20575
components:
- type: Transform
- pos: 85.5,15.5
+ pos: -2.5,3.5
parent: 2
- - uid: 30194
+ - uid: 20576
components:
- type: Transform
- pos: 85.5,14.5
+ pos: -3.5,3.5
parent: 2
- - uid: 30195
+ - uid: 20577
components:
- type: Transform
- pos: 85.5,13.5
+ pos: -4.5,3.5
parent: 2
- - uid: 30196
+ - uid: 20578
components:
- type: Transform
- pos: 85.5,12.5
+ pos: -5.5,3.5
parent: 2
- - uid: 30197
+ - uid: 20579
components:
- type: Transform
- pos: 85.5,11.5
+ pos: -6.5,3.5
parent: 2
- - uid: 30198
+ - uid: 20580
components:
- type: Transform
- pos: 85.5,10.5
+ pos: -7.5,3.5
parent: 2
- - uid: 30199
+ - uid: 20581
components:
- type: Transform
- pos: 85.5,9.5
+ pos: -8.5,3.5
parent: 2
- - uid: 30200
+ - uid: 20583
components:
- type: Transform
- pos: 85.5,8.5
+ pos: -10.5,3.5
parent: 2
- - uid: 30201
+ - uid: 20584
components:
- type: Transform
- pos: 84.5,8.5
+ pos: -11.5,3.5
parent: 2
- - uid: 30202
+ - uid: 20585
components:
- type: Transform
- pos: 83.5,7.5
+ pos: -12.5,3.5
parent: 2
- - uid: 30203
+ - uid: 20586
components:
- type: Transform
- pos: 83.5,7.5
+ pos: -13.5,3.5
parent: 2
- - uid: 30204
+ - uid: 20587
components:
- type: Transform
- pos: 83.5,6.5
+ pos: -79.5,31.5
parent: 2
- - uid: 30205
+ - uid: 20588
components:
- type: Transform
- pos: 82.5,6.5
+ pos: -78.5,30.5
parent: 2
- - uid: 30206
+ - uid: 20599
components:
- type: Transform
- pos: 83.5,8.5
+ pos: -80.5,-14.5
parent: 2
- - uid: 30207
+ - uid: 20602
components:
- type: Transform
- pos: 82.5,5.5
+ pos: -81.5,31.5
parent: 2
- - uid: 30208
+ - uid: 20614
components:
- type: Transform
- pos: 81.5,5.5
+ pos: -15.5,2.5
parent: 2
- - uid: 30209
+ - uid: 20615
components:
- type: Transform
- pos: 80.5,5.5
+ pos: -15.5,1.5
parent: 2
- - uid: 30210
+ - uid: 20616
components:
- type: Transform
- pos: 80.5,4.5
+ pos: -15.5,0.5
parent: 2
- - uid: 30211
+ - uid: 20617
components:
- type: Transform
- pos: 80.5,3.5
+ pos: -15.5,-0.5
parent: 2
- - uid: 30212
+ - uid: 20618
components:
- type: Transform
- pos: 79.5,3.5
+ pos: -19.5,2.5
parent: 2
- - uid: 30213
+ - uid: 20621
components:
- type: Transform
- pos: 80.5,2.5
+ pos: -21.5,1.5
parent: 2
- - uid: 30214
+ - uid: 20622
components:
- type: Transform
- pos: 80.5,1.5
+ pos: -21.5,0.5
parent: 2
- - uid: 30215
+ - uid: 20623
components:
- type: Transform
- pos: 80.5,0.5
+ pos: -21.5,-0.5
parent: 2
- - uid: 30216
+ - uid: 20624
components:
- type: Transform
- pos: 80.5,-0.5
+ pos: -18.5,2.5
parent: 2
- - uid: 30270
+ - uid: 20625
components:
- type: Transform
- pos: 7.5,45.5
+ pos: 52.5,45.5
parent: 2
- - uid: 30318
+ - uid: 20630
components:
- type: Transform
- pos: -62.5,8.5
+ pos: -17.5,2.5
parent: 2
- - uid: 30319
+ - uid: 20631
components:
- type: Transform
- pos: -63.5,8.5
+ pos: -16.5,2.5
parent: 2
- - uid: 30321
+ - uid: 20632
components:
- type: Transform
- pos: 15.5,45.5
+ pos: 54.5,1.5
parent: 2
- - uid: 30324
+ - uid: 20636
components:
- type: Transform
- pos: 13.5,45.5
+ pos: 54.5,-0.5
parent: 2
- - uid: 30404
+ - uid: 20637
components:
- type: Transform
- pos: -49.5,-30.5
+ pos: 54.5,0.5
parent: 2
- - uid: 30487
+ - uid: 20638
components:
- type: Transform
- pos: -43.5,-28.5
+ pos: 66.5,25.5
parent: 2
- - uid: 30617
+ - uid: 20643
components:
- type: Transform
- pos: -40.5,-30.5
+ pos: -21.5,-4.5
parent: 2
- - uid: 30620
+ - uid: 20645
components:
- type: Transform
- pos: -41.5,-30.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 30625
+ - uid: 20646
components:
- type: Transform
- pos: -41.5,-29.5
+ pos: -41.5,56.5
parent: 2
- - uid: 30627
+ - uid: 20650
components:
- type: Transform
- pos: -41.5,-28.5
+ pos: -32.5,-7.5
parent: 2
- - uid: 30629
+ - uid: 20651
components:
- type: Transform
- pos: -38.5,-30.5
+ pos: -32.5,-8.5
parent: 2
- - uid: 30630
+ - uid: 20652
components:
- type: Transform
- pos: -37.5,-30.5
+ pos: -32.5,-9.5
parent: 2
- - uid: 30631
+ - uid: 20653
components:
- type: Transform
- pos: -36.5,-30.5
+ pos: -32.5,-10.5
parent: 2
- - uid: 30670
+ - uid: 20660
components:
- type: Transform
- pos: 59.5,52.5
+ pos: -29.5,-10.5
parent: 2
- - uid: 30671
+ - uid: 20661
components:
- type: Transform
- pos: 59.5,53.5
+ pos: -28.5,-10.5
parent: 2
- - uid: 30675
+ - uid: 20662
components:
- type: Transform
- pos: 59.5,51.5
+ pos: -27.5,-10.5
parent: 2
- - uid: 30689
+ - uid: 20663
components:
- type: Transform
- pos: 58.5,51.5
+ pos: -26.5,-10.5
parent: 2
- - uid: 30695
+ - uid: 20664
components:
- type: Transform
- pos: 57.5,51.5
+ pos: -21.5,-6.5
parent: 2
- - uid: 30700
+ - uid: 20665
components:
- type: Transform
- pos: -35.5,63.5
+ pos: -21.5,-7.5
parent: 2
- - uid: 30708
+ - uid: 20666
components:
- type: Transform
- pos: 56.5,51.5
+ pos: -21.5,-8.5
parent: 2
- - uid: 30711
+ - uid: 20667
components:
- type: Transform
- pos: 55.5,51.5
+ pos: -21.5,-9.5
parent: 2
- - uid: 30712
+ - uid: 20668
components:
- type: Transform
- pos: -35.5,64.5
+ pos: -21.5,-10.5
parent: 2
- - uid: 30719
+ - uid: 20669
components:
- type: Transform
- pos: 11.5,64.5
+ pos: -21.5,-11.5
parent: 2
- - uid: 30723
+ - uid: 20672
components:
- type: Transform
- pos: -35.5,-30.5
+ pos: -24.5,-4.5
parent: 2
- - uid: 30724
+ - uid: 20675
components:
- type: Transform
- pos: -35.5,-29.5
+ pos: -15.5,-5.5
parent: 2
- - uid: 30726
+ - uid: 20676
components:
- type: Transform
- pos: -35.5,-28.5
+ pos: -15.5,-6.5
parent: 2
- - uid: 30727
+ - uid: 20677
components:
- type: Transform
- pos: -56.5,-21.5
+ pos: -15.5,-7.5
parent: 2
- - uid: 30732
+ - uid: 20678
components:
- type: Transform
- pos: -56.5,-22.5
+ pos: -15.5,-8.5
parent: 2
- - uid: 30733
+ - uid: 20679
components:
- type: Transform
- pos: -56.5,-23.5
+ pos: -15.5,-9.5
parent: 2
- - uid: 30734
+ - uid: 20680
components:
- type: Transform
- pos: -56.5,-24.5
+ pos: -15.5,-10.5
parent: 2
- - uid: 30746
+ - uid: 20681
components:
- type: Transform
- pos: -56.5,-25.5
+ pos: -15.5,-11.5
parent: 2
- - uid: 30789
+ - uid: 20686
components:
- type: Transform
- pos: 11.5,66.5
+ pos: -10.5,-5.5
parent: 2
- - uid: 30792
+ - uid: 20687
components:
- type: Transform
- pos: -55.5,-25.5
+ pos: -10.5,-6.5
parent: 2
- - uid: 30795
+ - uid: 20688
components:
- type: Transform
- pos: -51.5,41.5
+ pos: -10.5,-7.5
parent: 2
- - uid: 30805
+ - uid: 20689
components:
- type: Transform
- pos: -40.5,-15.5
+ pos: -10.5,-8.5
parent: 2
- - uid: 30806
+ - uid: 20690
components:
- type: Transform
- pos: -37.5,-28.5
+ pos: -10.5,-9.5
parent: 2
- - uid: 30808
+ - uid: 20691
components:
- type: Transform
- pos: -22.5,4.5
+ pos: -9.5,-9.5
parent: 2
- - uid: 30809
+ - uid: 20692
components:
- type: Transform
- pos: -37.5,-26.5
+ pos: -8.5,-9.5
parent: 2
- - uid: 30816
+ - uid: 20693
components:
- type: Transform
- pos: 13.5,65.5
+ pos: -8.5,-8.5
parent: 2
- - uid: 30817
+ - uid: 20696
components:
- type: Transform
- pos: 12.5,65.5
+ pos: 24.5,3.5
parent: 2
- - uid: 30819
+ - uid: 20699
components:
- type: Transform
- pos: 7.5,65.5
+ pos: -6.5,-4.5
parent: 2
- - uid: 30820
+ - uid: 20701
components:
- type: Transform
- pos: 7.5,64.5
+ pos: 18.5,20.5
parent: 2
- - uid: 30821
+ - uid: 20702
components:
- type: Transform
- pos: 8.5,64.5
+ pos: -6.5,-1.5
parent: 2
- - uid: 30822
+ - uid: 20703
components:
- type: Transform
- pos: -22.5,3.5
+ pos: -6.5,-0.5
parent: 2
- - uid: 30863
+ - uid: 20704
components:
- type: Transform
- pos: -46.5,69.5
+ pos: -7.5,-1.5
parent: 2
- - uid: 30868
+ - uid: 20705
components:
- type: Transform
- pos: -46.5,64.5
+ pos: -8.5,-1.5
parent: 2
- - uid: 30869
+ - uid: 20706
components:
- type: Transform
- pos: -46.5,63.5
+ pos: -9.5,-1.5
parent: 2
- - uid: 30870
+ - uid: 20707
components:
- type: Transform
- pos: -46.5,62.5
+ pos: -10.5,-1.5
parent: 2
- - uid: 30871
+ - uid: 20708
components:
- type: Transform
- pos: -46.5,61.5
+ pos: -10.5,-0.5
parent: 2
- - uid: 30872
+ - uid: 20709
components:
- type: Transform
- pos: -46.5,60.5
+ pos: -10.5,0.5
parent: 2
- - uid: 30873
+ - uid: 20710
components:
- type: Transform
- pos: -46.5,59.5
+ pos: -10.5,1.5
parent: 2
- - uid: 30875
+ - uid: 20711
components:
- type: Transform
- pos: 11.5,67.5
+ pos: -10.5,2.5
parent: 2
- - uid: 30876
+ - uid: 20712
components:
- type: Transform
- pos: 11.5,65.5
+ pos: -10.5,4.5
parent: 2
- - uid: 30877
+ - uid: 20713
components:
- type: Transform
- pos: -37.5,60.5
+ pos: -10.5,5.5
parent: 2
- - uid: 30878
+ - uid: 20714
components:
- type: Transform
- pos: -37.5,64.5
+ pos: -10.5,6.5
parent: 2
- - uid: 30883
+ - uid: 20715
components:
- type: Transform
- pos: -39.5,56.5
+ pos: -10.5,7.5
parent: 2
- - uid: 30884
+ - uid: 20722
components:
- type: Transform
- pos: -38.5,56.5
+ pos: -20.5,-40.5
parent: 2
- - uid: 30885
+ - uid: 20725
components:
- type: Transform
- pos: -37.5,56.5
+ pos: 2.5,2.5
parent: 2
- - uid: 30886
+ - uid: 20726
components:
- type: Transform
- pos: -36.5,56.5
+ pos: 3.5,2.5
parent: 2
- - uid: 30887
+ - uid: 20727
components:
- type: Transform
- pos: -35.5,56.5
+ pos: 4.5,2.5
parent: 2
- - uid: 30888
+ - uid: 20728
components:
- type: Transform
- pos: -35.5,55.5
+ pos: 5.5,2.5
parent: 2
- - uid: 30889
+ - uid: 20729
components:
- type: Transform
- pos: -35.5,54.5
+ pos: 6.5,2.5
parent: 2
- - uid: 30891
+ - uid: 20730
components:
- type: Transform
- pos: -34.5,53.5
+ pos: -3.5,9.5
parent: 2
- - uid: 30892
+ - uid: 20731
components:
- type: Transform
- pos: -33.5,53.5
+ pos: -3.5,10.5
parent: 2
- - uid: 30893
+ - uid: 20732
components:
- type: Transform
- pos: -32.5,53.5
+ pos: -3.5,11.5
parent: 2
- - uid: 30894
+ - uid: 20733
components:
- type: Transform
- pos: -31.5,53.5
+ pos: -3.5,12.5
parent: 2
- - uid: 30895
+ - uid: 20734
components:
- type: Transform
- pos: -30.5,53.5
+ pos: -3.5,13.5
parent: 2
- - uid: 30896
+ - uid: 20735
components:
- type: Transform
- pos: -29.5,53.5
+ pos: -4.5,13.5
parent: 2
- - uid: 30898
+ - uid: 20736
components:
- type: Transform
- pos: -29.5,52.5
+ pos: -5.5,13.5
parent: 2
- - uid: 30899
+ - uid: 20737
components:
- type: Transform
- pos: -29.5,51.5
+ pos: -6.5,13.5
parent: 2
- - uid: 30900
+ - uid: 20738
components:
- type: Transform
- pos: -28.5,51.5
+ pos: -7.5,13.5
parent: 2
- - uid: 30901
+ - uid: 20739
components:
- type: Transform
- pos: -27.5,51.5
+ pos: -8.5,13.5
parent: 2
- - uid: 30902
+ - uid: 20741
components:
- type: Transform
- pos: -26.5,51.5
+ pos: -10.5,13.5
parent: 2
- - uid: 30903
+ - uid: 20742
components:
- type: Transform
- pos: -25.5,51.5
+ pos: -11.5,13.5
parent: 2
- - uid: 30904
+ - uid: 20743
components:
- type: Transform
- pos: -24.5,51.5
+ pos: -14.5,10.5
parent: 2
- - uid: 30905
+ - uid: 20744
components:
- type: Transform
- pos: -23.5,51.5
+ pos: -36.5,9.5
parent: 2
- - uid: 30906
+ - uid: 20745
components:
- type: Transform
- pos: -22.5,51.5
+ pos: -36.5,10.5
parent: 2
- - uid: 30907
+ - uid: 20746
components:
- type: Transform
- pos: -21.5,51.5
+ pos: 8.5,57.5
parent: 2
- - uid: 30908
+ - uid: 20748
components:
- type: Transform
- pos: -20.5,51.5
+ pos: -12.5,13.5
parent: 2
- - uid: 30909
+ - uid: 20749
components:
- type: Transform
- pos: -19.5,51.5
+ pos: -13.5,13.5
parent: 2
- - uid: 30911
+ - uid: 20750
components:
- type: Transform
- pos: -38.5,64.5
+ pos: -14.5,13.5
parent: 2
- - uid: 30912
+ - uid: 20751
components:
- type: Transform
- pos: -37.5,59.5
+ pos: -15.5,13.5
parent: 2
- - uid: 30913
+ - uid: 20752
components:
- type: Transform
- pos: -37.5,61.5
+ pos: -16.5,13.5
parent: 2
- - uid: 30915
+ - uid: 20753
components:
- type: Transform
- pos: -31.5,60.5
+ pos: -17.5,13.5
parent: 2
- - uid: 30924
+ - uid: 20754
components:
- type: Transform
- pos: -34.5,64.5
+ pos: -18.5,13.5
parent: 2
- - uid: 30926
+ - uid: 20755
components:
- type: Transform
- pos: -35.5,62.5
+ pos: -19.5,13.5
parent: 2
- - uid: 30927
+ - uid: 20756
components:
- type: Transform
- pos: -36.5,62.5
+ pos: -20.5,13.5
parent: 2
- - uid: 30928
+ - uid: 20757
components:
- type: Transform
- pos: -37.5,62.5
+ pos: -21.5,13.5
parent: 2
- - uid: 30929
+ - uid: 20758
components:
- type: Transform
- pos: -38.5,62.5
+ pos: -22.5,13.5
parent: 2
- - uid: 30930
+ - uid: 20759
components:
- type: Transform
- pos: -39.5,62.5
+ pos: -23.5,13.5
parent: 2
- - uid: 30966
+ - uid: 20760
components:
- type: Transform
- pos: -20.5,5.5
+ pos: -24.5,13.5
parent: 2
- - uid: 30972
+ - uid: 20761
components:
- type: Transform
- pos: 10.5,-12.5
+ pos: -25.5,13.5
parent: 2
- - uid: 30974
+ - uid: 20762
components:
- type: Transform
- pos: 4.5,-1.5
+ pos: -26.5,13.5
parent: 2
- - uid: 30975
+ - uid: 20763
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -27.5,13.5
parent: 2
- - uid: 30979
+ - uid: 20764
components:
- type: Transform
- pos: 6.5,-1.5
+ pos: -28.5,13.5
parent: 2
- - uid: 30980
+ - uid: 20765
components:
- type: Transform
- pos: 6.5,-0.5
+ pos: -29.5,13.5
parent: 2
- - uid: 30981
+ - uid: 20766
components:
- type: Transform
- pos: 6.5,0.5
+ pos: 31.5,52.5
parent: 2
- - uid: 30982
+ - uid: 20768
components:
- type: Transform
- pos: 6.5,1.5
+ pos: -32.5,13.5
parent: 2
- - uid: 31004
+ - uid: 20769
components:
- type: Transform
- pos: 8.5,17.5
+ pos: -32.5,14.5
parent: 2
- - uid: 31009
+ - uid: 20770
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: -32.5,15.5
parent: 2
- - uid: 31057
+ - uid: 20771
components:
- type: Transform
- pos: -38.5,65.5
+ pos: -32.5,16.5
parent: 2
- - uid: 31058
+ - uid: 20779
components:
- type: Transform
- pos: -54.5,-25.5
+ pos: -33.5,6.5
parent: 2
- - uid: 31059
+ - uid: 20780
components:
- type: Transform
- pos: -53.5,-25.5
+ pos: -33.5,5.5
parent: 2
- - uid: 31060
+ - uid: 20781
components:
- type: Transform
- pos: -52.5,-25.5
+ pos: -33.5,4.5
parent: 2
- - uid: 31062
+ - uid: 20787
components:
- type: Transform
- pos: -33.5,64.5
+ pos: -33.5,-1.5
parent: 2
- - uid: 31065
+ - uid: 20788
components:
- type: Transform
- pos: 10.5,64.5
+ pos: -33.5,-2.5
parent: 2
- - uid: 31068
+ - uid: 20789
components:
- type: Transform
- pos: 41.5,41.5
+ pos: -33.5,-3.5
parent: 2
- - uid: 31076
+ - uid: 20790
components:
- type: Transform
- pos: 9.5,64.5
+ pos: -33.5,-4.5
parent: 2
- - uid: 31083
+ - uid: 20792
components:
- type: Transform
- pos: -20.5,4.5
+ pos: 53.5,51.5
parent: 2
- - uid: 31137
+ - uid: 20793
components:
- type: Transform
- pos: -20.5,3.5
+ pos: 53.5,50.5
parent: 2
- - uid: 31155
+ - uid: 20803
components:
- type: Transform
- pos: -18.5,5.5
+ pos: 85.5,-21.5
parent: 2
- - uid: 31157
+ - uid: 20804
components:
- type: Transform
- pos: -18.5,4.5
+ pos: 112.5,-27.5
parent: 2
- - uid: 31158
+ - uid: 20809
components:
- type: Transform
- pos: -18.5,3.5
+ pos: -41.5,7.5
parent: 2
- - uid: 31159
+ - uid: 20810
components:
- type: Transform
- pos: -16.5,5.5
+ pos: -42.5,7.5
parent: 2
- - uid: 31160
+ - uid: 20811
components:
- type: Transform
- pos: -16.5,4.5
+ pos: -42.5,6.5
parent: 2
- - uid: 31161
+ - uid: 20812
components:
- type: Transform
- pos: -16.5,3.5
+ pos: -42.5,5.5
parent: 2
- - uid: 31162
+ - uid: 20813
components:
- type: Transform
- pos: -14.5,5.5
+ pos: -42.5,4.5
parent: 2
- - uid: 31163
+ - uid: 20814
components:
- type: Transform
- pos: -14.5,4.5
+ pos: -42.5,3.5
parent: 2
- - uid: 31164
+ - uid: 20815
components:
- type: Transform
- pos: -14.5,3.5
+ pos: -42.5,2.5
parent: 2
- - uid: 31184
+ - uid: 20816
components:
- type: Transform
- pos: -47.5,61.5
+ pos: -43.5,2.5
parent: 2
- - uid: 31185
+ - uid: 20817
components:
- type: Transform
- pos: -48.5,61.5
+ pos: -43.5,1.5
parent: 2
- - uid: 31306
+ - uid: 20818
components:
- type: Transform
- pos: 68.5,25.5
+ pos: -43.5,0.5
parent: 2
- - uid: 31343
+ - uid: 20819
components:
- type: Transform
- pos: -51.5,64.5
+ pos: -43.5,-0.5
parent: 2
- - uid: 31344
+ - uid: 20820
components:
- type: Transform
- pos: -51.5,65.5
+ pos: -43.5,-1.5
parent: 2
- - uid: 31345
+ - uid: 20821
components:
- type: Transform
- pos: -51.5,66.5
+ pos: -43.5,-2.5
parent: 2
- - uid: 31346
+ - uid: 20822
components:
- type: Transform
- pos: -51.5,67.5
+ pos: -43.5,-3.5
parent: 2
- - uid: 31347
+ - uid: 20823
components:
- type: Transform
- pos: -51.5,68.5
+ pos: -43.5,-4.5
parent: 2
- - uid: 31348
+ - uid: 20824
components:
- type: Transform
- pos: -51.5,69.5
+ pos: -43.5,-5.5
parent: 2
- - uid: 31349
+ - uid: 20825
components:
- type: Transform
- pos: -51.5,70.5
+ pos: -43.5,-6.5
parent: 2
- - uid: 31350
+ - uid: 20826
components:
- type: Transform
- pos: -51.5,71.5
+ pos: -42.5,-6.5
parent: 2
- - uid: 31351
+ - uid: 20827
components:
- type: Transform
- pos: -51.5,72.5
+ pos: -42.5,-7.5
parent: 2
- - uid: 31352
+ - uid: 20828
components:
- type: Transform
- pos: -51.5,73.5
+ pos: -41.5,-7.5
parent: 2
- - uid: 31353
+ - uid: 20829
components:
- type: Transform
- pos: -50.5,73.5
+ pos: -41.5,-8.5
parent: 2
- - uid: 31354
+ - uid: 20830
components:
- type: Transform
- pos: -49.5,73.5
+ pos: -40.5,-8.5
parent: 2
- - uid: 31355
+ - uid: 20831
components:
- type: Transform
- pos: -48.5,73.5
+ pos: 90.5,-25.5
parent: 2
- - uid: 31356
+ - uid: 20832
components:
- type: Transform
- pos: -47.5,73.5
+ pos: 84.5,-21.5
parent: 2
- - uid: 31357
+ - uid: 20834
components:
- type: Transform
- pos: -46.5,73.5
+ pos: 79.5,60.5
parent: 2
- - uid: 31358
+ - uid: 20843
components:
- type: Transform
- pos: -45.5,73.5
+ pos: 112.5,-5.5
parent: 2
- - uid: 31359
+ - uid: 20844
components:
- type: Transform
- pos: -44.5,73.5
+ pos: 112.5,-7.5
parent: 2
- - uid: 31360
+ - uid: 20845
components:
- type: Transform
- pos: -43.5,73.5
+ pos: 111.5,-5.5
parent: 2
- - uid: 31361
+ - uid: 20846
components:
- type: Transform
- pos: -42.5,73.5
+ pos: 90.5,-23.5
parent: 2
- - uid: 31362
+ - uid: 20847
components:
- type: Transform
- pos: -41.5,73.5
+ pos: 90.5,-24.5
parent: 2
- - uid: 31363
+ - uid: 20848
components:
- type: Transform
- pos: -40.5,73.5
+ pos: 82.5,-21.5
parent: 2
- - uid: 31364
+ - uid: 20849
components:
- type: Transform
- pos: -39.5,73.5
+ pos: 81.5,-21.5
parent: 2
- - uid: 31365
+ - uid: 20850
components:
- type: Transform
- pos: -38.5,73.5
+ pos: 79.5,-12.5
parent: 2
- - uid: 31412
+ - uid: 20884
components:
- type: Transform
- pos: 9.5,-17.5
+ pos: 98.5,-24.5
parent: 2
- - uid: 31434
+ - uid: 20885
components:
- type: Transform
- pos: 27.5,-32.5
+ pos: 95.5,-24.5
parent: 2
- - uid: 31435
+ - uid: 20886
components:
- type: Transform
- pos: 28.5,-32.5
+ pos: 109.5,-12.5
parent: 2
- - uid: 31445
+ - uid: 20887
components:
- type: Transform
- pos: -52.5,-24.5
+ pos: 109.5,-15.5
parent: 2
- - uid: 31450
+ - uid: 20955
components:
- type: Transform
- pos: -42.5,66.5
+ pos: 109.5,-18.5
parent: 2
- - uid: 31451
+ - uid: 20957
components:
- type: Transform
- pos: -42.5,65.5
+ pos: 8.5,-23.5
parent: 2
- - uid: 31452
+ - uid: 20992
components:
- type: Transform
- pos: -42.5,64.5
+ pos: -87.5,23.5
parent: 2
- - uid: 31453
+ - uid: 21015
components:
- type: Transform
- pos: -42.5,63.5
+ pos: 12.5,70.5
parent: 2
- - uid: 31454
+ - uid: 21037
components:
- type: Transform
- pos: -42.5,62.5
+ pos: 70.5,38.5
parent: 2
- - uid: 31455
+ - uid: 21039
components:
- type: Transform
- pos: -38.5,63.5
+ pos: 93.5,77.5
parent: 2
- - uid: 31456
+ - uid: 21074
components:
- type: Transform
- pos: -38.5,64.5
+ pos: 49.5,17.5
parent: 2
- - uid: 31457
+ - uid: 21096
components:
- type: Transform
- pos: -38.5,65.5
+ pos: -107.5,24.5
parent: 2
- - uid: 31458
+ - uid: 21103
components:
- type: Transform
- pos: -38.5,66.5
+ pos: -107.5,23.5
parent: 2
- - uid: 31464
+ - uid: 21124
components:
- type: Transform
- pos: -9.5,65.5
+ pos: -61.5,-11.5
parent: 2
- - uid: 31465
+ - uid: 21134
components:
- type: Transform
- pos: -9.5,66.5
+ pos: -52.5,59.5
parent: 2
- - uid: 31466
+ - uid: 21135
components:
- type: Transform
- pos: -9.5,67.5
+ pos: -55.5,-32.5
parent: 2
- - uid: 31467
+ - uid: 21136
components:
- type: Transform
- pos: -3.5,65.5
+ pos: -55.5,-33.5
parent: 2
- - uid: 31468
+ - uid: 21137
components:
- type: Transform
- pos: -3.5,66.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 31469
+ - uid: 21138
components:
- type: Transform
- pos: -3.5,67.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 31472
+ - uid: 21139
components:
- type: Transform
- pos: -10.5,67.5
+ pos: -54.5,-35.5
parent: 2
- - uid: 31473
+ - uid: 21140
components:
- type: Transform
- pos: -11.5,67.5
+ pos: -53.5,-35.5
parent: 2
- - uid: 31497
+ - uid: 21141
components:
- type: Transform
- pos: -32.5,64.5
+ pos: -52.5,-35.5
parent: 2
- - uid: 31498
+ - uid: 21142
components:
- type: Transform
- pos: -31.5,64.5
+ pos: -56.5,-35.5
parent: 2
- - uid: 31499
+ - uid: 21143
components:
- type: Transform
- pos: -30.5,64.5
+ pos: -57.5,-35.5
parent: 2
- - uid: 31500
+ - uid: 21144
components:
- type: Transform
- pos: -9.5,-29.5
+ pos: -58.5,-35.5
parent: 2
- - uid: 31505
+ - uid: 21145
components:
- type: Transform
- pos: -26.5,54.5
+ pos: -58.5,-34.5
parent: 2
- - uid: 31512
+ - uid: 21146
components:
- type: Transform
- pos: -41.5,68.5
+ pos: -58.5,-33.5
parent: 2
- - uid: 31549
+ - uid: 21147
components:
- type: Transform
- pos: -48.5,62.5
+ pos: -57.5,-33.5
parent: 2
- - uid: 31550
+ - uid: 21148
components:
- type: Transform
- pos: -48.5,63.5
+ pos: -56.5,-33.5
parent: 2
- - uid: 31551
+ - uid: 21149
components:
- type: Transform
- pos: -48.5,64.5
+ pos: -59.5,-34.5
parent: 2
- - uid: 31552
+ - uid: 21150
components:
- type: Transform
- pos: -48.5,65.5
+ pos: -60.5,-34.5
parent: 2
- - uid: 31553
+ - uid: 21151
components:
- type: Transform
- pos: -48.5,66.5
+ pos: -61.5,-34.5
parent: 2
- - uid: 31554
+ - uid: 21152
components:
- type: Transform
- pos: -48.5,67.5
+ pos: -62.5,-34.5
parent: 2
- - uid: 31555
+ - uid: 21153
components:
- type: Transform
- pos: -48.5,68.5
+ pos: -63.5,-34.5
parent: 2
- - uid: 31556
+ - uid: 21154
components:
- type: Transform
- pos: -48.5,69.5
+ pos: -64.5,-34.5
parent: 2
- - uid: 31557
+ - uid: 21155
components:
- type: Transform
- pos: -48.5,70.5
+ pos: -65.5,-34.5
parent: 2
- - uid: 31558
+ - uid: 21156
components:
- type: Transform
- pos: -47.5,70.5
+ pos: -66.5,-34.5
parent: 2
- - uid: 31559
+ - uid: 21157
components:
- type: Transform
- pos: -46.5,70.5
+ pos: -67.5,-34.5
parent: 2
- - uid: 31564
+ - uid: 21158
components:
- type: Transform
- pos: -56.5,44.5
+ pos: -66.5,-33.5
parent: 2
- - uid: 31565
+ - uid: 21159
components:
- type: Transform
- pos: -57.5,44.5
+ pos: -66.5,-32.5
parent: 2
- - uid: 31566
+ - uid: 21160
components:
- type: Transform
- pos: -58.5,44.5
+ pos: -66.5,-31.5
parent: 2
- - uid: 31567
+ - uid: 21161
components:
- type: Transform
- pos: -59.5,44.5
+ pos: -66.5,-30.5
parent: 2
- - uid: 31568
+ - uid: 21166
components:
- type: Transform
- pos: -59.5,45.5
+ pos: -51.5,-35.5
parent: 2
- - uid: 31569
+ - uid: 21179
components:
- type: Transform
- pos: -59.5,46.5
+ pos: -62.5,-16.5
parent: 2
- - uid: 31570
+ - uid: 21180
components:
- type: Transform
- pos: -59.5,47.5
+ pos: -63.5,-16.5
parent: 2
- - uid: 31571
+ - uid: 21181
components:
- type: Transform
- pos: -59.5,48.5
+ pos: -64.5,-16.5
parent: 2
- - uid: 31572
+ - uid: 21182
components:
- type: Transform
- pos: -59.5,49.5
+ pos: -65.5,-16.5
parent: 2
- - uid: 31573
+ - uid: 21279
components:
- type: Transform
- pos: -59.5,50.5
+ pos: 78.5,6.5
parent: 2
- - uid: 31574
+ - uid: 21280
components:
- type: Transform
- pos: -59.5,51.5
+ pos: 80.5,6.5
parent: 2
- - uid: 31575
+ - uid: 21284
components:
- type: Transform
- pos: -59.5,52.5
+ pos: 18.5,48.5
parent: 2
- - uid: 31584
+ - uid: 21286
components:
- type: Transform
- pos: 75.5,-17.5
+ pos: -32.5,22.5
parent: 2
- - uid: 31585
+ - uid: 21287
components:
- type: Transform
- pos: 75.5,-18.5
+ pos: -32.5,21.5
parent: 2
- - uid: 31586
+ - uid: 21288
components:
- type: Transform
- pos: 68.5,-5.5
+ pos: -32.5,20.5
parent: 2
- - uid: 31587
+ - uid: 21289
components:
- type: Transform
- pos: 69.5,-5.5
+ pos: -31.5,20.5
parent: 2
- - uid: 31588
+ - uid: 21290
components:
- type: Transform
- pos: 70.5,-5.5
+ pos: -30.5,20.5
parent: 2
- - uid: 31589
+ - uid: 21291
components:
- type: Transform
- pos: 71.5,-5.5
+ pos: -29.5,20.5
parent: 2
- - uid: 31590
+ - uid: 21292
components:
- type: Transform
- pos: 72.5,-5.5
+ pos: -28.5,20.5
parent: 2
- - uid: 31591
+ - uid: 21293
components:
- type: Transform
- pos: 71.5,-6.5
+ pos: -27.5,20.5
parent: 2
- - uid: 31592
+ - uid: 21294
components:
- type: Transform
- pos: 71.5,-7.5
+ pos: -26.5,20.5
parent: 2
- - uid: 31597
+ - uid: 21295
components:
- type: Transform
- pos: -52.5,53.5
+ pos: -25.5,20.5
parent: 2
- - uid: 31598
+ - uid: 21296
components:
- type: Transform
- pos: -52.5,52.5
+ pos: -24.5,20.5
parent: 2
- - uid: 31599
+ - uid: 21297
components:
- type: Transform
- pos: -52.5,51.5
+ pos: -23.5,20.5
parent: 2
- - uid: 31600
+ - uid: 21298
components:
- type: Transform
- pos: -52.5,50.5
+ pos: -22.5,20.5
parent: 2
- - uid: 31601
+ - uid: 21299
components:
- type: Transform
- pos: -52.5,49.5
+ pos: -21.5,20.5
parent: 2
- - uid: 31602
+ - uid: 21300
components:
- type: Transform
- pos: -52.5,48.5
+ pos: -20.5,20.5
parent: 2
- - uid: 31603
+ - uid: 21301
components:
- type: Transform
- pos: -52.5,47.5
+ pos: -19.5,20.5
parent: 2
- - uid: 31604
+ - uid: 21302
components:
- type: Transform
- pos: -52.5,46.5
+ pos: -18.5,20.5
parent: 2
- - uid: 31605
+ - uid: 21303
components:
- type: Transform
- pos: -52.5,45.5
+ pos: -17.5,20.5
parent: 2
- - uid: 31612
+ - uid: 21304
components:
- type: Transform
- pos: 75.5,32.5
+ pos: -16.5,20.5
parent: 2
- - uid: 31633
+ - uid: 21305
components:
- type: Transform
- pos: -40.5,-43.5
+ pos: -15.5,20.5
parent: 2
- - uid: 31634
+ - uid: 21306
components:
- type: Transform
- pos: -48.5,-45.5
+ pos: -14.5,20.5
parent: 2
- - uid: 31635
+ - uid: 21307
components:
- type: Transform
- pos: -36.5,-41.5
+ pos: -13.5,20.5
parent: 2
- - uid: 31639
+ - uid: 21308
components:
- type: Transform
- pos: -35.5,-41.5
+ pos: -12.5,20.5
parent: 2
- - uid: 31643
+ - uid: 21309
components:
- type: Transform
- pos: -20.5,-43.5
+ pos: -11.5,20.5
parent: 2
- - uid: 31644
+ - uid: 21310
components:
- type: Transform
- pos: -45.5,-43.5
+ pos: -10.5,20.5
parent: 2
- - uid: 31646
+ - uid: 21311
components:
- type: Transform
- pos: -41.5,-43.5
+ pos: -9.5,20.5
parent: 2
- - uid: 31647
+ - uid: 21312
components:
- type: Transform
- pos: -21.5,-43.5
+ pos: -8.5,20.5
parent: 2
- - uid: 31648
+ - uid: 21313
components:
- type: Transform
- pos: -18.5,-45.5
+ pos: -7.5,20.5
parent: 2
- - uid: 31649
+ - uid: 21314
components:
- type: Transform
- pos: -47.5,-43.5
+ pos: -6.5,20.5
parent: 2
- - uid: 31650
+ - uid: 21315
components:
- type: Transform
- pos: -18.5,-47.5
+ pos: -6.5,19.5
parent: 2
- - uid: 31651
+ - uid: 21316
components:
- type: Transform
- pos: -48.5,-44.5
+ pos: -5.5,19.5
parent: 2
- - uid: 31652
+ - uid: 21317
components:
- type: Transform
- pos: -16.5,-46.5
+ pos: -4.5,19.5
parent: 2
- - uid: 31653
+ - uid: 21318
components:
- type: Transform
- pos: -48.5,-43.5
+ pos: -3.5,19.5
parent: 2
- - uid: 31654
+ - uid: 21319
components:
- type: Transform
- pos: -16.5,-47.5
+ pos: -2.5,19.5
parent: 2
- - uid: 31655
+ - uid: 21320
components:
- type: Transform
- pos: -34.5,-41.5
+ pos: -1.5,19.5
parent: 2
- - uid: 31656
+ - uid: 21321
components:
- type: Transform
- pos: -31.5,-41.5
+ pos: -0.5,19.5
parent: 2
- - uid: 31657
+ - uid: 21322
components:
- type: Transform
- pos: -37.5,-43.5
+ pos: 0.5,19.5
parent: 2
- - uid: 31659
+ - uid: 21323
components:
- type: Transform
- pos: -50.5,-42.5
+ pos: 1.5,19.5
parent: 2
- - uid: 31660
+ - uid: 21325
components:
- type: Transform
- pos: -38.5,-41.5
+ pos: 3.5,19.5
parent: 2
- - uid: 31661
+ - uid: 21326
components:
- type: Transform
- pos: -25.5,-41.5
+ pos: 4.5,19.5
parent: 2
- - uid: 31662
+ - uid: 21327
components:
- type: Transform
- pos: -22.5,-41.5
+ pos: 5.5,19.5
parent: 2
- - uid: 31663
+ - uid: 21328
components:
- type: Transform
- pos: -33.5,-41.5
+ pos: 6.5,19.5
parent: 2
- - uid: 31664
+ - uid: 21329
components:
- type: Transform
- pos: -29.5,-41.5
+ pos: 7.5,19.5
parent: 2
- - uid: 31665
+ - uid: 21330
components:
- type: Transform
- pos: -48.5,-49.5
+ pos: 8.5,19.5
parent: 2
- - uid: 31666
+ - uid: 21331
components:
- type: Transform
- pos: -27.5,-41.5
+ pos: 9.5,19.5
parent: 2
- - uid: 31667
+ - uid: 21332
components:
- type: Transform
- pos: -50.5,-46.5
+ pos: 10.5,19.5
parent: 2
- - uid: 31668
+ - uid: 21340
components:
- type: Transform
- pos: -48.5,-48.5
+ pos: 18.5,19.5
parent: 2
- - uid: 31669
+ - uid: 21341
components:
- type: Transform
- pos: -50.5,-48.5
+ pos: 19.5,19.5
parent: 2
- - uid: 31670
+ - uid: 21342
components:
- type: Transform
- pos: -38.5,-43.5
+ pos: 20.5,19.5
parent: 2
- - uid: 31675
+ - uid: 21343
components:
- type: Transform
- pos: -20.5,-41.5
+ pos: 21.5,19.5
parent: 2
- - uid: 31680
+ - uid: 21344
components:
- type: Transform
- pos: -19.5,-41.5
+ pos: 22.5,19.5
parent: 2
- - uid: 31691
+ - uid: 21345
components:
- type: Transform
- pos: -50.5,-44.5
+ pos: 23.5,19.5
parent: 2
- - uid: 31692
+ - uid: 21346
components:
- type: Transform
- pos: -50.5,-47.5
+ pos: 24.5,19.5
parent: 2
- - uid: 31693
+ - uid: 21347
components:
- type: Transform
- pos: -50.5,-45.5
+ pos: 25.5,19.5
parent: 2
- - uid: 31694
+ - uid: 21348
components:
- type: Transform
- pos: -49.5,-49.5
+ pos: 26.5,19.5
parent: 2
- - uid: 31695
+ - uid: 21349
components:
- type: Transform
- pos: -50.5,-49.5
+ pos: 27.5,19.5
parent: 2
- - uid: 31696
+ - uid: 21350
components:
- type: Transform
- pos: -28.5,-41.5
+ pos: 28.5,19.5
parent: 2
- - uid: 31698
+ - uid: 21351
components:
- type: Transform
- pos: -39.5,-41.5
+ pos: 29.5,19.5
parent: 2
- - uid: 31699
+ - uid: 21352
components:
- type: Transform
- pos: -37.5,-41.5
+ pos: 30.5,19.5
parent: 2
- - uid: 31700
+ - uid: 21353
components:
- type: Transform
- pos: -24.5,-41.5
+ pos: 31.5,19.5
parent: 2
- - uid: 31701
+ - uid: 21354
components:
- type: Transform
- pos: -21.5,-41.5
+ pos: 32.5,19.5
parent: 2
- - uid: 31702
+ - uid: 21355
components:
- type: Transform
- pos: -23.5,-41.5
+ pos: 33.5,19.5
parent: 2
- - uid: 31703
+ - uid: 21356
components:
- type: Transform
- pos: -40.5,-41.5
+ pos: 34.5,19.5
parent: 2
- - uid: 31706
+ - uid: 21357
components:
- type: Transform
- pos: -30.5,-41.5
+ pos: 35.5,19.5
parent: 2
- - uid: 31707
+ - uid: 21358
components:
- type: Transform
- pos: -47.5,-41.5
+ pos: 36.5,19.5
parent: 2
- - uid: 31709
+ - uid: 21359
components:
- type: Transform
- pos: -44.5,-41.5
+ pos: 37.5,19.5
parent: 2
- - uid: 31760
+ - uid: 21365
components:
- type: Transform
- pos: -73.5,8.5
+ pos: 43.5,19.5
parent: 2
- - uid: 31772
+ - uid: 21366
components:
- type: Transform
- pos: -82.5,9.5
+ pos: 44.5,19.5
parent: 2
- - uid: 31785
+ - uid: 21367
components:
- type: Transform
- pos: -82.5,10.5
+ pos: 45.5,19.5
parent: 2
- - uid: 31801
+ - uid: 21368
components:
- type: Transform
- pos: -59.5,32.5
+ pos: 46.5,19.5
parent: 2
- - uid: 31802
+ - uid: 21369
components:
- type: Transform
- pos: -60.5,32.5
+ pos: 47.5,19.5
parent: 2
- - uid: 31803
+ - uid: 21370
components:
- type: Transform
- pos: -61.5,32.5
+ pos: 48.5,19.5
parent: 2
- - uid: 31804
+ - uid: 21371
components:
- type: Transform
- pos: -62.5,32.5
+ pos: 48.5,18.5
parent: 2
- - uid: 31805
+ - uid: 21372
components:
- type: Transform
- pos: -63.5,32.5
+ pos: 48.5,17.5
parent: 2
- - uid: 31806
+ - uid: 21373
components:
- type: Transform
- pos: -63.5,33.5
+ pos: 49.5,16.5
parent: 2
- - uid: 31807
+ - uid: 21374
components:
- type: Transform
- pos: -61.5,32.5
+ pos: 49.5,15.5
parent: 2
- - uid: 31808
+ - uid: 21375
components:
- type: Transform
- pos: -61.5,31.5
+ pos: 49.5,14.5
parent: 2
- - uid: 31809
+ - uid: 21376
components:
- type: Transform
- pos: -61.5,30.5
+ pos: 49.5,13.5
parent: 2
- - uid: 31810
+ - uid: 21377
components:
- type: Transform
- pos: -61.5,29.5
+ pos: 49.5,12.5
parent: 2
- - uid: 31811
+ - uid: 21378
components:
- type: Transform
- pos: -61.5,28.5
+ pos: 49.5,11.5
parent: 2
- - uid: 31812
+ - uid: 21379
components:
- type: Transform
- pos: -61.5,27.5
+ pos: 49.5,10.5
parent: 2
- - uid: 31813
+ - uid: 21380
components:
- type: Transform
- pos: -61.5,26.5
+ pos: 49.5,9.5
parent: 2
- - uid: 31814
+ - uid: 21381
components:
- type: Transform
- pos: -61.5,25.5
+ pos: 49.5,8.5
parent: 2
- - uid: 31815
+ - uid: 21382
components:
- type: Transform
- pos: -61.5,24.5
+ pos: 49.5,7.5
parent: 2
- - uid: 31816
+ - uid: 21383
components:
- type: Transform
- pos: -61.5,23.5
+ pos: 49.5,6.5
parent: 2
- - uid: 31817
+ - uid: 21384
components:
- type: Transform
- pos: -61.5,22.5
+ pos: 49.5,5.5
parent: 2
- - uid: 31818
+ - uid: 21385
components:
- type: Transform
- pos: -62.5,22.5
+ pos: 49.5,4.5
parent: 2
- - uid: 31819
+ - uid: 21386
components:
- type: Transform
- pos: -63.5,22.5
+ pos: 49.5,3.5
parent: 2
- - uid: 31820
+ - uid: 21387
components:
- type: Transform
- pos: -64.5,22.5
+ pos: 50.5,3.5
parent: 2
- - uid: 31821
+ - uid: 21388
components:
- type: Transform
- pos: -65.5,22.5
+ pos: 50.5,2.5
parent: 2
- - uid: 31822
+ - uid: 21389
components:
- type: Transform
- pos: -65.5,23.5
+ pos: 50.5,1.5
parent: 2
- - uid: 31823
+ - uid: 21390
components:
- type: Transform
- pos: -65.5,24.5
+ pos: 50.5,0.5
parent: 2
- - uid: 31824
+ - uid: 21391
components:
- type: Transform
- pos: -65.5,25.5
+ pos: 50.5,-0.5
parent: 2
- - uid: 31825
+ - uid: 21392
components:
- type: Transform
- pos: -65.5,26.5
+ pos: 50.5,-1.5
parent: 2
- - uid: 31826
+ - uid: 21393
components:
- type: Transform
- pos: -65.5,27.5
+ pos: 50.5,-2.5
parent: 2
- - uid: 31827
+ - uid: 21394
components:
- type: Transform
- pos: -64.5,27.5
+ pos: 50.5,-3.5
parent: 2
- - uid: 31828
+ - uid: 21395
components:
- type: Transform
- pos: -63.5,27.5
+ pos: 50.5,-4.5
parent: 2
- - uid: 31829
+ - uid: 21396
components:
- type: Transform
- pos: -62.5,27.5
+ pos: 50.5,-5.5
parent: 2
- - uid: 31830
+ - uid: 21397
components:
- type: Transform
- pos: -60.5,27.5
+ pos: 50.5,-6.5
parent: 2
- - uid: 31831
+ - uid: 21398
components:
- type: Transform
- pos: -59.5,27.5
+ pos: 50.5,-7.5
parent: 2
- - uid: 31832
+ - uid: 21399
components:
- type: Transform
- pos: -58.5,27.5
+ pos: 50.5,-8.5
parent: 2
- - uid: 31833
+ - uid: 21401
components:
- type: Transform
- pos: -57.5,27.5
+ pos: 50.5,25.5
parent: 2
- - uid: 31834
+ - uid: 21402
components:
- type: Transform
- pos: -57.5,26.5
+ pos: 50.5,-11.5
parent: 2
- - uid: 31835
+ - uid: 21403
components:
- type: Transform
- pos: -57.5,25.5
+ pos: 50.5,-12.5
parent: 2
- - uid: 31836
+ - uid: 21404
components:
- type: Transform
- pos: -57.5,24.5
+ pos: 50.5,-13.5
parent: 2
- - uid: 31837
+ - uid: 21405
components:
- type: Transform
- pos: -57.5,23.5
+ pos: 49.5,-13.5
parent: 2
- - uid: 31838
+ - uid: 21406
components:
- type: Transform
- pos: -57.5,22.5
+ pos: 49.5,-14.5
parent: 2
- - uid: 31839
+ - uid: 21407
components:
- type: Transform
- pos: -58.5,22.5
+ pos: 48.5,-14.5
parent: 2
- - uid: 31840
+ - uid: 21408
components:
- type: Transform
- pos: -59.5,22.5
+ pos: 48.5,-15.5
parent: 2
- - uid: 31841
+ - uid: 21409
components:
- type: Transform
- pos: -60.5,22.5
+ pos: 47.5,-15.5
parent: 2
- - uid: 31842
+ - uid: 21410
components:
- type: Transform
- pos: -61.5,22.5
+ pos: 47.5,-16.5
parent: 2
- - uid: 31867
+ - uid: 21411
components:
- type: Transform
- pos: -57.5,18.5
+ pos: 46.5,-16.5
parent: 2
- - uid: 31868
+ - uid: 21412
components:
- type: Transform
- pos: -57.5,19.5
+ pos: 46.5,-17.5
parent: 2
- - uid: 31869
+ - uid: 21413
components:
- type: Transform
- pos: -57.5,20.5
+ pos: 45.5,-17.5
parent: 2
- - uid: 31870
+ - uid: 21414
components:
- type: Transform
- pos: -58.5,20.5
+ pos: 44.5,-17.5
parent: 2
- - uid: 31871
+ - uid: 21415
components:
- type: Transform
- pos: -59.5,20.5
+ pos: 43.5,-17.5
parent: 2
- - uid: 31872
+ - uid: 21416
components:
- type: Transform
- pos: -60.5,20.5
+ pos: 42.5,-17.5
parent: 2
- - uid: 31873
+ - uid: 21417
components:
- type: Transform
- pos: -61.5,20.5
+ pos: 41.5,-17.5
parent: 2
- - uid: 31874
+ - uid: 21418
components:
- type: Transform
- pos: -62.5,20.5
+ pos: 40.5,-17.5
parent: 2
- - uid: 31875
+ - uid: 21419
components:
- type: Transform
- pos: -63.5,20.5
+ pos: 39.5,-17.5
parent: 2
- - uid: 31876
+ - uid: 21420
components:
- type: Transform
- pos: -63.5,19.5
+ pos: 39.5,-16.5
parent: 2
- - uid: 31877
+ - uid: 21421
components:
- type: Transform
- pos: -63.5,18.5
+ pos: 38.5,-16.5
parent: 2
- - uid: 31878
+ - uid: 21422
components:
- type: Transform
- pos: -63.5,17.5
+ pos: -46.5,-8.5
parent: 2
- - uid: 31879
+ - uid: 21423
components:
- type: Transform
- pos: -63.5,16.5
+ pos: 38.5,-15.5
parent: 2
- - uid: 31880
+ - uid: 21424
components:
- type: Transform
- pos: -63.5,15.5
+ pos: 37.5,-15.5
parent: 2
- - uid: 31881
+ - uid: 21425
components:
- type: Transform
- pos: -62.5,15.5
+ pos: 36.5,-15.5
parent: 2
- - uid: 31882
+ - uid: 21426
components:
- type: Transform
- pos: -61.5,15.5
+ pos: 35.5,-15.5
parent: 2
- - uid: 31883
+ - uid: 21427
components:
- type: Transform
- pos: -60.5,15.5
+ pos: 34.5,-15.5
parent: 2
- - uid: 31884
+ - uid: 21428
components:
- type: Transform
- pos: -59.5,15.5
+ pos: 33.5,-15.5
parent: 2
- - uid: 31885
+ - uid: 21429
components:
- type: Transform
- pos: -58.5,15.5
+ pos: 32.5,-15.5
parent: 2
- - uid: 31886
+ - uid: 21430
components:
- type: Transform
- pos: -57.5,15.5
+ pos: 31.5,-15.5
parent: 2
- - uid: 31892
+ - uid: 21431
components:
- type: Transform
- pos: 56.5,-37.5
+ pos: 30.5,-15.5
parent: 2
- - uid: 31893
+ - uid: 21432
components:
- type: Transform
- pos: 54.5,-40.5
+ pos: 29.5,-15.5
parent: 2
- - uid: 31896
+ - uid: 21433
components:
- type: Transform
- pos: 56.5,-38.5
+ pos: 28.5,-15.5
parent: 2
- - uid: 31897
+ - uid: 21434
components:
- type: Transform
- pos: 56.5,-39.5
+ pos: 27.5,-15.5
parent: 2
- - uid: 31898
+ - uid: 21435
components:
- type: Transform
- pos: 56.5,-40.5
+ pos: 26.5,-15.5
parent: 2
- - uid: 31927
+ - uid: 21436
components:
- type: Transform
- pos: 46.5,-34.5
+ pos: 25.5,-15.5
parent: 2
- - uid: 31928
+ - uid: 21437
components:
- type: Transform
- pos: 46.5,-35.5
+ pos: 24.5,-15.5
parent: 2
- - uid: 31929
+ - uid: 21438
components:
- type: Transform
- pos: 46.5,-36.5
+ pos: 23.5,-15.5
parent: 2
- - uid: 31930
+ - uid: 21439
components:
- type: Transform
- pos: 46.5,-37.5
+ pos: 22.5,-15.5
parent: 2
- - uid: 31931
+ - uid: 21440
components:
- type: Transform
- pos: 46.5,-38.5
+ pos: 21.5,-15.5
parent: 2
- - uid: 31932
+ - uid: 21441
components:
- type: Transform
- pos: 46.5,-39.5
+ pos: 20.5,-15.5
parent: 2
- - uid: 31933
+ - uid: 21442
components:
- type: Transform
- pos: 46.5,-40.5
+ pos: 19.5,-15.5
parent: 2
- - uid: 31934
+ - uid: 21443
components:
- type: Transform
- pos: 82.5,1.5
+ pos: 18.5,-15.5
parent: 2
- - uid: 31935
+ - uid: 21444
components:
- type: Transform
- pos: 83.5,1.5
+ pos: 17.5,-15.5
parent: 2
- - uid: 31936
+ - uid: 21445
components:
- type: Transform
- pos: 84.5,1.5
+ pos: 16.5,-15.5
parent: 2
- - uid: 31937
+ - uid: 21446
components:
- type: Transform
- pos: 85.5,1.5
+ pos: 15.5,-15.5
parent: 2
- - uid: 31938
+ - uid: 21447
components:
- type: Transform
- pos: 86.5,1.5
+ pos: 14.5,-15.5
parent: 2
- - uid: 31939
+ - uid: 21448
components:
- type: Transform
- pos: 87.5,1.5
+ pos: 13.5,-15.5
parent: 2
- - uid: 31940
+ - uid: 21449
components:
- type: Transform
- pos: 87.5,0.5
+ pos: 12.5,-15.5
parent: 2
- - uid: 31941
+ - uid: 21450
components:
- type: Transform
- pos: 87.5,-0.5
+ pos: 11.5,-15.5
parent: 2
- - uid: 31942
+ - uid: 21451
components:
- type: Transform
- pos: 87.5,-1.5
+ pos: 10.5,-15.5
parent: 2
- - uid: 31943
+ - uid: 21452
components:
- type: Transform
- pos: 87.5,-2.5
+ pos: 9.5,-15.5
parent: 2
- - uid: 31944
+ - uid: 21453
components:
- type: Transform
- pos: 87.5,-3.5
+ pos: 8.5,-15.5
parent: 2
- - uid: 31945
+ - uid: 21454
components:
- type: Transform
- pos: 87.5,-4.5
+ pos: 7.5,-15.5
parent: 2
- - uid: 31946
+ - uid: 21455
components:
- type: Transform
- pos: 87.5,-5.5
+ pos: 6.5,-15.5
parent: 2
- - uid: 31947
+ - uid: 21456
components:
- type: Transform
- pos: 87.5,-6.5
+ pos: 5.5,-15.5
parent: 2
- - uid: 31948
+ - uid: 21457
components:
- type: Transform
- pos: 87.5,-7.5
+ pos: 4.5,-15.5
parent: 2
- - uid: 31949
+ - uid: 21458
components:
- type: Transform
- pos: 87.5,-8.5
+ pos: 3.5,-15.5
parent: 2
- - uid: 31950
+ - uid: 21459
components:
- type: Transform
- pos: 86.5,-8.5
+ pos: 2.5,-15.5
parent: 2
- - uid: 31951
+ - uid: 21460
components:
- type: Transform
- pos: 85.5,-8.5
+ pos: 1.5,-15.5
parent: 2
- - uid: 31952
+ - uid: 21461
components:
- type: Transform
- pos: 84.5,-8.5
+ pos: 1.5,-16.5
parent: 2
- - uid: 31953
+ - uid: 21468
components:
- type: Transform
- pos: 83.5,-8.5
+ pos: 1.5,-15.5
parent: 2
- - uid: 31954
+ - uid: 21469
components:
- type: Transform
- pos: 82.5,-8.5
+ pos: 1.5,-14.5
parent: 2
- - uid: 31955
+ - uid: 21470
components:
- type: Transform
- pos: 81.5,-8.5
+ pos: 1.5,-13.5
parent: 2
- - uid: 31956
+ - uid: 21471
components:
- type: Transform
- pos: 80.5,-8.5
+ pos: 1.5,-12.5
parent: 2
- - uid: 31957
+ - uid: 21472
components:
- type: Transform
- pos: 79.5,-8.5
+ pos: 1.5,-11.5
parent: 2
- - uid: 31959
+ - uid: 21473
components:
- type: Transform
- pos: 55.5,-40.5
+ pos: 1.5,-10.5
parent: 2
- - uid: 31961
+ - uid: 21474
components:
- type: Transform
- pos: 46.5,-41.5
+ pos: 1.5,-9.5
parent: 2
- - uid: 31962
+ - uid: 21475
components:
- type: Transform
- pos: 47.5,-41.5
+ pos: 1.5,-8.5
parent: 2
- - uid: 31963
+ - uid: 21476
components:
- type: Transform
- pos: 48.5,-41.5
+ pos: 1.5,-7.5
parent: 2
- - uid: 31964
+ - uid: 21477
components:
- type: Transform
- pos: 49.5,-41.5
+ pos: 1.5,-6.5
parent: 2
- - uid: 31965
+ - uid: 21478
components:
- type: Transform
- pos: 50.5,-41.5
+ pos: 1.5,-5.5
parent: 2
- - uid: 31966
+ - uid: 21480
components:
- type: Transform
- pos: 51.5,-41.5
+ pos: 0.5,-15.5
parent: 2
- - uid: 31967
+ - uid: 21481
components:
- type: Transform
- pos: 52.5,-41.5
+ pos: -0.5,-15.5
parent: 2
- - uid: 31968
+ - uid: 21482
components:
- type: Transform
- pos: 52.5,-40.5
+ pos: -1.5,-15.5
parent: 2
- - uid: 31969
+ - uid: 21483
components:
- type: Transform
- pos: 52.5,-39.5
+ pos: -2.5,-15.5
parent: 2
- - uid: 31970
+ - uid: 21484
components:
- type: Transform
- pos: 52.5,-38.5
+ pos: -3.5,-15.5
parent: 2
- - uid: 31971
+ - uid: 21485
components:
- type: Transform
- pos: 52.5,-37.5
+ pos: -4.5,-15.5
parent: 2
- - uid: 31972
+ - uid: 21486
components:
- type: Transform
- pos: 52.5,-36.5
+ pos: -5.5,-15.5
parent: 2
- - uid: 31973
+ - uid: 21487
components:
- type: Transform
- pos: 52.5,-35.5
+ pos: -6.5,-15.5
parent: 2
- - uid: 31974
+ - uid: 21488
components:
- type: Transform
- pos: 51.5,-35.5
+ pos: -7.5,-15.5
parent: 2
- - uid: 31975
+ - uid: 21489
components:
- type: Transform
- pos: 50.5,-35.5
+ pos: -8.5,-15.5
parent: 2
- - uid: 31976
+ - uid: 21490
components:
- type: Transform
- pos: 49.5,-35.5
+ pos: -9.5,-15.5
parent: 2
- - uid: 31977
+ - uid: 21491
components:
- type: Transform
- pos: 48.5,-35.5
+ pos: -10.5,-15.5
parent: 2
- - uid: 31978
+ - uid: 21492
components:
- type: Transform
- pos: 47.5,-35.5
+ pos: -11.5,-15.5
parent: 2
- - uid: 31979
+ - uid: 21493
components:
- type: Transform
- pos: 45.5,-35.5
+ pos: -12.5,-15.5
parent: 2
- - uid: 31980
+ - uid: 21494
components:
- type: Transform
- pos: 44.5,-35.5
+ pos: -13.5,-15.5
parent: 2
- - uid: 31981
+ - uid: 21495
components:
- type: Transform
- pos: 43.5,-35.5
+ pos: -14.5,-15.5
parent: 2
- - uid: 31982
+ - uid: 21496
components:
- type: Transform
- pos: 42.5,-35.5
+ pos: -15.5,-15.5
parent: 2
- - uid: 31983
+ - uid: 21497
components:
- type: Transform
- pos: 41.5,-35.5
+ pos: -16.5,-15.5
parent: 2
- - uid: 31984
+ - uid: 21498
components:
- type: Transform
- pos: 40.5,-35.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 31985
+ - uid: 21499
components:
- type: Transform
- pos: 40.5,-36.5
+ pos: -18.5,-15.5
parent: 2
- - uid: 31986
+ - uid: 21500
components:
- type: Transform
- pos: 40.5,-37.5
+ pos: -19.5,-15.5
parent: 2
- - uid: 31987
+ - uid: 21501
components:
- type: Transform
- pos: 40.5,-38.5
+ pos: -20.5,-15.5
parent: 2
- - uid: 31988
+ - uid: 21502
components:
- type: Transform
- pos: 40.5,-39.5
+ pos: -21.5,-15.5
parent: 2
- - uid: 31989
+ - uid: 21503
components:
- type: Transform
- pos: 40.5,-40.5
+ pos: -22.5,-15.5
parent: 2
- - uid: 31990
+ - uid: 21504
components:
- type: Transform
- pos: 40.5,-41.5
+ pos: -23.5,-15.5
parent: 2
- - uid: 31991
+ - uid: 21505
components:
- type: Transform
- pos: 41.5,-41.5
+ pos: -24.5,-15.5
parent: 2
- - uid: 31992
+ - uid: 21506
components:
- type: Transform
- pos: 42.5,-41.5
+ pos: -25.5,-15.5
parent: 2
- - uid: 31993
+ - uid: 21507
components:
- type: Transform
- pos: 43.5,-41.5
+ pos: -26.5,-15.5
parent: 2
- - uid: 31994
+ - uid: 21508
components:
- type: Transform
- pos: 44.5,-41.5
+ pos: -27.5,-15.5
parent: 2
- - uid: 31995
+ - uid: 21509
components:
- type: Transform
- pos: 45.5,-41.5
+ pos: -28.5,-15.5
parent: 2
- - uid: 32012
+ - uid: 21510
components:
- type: Transform
- pos: -89.5,-55.5
+ pos: -29.5,-15.5
parent: 2
- - uid: 32013
+ - uid: 21511
components:
- type: Transform
- pos: -89.5,-59.5
+ pos: -30.5,-15.5
parent: 2
- - uid: 32014
+ - uid: 21512
components:
- type: Transform
- pos: -89.5,-41.5
+ pos: -31.5,-15.5
parent: 2
- - uid: 32015
+ - uid: 21513
components:
- type: Transform
- pos: -89.5,-42.5
+ pos: -32.5,-15.5
parent: 2
- - uid: 32016
+ - uid: 21517
components:
- type: Transform
- pos: -89.5,-52.5
+ pos: -33.5,-20.5
parent: 2
- - uid: 32017
+ - uid: 21518
components:
- type: Transform
- pos: -89.5,-54.5
+ pos: -33.5,-21.5
parent: 2
- - uid: 32020
+ - uid: 21519
components:
- type: Transform
- pos: -66.5,-29.5
+ pos: -33.5,-22.5
parent: 2
- - uid: 32023
+ - uid: 21520
components:
- type: Transform
- pos: -64.5,-19.5
+ pos: -33.5,-23.5
parent: 2
- - uid: 32024
+ - uid: 21521
components:
- type: Transform
- pos: -65.5,-19.5
+ pos: -33.5,-24.5
parent: 2
- - uid: 32025
+ - uid: 21522
components:
- type: Transform
- pos: -66.5,-19.5
+ pos: -33.5,-25.5
parent: 2
- - uid: 32026
+ - uid: 21523
components:
- type: Transform
- pos: -67.5,-19.5
+ pos: -33.5,-26.5
parent: 2
- - uid: 32027
+ - uid: 21524
components:
- type: Transform
- pos: -68.5,-19.5
+ pos: -33.5,-27.5
parent: 2
- - uid: 32028
+ - uid: 21525
components:
- type: Transform
- pos: -69.5,-19.5
+ pos: -32.5,-27.5
parent: 2
- - uid: 32029
+ - uid: 21526
components:
- type: Transform
- pos: -70.5,-19.5
+ pos: -31.5,-27.5
parent: 2
- - uid: 32030
+ - uid: 21527
components:
- type: Transform
- pos: -71.5,-19.5
+ pos: -30.5,-27.5
parent: 2
- - uid: 32031
+ - uid: 21528
components:
- type: Transform
- pos: -72.5,-19.5
+ pos: -29.5,-27.5
parent: 2
- - uid: 32032
+ - uid: 21529
components:
- type: Transform
- pos: -72.5,-18.5
+ pos: -28.5,-27.5
parent: 2
- - uid: 32033
+ - uid: 21530
components:
- type: Transform
- pos: -72.5,-17.5
+ pos: -27.5,-27.5
parent: 2
- - uid: 32034
+ - uid: 21531
components:
- type: Transform
- pos: -72.5,-16.5
+ pos: -26.5,-27.5
parent: 2
- - uid: 32035
+ - uid: 21532
components:
- type: Transform
- pos: -72.5,-15.5
+ pos: -25.5,-27.5
parent: 2
- - uid: 32036
+ - uid: 21538
components:
- type: Transform
- pos: -72.5,-14.5
+ pos: -36.5,-15.5
parent: 2
- - uid: 32037
+ - uid: 21539
components:
- type: Transform
- pos: -72.5,-13.5
+ pos: -37.5,-15.5
parent: 2
- - uid: 32038
+ - uid: 21540
components:
- type: Transform
- pos: -71.5,-13.5
+ pos: -38.5,-15.5
parent: 2
- - uid: 32039
+ - uid: 21541
components:
- type: Transform
- pos: -70.5,-13.5
+ pos: -39.5,-15.5
parent: 2
- - uid: 32040
+ - uid: 21543
components:
- type: Transform
- pos: -69.5,-13.5
+ pos: -40.5,-14.5
parent: 2
- - uid: 32041
+ - uid: 21544
components:
- type: Transform
- pos: -68.5,-13.5
+ pos: -41.5,-14.5
parent: 2
- - uid: 32042
+ - uid: 21545
components:
- type: Transform
- pos: -67.5,-13.5
+ pos: -41.5,-13.5
parent: 2
- - uid: 32043
+ - uid: 21546
components:
- type: Transform
- pos: -66.5,-13.5
+ pos: -42.5,-13.5
parent: 2
- - uid: 32044
+ - uid: 21547
components:
- type: Transform
- pos: -65.5,-13.5
+ pos: -42.5,-12.5
parent: 2
- - uid: 32045
+ - uid: 21548
components:
- type: Transform
- pos: -64.5,-13.5
+ pos: -43.5,-12.5
parent: 2
- - uid: 32046
+ - uid: 21549
components:
- type: Transform
- pos: -63.5,-13.5
+ pos: -43.5,-11.5
parent: 2
- - uid: 32047
+ - uid: 21550
components:
- type: Transform
- pos: -62.5,-13.5
+ pos: -44.5,-11.5
parent: 2
- - uid: 32103
+ - uid: 21551
components:
- type: Transform
- pos: -67.5,51.5
+ pos: -44.5,-10.5
parent: 2
- - uid: 32110
+ - uid: 21552
components:
- type: Transform
- pos: -67.5,42.5
+ pos: -45.5,-10.5
parent: 2
- - uid: 32113
+ - uid: 21553
components:
- type: Transform
- pos: -66.5,49.5
+ pos: -45.5,-9.5
parent: 2
- - uid: 32114
+ - uid: 21554
components:
- type: Transform
- pos: -66.5,50.5
+ pos: -46.5,-9.5
parent: 2
- - uid: 32115
+ - uid: 21555
components:
- type: Transform
- pos: -66.5,51.5
+ pos: -46.5,-7.5
parent: 2
- - uid: 32116
+ - uid: 21556
components:
- type: Transform
- pos: -65.5,51.5
+ pos: -46.5,-6.5
parent: 2
- - uid: 32117
+ - uid: 21557
components:
- type: Transform
- pos: -89.5,-58.5
+ pos: -46.5,-5.5
parent: 2
- - uid: 32120
+ - uid: 21558
components:
- type: Transform
- pos: -52.5,70.5
+ pos: -46.5,-4.5
parent: 2
- - uid: 32121
+ - uid: 21559
components:
- type: Transform
- pos: -45.5,74.5
+ pos: -46.5,-3.5
parent: 2
- - uid: 32126
+ - uid: 21560
components:
- type: Transform
- pos: -68.5,51.5
+ pos: -46.5,-2.5
parent: 2
- - uid: 32127
+ - uid: 21561
components:
- type: Transform
- pos: -69.5,51.5
+ pos: -46.5,-1.5
parent: 2
- - uid: 32128
+ - uid: 21562
components:
- type: Transform
- pos: -70.5,51.5
+ pos: -46.5,-0.5
parent: 2
- - uid: 32129
+ - uid: 21563
components:
- type: Transform
- pos: -71.5,51.5
+ pos: -46.5,0.5
parent: 2
- - uid: 32130
+ - uid: 21564
components:
- type: Transform
- pos: -72.5,51.5
+ pos: -46.5,1.5
parent: 2
- - uid: 32131
+ - uid: 21565
components:
- type: Transform
- pos: -73.5,51.5
+ pos: -46.5,2.5
parent: 2
- - uid: 32132
+ - uid: 21566
components:
- type: Transform
- pos: -74.5,51.5
+ pos: -46.5,3.5
parent: 2
- - uid: 32133
+ - uid: 21567
components:
- type: Transform
- pos: -75.5,51.5
+ pos: -46.5,4.5
parent: 2
- - uid: 32134
+ - uid: 21568
components:
- type: Transform
- pos: -76.5,51.5
+ pos: -45.5,4.5
parent: 2
- - uid: 32135
+ - uid: 21570
components:
- type: Transform
- pos: -77.5,51.5
+ pos: -45.5,5.5
parent: 2
- - uid: 32136
+ - uid: 21571
components:
- type: Transform
- pos: -78.5,51.5
+ pos: -45.5,6.5
parent: 2
- - uid: 32137
+ - uid: 21572
components:
- type: Transform
- pos: -79.5,51.5
+ pos: -45.5,7.5
parent: 2
- - uid: 32138
+ - uid: 21573
components:
- type: Transform
- pos: -80.5,51.5
+ pos: -45.5,8.5
parent: 2
- - uid: 32139
+ - uid: 21574
components:
- type: Transform
- pos: -81.5,51.5
+ pos: -40.5,-16.5
parent: 2
- - uid: 32141
+ - uid: 21576
components:
- type: Transform
- pos: -89.5,52.5
+ pos: -44.5,10.5
parent: 2
- - uid: 32275
+ - uid: 21577
components:
- type: Transform
- pos: -89.5,-46.5
+ pos: -44.5,11.5
parent: 2
- - uid: 32276
+ - uid: 21578
components:
- type: Transform
- pos: -89.5,-39.5
+ pos: -44.5,12.5
parent: 2
- - uid: 32315
+ - uid: 21579
components:
- type: Transform
- pos: -89.5,-40.5
+ pos: -44.5,13.5
parent: 2
- - uid: 32320
+ - uid: 21580
components:
- type: Transform
- pos: -89.5,-43.5
+ pos: -44.5,14.5
parent: 2
- - uid: 32322
+ - uid: 21581
components:
- type: Transform
- pos: -115.5,66.5
+ pos: -44.5,15.5
parent: 2
- - uid: 32337
+ - uid: 21582
components:
- type: Transform
- pos: -115.5,65.5
+ pos: -44.5,16.5
parent: 2
- - uid: 32339
+ - uid: 21583
components:
- type: Transform
- pos: -100.5,63.5
+ pos: -43.5,16.5
parent: 2
- - uid: 32340
+ - uid: 21584
components:
- type: Transform
- pos: -99.5,56.5
+ pos: -42.5,16.5
parent: 2
- - uid: 32341
+ - uid: 21585
components:
- type: Transform
- pos: -99.5,57.5
+ pos: -41.5,16.5
parent: 2
- - uid: 32342
+ - uid: 21586
components:
- type: Transform
- pos: -99.5,58.5
+ pos: -40.5,16.5
parent: 2
- - uid: 32343
+ - uid: 21587
components:
- type: Transform
- pos: -99.5,59.5
+ pos: -39.5,16.5
parent: 2
- - uid: 32344
+ - uid: 21588
components:
- type: Transform
- pos: -99.5,60.5
+ pos: -39.5,17.5
parent: 2
- - uid: 32345
+ - uid: 21589
components:
- type: Transform
- pos: -99.5,61.5
+ pos: -38.5,17.5
parent: 2
- - uid: 32346
+ - uid: 21590
components:
- type: Transform
- pos: -99.5,62.5
+ pos: -37.5,17.5
parent: 2
- - uid: 32347
+ - uid: 21595
components:
- type: Transform
- pos: -99.5,63.5
+ pos: -63.5,10.5
parent: 2
- - uid: 32348
+ - uid: 21596
components:
- type: Transform
- pos: -98.5,62.5
+ pos: -33.5,19.5
parent: 2
- - uid: 32349
+ - uid: 21597
components:
- type: Transform
- pos: -101.5,63.5
+ pos: -33.5,20.5
parent: 2
- - uid: 32350
+ - uid: 21598
components:
- type: Transform
- pos: -102.5,63.5
+ pos: -46.5,8.5
parent: 2
- - uid: 32352
+ - uid: 21599
components:
- type: Transform
- pos: -102.5,64.5
+ pos: -47.5,8.5
parent: 2
- - uid: 32353
+ - uid: 21600
components:
- type: Transform
- pos: -103.5,64.5
+ pos: -48.5,8.5
parent: 2
- - uid: 32354
+ - uid: 21601
components:
- type: Transform
- pos: -104.5,64.5
+ pos: -49.5,8.5
parent: 2
- - uid: 32355
+ - uid: 21602
components:
- type: Transform
- pos: -105.5,64.5
+ pos: -50.5,8.5
parent: 2
- - uid: 32356
+ - uid: 21603
components:
- type: Transform
- pos: -106.5,64.5
+ pos: -51.5,8.5
parent: 2
- - uid: 32357
+ - uid: 21604
components:
- type: Transform
- pos: -107.5,64.5
+ pos: -52.5,8.5
parent: 2
- - uid: 32358
+ - uid: 21605
components:
- type: Transform
- pos: -108.5,64.5
+ pos: -53.5,8.5
parent: 2
- - uid: 32359
+ - uid: 21606
components:
- type: Transform
- pos: -109.5,64.5
+ pos: -54.5,8.5
parent: 2
- - uid: 32360
+ - uid: 21607
components:
- type: Transform
- pos: -110.5,64.5
+ pos: -55.5,8.5
parent: 2
- - uid: 32361
+ - uid: 21608
components:
- type: Transform
- pos: -111.5,64.5
+ pos: -56.5,8.5
parent: 2
- - uid: 32362
+ - uid: 21609
components:
- type: Transform
- pos: -103.5,65.5
+ pos: -57.5,8.5
parent: 2
- - uid: 32364
+ - uid: 21610
components:
- type: Transform
- pos: -111.5,65.5
+ pos: -58.5,8.5
parent: 2
- - uid: 32365
+ - uid: 21611
components:
- type: Transform
- pos: -112.5,65.5
+ pos: -59.5,8.5
parent: 2
- - uid: 32366
+ - uid: 21612
components:
- type: Transform
- pos: -113.5,65.5
+ pos: -60.5,8.5
parent: 2
- - uid: 32367
+ - uid: 21613
components:
- type: Transform
- pos: -113.5,64.5
+ pos: -61.5,8.5
parent: 2
- - uid: 32368
+ - uid: 21614
components:
- type: Transform
- pos: -114.5,64.5
+ pos: 1.5,18.5
parent: 2
- - uid: 32369
+ - uid: 21615
components:
- type: Transform
- pos: -115.5,64.5
+ pos: 1.5,17.5
parent: 2
- - uid: 32370
+ - uid: 21616
components:
- type: Transform
- pos: -116.5,64.5
+ pos: 1.5,16.5
parent: 2
- - uid: 32371
+ - uid: 21617
components:
- type: Transform
- pos: -117.5,64.5
+ pos: 1.5,15.5
parent: 2
- - uid: 32372
+ - uid: 21618
components:
- type: Transform
- pos: -118.5,64.5
+ pos: 1.5,14.5
parent: 2
- - uid: 32373
+ - uid: 21619
components:
- type: Transform
- pos: -119.5,64.5
+ pos: 1.5,13.5
parent: 2
- - uid: 32374
+ - uid: 21620
components:
- type: Transform
- pos: -120.5,64.5
+ pos: 1.5,12.5
parent: 2
- - uid: 32375
+ - uid: 21621
components:
- type: Transform
- pos: -121.5,64.5
+ pos: 1.5,11.5
parent: 2
- - uid: 32376
+ - uid: 21622
components:
- type: Transform
- pos: -122.5,64.5
+ pos: 1.5,10.5
parent: 2
- - uid: 32377
+ - uid: 21623
components:
- type: Transform
- pos: -123.5,64.5
+ pos: 1.5,20.5
parent: 2
- - uid: 32378
+ - uid: 21624
components:
- type: Transform
- pos: -124.5,64.5
+ pos: 1.5,21.5
parent: 2
- - uid: 32379
+ - uid: 21625
components:
- type: Transform
- pos: -125.5,64.5
+ pos: 1.5,22.5
parent: 2
- - uid: 32380
+ - uid: 21626
components:
- type: Transform
- pos: -125.5,63.5
+ pos: -56.5,-31.5
parent: 2
- - uid: 32381
+ - uid: 21627
components:
- type: Transform
- pos: -125.5,62.5
+ pos: -57.5,-31.5
parent: 2
- - uid: 32382
+ - uid: 21628
components:
- type: Transform
- pos: -125.5,61.5
+ pos: 1.5,25.5
parent: 2
- - uid: 32383
+ - uid: 21629
components:
- type: Transform
- pos: -125.5,60.5
+ pos: 1.5,26.5
parent: 2
- - uid: 32384
+ - uid: 21630
components:
- type: Transform
- pos: -125.5,59.5
+ pos: 1.5,27.5
parent: 2
- - uid: 32385
+ - uid: 21631
components:
- type: Transform
- pos: -125.5,58.5
+ pos: 1.5,28.5
parent: 2
- - uid: 32386
+ - uid: 21632
components:
- type: Transform
- pos: -126.5,63.5
+ pos: 1.5,29.5
parent: 2
- - uid: 32387
+ - uid: 21633
components:
- type: Transform
- pos: -125.5,57.5
+ pos: 1.5,30.5
parent: 2
- - uid: 32388
+ - uid: 21634
components:
- type: Transform
- pos: -125.5,56.5
+ pos: 1.5,31.5
parent: 2
- - uid: 32389
+ - uid: 21635
components:
- type: Transform
- pos: -126.5,56.5
+ pos: 1.5,32.5
parent: 2
- - uid: 32390
+ - uid: 21636
components:
- type: Transform
- pos: -126.5,55.5
+ pos: 1.5,33.5
parent: 2
- - uid: 32391
+ - uid: 21637
components:
- type: Transform
- pos: -127.5,55.5
+ pos: 1.5,34.5
parent: 2
- - uid: 32392
+ - uid: 21638
components:
- type: Transform
- pos: -126.5,54.5
+ pos: 1.5,35.5
parent: 2
- - uid: 32393
+ - uid: 21639
components:
- type: Transform
- pos: -126.5,53.5
+ pos: 1.5,36.5
parent: 2
- - uid: 32394
+ - uid: 21640
components:
- type: Transform
- pos: -126.5,52.5
+ pos: 1.5,37.5
parent: 2
- - uid: 32395
+ - uid: 21641
components:
- type: Transform
- pos: -126.5,51.5
+ pos: 1.5,38.5
parent: 2
- - uid: 32396
+ - uid: 21642
components:
- type: Transform
- pos: -126.5,50.5
+ pos: 1.5,39.5
parent: 2
- - uid: 32397
+ - uid: 21643
components:
- type: Transform
- pos: -125.5,50.5
+ pos: 1.5,40.5
parent: 2
- - uid: 32398
+ - uid: 21644
components:
- type: Transform
- pos: -125.5,49.5
+ pos: 1.5,41.5
parent: 2
- - uid: 32399
+ - uid: 21645
components:
- type: Transform
- pos: -125.5,48.5
+ pos: 1.5,42.5
parent: 2
- - uid: 32400
+ - uid: 21646
components:
- type: Transform
- pos: -125.5,47.5
+ pos: 1.5,43.5
parent: 2
- - uid: 32401
+ - uid: 21647
components:
- type: Transform
- pos: -125.5,46.5
+ pos: 1.5,44.5
parent: 2
- - uid: 32402
+ - uid: 21648
components:
- type: Transform
- pos: -125.5,45.5
+ pos: 1.5,45.5
parent: 2
- - uid: 32403
+ - uid: 21649
components:
- type: Transform
- pos: -126.5,45.5
+ pos: 1.5,46.5
parent: 2
- - uid: 32404
+ - uid: 21650
components:
- type: Transform
- pos: -126.5,44.5
+ pos: 1.5,47.5
parent: 2
- - uid: 32405
+ - uid: 21651
components:
- type: Transform
- pos: -126.5,43.5
+ pos: 1.5,48.5
parent: 2
- - uid: 32406
+ - uid: 21652
components:
- type: Transform
- pos: -126.5,42.5
+ pos: 1.5,49.5
parent: 2
- - uid: 32407
+ - uid: 21653
components:
- type: Transform
- pos: -126.5,41.5
+ pos: 1.5,50.5
parent: 2
- - uid: 32408
+ - uid: 21654
components:
- type: Transform
- pos: -126.5,40.5
+ pos: 1.5,51.5
parent: 2
- - uid: 32409
+ - uid: 21655
components:
- type: Transform
- pos: -127.5,45.5
+ pos: 1.5,52.5
parent: 2
- - uid: 32410
+ - uid: 21656
components:
- type: Transform
- pos: -128.5,45.5
+ pos: 1.5,53.5
parent: 2
- - uid: 32411
+ - uid: 21657
components:
- type: Transform
- pos: -129.5,45.5
+ pos: 1.5,54.5
parent: 2
- - uid: 32413
+ - uid: 21658
components:
- type: Transform
- pos: -128.5,55.5
+ pos: 1.5,55.5
parent: 2
- - uid: 32414
+ - uid: 21659
components:
- type: Transform
- pos: -129.5,55.5
+ pos: 1.5,56.5
parent: 2
- - uid: 32416
+ - uid: 21660
components:
- type: Transform
- pos: -126.5,43.5
+ pos: 1.5,57.5
parent: 2
- - uid: 32417
+ - uid: 21661
components:
- type: Transform
- pos: -126.5,42.5
+ pos: 1.5,58.5
parent: 2
- - uid: 32418
+ - uid: 21662
components:
- type: Transform
- pos: -126.5,41.5
+ pos: 1.5,59.5
parent: 2
- - uid: 32419
+ - uid: 21663
components:
- type: Transform
- pos: -126.5,40.5
+ pos: 1.5,60.5
parent: 2
- - uid: 32420
+ - uid: 21664
components:
- type: Transform
- pos: -125.5,40.5
+ pos: 1.5,61.5
parent: 2
- - uid: 32421
+ - uid: 21665
components:
- type: Transform
- pos: -125.5,39.5
+ pos: 1.5,62.5
parent: 2
- - uid: 32422
+ - uid: 21666
components:
- type: Transform
- pos: -125.5,38.5
+ pos: 1.5,63.5
parent: 2
- - uid: 32423
+ - uid: 21667
components:
- type: Transform
- pos: -125.5,37.5
+ pos: 1.5,64.5
parent: 2
- - uid: 32424
+ - uid: 21668
components:
- type: Transform
- pos: -124.5,37.5
+ pos: 1.5,65.5
parent: 2
- - uid: 32425
+ - uid: 21669
components:
- type: Transform
- pos: -123.5,37.5
+ pos: 1.5,66.5
parent: 2
- - uid: 32426
+ - uid: 21670
components:
- type: Transform
- pos: -122.5,37.5
+ pos: 1.5,67.5
parent: 2
- - uid: 32427
+ - uid: 21671
components:
- type: Transform
- pos: -121.5,37.5
+ pos: 1.5,68.5
parent: 2
- - uid: 32428
+ - uid: 21672
components:
- type: Transform
- pos: -120.5,37.5
+ pos: 1.5,69.5
parent: 2
- - uid: 32429
+ - uid: 21673
components:
- type: Transform
- pos: -119.5,37.5
+ pos: 1.5,70.5
parent: 2
- - uid: 32430
+ - uid: 21674
components:
- type: Transform
- pos: -118.5,37.5
+ pos: 1.5,71.5
parent: 2
- - uid: 32431
+ - uid: 21675
components:
- type: Transform
- pos: -117.5,37.5
+ pos: 1.5,72.5
parent: 2
- - uid: 32687
+ - uid: 21676
components:
- type: Transform
- pos: 62.5,27.5
+ pos: 1.5,73.5
parent: 2
- - uid: 32688
+ - uid: 21677
components:
- type: Transform
- pos: 62.5,28.5
+ pos: 1.5,74.5
parent: 2
- - uid: 32689
+ - uid: 21678
components:
- type: Transform
- pos: 62.5,29.5
+ pos: 1.5,75.5
parent: 2
- - uid: 32690
+ - uid: 21679
components:
- type: Transform
- pos: 62.5,30.5
+ pos: 1.5,76.5
parent: 2
- - uid: 32692
+ - uid: 21680
components:
- type: Transform
- pos: 62.5,32.5
+ pos: 1.5,77.5
parent: 2
- - uid: 32693
+ - uid: 21681
components:
- type: Transform
- pos: 62.5,33.5
+ pos: 1.5,78.5
parent: 2
- - uid: 32694
+ - uid: 21682
components:
- type: Transform
- pos: 62.5,34.5
+ pos: 0.5,78.5
parent: 2
- - uid: 32695
+ - uid: 21683
components:
- type: Transform
- pos: 62.5,35.5
+ pos: -0.5,78.5
parent: 2
- - uid: 32696
+ - uid: 21684
components:
- type: Transform
- pos: 62.5,36.5
+ pos: -1.5,78.5
parent: 2
- - uid: 32697
+ - uid: 21685
components:
- type: Transform
- pos: 61.5,30.5
+ pos: -2.5,78.5
parent: 2
- - uid: 32698
+ - uid: 21686
components:
- type: Transform
- pos: 60.5,30.5
+ pos: -3.5,78.5
parent: 2
- - uid: 32699
+ - uid: 21687
components:
- type: Transform
- pos: 59.5,30.5
+ pos: -4.5,78.5
parent: 2
- - uid: 32700
+ - uid: 21688
components:
- type: Transform
- pos: 58.5,30.5
+ pos: -5.5,78.5
parent: 2
- - uid: 32701
+ - uid: 21689
components:
- type: Transform
- pos: 57.5,30.5
+ pos: -6.5,78.5
parent: 2
- - uid: 32702
+ - uid: 21690
components:
- type: Transform
- pos: 56.5,30.5
+ pos: -7.5,78.5
parent: 2
- - uid: 32703
+ - uid: 21691
components:
- type: Transform
- pos: 55.5,30.5
+ pos: -8.5,78.5
parent: 2
- - uid: 32704
+ - uid: 21692
components:
- type: Transform
- pos: 54.5,30.5
+ pos: -9.5,78.5
parent: 2
- - uid: 32705
+ - uid: 21693
components:
- type: Transform
- pos: 53.5,30.5
+ pos: -10.5,78.5
parent: 2
- - uid: 32706
+ - uid: 21694
components:
- type: Transform
- pos: 52.5,30.5
+ pos: -11.5,78.5
parent: 2
- - uid: 32712
+ - uid: 21695
components:
- type: Transform
- pos: 66.5,29.5
+ pos: -11.5,77.5
parent: 2
- - uid: 32713
+ - uid: 21696
components:
- type: Transform
- pos: 66.5,28.5
+ pos: -11.5,76.5
parent: 2
- - uid: 32714
+ - uid: 21697
components:
- type: Transform
- pos: 66.5,27.5
+ pos: -11.5,75.5
parent: 2
- - uid: 32715
+ - uid: 21698
components:
- type: Transform
- pos: 66.5,26.5
+ pos: -11.5,74.5
parent: 2
- - uid: 32718
+ - uid: 21699
components:
- type: Transform
- pos: 64.5,24.5
+ pos: -11.5,73.5
parent: 2
- - uid: 32719
+ - uid: 21700
components:
- type: Transform
- pos: 65.5,24.5
+ pos: -10.5,73.5
parent: 2
- - uid: 32720
+ - uid: 21701
components:
- type: Transform
- pos: 66.5,24.5
+ pos: -9.5,73.5
parent: 2
- - uid: 32721
+ - uid: 21702
components:
- type: Transform
- pos: 67.5,24.5
+ pos: -8.5,73.5
parent: 2
- - uid: 32722
+ - uid: 21703
components:
- type: Transform
- pos: 68.5,24.5
+ pos: -7.5,73.5
parent: 2
- - uid: 32723
+ - uid: 21704
components:
- type: Transform
- pos: 69.5,24.5
+ pos: -6.5,73.5
parent: 2
- - uid: 32724
+ - uid: 21705
components:
- type: Transform
- pos: 69.5,23.5
+ pos: -5.5,73.5
parent: 2
- - uid: 32731
+ - uid: 21706
components:
- type: Transform
- pos: 68.5,12.5
+ pos: -4.5,73.5
parent: 2
- - uid: 32732
+ - uid: 21707
components:
- type: Transform
- pos: 68.5,11.5
+ pos: -3.5,73.5
parent: 2
- - uid: 32733
+ - uid: 21708
components:
- type: Transform
- pos: 68.5,10.5
+ pos: -2.5,73.5
parent: 2
- - uid: 32734
+ - uid: 21709
components:
- type: Transform
- pos: 68.5,9.5
+ pos: -1.5,73.5
parent: 2
- - uid: 32735
+ - uid: 21710
components:
- type: Transform
- pos: 68.5,8.5
+ pos: -0.5,73.5
parent: 2
- - uid: 32736
+ - uid: 21711
components:
- type: Transform
- pos: 67.5,8.5
+ pos: 0.5,73.5
parent: 2
- - uid: 32737
+ - uid: 21712
components:
- type: Transform
- pos: 66.5,8.5
+ pos: 2.5,73.5
parent: 2
- - uid: 32738
+ - uid: 21713
components:
- type: Transform
- pos: 66.5,9.5
+ pos: 3.5,73.5
parent: 2
- - uid: 32739
+ - uid: 21714
components:
- type: Transform
- pos: 66.5,10.5
+ pos: 4.5,73.5
parent: 2
- - uid: 32740
+ - uid: 21715
components:
- type: Transform
- pos: 65.5,10.5
+ pos: 5.5,73.5
parent: 2
- - uid: 32741
+ - uid: 21716
components:
- type: Transform
- pos: 64.5,10.5
+ pos: 6.5,73.5
parent: 2
- - uid: 32742
+ - uid: 21717
components:
- type: Transform
- pos: 63.5,10.5
+ pos: 7.5,73.5
parent: 2
- - uid: 32743
+ - uid: 21718
components:
- type: Transform
- pos: 62.5,10.5
+ pos: 8.5,73.5
parent: 2
- - uid: 32744
+ - uid: 21719
components:
- type: Transform
- pos: 61.5,10.5
+ pos: 9.5,73.5
parent: 2
- - uid: 32745
+ - uid: 21720
components:
- type: Transform
- pos: 60.5,10.5
+ pos: 10.5,73.5
parent: 2
- - uid: 32746
+ - uid: 21721
components:
- type: Transform
- pos: 59.5,10.5
+ pos: 11.5,73.5
parent: 2
- - uid: 32747
+ - uid: 21722
components:
- type: Transform
- pos: 58.5,10.5
+ pos: 12.5,73.5
parent: 2
- - uid: 32748
+ - uid: 21723
components:
- type: Transform
- pos: 57.5,10.5
+ pos: 13.5,73.5
parent: 2
- - uid: 32749
+ - uid: 21724
components:
- type: Transform
- pos: 56.5,10.5
+ pos: 14.5,73.5
parent: 2
- - uid: 32750
+ - uid: 21725
components:
- type: Transform
- pos: 55.5,10.5
+ pos: 14.5,74.5
parent: 2
- - uid: 32751
+ - uid: 21726
components:
- type: Transform
- pos: 54.5,10.5
+ pos: 14.5,75.5
parent: 2
- - uid: 32752
+ - uid: 21727
components:
- type: Transform
- pos: 54.5,24.5
+ pos: 14.5,76.5
parent: 2
- - uid: 32753
+ - uid: 21728
components:
- type: Transform
- pos: 55.5,24.5
+ pos: 14.5,77.5
parent: 2
- - uid: 32754
+ - uid: 21729
components:
- type: Transform
- pos: 56.5,24.5
+ pos: 14.5,78.5
parent: 2
- - uid: 32755
+ - uid: 21730
components:
- type: Transform
- pos: 57.5,24.5
+ pos: 13.5,78.5
parent: 2
- - uid: 32756
+ - uid: 21731
components:
- type: Transform
- pos: 58.5,24.5
+ pos: 12.5,78.5
parent: 2
- - uid: 32757
+ - uid: 21732
components:
- type: Transform
- pos: 59.5,24.5
+ pos: 11.5,78.5
parent: 2
- - uid: 32758
+ - uid: 21733
components:
- type: Transform
- pos: 60.5,24.5
+ pos: 10.5,78.5
parent: 2
- - uid: 32759
+ - uid: 21734
components:
- type: Transform
- pos: 61.5,24.5
+ pos: 9.5,78.5
parent: 2
- - uid: 32760
+ - uid: 21735
components:
- type: Transform
- pos: 62.5,24.5
+ pos: 8.5,78.5
parent: 2
- - uid: 32761
+ - uid: 21736
components:
- type: Transform
- pos: 63.5,36.5
+ pos: 7.5,78.5
parent: 2
- - uid: 32762
+ - uid: 21737
components:
- type: Transform
- pos: 64.5,36.5
+ pos: 6.5,78.5
parent: 2
- - uid: 32763
+ - uid: 21738
components:
- type: Transform
- pos: 65.5,36.5
+ pos: 5.5,78.5
parent: 2
- - uid: 32764
+ - uid: 21739
components:
- type: Transform
- pos: 66.5,36.5
+ pos: 4.5,78.5
parent: 2
- - uid: 32765
+ - uid: 21740
components:
- type: Transform
- pos: 67.5,36.5
+ pos: 3.5,78.5
parent: 2
- - uid: 32766
+ - uid: 21741
components:
- type: Transform
- pos: 68.5,36.5
+ pos: 2.5,78.5
parent: 2
- - uid: 32767
+ - uid: 21742
components:
- type: Transform
- pos: 69.5,36.5
+ pos: 2.5,79.5
parent: 2
- - uid: 32768
+ - uid: 21743
components:
- type: Transform
- pos: 70.5,36.5
+ pos: 2.5,80.5
parent: 2
- - uid: 32769
+ - uid: 21744
components:
- type: Transform
- pos: 68.5,37.5
+ pos: 2.5,81.5
parent: 2
- - uid: 32770
+ - uid: 21745
components:
- type: Transform
- pos: 68.5,38.5
+ pos: 0.5,81.5
parent: 2
- - uid: 32771
+ - uid: 21746
components:
- type: Transform
- pos: 68.5,39.5
+ pos: 0.5,80.5
parent: 2
- - uid: 32772
+ - uid: 21747
components:
- type: Transform
- pos: 68.5,40.5
+ pos: 0.5,79.5
parent: 2
- - uid: 32773
+ - uid: 21748
components:
- type: Transform
- pos: 68.5,41.5
+ pos: -5.5,79.5
parent: 2
- - uid: 32774
+ - uid: 21749
components:
- type: Transform
- pos: 68.5,42.5
+ pos: -5.5,80.5
parent: 2
- - uid: 32775
+ - uid: 21750
components:
- type: Transform
- pos: 68.5,43.5
+ pos: -5.5,81.5
parent: 2
- - uid: 32776
+ - uid: 21751
components:
- type: Transform
- pos: 68.5,44.5
+ pos: -7.5,81.5
parent: 2
- - uid: 32777
+ - uid: 21752
components:
- type: Transform
- pos: 68.5,45.5
+ pos: -7.5,80.5
parent: 2
- - uid: 32778
+ - uid: 21753
components:
- type: Transform
- pos: 68.5,46.5
+ pos: -7.5,79.5
parent: 2
- - uid: 32779
+ - uid: 21754
components:
- type: Transform
- pos: 68.5,47.5
+ pos: -7.5,82.5
parent: 2
- - uid: 32780
+ - uid: 21755
components:
- type: Transform
- pos: 68.5,48.5
+ pos: -5.5,82.5
parent: 2
- - uid: 32781
+ - uid: 21756
components:
- type: Transform
- pos: 68.5,49.5
+ pos: 0.5,82.5
parent: 2
- - uid: 32782
+ - uid: 21757
components:
- type: Transform
- pos: 68.5,50.5
+ pos: 2.5,82.5
parent: 2
- - uid: 32783
+ - uid: 21758
components:
- type: Transform
- pos: 69.5,50.5
+ pos: 8.5,82.5
parent: 2
- - uid: 32784
+ - uid: 21759
components:
- type: Transform
- pos: 70.5,50.5
+ pos: 8.5,81.5
parent: 2
- - uid: 32785
+ - uid: 21760
components:
- type: Transform
- pos: 70.5,51.5
+ pos: 8.5,80.5
parent: 2
- - uid: 32786
+ - uid: 21761
components:
- type: Transform
- pos: 70.5,52.5
+ pos: 8.5,79.5
parent: 2
- - uid: 32787
+ - uid: 21762
components:
- type: Transform
- pos: 70.5,53.5
+ pos: 10.5,79.5
parent: 2
- - uid: 32788
+ - uid: 21763
components:
- type: Transform
- pos: 70.5,54.5
+ pos: 10.5,80.5
parent: 2
- - uid: 32789
+ - uid: 21764
components:
- type: Transform
- pos: 70.5,55.5
+ pos: 10.5,81.5
parent: 2
- - uid: 32790
+ - uid: 21765
components:
- type: Transform
- pos: 71.5,55.5
+ pos: 10.5,82.5
parent: 2
- - uid: 32791
+ - uid: 21766
components:
- type: Transform
- pos: 72.5,55.5
+ pos: -3.5,52.5
parent: 2
- - uid: 32792
+ - uid: 21767
components:
- type: Transform
- pos: 73.5,55.5
+ pos: -3.5,53.5
parent: 2
- - uid: 32793
+ - uid: 21768
components:
- type: Transform
- pos: 74.5,55.5
+ pos: -3.5,54.5
parent: 2
- - uid: 32794
+ - uid: 21769
components:
- type: Transform
- pos: 74.5,56.5
+ pos: -3.5,55.5
parent: 2
- - uid: 32795
+ - uid: 21770
components:
- type: Transform
- pos: 74.5,57.5
+ pos: -3.5,56.5
parent: 2
- - uid: 32796
+ - uid: 21771
components:
- type: Transform
- pos: 74.5,58.5
+ pos: -4.5,56.5
parent: 2
- - uid: 32797
+ - uid: 21772
components:
- type: Transform
- pos: 74.5,59.5
+ pos: -5.5,56.5
parent: 2
- - uid: 32798
+ - uid: 21773
components:
- type: Transform
- pos: 74.5,60.5
+ pos: -6.5,56.5
parent: 2
- - uid: 32799
+ - uid: 21774
components:
- type: Transform
- pos: 74.5,61.5
+ pos: -7.5,56.5
parent: 2
- - uid: 32800
+ - uid: 21775
components:
- type: Transform
- pos: 74.5,62.5
+ pos: -8.5,56.5
parent: 2
- - uid: 32801
+ - uid: 21776
components:
- type: Transform
- pos: 74.5,63.5
+ pos: -9.5,56.5
parent: 2
- - uid: 32802
+ - uid: 21777
components:
- type: Transform
- pos: 74.5,64.5
+ pos: -10.5,56.5
parent: 2
- - uid: 32803
+ - uid: 21778
components:
- type: Transform
- pos: 73.5,59.5
+ pos: -11.5,56.5
parent: 2
- - uid: 32804
+ - uid: 21788
components:
- type: Transform
- pos: 72.5,59.5
+ pos: -3.5,48.5
parent: 2
- - uid: 32805
+ - uid: 21789
components:
- type: Transform
- pos: 72.5,58.5
+ pos: -3.5,49.5
parent: 2
- - uid: 32806
+ - uid: 21790
components:
- type: Transform
- pos: 72.5,57.5
+ pos: -3.5,50.5
parent: 2
- - uid: 32807
+ - uid: 21791
components:
- type: Transform
- pos: 71.5,57.5
+ pos: -27.5,39.5
parent: 2
- - uid: 32808
+ - uid: 21792
components:
- type: Transform
- pos: 70.5,57.5
+ pos: -24.5,56.5
parent: 2
- - uid: 32809
+ - uid: 21813
components:
- type: Transform
- pos: 70.5,58.5
+ pos: 9.5,-23.5
parent: 2
- - uid: 32810
+ - uid: 21816
components:
- type: Transform
- pos: 70.5,59.5
+ pos: -26.5,58.5
parent: 2
- - uid: 32811
+ - uid: 21817
components:
- type: Transform
- pos: 70.5,60.5
+ pos: -26.5,57.5
parent: 2
- - uid: 32812
+ - uid: 21818
components:
- type: Transform
- pos: 70.5,61.5
+ pos: -26.5,56.5
parent: 2
- - uid: 32813
+ - uid: 21819
components:
- type: Transform
- pos: 70.5,62.5
+ pos: -26.5,55.5
parent: 2
- - uid: 32814
+ - uid: 21820
components:
- type: Transform
- pos: 70.5,63.5
+ pos: -25.5,55.5
parent: 2
- - uid: 32815
+ - uid: 21821
components:
- type: Transform
- pos: 70.5,64.5
+ pos: -24.5,55.5
parent: 2
- - uid: 32816
+ - uid: 21822
components:
- type: Transform
- pos: 70.5,65.5
+ pos: -23.5,55.5
parent: 2
- - uid: 32817
+ - uid: 21823
components:
- type: Transform
- pos: 70.5,66.5
+ pos: -22.5,55.5
parent: 2
- - uid: 32818
+ - uid: 21824
components:
- type: Transform
- pos: 71.5,66.5
+ pos: -21.5,55.5
parent: 2
- - uid: 32819
+ - uid: 21825
components:
- type: Transform
- pos: 72.5,66.5
+ pos: -20.5,55.5
parent: 2
- - uid: 32820
+ - uid: 21826
components:
- type: Transform
- pos: 73.5,66.5
+ pos: -29.5,39.5
parent: 2
- - uid: 32821
+ - uid: 21828
components:
- type: Transform
- pos: 74.5,66.5
+ pos: -26.5,59.5
parent: 2
- - uid: 32822
+ - uid: 21829
components:
- type: Transform
- pos: 75.5,66.5
+ pos: -26.5,60.5
parent: 2
- - uid: 32823
+ - uid: 21830
components:
- type: Transform
- pos: 76.5,66.5
+ pos: -26.5,61.5
parent: 2
- - uid: 32824
+ - uid: 21831
components:
- type: Transform
- pos: 76.5,67.5
+ pos: -26.5,62.5
parent: 2
- - uid: 32825
+ - uid: 21832
components:
- type: Transform
- pos: 76.5,68.5
+ pos: -26.5,63.5
parent: 2
- - uid: 32826
+ - uid: 21834
components:
- type: Transform
- pos: 75.5,68.5
+ pos: -58.5,-31.5
parent: 2
- - uid: 32827
+ - uid: 21845
components:
- type: Transform
- pos: 74.5,68.5
+ pos: -38.5,51.5
parent: 2
- - uid: 32828
+ - uid: 21846
components:
- type: Transform
- pos: 73.5,68.5
+ pos: -39.5,51.5
parent: 2
- - uid: 32829
+ - uid: 21847
components:
- type: Transform
- pos: 72.5,68.5
+ pos: -40.5,51.5
parent: 2
- - uid: 32830
+ - uid: 21848
components:
- type: Transform
- pos: 71.5,68.5
+ pos: -41.5,51.5
parent: 2
- - uid: 32831
+ - uid: 21849
components:
- type: Transform
- pos: 70.5,68.5
+ pos: -42.5,51.5
parent: 2
- - uid: 32832
+ - uid: 21850
components:
- type: Transform
- pos: 69.5,68.5
+ pos: -43.5,51.5
parent: 2
- - uid: 32833
+ - uid: 21851
components:
- type: Transform
- pos: 68.5,68.5
+ pos: -44.5,51.5
parent: 2
- - uid: 32834
+ - uid: 21852
components:
- type: Transform
- pos: 68.5,69.5
+ pos: -45.5,51.5
parent: 2
- - uid: 32835
+ - uid: 21853
components:
- type: Transform
- pos: 68.5,70.5
+ pos: -46.5,51.5
parent: 2
- - uid: 32836
+ - uid: 21854
components:
- type: Transform
- pos: 67.5,70.5
+ pos: -47.5,51.5
parent: 2
- - uid: 32837
+ - uid: 21855
components:
- type: Transform
- pos: 66.5,70.5
+ pos: -48.5,51.5
parent: 2
- - uid: 32838
+ - uid: 21856
components:
- type: Transform
- pos: 65.5,70.5
+ pos: -49.5,51.5
parent: 2
- - uid: 32839
+ - uid: 21857
components:
- type: Transform
- pos: 64.5,70.5
+ pos: -49.5,50.5
parent: 2
- - uid: 32840
+ - uid: 21858
components:
- type: Transform
- pos: 63.5,70.5
+ pos: -49.5,49.5
parent: 2
- - uid: 32841
+ - uid: 21859
components:
- type: Transform
- pos: 62.5,70.5
+ pos: -49.5,48.5
parent: 2
- - uid: 32842
+ - uid: 21860
components:
- type: Transform
- pos: 61.5,70.5
+ pos: -43.5,39.5
parent: 2
- - uid: 32843
+ - uid: 21861
components:
- type: Transform
- pos: 60.5,70.5
+ pos: -43.5,40.5
parent: 2
- - uid: 32844
+ - uid: 21862
components:
- type: Transform
- pos: 59.5,70.5
+ pos: -43.5,41.5
parent: 2
- - uid: 32845
+ - uid: 21863
components:
- type: Transform
- pos: 58.5,70.5
+ pos: -43.5,42.5
parent: 2
- - uid: 32846
+ - uid: 21864
components:
- type: Transform
- pos: 57.5,70.5
+ pos: -43.5,43.5
parent: 2
- - uid: 32847
+ - uid: 21865
components:
- type: Transform
- pos: 56.5,70.5
+ pos: -49.5,43.5
parent: 2
- - uid: 32848
+ - uid: 21866
components:
- type: Transform
- pos: 55.5,70.5
+ pos: -48.5,43.5
parent: 2
- - uid: 32849
+ - uid: 21867
components:
- type: Transform
- pos: 54.5,70.5
+ pos: -47.5,43.5
parent: 2
- - uid: 32850
+ - uid: 21868
components:
- type: Transform
- pos: 53.5,70.5
+ pos: -46.5,43.5
parent: 2
- - uid: 32851
+ - uid: 21869
components:
- type: Transform
- pos: 53.5,69.5
+ pos: -45.5,43.5
parent: 2
- - uid: 32852
+ - uid: 21870
components:
- type: Transform
- pos: 53.5,68.5
+ pos: -44.5,43.5
parent: 2
- - uid: 32853
+ - uid: 21871
components:
- type: Transform
- pos: 53.5,67.5
+ pos: -42.5,43.5
parent: 2
- - uid: 32854
+ - uid: 21872
components:
- type: Transform
- pos: 53.5,66.5
+ pos: -41.5,43.5
parent: 2
- - uid: 32855
+ - uid: 21873
components:
- type: Transform
- pos: 53.5,65.5
+ pos: -40.5,43.5
parent: 2
- - uid: 32856
+ - uid: 21874
components:
- type: Transform
- pos: 53.5,64.5
+ pos: -39.5,43.5
parent: 2
- - uid: 32857
+ - uid: 21875
components:
- type: Transform
- pos: 54.5,64.5
+ pos: -38.5,43.5
parent: 2
- - uid: 32858
+ - uid: 21876
components:
- type: Transform
- pos: 55.5,64.5
+ pos: -37.5,43.5
parent: 2
- - uid: 32859
+ - uid: 21885
components:
- type: Transform
- pos: 56.5,64.5
+ pos: -89.5,22.5
parent: 2
- - uid: 32860
+ - uid: 21887
components:
- type: Transform
- pos: 57.5,64.5
+ pos: -83.5,23.5
parent: 2
- - uid: 32861
+ - uid: 21889
components:
- type: Transform
- pos: 58.5,64.5
+ pos: -82.5,23.5
parent: 2
- - uid: 32862
+ - uid: 21891
components:
- type: Transform
- pos: 58.5,65.5
+ pos: -81.5,23.5
parent: 2
- - uid: 32863
+ - uid: 21892
components:
- type: Transform
- pos: 58.5,66.5
+ pos: -80.5,22.5
parent: 2
- - uid: 32864
+ - uid: 21893
components:
- type: Transform
- pos: 57.5,66.5
+ pos: -80.5,23.5
parent: 2
- - uid: 32865
+ - uid: 21895
components:
- type: Transform
- pos: 56.5,66.5
+ pos: -79.5,23.5
parent: 2
- - uid: 32866
+ - uid: 21904
components:
- type: Transform
- pos: 55.5,66.5
+ pos: -97.5,-9.5
parent: 2
- - uid: 32867
+ - uid: 21922
components:
- type: Transform
- pos: 55.5,67.5
+ pos: -91.5,7.5
parent: 2
- - uid: 32868
+ - uid: 21923
components:
- type: Transform
- pos: 55.5,68.5
+ pos: -91.5,9.5
parent: 2
- - uid: 32869
+ - uid: 21937
components:
- type: Transform
- pos: 56.5,68.5
+ pos: -96.5,18.5
parent: 2
- - uid: 32870
+ - uid: 21946
components:
- type: Transform
- pos: 57.5,68.5
+ pos: -97.5,26.5
parent: 2
- - uid: 32871
+ - uid: 21962
components:
- type: Transform
- pos: 58.5,68.5
+ pos: -98.5,26.5
parent: 2
- - uid: 32872
+ - uid: 21963
components:
- type: Transform
- pos: 59.5,68.5
+ pos: -98.5,24.5
parent: 2
- - uid: 32873
+ - uid: 21967
components:
- type: Transform
- pos: 60.5,68.5
+ pos: -40.5,-28.5
parent: 2
- - uid: 32874
+ - uid: 21978
components:
- type: Transform
- pos: 60.5,67.5
+ pos: -98.5,-7.5
parent: 2
- - uid: 32875
+ - uid: 22043
components:
- type: Transform
- pos: 61.5,67.5
+ pos: -87.5,31.5
parent: 2
- - uid: 32876
+ - uid: 22066
components:
- type: Transform
- pos: 62.5,67.5
+ pos: -99.5,15.5
parent: 2
- - uid: 32877
+ - uid: 22071
components:
- type: Transform
- pos: 62.5,68.5
+ pos: -107.5,-7.5
parent: 2
- - uid: 32878
+ - uid: 22095
components:
- type: Transform
- pos: 63.5,68.5
+ pos: -87.5,-6.5
parent: 2
- - uid: 32879
+ - uid: 22101
components:
- type: Transform
- pos: 64.5,68.5
+ pos: -103.5,17.5
parent: 2
- - uid: 32880
+ - uid: 22106
components:
- type: Transform
- pos: 65.5,68.5
+ pos: -98.5,22.5
parent: 2
- - uid: 32881
+ - uid: 22108
components:
- type: Transform
- pos: 66.5,68.5
+ pos: -98.5,-8.5
parent: 2
- - uid: 32882
+ - uid: 22158
components:
- type: Transform
- pos: 66.5,67.5
+ pos: -9.5,48.5
parent: 2
- - uid: 32883
+ - uid: 22169
components:
- type: Transform
- pos: 66.5,66.5
+ pos: -78.5,28.5
parent: 2
- - uid: 32884
+ - uid: 22175
components:
- type: Transform
- pos: 66.5,65.5
+ pos: -99.5,4.5
parent: 2
- - uid: 32885
+ - uid: 22176
components:
- type: Transform
- pos: 66.5,64.5
+ pos: -98.5,-9.5
parent: 2
- - uid: 32886
+ - uid: 22177
components:
- type: Transform
- pos: 66.5,63.5
+ pos: -98.5,19.5
parent: 2
- - uid: 32887
+ - uid: 22273
components:
- type: Transform
- pos: 66.5,62.5
+ pos: 11.5,70.5
parent: 2
- - uid: 32888
+ - uid: 22289
components:
- type: Transform
- pos: 66.5,61.5
+ pos: -14.5,2.5
parent: 2
- - uid: 32889
+ - uid: 22296
components:
- type: Transform
- pos: 66.5,60.5
+ pos: -67.5,-6.5
parent: 2
- - uid: 32890
+ - uid: 22320
components:
- type: Transform
- pos: 66.5,59.5
+ pos: -31.5,46.5
parent: 2
- - uid: 32891
+ - uid: 22346
components:
- type: Transform
- pos: 66.5,58.5
+ pos: 10.5,70.5
parent: 2
- - uid: 32892
+ - uid: 22347
components:
- type: Transform
- pos: 66.5,57.5
+ pos: 9.5,70.5
parent: 2
- - uid: 32893
+ - uid: 22353
components:
- type: Transform
- pos: 66.5,56.5
+ pos: 13.5,69.5
parent: 2
- - uid: 32894
+ - uid: 22354
components:
- type: Transform
- pos: 65.5,56.5
+ pos: 13.5,70.5
parent: 2
- - uid: 32895
+ - uid: 22366
components:
- type: Transform
- pos: 64.5,56.5
+ pos: 17.5,-27.5
parent: 2
- - uid: 32896
+ - uid: 22455
components:
- type: Transform
- pos: 63.5,56.5
+ pos: -90.5,-6.5
parent: 2
- - uid: 32897
+ - uid: 22468
components:
- type: Transform
- pos: 63.5,57.5
+ pos: 79.5,6.5
parent: 2
- - uid: 32898
+ - uid: 22536
components:
- type: Transform
- pos: 63.5,58.5
+ pos: -51.5,63.5
parent: 2
- - uid: 32899
+ - uid: 22572
components:
- type: Transform
- pos: 63.5,59.5
+ pos: -99.5,13.5
parent: 2
- - uid: 32900
+ - uid: 22576
components:
- type: Transform
- pos: 62.5,59.5
+ pos: 9.5,47.5
parent: 2
- - uid: 32901
+ - uid: 22631
components:
- type: Transform
- pos: 61.5,59.5
+ pos: 21.5,29.5
parent: 2
- - uid: 32902
+ - uid: 22662
components:
- type: Transform
- pos: 60.5,59.5
+ pos: 77.5,6.5
parent: 2
- - uid: 32903
+ - uid: 22688
components:
- type: Transform
- pos: 59.5,59.5
+ pos: 76.5,6.5
parent: 2
- - uid: 32904
+ - uid: 22710
components:
- type: Transform
- pos: 58.5,59.5
+ pos: 75.5,6.5
parent: 2
- - uid: 32905
+ - uid: 22726
components:
- type: Transform
- pos: 57.5,59.5
+ pos: -80.5,31.5
parent: 2
- - uid: 32906
+ - uid: 22728
components:
- type: Transform
- pos: 56.5,59.5
+ pos: -91.5,23.5
parent: 2
- - uid: 32907
+ - uid: 22754
components:
- type: Transform
- pos: 55.5,59.5
+ pos: -88.5,23.5
parent: 2
- - uid: 32908
+ - uid: 22755
components:
- type: Transform
- pos: 55.5,58.5
+ pos: -85.5,23.5
parent: 2
- - uid: 32909
+ - uid: 22985
components:
- type: Transform
- pos: 55.5,57.5
+ pos: -79.5,30.5
parent: 2
- - uid: 32910
+ - uid: 22986
components:
- type: Transform
- pos: 55.5,56.5
+ pos: -78.5,29.5
parent: 2
- - uid: 32911
+ - uid: 23008
components:
- type: Transform
- pos: 54.5,56.5
+ pos: -59.5,33.5
parent: 2
- - uid: 32912
+ - uid: 23033
components:
- type: Transform
- pos: 53.5,56.5
+ pos: -81.5,-14.5
parent: 2
- - uid: 32913
+ - uid: 23074
components:
- type: Transform
- pos: 53.5,57.5
+ pos: -26.5,39.5
parent: 2
- - uid: 32914
+ - uid: 23076
components:
- type: Transform
- pos: 53.5,58.5
+ pos: 9.5,-28.5
parent: 2
- - uid: 32915
+ - uid: 23108
components:
- type: Transform
- pos: 53.5,59.5
+ pos: -79.5,-14.5
parent: 2
- - uid: 32916
+ - uid: 23109
components:
- type: Transform
- pos: 53.5,60.5
+ pos: -79.5,-13.5
parent: 2
- - uid: 32917
+ - uid: 23120
components:
- type: Transform
- pos: 53.5,61.5
+ pos: 20.5,13.5
parent: 2
- - uid: 32918
+ - uid: 23135
components:
- type: Transform
- pos: 54.5,61.5
+ pos: 9.5,46.5
parent: 2
- - uid: 32919
+ - uid: 23151
components:
- type: Transform
- pos: 55.5,61.5
+ pos: -107.5,22.5
parent: 2
- - uid: 32920
+ - uid: 23152
components:
- type: Transform
- pos: 56.5,61.5
+ pos: -107.5,21.5
parent: 2
- - uid: 32921
+ - uid: 23184
components:
- type: Transform
- pos: 56.5,62.5
+ pos: 8.5,56.5
parent: 2
- - uid: 32922
+ - uid: 23227
components:
- type: Transform
- pos: 57.5,62.5
+ pos: -9.5,4.5
parent: 2
- - uid: 32923
+ - uid: 23229
components:
- type: Transform
- pos: 58.5,62.5
+ pos: -68.5,-7.5
parent: 2
- - uid: 32924
+ - uid: 23231
components:
- type: Transform
- pos: 59.5,62.5
+ pos: -68.5,-6.5
parent: 2
- - uid: 32925
+ - uid: 23243
components:
- type: Transform
- pos: 60.5,62.5
+ pos: 112.5,-22.5
parent: 2
- - uid: 32926
+ - uid: 23244
components:
- type: Transform
- pos: 61.5,62.5
+ pos: 104.5,-27.5
parent: 2
- - uid: 32927
+ - uid: 23246
components:
- type: Transform
- pos: 62.5,62.5
+ pos: 105.5,-27.5
parent: 2
- - uid: 32928
+ - uid: 23300
components:
- type: Transform
- pos: 62.5,61.5
+ pos: 102.5,-27.5
parent: 2
- - uid: 32929
+ - uid: 23302
components:
- type: Transform
- pos: 63.5,61.5
+ pos: 96.5,-24.5
parent: 2
- - uid: 32930
+ - uid: 23464
components:
- type: Transform
- pos: 64.5,61.5
+ pos: -104.5,15.5
parent: 2
- - uid: 32931
+ - uid: 23465
components:
- type: Transform
- pos: 64.5,62.5
+ pos: -108.5,9.5
parent: 2
- - uid: 32932
+ - uid: 23471
components:
- type: Transform
- pos: 64.5,63.5
+ pos: -108.5,11.5
parent: 2
- - uid: 32933
+ - uid: 23483
components:
- type: Transform
- pos: 64.5,64.5
+ pos: 15.5,73.5
parent: 2
- - uid: 32934
+ - uid: 23484
components:
- type: Transform
- pos: 64.5,65.5
+ pos: 15.5,74.5
parent: 2
- - uid: 32935
+ - uid: 23487
components:
- type: Transform
- pos: 59.5,64.5
+ pos: 15.5,75.5
parent: 2
- - uid: 32936
+ - uid: 23489
components:
- type: Transform
- pos: 60.5,64.5
+ pos: 15.5,76.5
parent: 2
- - uid: 32937
+ - uid: 23495
components:
- type: Transform
- pos: 61.5,64.5
+ pos: 15.5,77.5
parent: 2
- - uid: 32938
+ - uid: 23517
components:
- type: Transform
- pos: 62.5,64.5
+ pos: -102.5,15.5
parent: 2
- - uid: 32939
+ - uid: 23530
components:
- type: Transform
- pos: 74.5,54.5
+ pos: 15.5,78.5
parent: 2
- - uid: 32940
+ - uid: 23531
components:
- type: Transform
- pos: 75.5,54.5
+ pos: -12.5,73.5
parent: 2
- - uid: 32941
+ - uid: 23532
components:
- type: Transform
- pos: 76.5,54.5
+ pos: -12.5,74.5
parent: 2
- - uid: 32942
+ - uid: 23535
components:
- type: Transform
- pos: 76.5,55.5
+ pos: -106.5,14.5
parent: 2
- - uid: 32943
+ - uid: 23557
components:
- type: Transform
- pos: 76.5,56.5
+ pos: -20.5,-41.5
parent: 2
- - uid: 32944
+ - uid: 23558
components:
- type: Transform
- pos: 76.5,57.5
+ pos: -12.5,75.5
parent: 2
- - uid: 32945
+ - uid: 23583
components:
- type: Transform
- pos: 76.5,58.5
+ pos: -17.5,37.5
parent: 2
- - uid: 32946
+ - uid: 23606
components:
- type: Transform
- pos: 76.5,59.5
+ pos: 99.5,-8.5
parent: 2
- - uid: 32947
+ - uid: 23629
components:
- type: Transform
- pos: 76.5,60.5
+ pos: -81.5,32.5
parent: 2
- - uid: 32948
+ - uid: 23648
components:
- type: Transform
- pos: 76.5,61.5
+ pos: -12.5,76.5
parent: 2
- - uid: 32949
+ - uid: 23657
components:
- type: Transform
- pos: 77.5,61.5
+ pos: -12.5,77.5
parent: 2
- - uid: 32950
+ - uid: 23660
components:
- type: Transform
- pos: 78.5,61.5
+ pos: -12.5,78.5
parent: 2
- - uid: 32951
+ - uid: 23686
components:
- type: Transform
- pos: 79.5,61.5
+ pos: -98.5,23.5
parent: 2
- - uid: 32952
+ - uid: 23696
components:
- type: Transform
- pos: 80.5,61.5
+ pos: -10.5,71.5
parent: 2
- - uid: 32953
+ - uid: 23701
components:
- type: Transform
- pos: 80.5,60.5
+ pos: -81.5,-15.5
parent: 2
- - uid: 32954
+ - uid: 23703
components:
- type: Transform
- pos: 80.5,59.5
+ pos: -11.5,71.5
parent: 2
- - uid: 32955
+ - uid: 23704
components:
- type: Transform
- pos: 80.5,58.5
+ pos: -12.5,71.5
parent: 2
- - uid: 32956
+ - uid: 23706
components:
- type: Transform
- pos: 79.5,58.5
+ pos: -12.5,70.5
parent: 2
- - uid: 32957
+ - uid: 23715
components:
- type: Transform
- pos: 78.5,58.5
+ pos: -12.5,69.5
parent: 2
- - uid: 32958
+ - uid: 23716
components:
- type: Transform
- pos: 78.5,57.5
+ pos: -19.5,60.5
parent: 2
- - uid: 32959
+ - uid: 23729
components:
- type: Transform
- pos: 78.5,56.5
+ pos: -21.5,60.5
parent: 2
- - uid: 32960
+ - uid: 23730
components:
- type: Transform
- pos: 78.5,55.5
+ pos: -22.5,60.5
parent: 2
- - uid: 32961
+ - uid: 23733
components:
- type: Transform
- pos: 78.5,54.5
+ pos: -23.5,60.5
parent: 2
- - uid: 32962
+ - uid: 23734
components:
- type: Transform
- pos: 78.5,53.5
+ pos: -24.5,60.5
parent: 2
- - uid: 32963
+ - uid: 23736
components:
- type: Transform
- pos: 78.5,52.5
+ pos: -24.5,59.5
parent: 2
- - uid: 32964
+ - uid: 23737
components:
- type: Transform
- pos: 78.5,51.5
+ pos: -24.5,57.5
parent: 2
- - uid: 32965
+ - uid: 23738
components:
- type: Transform
- pos: 78.5,50.5
+ pos: -28.5,58.5
parent: 2
- - uid: 32966
+ - uid: 23739
components:
- type: Transform
- pos: 78.5,49.5
+ pos: -28.5,57.5
parent: 2
- - uid: 32967
+ - uid: 23742
components:
- type: Transform
- pos: 78.5,48.5
+ pos: 90.5,-11.5
parent: 2
- - uid: 32968
+ - uid: 23753
components:
- type: Transform
- pos: 78.5,47.5
+ pos: -28.5,60.5
parent: 2
- - uid: 32969
+ - uid: 23754
components:
- type: Transform
- pos: 77.5,49.5
+ pos: -28.5,61.5
parent: 2
- - uid: 32970
+ - uid: 23767
components:
- type: Transform
- pos: 76.5,49.5
+ pos: -28.5,62.5
parent: 2
- - uid: 32971
+ - uid: 23768
components:
- type: Transform
- pos: 75.5,49.5
+ pos: -27.5,65.5
parent: 2
- - uid: 32972
+ - uid: 23775
components:
- type: Transform
- pos: 74.5,49.5
+ pos: -25.5,65.5
parent: 2
- - uid: 32973
+ - uid: 23776
components:
- type: Transform
- pos: 74.5,48.5
+ pos: -23.5,65.5
parent: 2
- - uid: 32974
+ - uid: 23778
components:
- type: Transform
- pos: 74.5,47.5
+ pos: -21.5,65.5
parent: 2
- - uid: 32975
+ - uid: 23779
components:
- type: Transform
- pos: 78.5,46.5
+ pos: -19.5,65.5
parent: 2
- - uid: 32976
+ - uid: 23782
components:
- type: Transform
- pos: 79.5,46.5
+ pos: -20.5,-42.5
parent: 2
- - uid: 32977
+ - uid: 23820
components:
- type: Transform
- pos: 80.5,46.5
+ pos: -17.5,65.5
parent: 2
- - uid: 32978
+ - uid: 23822
components:
- type: Transform
- pos: 81.5,46.5
+ pos: -31.5,48.5
parent: 2
- - uid: 32979
+ - uid: 23834
components:
- type: Transform
- pos: 82.5,46.5
+ pos: 105.5,-8.5
parent: 2
- - uid: 32980
+ - uid: 23837
components:
- type: Transform
- pos: 83.5,46.5
+ pos: 80.5,-7.5
parent: 2
- - uid: 32981
+ - uid: 24225
components:
- type: Transform
- pos: 77.5,47.5
+ pos: 12.5,45.5
parent: 2
- - uid: 32982
+ - uid: 24357
components:
- type: Transform
- pos: 76.5,47.5
+ pos: -15.5,65.5
parent: 2
- - uid: 32983
+ - uid: 24362
components:
- type: Transform
- pos: 76.5,46.5
+ pos: -13.5,65.5
parent: 2
- - uid: 32984
+ - uid: 24654
components:
- type: Transform
- pos: 76.5,45.5
+ pos: -14.5,62.5
parent: 2
- - uid: 32985
+ - uid: 24676
components:
- type: Transform
- pos: 76.5,44.5
+ pos: -14.5,61.5
parent: 2
- - uid: 32986
+ - uid: 24683
components:
- type: Transform
- pos: 76.5,43.5
+ pos: -14.5,63.5
parent: 2
- - uid: 32987
+ - uid: 24691
components:
- type: Transform
- pos: 76.5,42.5
+ pos: -34.5,62.5
parent: 2
- - uid: 32988
+ - uid: 24699
components:
- type: Transform
- pos: 77.5,44.5
+ pos: -34.5,61.5
parent: 2
- - uid: 32989
+ - uid: 24705
components:
- type: Transform
- pos: 78.5,44.5
+ pos: -32.5,63.5
parent: 2
- - uid: 32990
+ - uid: 24711
components:
- type: Transform
- pos: 79.5,44.5
+ pos: -57.5,29.5
parent: 2
- - uid: 32991
+ - uid: 24714
components:
- type: Transform
- pos: 77.5,42.5
+ pos: -57.5,30.5
parent: 2
- - uid: 32992
+ - uid: 24830
components:
- type: Transform
- pos: 78.5,42.5
+ pos: 17.5,-35.5
parent: 2
- - uid: 32993
+ - uid: 24894
components:
- type: Transform
- pos: 79.5,42.5
+ pos: -50.5,24.5
parent: 2
- - uid: 32994
+ - uid: 24926
components:
- type: Transform
- pos: 80.5,42.5
+ pos: -51.5,24.5
parent: 2
- - uid: 32995
+ - uid: 24934
components:
- type: Transform
- pos: 81.5,42.5
+ pos: -48.5,24.5
parent: 2
- - uid: 32996
+ - uid: 24944
components:
- type: Transform
- pos: 81.5,43.5
+ pos: -47.5,24.5
parent: 2
- - uid: 32997
+ - uid: 25082
components:
- type: Transform
- pos: 81.5,44.5
+ pos: 19.5,11.5
parent: 2
- - uid: 32998
+ - uid: 25089
components:
- type: Transform
- pos: 81.5,41.5
+ pos: 20.5,15.5
parent: 2
- - uid: 32999
+ - uid: 25255
components:
- type: Transform
- pos: 81.5,39.5
+ pos: 10.5,20.5
parent: 2
- - uid: 33000
+ - uid: 25808
components:
- type: Transform
- pos: 80.5,39.5
+ pos: -46.5,41.5
parent: 2
- - uid: 33001
+ - uid: 25963
components:
- type: Transform
- pos: 80.5,38.5
+ pos: -29.5,45.5
parent: 2
- - uid: 33002
+ - uid: 25968
components:
- type: Transform
- pos: 80.5,37.5
+ pos: -28.5,45.5
parent: 2
- - uid: 33003
+ - uid: 25979
components:
- type: Transform
- pos: 80.5,36.5
+ pos: -47.5,15.5
parent: 2
- - uid: 33004
+ - uid: 25981
components:
- type: Transform
- pos: 81.5,37.5
+ pos: -25.5,45.5
parent: 2
- - uid: 33005
+ - uid: 25982
components:
- type: Transform
- pos: 82.5,37.5
+ pos: -26.5,45.5
parent: 2
- - uid: 33006
+ - uid: 25983
components:
- type: Transform
- pos: 82.5,36.5
+ pos: -32.5,23.5
parent: 2
- - uid: 33007
+ - uid: 25984
components:
- type: Transform
- pos: 82.5,35.5
+ pos: -15.5,42.5
parent: 2
- - uid: 33008
+ - uid: 25997
components:
- type: Transform
- pos: 82.5,34.5
+ pos: -32.5,24.5
parent: 2
- - uid: 33009
+ - uid: 25998
components:
- type: Transform
- pos: 81.5,34.5
+ pos: 11.5,-35.5
parent: 2
- - uid: 33010
+ - uid: 26006
components:
- type: Transform
- pos: 83.5,34.5
+ pos: -20.5,45.5
parent: 2
- - uid: 33011
+ - uid: 26007
components:
- type: Transform
- pos: 84.5,34.5
+ pos: -30.5,45.5
parent: 2
- - uid: 33012
+ - uid: 26191
components:
- type: Transform
- pos: 85.5,34.5
+ pos: 1.5,66.5
parent: 2
- - uid: 33013
+ - uid: 26210
components:
- type: Transform
- pos: 86.5,34.5
+ pos: 8.5,10.5
parent: 2
- - uid: 33014
+ - uid: 26226
components:
- type: Transform
- pos: 87.5,34.5
+ pos: 8.5,9.5
parent: 2
- - uid: 33015
+ - uid: 26373
components:
- type: Transform
- pos: 88.5,34.5
+ pos: 90.5,-27.5
parent: 2
- - uid: 33016
+ - uid: 26374
components:
- type: Transform
- pos: 89.5,34.5
+ pos: 94.5,-24.5
parent: 2
- - uid: 33017
+ - uid: 26375
components:
- type: Transform
- pos: 90.5,34.5
+ pos: 93.5,-24.5
parent: 2
- - uid: 33018
+ - uid: 26381
components:
- type: Transform
- pos: 91.5,34.5
+ pos: 83.5,-21.5
parent: 2
- - uid: 33019
+ - uid: 26385
components:
- type: Transform
- pos: 91.5,35.5
+ pos: 90.5,-22.5
parent: 2
- - uid: 33020
+ - uid: 26386
components:
- type: Transform
- pos: 92.5,35.5
+ pos: 90.5,-26.5
parent: 2
- - uid: 33021
+ - uid: 26413
components:
- type: Transform
- pos: 93.5,35.5
+ pos: -82.5,11.5
parent: 2
- - uid: 33022
+ - uid: 26482
components:
- type: Transform
- pos: 93.5,36.5
+ pos: 109.5,-13.5
parent: 2
- - uid: 33023
+ - uid: 26515
components:
- type: Transform
- pos: 93.5,37.5
+ pos: -25.5,39.5
parent: 2
- - uid: 33024
+ - uid: 26540
components:
- type: Transform
- pos: 93.5,38.5
+ pos: 76.5,54.5
parent: 2
- - uid: 33025
+ - uid: 26565
components:
- type: Transform
- pos: 93.5,39.5
+ pos: -107.5,-6.5
parent: 2
- - uid: 33026
+ - uid: 26590
components:
- type: Transform
- pos: 93.5,40.5
+ pos: -77.5,26.5
parent: 2
- - uid: 33027
+ - uid: 26591
components:
- type: Transform
- pos: 93.5,41.5
+ pos: -77.5,25.5
parent: 2
- - uid: 33028
+ - uid: 26592
components:
- type: Transform
- pos: 94.5,41.5
+ pos: -78.5,23.5
parent: 2
- - uid: 33029
+ - uid: 26593
components:
- type: Transform
- pos: 95.5,41.5
+ pos: -77.5,24.5
parent: 2
- - uid: 33030
+ - uid: 26594
components:
- type: Transform
- pos: 95.5,40.5
+ pos: -77.5,23.5
parent: 2
- - uid: 33031
+ - uid: 26622
components:
- type: Transform
- pos: 95.5,39.5
+ pos: 85.5,-11.5
parent: 2
- - uid: 33032
+ - uid: 26625
components:
- type: Transform
- pos: 95.5,38.5
+ pos: 79.5,-11.5
parent: 2
- - uid: 33033
+ - uid: 26626
components:
- type: Transform
- pos: 95.5,37.5
+ pos: 93.5,-23.5
parent: 2
- - uid: 33034
+ - uid: 26634
components:
- type: Transform
- pos: 95.5,36.5
+ pos: 91.5,-11.5
parent: 2
- - uid: 33035
+ - uid: 26635
components:
- type: Transform
- pos: 95.5,35.5
+ pos: 80.5,-11.5
parent: 2
- - uid: 33036
+ - uid: 26636
components:
- type: Transform
- pos: 95.5,34.5
+ pos: 93.5,-22.5
parent: 2
- - uid: 33037
+ - uid: 26637
components:
- type: Transform
- pos: 95.5,33.5
+ pos: 95.5,-27.5
parent: 2
- - uid: 33038
+ - uid: 26638
components:
- type: Transform
- pos: 96.5,33.5
+ pos: 96.5,-8.5
parent: 2
- - uid: 33039
+ - uid: 26639
components:
- type: Transform
- pos: 97.5,33.5
+ pos: 107.5,-8.5
parent: 2
- - uid: 33040
+ - uid: 26640
components:
- type: Transform
- pos: 98.5,33.5
+ pos: 94.5,-27.5
parent: 2
- - uid: 33041
+ - uid: 26641
components:
- type: Transform
- pos: 99.5,33.5
+ pos: 97.5,-8.5
parent: 2
- - uid: 33042
+ - uid: 26642
components:
- type: Transform
- pos: 97.5,34.5
+ pos: 79.5,-7.5
parent: 2
- - uid: 33043
+ - uid: 26749
components:
- type: Transform
- pos: 97.5,35.5
+ pos: -74.5,21.5
parent: 2
- - uid: 33044
+ - uid: 26756
components:
- type: Transform
- pos: 97.5,36.5
+ pos: -86.5,23.5
parent: 2
- - uid: 33045
+ - uid: 26769
components:
- type: Transform
- pos: 97.5,37.5
+ pos: -103.5,-1.5
parent: 2
- - uid: 33046
+ - uid: 26770
components:
- type: Transform
- pos: 97.5,38.5
+ pos: -104.5,-1.5
parent: 2
- - uid: 33047
+ - uid: 26782
components:
- type: Transform
- pos: 97.5,39.5
+ pos: -107.5,27.5
parent: 2
- - uid: 33048
+ - uid: 26805
components:
- type: Transform
- pos: 97.5,40.5
+ pos: -107.5,25.5
parent: 2
- - uid: 33049
+ - uid: 26834
components:
- type: Transform
- pos: 97.5,41.5
+ pos: -106.5,27.5
parent: 2
- - uid: 33050
+ - uid: 26843
components:
- type: Transform
- pos: 97.5,42.5
+ pos: 98.5,-8.5
parent: 2
- - uid: 33051
+ - uid: 26853
components:
- type: Transform
- pos: 97.5,43.5
+ pos: 18.5,-35.5
parent: 2
- - uid: 33052
+ - uid: 26888
components:
- type: Transform
- pos: 97.5,44.5
+ pos: 92.5,-21.5
parent: 2
- - uid: 33053
+ - uid: 26975
components:
- type: Transform
- pos: 97.5,45.5
+ pos: -106.5,29.5
parent: 2
- - uid: 33054
+ - uid: 27010
components:
- type: Transform
- pos: 98.5,44.5
+ pos: 80.5,60.5
parent: 2
- - uid: 33055
+ - uid: 27181
components:
- type: Transform
- pos: 99.5,44.5
+ pos: 10.5,45.5
parent: 2
- - uid: 33056
+ - uid: 27202
components:
- type: Transform
- pos: 98.5,35.5
+ pos: -105.5,29.5
parent: 2
- - uid: 33057
+ - uid: 27206
components:
- type: Transform
- pos: 99.5,35.5
+ pos: -107.5,26.5
parent: 2
- - uid: 33058
+ - uid: 27210
components:
- type: Transform
- pos: 99.5,36.5
+ pos: -106.5,28.5
parent: 2
- - uid: 33059
+ - uid: 27213
components:
- type: Transform
- pos: 99.5,37.5
+ pos: 5.5,56.5
parent: 2
- - uid: 33060
+ - uid: 27217
components:
- type: Transform
- pos: 99.5,38.5
+ pos: -105.5,30.5
parent: 2
- - uid: 33061
+ - uid: 27218
components:
- type: Transform
- pos: 99.5,39.5
+ pos: -106.5,21.5
parent: 2
- - uid: 33062
+ - uid: 27223
components:
- type: Transform
- pos: 99.5,40.5
+ pos: -106.5,20.5
parent: 2
- - uid: 33063
+ - uid: 27227
components:
- type: Transform
- pos: 99.5,41.5
+ pos: -90.5,-5.5
parent: 2
- - uid: 33064
+ - uid: 27230
components:
- type: Transform
- pos: 99.5,42.5
+ pos: -90.5,-13.5
parent: 2
- - uid: 33065
+ - uid: 27231
components:
- type: Transform
- pos: 96.5,45.5
+ pos: -89.5,-13.5
parent: 2
- - uid: 33066
+ - uid: 27232
components:
- type: Transform
- pos: 95.5,45.5
+ pos: -89.5,-14.5
parent: 2
- - uid: 33067
+ - uid: 27233
components:
- type: Transform
- pos: 94.5,45.5
+ pos: -87.5,-14.5
parent: 2
- - uid: 33068
+ - uid: 27235
components:
- type: Transform
- pos: 93.5,45.5
+ pos: -88.5,-14.5
parent: 2
- - uid: 33069
+ - uid: 27237
components:
- type: Transform
- pos: 92.5,45.5
+ pos: -106.5,19.5
parent: 2
- - uid: 33070
+ - uid: 27238
components:
- type: Transform
- pos: 91.5,45.5
+ pos: -77.5,-9.5
parent: 2
- - uid: 33071
+ - uid: 27241
components:
- type: Transform
- pos: 92.5,44.5
+ pos: -105.5,18.5
parent: 2
- - uid: 33072
+ - uid: 27242
components:
- type: Transform
- pos: 91.5,46.5
+ pos: -105.5,19.5
parent: 2
- - uid: 33073
+ - uid: 27297
components:
- type: Transform
- pos: 91.5,47.5
+ pos: 87.5,-21.5
parent: 2
- - uid: 33074
+ - uid: 27680
components:
- type: Transform
- pos: 90.5,47.5
+ pos: 60.5,-15.5
parent: 2
- - uid: 33075
+ - uid: 27737
components:
- type: Transform
- pos: 89.5,47.5
+ pos: 86.5,-21.5
parent: 2
- - uid: 33076
+ - uid: 27738
components:
- type: Transform
- pos: 88.5,47.5
+ pos: 90.5,-21.5
parent: 2
- - uid: 33077
+ - uid: 27790
components:
- type: Transform
- pos: 87.5,47.5
+ pos: 88.5,-21.5
parent: 2
- - uid: 33078
+ - uid: 27791
components:
- type: Transform
- pos: 86.5,47.5
+ pos: 93.5,-9.5
parent: 2
- - uid: 33079
+ - uid: 27807
components:
- type: Transform
- pos: 85.5,47.5
+ pos: 93.5,-10.5
parent: 2
- - uid: 33080
+ - uid: 27812
components:
- type: Transform
- pos: 85.5,48.5
+ pos: 80.5,0.5
parent: 2
- - uid: 33081
+ - uid: 27813
components:
- type: Transform
- pos: 84.5,48.5
+ pos: 81.5,0.5
parent: 2
- - uid: 33082
+ - uid: 27832
components:
- type: Transform
- pos: 83.5,48.5
+ pos: -54.5,44.5
parent: 2
- - uid: 33083
+ - uid: 27866
components:
- type: Transform
- pos: 82.5,48.5
+ pos: -22.5,-43.5
parent: 2
- - uid: 33084
+ - uid: 27871
components:
- type: Transform
- pos: 81.5,48.5
+ pos: 94.5,-8.5
parent: 2
- - uid: 33085
+ - uid: 27872
components:
- type: Transform
- pos: 80.5,48.5
+ pos: -53.5,44.5
parent: 2
- - uid: 33086
+ - uid: 27876
components:
- type: Transform
- pos: 78.5,62.5
+ pos: 81.5,60.5
parent: 2
- - uid: 33087
+ - uid: 27906
components:
- type: Transform
- pos: 78.5,63.5
+ pos: 95.5,-8.5
parent: 2
- - uid: 33088
+ - uid: 27949
components:
- type: Transform
- pos: 78.5,64.5
+ pos: -15.5,-40.5
parent: 2
- - uid: 33089
+ - uid: 27950
components:
- type: Transform
- pos: 78.5,65.5
+ pos: -15.5,-41.5
parent: 2
- - uid: 33090
+ - uid: 27951
components:
- type: Transform
- pos: 78.5,66.5
+ pos: -15.5,-42.5
parent: 2
- - uid: 33091
+ - uid: 27953
components:
- type: Transform
- pos: 78.5,67.5
+ pos: -23.5,-43.5
parent: 2
- - uid: 33092
+ - uid: 27955
components:
- type: Transform
- pos: 78.5,68.5
+ pos: -24.5,-43.5
parent: 2
- - uid: 33093
+ - uid: 27956
components:
- type: Transform
- pos: 79.5,68.5
+ pos: -20.5,-35.5
parent: 2
- - uid: 33094
+ - uid: 27968
components:
- type: Transform
- pos: 80.5,68.5
+ pos: 101.5,-8.5
parent: 2
- - uid: 33095
+ - uid: 27974
components:
- type: Transform
- pos: 81.5,68.5
+ pos: 109.5,-17.5
parent: 2
- - uid: 33096
+ - uid: 28030
components:
- type: Transform
- pos: 82.5,68.5
+ pos: 55.5,42.5
parent: 2
- - uid: 33097
+ - uid: 28031
components:
- type: Transform
- pos: 83.5,68.5
+ pos: 56.5,42.5
parent: 2
- - uid: 33098
+ - uid: 28032
components:
- type: Transform
- pos: 84.5,68.5
+ pos: 57.5,42.5
parent: 2
- - uid: 33099
+ - uid: 28033
components:
- type: Transform
- pos: 83.5,69.5
+ pos: 58.5,42.5
parent: 2
- - uid: 33100
+ - uid: 28034
components:
- type: Transform
- pos: 83.5,70.5
+ pos: 59.5,42.5
parent: 2
- - uid: 33101
+ - uid: 28035
components:
- type: Transform
- pos: 83.5,71.5
+ pos: 60.5,42.5
parent: 2
- - uid: 33102
+ - uid: 28036
components:
- type: Transform
- pos: 83.5,72.5
+ pos: 61.5,42.5
parent: 2
- - uid: 33103
+ - uid: 28037
components:
- type: Transform
- pos: 79.5,66.5
+ pos: 62.5,42.5
parent: 2
- - uid: 33104
+ - uid: 28038
components:
- type: Transform
- pos: 80.5,66.5
+ pos: 63.5,42.5
parent: 2
- - uid: 33105
+ - uid: 28050
components:
- type: Transform
- pos: 81.5,66.5
+ pos: 109.5,-20.5
parent: 2
- - uid: 33106
+ - uid: 28089
components:
- type: Transform
- pos: 82.5,66.5
+ pos: 58.5,43.5
parent: 2
- - uid: 33107
+ - uid: 28090
components:
- type: Transform
- pos: 83.5,66.5
+ pos: 58.5,44.5
parent: 2
- - uid: 33108
+ - uid: 28091
components:
- type: Transform
- pos: 84.5,66.5
+ pos: 58.5,45.5
parent: 2
- - uid: 33109
+ - uid: 28092
components:
- type: Transform
- pos: 85.5,66.5
+ pos: 58.5,46.5
parent: 2
- - uid: 33110
+ - uid: 28093
components:
- type: Transform
- pos: 86.5,66.5
+ pos: 58.5,47.5
parent: 2
- - uid: 33111
+ - uid: 28094
components:
- type: Transform
- pos: 86.5,67.5
+ pos: 59.5,47.5
parent: 2
- - uid: 33112
+ - uid: 28095
components:
- type: Transform
- pos: 86.5,68.5
+ pos: 60.5,47.5
parent: 2
- - uid: 33113
+ - uid: 28101
components:
- type: Transform
- pos: 87.5,68.5
+ pos: 61.5,47.5
parent: 2
- - uid: 33114
+ - uid: 28102
components:
- type: Transform
- pos: 88.5,68.5
+ pos: 62.5,47.5
parent: 2
- - uid: 33115
+ - uid: 28104
components:
- type: Transform
- pos: 88.5,67.5
+ pos: 63.5,47.5
parent: 2
- - uid: 33116
+ - uid: 28105
components:
- type: Transform
- pos: 88.5,66.5
+ pos: 64.5,47.5
parent: 2
- - uid: 33117
+ - uid: 28107
components:
- type: Transform
- pos: 88.5,65.5
+ pos: 65.5,47.5
parent: 2
- - uid: 33118
+ - uid: 28108
components:
- type: Transform
- pos: 88.5,64.5
+ pos: 66.5,47.5
parent: 2
- - uid: 33119
+ - uid: 28109
components:
- type: Transform
- pos: 88.5,63.5
+ pos: 67.5,47.5
parent: 2
- - uid: 33120
+ - uid: 28111
components:
- type: Transform
- pos: 88.5,62.5
+ pos: 68.5,47.5
parent: 2
- - uid: 33121
+ - uid: 28112
components:
- type: Transform
- pos: 85.5,65.5
+ pos: 68.5,46.5
parent: 2
- - uid: 33122
+ - uid: 28113
components:
- type: Transform
- pos: 85.5,64.5
+ pos: 68.5,45.5
parent: 2
- - uid: 33123
+ - uid: 28116
components:
- type: Transform
- pos: 84.5,64.5
+ pos: 68.5,44.5
parent: 2
- - uid: 33124
+ - uid: 28117
components:
- type: Transform
- pos: 83.5,64.5
+ pos: 68.5,43.5
parent: 2
- - uid: 33125
+ - uid: 28120
components:
- type: Transform
- pos: 82.5,64.5
+ pos: 68.5,41.5
parent: 2
- - uid: 33126
+ - uid: 28128
components:
- type: Transform
- pos: 81.5,64.5
+ pos: 68.5,37.5
parent: 2
- - uid: 33127
+ - uid: 28129
components:
- type: Transform
- pos: 80.5,64.5
+ pos: 67.5,37.5
parent: 2
- - uid: 33128
+ - uid: 28130
components:
- type: Transform
- pos: 80.5,63.5
+ pos: 66.5,37.5
parent: 2
- - uid: 33129
+ - uid: 28132
components:
- type: Transform
- pos: 89.5,62.5
+ pos: 65.5,37.5
parent: 2
- - uid: 33130
+ - uid: 28133
components:
- type: Transform
- pos: 90.5,62.5
+ pos: 64.5,37.5
parent: 2
- - uid: 33131
+ - uid: 28134
components:
- type: Transform
- pos: 91.5,62.5
+ pos: 63.5,37.5
parent: 2
- - uid: 33132
+ - uid: 28135
components:
- type: Transform
- pos: 92.5,62.5
+ pos: 62.5,37.5
parent: 2
- - uid: 33133
+ - uid: 28136
components:
- type: Transform
- pos: 93.5,62.5
+ pos: 61.5,37.5
parent: 2
- - uid: 33134
+ - uid: 28146
components:
- type: Transform
- pos: 94.5,62.5
+ pos: 103.5,-27.5
parent: 2
- - uid: 33135
+ - uid: 28147
components:
- type: Transform
- pos: 94.5,61.5
+ pos: 60.5,37.5
parent: 2
- - uid: 33136
+ - uid: 28150
components:
- type: Transform
- pos: 94.5,60.5
+ pos: 59.5,37.5
parent: 2
- - uid: 33137
+ - uid: 28180
components:
- type: Transform
- pos: 95.5,60.5
+ pos: -20.5,-44.5
parent: 2
- - uid: 33138
+ - uid: 28229
components:
- type: Transform
- pos: 95.5,59.5
+ pos: 58.5,37.5
parent: 2
- - uid: 33139
+ - uid: 28230
components:
- type: Transform
- pos: 95.5,58.5
+ pos: 58.5,38.5
parent: 2
- - uid: 33140
+ - uid: 28231
components:
- type: Transform
- pos: 95.5,57.5
+ pos: 58.5,39.5
parent: 2
- - uid: 33141
+ - uid: 28245
components:
- type: Transform
- pos: 95.5,56.5
+ pos: -18.5,-43.5
parent: 2
- - uid: 33142
+ - uid: 28247
components:
- type: Transform
- pos: 95.5,55.5
+ pos: -16.5,-43.5
parent: 2
- - uid: 33143
+ - uid: 28249
components:
- type: Transform
- pos: 95.5,54.5
+ pos: 58.5,40.5
parent: 2
- - uid: 33144
+ - uid: 28377
components:
- type: Transform
- pos: 95.5,53.5
+ pos: 106.5,-27.5
parent: 2
- - uid: 33145
+ - uid: 28386
components:
- type: Transform
- pos: 95.5,52.5
+ pos: -14.5,42.5
parent: 2
- - uid: 33146
+ - uid: 28399
components:
- type: Transform
- pos: 95.5,51.5
+ pos: 58.5,41.5
parent: 2
- - uid: 33147
+ - uid: 28405
components:
- type: Transform
- pos: 95.5,50.5
+ pos: -34.5,-42.5
parent: 2
- - uid: 33148
+ - uid: 28467
components:
- type: Transform
- pos: 95.5,49.5
+ pos: 6.5,56.5
parent: 2
- - uid: 33149
+ - uid: 28491
components:
- type: Transform
- pos: 94.5,49.5
+ pos: -24.5,39.5
parent: 2
- - uid: 33150
+ - uid: 28631
components:
- type: Transform
- pos: 93.5,49.5
+ pos: 107.5,-27.5
parent: 2
- - uid: 33151
+ - uid: 28656
components:
- type: Transform
- pos: 92.5,49.5
+ pos: 18.5,14.5
parent: 2
- - uid: 33152
+ - uid: 28663
components:
- type: Transform
- pos: 91.5,49.5
+ pos: 38.5,14.5
parent: 2
- - uid: 33153
+ - uid: 28670
components:
- type: Transform
- pos: 90.5,49.5
+ pos: 52.5,41.5
parent: 2
- - uid: 33154
+ - uid: 28671
components:
- type: Transform
- pos: 89.5,49.5
+ pos: 50.5,42.5
parent: 2
- - uid: 33155
+ - uid: 28674
components:
- type: Transform
- pos: 88.5,49.5
+ pos: 50.5,43.5
parent: 2
- - uid: 33156
+ - uid: 28676
components:
- type: Transform
- pos: 87.5,49.5
+ pos: 7.5,47.5
parent: 2
- - uid: 33157
+ - uid: 28677
components:
- type: Transform
- pos: 93.5,48.5
+ pos: 7.5,46.5
parent: 2
- - uid: 33158
+ - uid: 28678
components:
- type: Transform
- pos: 93.5,47.5
+ pos: 51.5,43.5
parent: 2
- - uid: 33159
+ - uid: 28679
components:
- type: Transform
- pos: 94.5,47.5
+ pos: 52.5,43.5
parent: 2
- - uid: 33160
+ - uid: 28681
components:
- type: Transform
- pos: 96.5,47.5
+ pos: 9.5,45.5
parent: 2
- - uid: 33161
+ - uid: 28683
components:
- type: Transform
- pos: 96.5,47.5
+ pos: 8.5,45.5
parent: 2
- - uid: 33162
+ - uid: 28753
components:
- type: Transform
- pos: 87.5,50.5
+ pos: 17.5,60.5
parent: 2
- - uid: 33163
+ - uid: 28788
components:
- type: Transform
- pos: 87.5,51.5
+ pos: -34.5,-41.5
parent: 2
- - uid: 33164
+ - uid: 28813
components:
- type: Transform
- pos: 87.5,52.5
+ pos: 32.5,0.5
parent: 2
- - uid: 33165
+ - uid: 28816
components:
- type: Transform
- pos: 86.5,52.5
+ pos: 62.5,50.5
parent: 2
- - uid: 33166
+ - uid: 28822
components:
- type: Transform
- pos: 85.5,52.5
+ pos: 11.5,45.5
parent: 2
- - uid: 33167
+ - uid: 28826
components:
- type: Transform
- pos: 85.5,51.5
+ pos: 112.5,-25.5
parent: 2
- - uid: 33168
+ - uid: 28960
components:
- type: Transform
- pos: 85.5,50.5
+ pos: 33.5,52.5
parent: 2
- - uid: 33169
+ - uid: 28982
components:
- type: Transform
- pos: 84.5,50.5
+ pos: -29.5,-42.5
parent: 2
- - uid: 33170
+ - uid: 29043
components:
- type: Transform
- pos: 83.5,50.5
+ pos: -29.5,-44.5
parent: 2
- - uid: 33171
+ - uid: 29058
components:
- type: Transform
- pos: 82.5,50.5
+ pos: -72.5,3.5
parent: 2
- - uid: 33172
+ - uid: 29129
components:
- type: Transform
- pos: 81.5,50.5
+ pos: 10.5,27.5
parent: 2
- - uid: 33173
+ - uid: 29154
components:
- type: Transform
- pos: 80.5,50.5
+ pos: 112.5,-26.5
parent: 2
- - uid: 33174
+ - uid: 29224
components:
- type: Transform
- pos: 80.5,51.5
+ pos: 109.5,-19.5
parent: 2
- - uid: 33175
+ - uid: 29225
components:
- type: Transform
- pos: 80.5,52.5
+ pos: 109.5,-16.5
parent: 2
- - uid: 33176
+ - uid: 29226
components:
- type: Transform
- pos: 81.5,52.5
+ pos: 109.5,-14.5
parent: 2
- - uid: 33177
+ - uid: 29287
components:
- type: Transform
- pos: 91.5,33.5
+ pos: 7.5,-28.5
parent: 2
- - uid: 33178
+ - uid: 29296
components:
- type: Transform
- pos: 92.5,33.5
+ pos: 15.5,56.5
parent: 2
- - uid: 33179
+ - uid: 29387
components:
- type: Transform
- pos: 93.5,33.5
+ pos: 87.5,79.5
parent: 2
- - uid: 33180
+ - uid: 29445
components:
- type: Transform
- pos: 89.5,33.5
+ pos: -95.5,-9.5
parent: 2
- - uid: 33181
+ - uid: 29446
components:
- type: Transform
- pos: 89.5,32.5
+ pos: -94.5,-9.5
parent: 2
- - uid: 33182
+ - uid: 29447
components:
- type: Transform
- pos: 89.5,31.5
+ pos: -94.5,-8.5
parent: 2
- - uid: 33183
+ - uid: 29448
components:
- type: Transform
- pos: 90.5,31.5
+ pos: -94.5,-7.5
parent: 2
- - uid: 33184
+ - uid: 29449
components:
- type: Transform
- pos: 91.5,31.5
+ pos: -94.5,-6.5
parent: 2
- - uid: 33185
+ - uid: 29450
components:
- type: Transform
- pos: 92.5,31.5
+ pos: -94.5,-5.5
parent: 2
- - uid: 33186
+ - uid: 29451
components:
- type: Transform
- pos: 93.5,31.5
+ pos: -94.5,-4.5
parent: 2
- - uid: 33187
+ - uid: 29454
components:
- type: Transform
- pos: 94.5,31.5
+ pos: -97.5,-0.5
parent: 2
- - uid: 33188
+ - uid: 29455
components:
- type: Transform
- pos: 95.5,31.5
+ pos: -97.5,0.5
parent: 2
- - uid: 33189
+ - uid: 29456
components:
- type: Transform
- pos: 96.5,31.5
+ pos: -97.5,1.5
parent: 2
- - uid: 33190
+ - uid: 29457
components:
- type: Transform
- pos: 97.5,31.5
+ pos: -98.5,1.5
parent: 2
- - uid: 33191
+ - uid: 29458
components:
- type: Transform
- pos: 98.5,31.5
+ pos: -98.5,2.5
parent: 2
- - uid: 33192
+ - uid: 29464
components:
- type: Transform
- pos: 99.5,31.5
+ pos: -98.5,8.5
parent: 2
- - uid: 33193
+ - uid: 29468
components:
- type: Transform
- pos: 100.5,31.5
+ pos: -98.5,12.5
parent: 2
- - uid: 33194
+ - uid: 29469
components:
- type: Transform
- pos: 100.5,30.5
+ pos: -98.5,13.5
parent: 2
- - uid: 33195
+ - uid: 29470
components:
- type: Transform
- pos: 100.5,29.5
+ pos: -98.5,14.5
parent: 2
- - uid: 33196
+ - uid: 29472
components:
- type: Transform
- pos: 100.5,28.5
+ pos: -98.5,16.5
parent: 2
- - uid: 33197
+ - uid: 29473
components:
- type: Transform
- pos: 100.5,27.5
+ pos: -97.5,16.5
parent: 2
- - uid: 33198
+ - uid: 29474
components:
- type: Transform
- pos: 99.5,27.5
+ pos: -96.5,16.5
parent: 2
- - uid: 33199
+ - uid: 29475
components:
- type: Transform
- pos: 98.5,27.5
+ pos: -96.5,17.5
parent: 2
- - uid: 33200
+ - uid: 29476
components:
- type: Transform
- pos: 97.5,27.5
+ pos: -96.5,26.5
parent: 2
- - uid: 33201
+ - uid: 29477
components:
- type: Transform
- pos: 96.5,27.5
+ pos: -95.5,26.5
parent: 2
- - uid: 33202
+ - uid: 29478
components:
- type: Transform
- pos: 95.5,27.5
+ pos: -94.5,26.5
parent: 2
- - uid: 33203
+ - uid: 29479
components:
- type: Transform
- pos: 95.5,28.5
+ pos: -94.5,25.5
parent: 2
- - uid: 33204
+ - uid: 29480
components:
- type: Transform
- pos: 98.5,29.5
+ pos: -94.5,24.5
parent: 2
- - uid: 33205
+ - uid: 29481
components:
- type: Transform
- pos: 97.5,29.5
+ pos: -94.5,23.5
parent: 2
- - uid: 33206
+ - uid: 29482
components:
- type: Transform
- pos: 96.5,29.5
+ pos: -94.5,22.5
parent: 2
- - uid: 33207
+ - uid: 29483
components:
- type: Transform
- pos: 95.5,29.5
+ pos: -94.5,21.5
parent: 2
- - uid: 33208
+ - uid: 29490
components:
- type: Transform
- pos: 94.5,29.5
+ pos: -89.5,21.5
parent: 2
- - uid: 33209
+ - uid: 29498
components:
- type: Transform
- pos: 93.5,29.5
+ pos: -80.5,21.5
parent: 2
- - uid: 33210
+ - uid: 29499
components:
- type: Transform
- pos: 92.5,29.5
+ pos: -80.5,20.5
parent: 2
- - uid: 33211
+ - uid: 29500
components:
- type: Transform
- pos: 91.5,29.5
+ pos: -80.5,19.5
parent: 2
- - uid: 33212
+ - uid: 29501
components:
- type: Transform
- pos: 90.5,29.5
+ pos: -86.5,18.5
parent: 2
- - uid: 33213
+ - uid: 29502
components:
- type: Transform
- pos: 89.5,29.5
+ pos: -86.5,17.5
parent: 2
- - uid: 33214
+ - uid: 29503
components:
- type: Transform
- pos: 88.5,29.5
+ pos: -86.5,16.5
parent: 2
- - uid: 33215
+ - uid: 29504
components:
- type: Transform
- pos: 87.5,29.5
+ pos: -86.5,15.5
parent: 2
- - uid: 33216
+ - uid: 29505
components:
- type: Transform
- pos: 86.5,29.5
+ pos: -86.5,14.5
parent: 2
- - uid: 33217
+ - uid: 29506
components:
- type: Transform
- pos: 85.5,29.5
+ pos: -86.5,13.5
parent: 2
- - uid: 33218
+ - uid: 29507
components:
- type: Transform
- pos: 85.5,30.5
+ pos: -86.5,12.5
parent: 2
- - uid: 33219
+ - uid: 29508
components:
- type: Transform
- pos: 85.5,31.5
+ pos: -86.5,11.5
parent: 2
- - uid: 33220
+ - uid: 29509
components:
- type: Transform
- pos: 85.5,32.5
+ pos: -86.5,10.5
parent: 2
- - uid: 33221
+ - uid: 29510
components:
- type: Transform
- pos: 84.5,32.5
+ pos: -86.5,9.5
parent: 2
- - uid: 33222
+ - uid: 29518
components:
- type: Transform
- pos: 83.5,32.5
+ pos: -85.5,-4.5
parent: 2
- - uid: 33223
+ - uid: 29519
components:
- type: Transform
- pos: 83.5,31.5
+ pos: -86.5,-4.5
parent: 2
- - uid: 33224
+ - uid: 29520
components:
- type: Transform
- pos: 83.5,30.5
+ pos: -87.5,-4.5
parent: 2
- - uid: 33225
+ - uid: 29521
components:
- type: Transform
- pos: 83.5,29.5
+ pos: -88.5,-4.5
parent: 2
- - uid: 33226
+ - uid: 29522
components:
- type: Transform
- pos: 83.5,28.5
+ pos: -89.5,-4.5
parent: 2
- - uid: 33227
+ - uid: 29523
components:
- type: Transform
- pos: 83.5,27.5
+ pos: -90.5,-4.5
parent: 2
- - uid: 33228
+ - uid: 29524
components:
- type: Transform
- pos: 87.5,30.5
+ pos: -91.5,-4.5
parent: 2
- - uid: 33229
+ - uid: 29525
components:
- type: Transform
- pos: 87.5,31.5
+ pos: -92.5,-4.5
parent: 2
- - uid: 33230
+ - uid: 29526
components:
- type: Transform
- pos: 87.5,32.5
+ pos: -93.5,-4.5
parent: 2
- - uid: 33231
+ - uid: 29527
components:
- type: Transform
- pos: 93.5,28.5
+ pos: -82.5,-4.5
parent: 2
- - uid: 33232
+ - uid: 29528
components:
- type: Transform
- pos: 93.5,27.5
+ pos: -81.5,-4.5
parent: 2
- - uid: 33233
+ - uid: 29529
components:
- type: Transform
- pos: 92.5,27.5
+ pos: -80.5,-4.5
parent: 2
- - uid: 33234
+ - uid: 29530
components:
- type: Transform
- pos: 91.5,27.5
+ pos: -69.5,1.5
parent: 2
- - uid: 33235
+ - uid: 29532
components:
- type: Transform
- pos: 90.5,27.5
+ pos: -74.5,8.5
parent: 2
- - uid: 33236
+ - uid: 29533
components:
- type: Transform
- pos: 99.5,26.5
+ pos: -76.5,-4.5
parent: 2
- - uid: 33237
+ - uid: 29534
components:
- type: Transform
- pos: 99.5,25.5
+ pos: -75.5,-4.5
parent: 2
- - uid: 33238
+ - uid: 29535
components:
- type: Transform
- pos: 98.5,25.5
+ pos: -74.5,-4.5
parent: 2
- - uid: 33239
+ - uid: 29536
components:
- type: Transform
- pos: 98.5,24.5
+ pos: -73.5,-4.5
parent: 2
- - uid: 33240
+ - uid: 29537
components:
- type: Transform
- pos: 97.5,24.5
+ pos: -72.5,-4.5
parent: 2
- - uid: 33241
+ - uid: 29546
components:
- type: Transform
- pos: 96.5,24.5
+ pos: -76.5,-2.5
parent: 2
- - uid: 33242
+ - uid: 29547
components:
- type: Transform
- pos: 95.5,24.5
+ pos: -76.5,-3.5
parent: 2
- - uid: 33243
+ - uid: 29548
components:
- type: Transform
- pos: 94.5,24.5
+ pos: -76.5,-1.5
parent: 2
- - uid: 33244
+ - uid: 29549
components:
- type: Transform
- pos: 93.5,24.5
+ pos: -76.5,-0.5
parent: 2
- - uid: 33245
+ - uid: 29550
components:
- type: Transform
- pos: 93.5,23.5
+ pos: -76.5,0.5
parent: 2
- - uid: 33246
+ - uid: 29551
components:
- type: Transform
- pos: 92.5,23.5
+ pos: -76.5,1.5
parent: 2
- - uid: 33247
+ - uid: 29552
components:
- type: Transform
- pos: 91.5,23.5
+ pos: -76.5,2.5
parent: 2
- - uid: 33248
+ - uid: 29553
components:
- type: Transform
- pos: 91.5,24.5
+ pos: -76.5,3.5
parent: 2
- - uid: 33249
+ - uid: 29554
components:
- type: Transform
- pos: 90.5,24.5
+ pos: -76.5,4.5
parent: 2
- - uid: 33250
+ - uid: 29555
components:
- type: Transform
- pos: 89.5,24.5
+ pos: -80.5,4.5
parent: 2
- - uid: 33251
+ - uid: 29556
components:
- type: Transform
- pos: 88.5,24.5
+ pos: -80.5,3.5
parent: 2
- - uid: 33252
+ - uid: 29557
components:
- type: Transform
- pos: 88.5,25.5
+ pos: -80.5,2.5
parent: 2
- - uid: 33253
+ - uid: 29558
components:
- type: Transform
- pos: 88.5,26.5
+ pos: -80.5,1.5
parent: 2
- - uid: 33254
+ - uid: 29559
components:
- type: Transform
- pos: 88.5,27.5
+ pos: -80.5,0.5
parent: 2
- - uid: 33255
+ - uid: 29560
components:
- type: Transform
- pos: 87.5,27.5
+ pos: -80.5,-0.5
parent: 2
- - uid: 33256
+ - uid: 29562
components:
- type: Transform
- pos: 86.5,27.5
+ pos: -80.5,-2.5
parent: 2
- - uid: 33257
+ - uid: 29564
components:
- type: Transform
- pos: 86.5,26.5
+ pos: -79.5,4.5
parent: 2
- - uid: 33258
+ - uid: 29565
components:
- type: Transform
- pos: 86.5,25.5
+ pos: -78.5,4.5
parent: 2
- - uid: 33259
+ - uid: 29566
components:
- type: Transform
- pos: 86.5,24.5
+ pos: -77.5,4.5
parent: 2
- - uid: 33260
+ - uid: 29567
components:
- type: Transform
- pos: 86.5,23.5
+ pos: -77.5,5.5
parent: 2
- - uid: 33261
+ - uid: 29639
components:
- type: Transform
- pos: 86.5,22.5
+ pos: 20.5,22.5
parent: 2
- - uid: 33262
+ - uid: 29643
components:
- type: Transform
- pos: 83.5,25.5
+ pos: -11.5,-29.5
parent: 2
- - uid: 33263
+ - uid: 29644
components:
- type: Transform
- pos: 82.5,25.5
+ pos: 4.5,25.5
parent: 2
- - uid: 33264
+ - uid: 29645
components:
- type: Transform
- pos: 81.5,25.5
+ pos: 5.5,25.5
parent: 2
- - uid: 33265
+ - uid: 29646
components:
- type: Transform
- pos: 81.5,26.5
+ pos: 6.5,25.5
parent: 2
- - uid: 33266
+ - uid: 29647
components:
- type: Transform
- pos: 81.5,27.5
+ pos: 7.5,25.5
parent: 2
- - uid: 33267
+ - uid: 29648
components:
- type: Transform
- pos: 80.5,27.5
+ pos: 8.5,25.5
parent: 2
- - uid: 33268
+ - uid: 29649
components:
- type: Transform
- pos: 79.5,27.5
+ pos: 9.5,25.5
parent: 2
- - uid: 33269
+ - uid: 29650
components:
- type: Transform
- pos: 79.5,26.5
+ pos: 10.5,25.5
parent: 2
- - uid: 33270
+ - uid: 29651
components:
- type: Transform
- pos: 79.5,25.5
+ pos: 11.5,25.5
parent: 2
- - uid: 33271
+ - uid: 29652
components:
- type: Transform
- pos: 79.5,24.5
+ pos: 12.5,25.5
parent: 2
- - uid: 33272
+ - uid: 29653
components:
- type: Transform
- pos: 79.5,28.5
+ pos: 13.5,25.5
parent: 2
- - uid: 33273
+ - uid: 29654
components:
- type: Transform
- pos: 79.5,29.5
+ pos: 14.5,25.5
parent: 2
- - uid: 33274
+ - uid: 29656
components:
- type: Transform
- pos: 79.5,30.5
+ pos: 16.5,25.5
parent: 2
- - uid: 33275
+ - uid: 29657
components:
- type: Transform
- pos: 80.5,30.5
+ pos: 17.5,25.5
parent: 2
- - uid: 33276
+ - uid: 29658
components:
- type: Transform
- pos: 81.5,29.5
+ pos: 18.5,25.5
parent: 2
- - uid: 33277
+ - uid: 29659
components:
- type: Transform
- pos: 81.5,30.5
+ pos: 19.5,25.5
parent: 2
- - uid: 33278
+ - uid: 29660
components:
- type: Transform
- pos: 81.5,31.5
+ pos: 20.5,25.5
parent: 2
- - uid: 33279
+ - uid: 29661
components:
- type: Transform
- pos: 81.5,32.5
+ pos: 21.5,25.5
parent: 2
- - uid: 33280
+ - uid: 29662
components:
- type: Transform
- pos: 79.5,31.5
+ pos: -12.5,-31.5
parent: 2
- - uid: 33281
+ - uid: 29663
components:
- type: Transform
- pos: 79.5,32.5
+ pos: -10.5,-29.5
parent: 2
- - uid: 33282
+ - uid: 29744
components:
- type: Transform
- pos: 79.5,33.5
+ pos: 92.5,-11.5
parent: 2
- - uid: 33283
+ - uid: 29745
components:
- type: Transform
- pos: 79.5,34.5
+ pos: 93.5,-8.5
parent: 2
- - uid: 33284
+ - uid: 29746
components:
- type: Transform
- pos: 78.5,34.5
+ pos: 100.5,-8.5
parent: 2
- - uid: 33285
+ - uid: 29747
components:
- type: Transform
- pos: 77.5,34.5
+ pos: 103.5,-8.5
parent: 2
- - uid: 33286
+ - uid: 29748
components:
- type: Transform
- pos: 76.5,34.5
+ pos: 109.5,-24.5
parent: 2
- - uid: 33287
+ - uid: 29750
components:
- type: Transform
- pos: 76.5,35.5
+ pos: 108.5,-5.5
parent: 2
- - uid: 33288
+ - uid: 29751
components:
- type: Transform
- pos: 76.5,36.5
+ pos: 106.5,-5.5
parent: 2
- - uid: 33289
+ - uid: 29752
components:
- type: Transform
- pos: 76.5,37.5
+ pos: 105.5,-5.5
parent: 2
- - uid: 33290
+ - uid: 29753
components:
- type: Transform
- pos: 76.5,38.5
+ pos: 109.5,-27.5
parent: 2
- - uid: 33291
+ - uid: 29754
components:
- type: Transform
- pos: 78.5,35.5
+ pos: 112.5,-15.5
parent: 2
- - uid: 33292
+ - uid: 29759
components:
- type: Transform
- pos: 78.5,36.5
+ pos: 90.5,-6.5
parent: 2
- - uid: 33293
+ - uid: 29760
components:
- type: Transform
- pos: 78.5,37.5
+ pos: 104.5,-5.5
parent: 2
- - uid: 33294
+ - uid: 29761
components:
- type: Transform
- pos: 78.5,38.5
+ pos: 103.5,-5.5
parent: 2
- - uid: 33295
+ - uid: 29763
components:
- type: Transform
- pos: 78.5,39.5
+ pos: 100.5,-5.5
parent: 2
- - uid: 33296
+ - uid: 29765
components:
- type: Transform
- pos: 78.5,40.5
+ pos: 101.5,-5.5
parent: 2
- - uid: 33297
+ - uid: 29767
components:
- type: Transform
- pos: 77.5,40.5
+ pos: 112.5,-6.5
parent: 2
- - uid: 33298
+ - uid: 29793
components:
- type: Transform
- pos: 76.5,40.5
+ pos: 94.5,71.5
parent: 2
- - uid: 33299
+ - uid: 29794
components:
- type: Transform
- pos: 75.5,40.5
+ pos: 101.5,71.5
parent: 2
- - uid: 33300
+ - uid: 29796
components:
- type: Transform
- pos: 74.5,40.5
+ pos: 89.5,80.5
parent: 2
- - uid: 33301
+ - uid: 29797
components:
- type: Transform
- pos: 74.5,39.5
+ pos: 89.5,76.5
parent: 2
- - uid: 33302
+ - uid: 29798
components:
- type: Transform
- pos: 74.5,38.5
+ pos: 89.5,77.5
parent: 2
- - uid: 33303
+ - uid: 29799
components:
- type: Transform
- pos: 74.5,37.5
+ pos: 89.5,78.5
parent: 2
- - uid: 33304
+ - uid: 29939
components:
- type: Transform
- pos: 74.5,36.5
+ pos: 90.5,80.5
parent: 2
- - uid: 33305
+ - uid: 29940
components:
- type: Transform
- pos: 74.5,35.5
+ pos: 89.5,79.5
parent: 2
- - uid: 33306
+ - uid: 29945
components:
- type: Transform
- pos: 74.5,34.5
+ pos: 91.5,80.5
parent: 2
- - uid: 33307
+ - uid: 29948
components:
- type: Transform
- pos: 74.5,33.5
+ pos: 112.5,-24.5
parent: 2
- - uid: 33308
+ - uid: 29951
components:
- type: Transform
- pos: 74.5,32.5
+ pos: 93.5,71.5
parent: 2
- - uid: 33309
+ - uid: 29981
components:
- type: Transform
- pos: 73.5,32.5
+ pos: 112.5,-9.5
parent: 2
- - uid: 33310
+ - uid: 30111
components:
- type: Transform
- pos: 72.5,32.5
+ pos: 90.5,71.5
parent: 2
- - uid: 33326
+ - uid: 30112
components:
- type: Transform
- pos: 70.5,32.5
+ pos: 97.5,71.5
parent: 2
- - uid: 33327
+ - uid: 30114
components:
- type: Transform
- pos: 69.5,32.5
+ pos: 100.5,71.5
parent: 2
- - uid: 33328
+ - uid: 30190
components:
- type: Transform
- pos: 68.5,32.5
+ pos: 85.5,18.5
parent: 2
- - uid: 33329
+ - uid: 30191
components:
- type: Transform
- pos: 67.5,32.5
+ pos: 85.5,17.5
parent: 2
- - uid: 33330
+ - uid: 30192
components:
- type: Transform
- pos: 66.5,32.5
+ pos: 85.5,16.5
parent: 2
- - uid: 33331
+ - uid: 30193
components:
- type: Transform
- pos: 65.5,32.5
+ pos: 85.5,15.5
parent: 2
- - uid: 33332
+ - uid: 30194
components:
- type: Transform
- pos: 64.5,32.5
+ pos: 85.5,14.5
parent: 2
- - uid: 33333
+ - uid: 30195
components:
- type: Transform
- pos: 64.5,33.5
+ pos: 85.5,13.5
parent: 2
- - uid: 33334
+ - uid: 30196
components:
- type: Transform
- pos: 64.5,34.5
+ pos: 85.5,12.5
parent: 2
- - uid: 33335
+ - uid: 30197
components:
- type: Transform
- pos: 65.5,34.5
+ pos: 85.5,11.5
parent: 2
- - uid: 33336
+ - uid: 30198
components:
- type: Transform
- pos: 66.5,34.5
+ pos: 85.5,10.5
parent: 2
- - uid: 33337
+ - uid: 30199
components:
- type: Transform
- pos: 67.5,34.5
+ pos: 85.5,9.5
parent: 2
- - uid: 33338
+ - uid: 30200
components:
- type: Transform
- pos: 68.5,34.5
+ pos: 85.5,8.5
parent: 2
- - uid: 33339
+ - uid: 30201
components:
- type: Transform
- pos: 69.5,34.5
+ pos: 84.5,8.5
parent: 2
- - uid: 33340
+ - uid: 30202
components:
- type: Transform
- pos: 70.5,34.5
+ pos: 83.5,7.5
parent: 2
- - uid: 33341
+ - uid: 30203
components:
- type: Transform
- pos: 71.5,34.5
+ pos: 83.5,7.5
parent: 2
- - uid: 33342
+ - uid: 30204
components:
- type: Transform
- pos: 72.5,34.5
+ pos: 83.5,6.5
parent: 2
- - uid: 33343
+ - uid: 30206
components:
- type: Transform
- pos: 72.5,35.5
+ pos: 83.5,8.5
parent: 2
- - uid: 33344
+ - uid: 30207
components:
- type: Transform
- pos: 72.5,36.5
+ pos: 82.5,5.5
parent: 2
- - uid: 33345
+ - uid: 30208
components:
- type: Transform
- pos: 72.5,37.5
+ pos: 81.5,5.5
parent: 2
- - uid: 33346
+ - uid: 30209
components:
- type: Transform
- pos: 72.5,38.5
+ pos: 80.5,5.5
parent: 2
- - uid: 33347
+ - uid: 30210
components:
- type: Transform
- pos: 72.5,39.5
+ pos: 80.5,4.5
parent: 2
- - uid: 33348
+ - uid: 30211
components:
- type: Transform
- pos: 71.5,39.5
+ pos: 80.5,3.5
parent: 2
- - uid: 33349
+ - uid: 30212
components:
- type: Transform
- pos: 70.5,39.5
+ pos: 79.5,3.5
parent: 2
- - uid: 33350
+ - uid: 30213
components:
- type: Transform
- pos: 70.5,38.5
+ pos: 112.5,-23.5
parent: 2
- - uid: 33351
+ - uid: 30214
components:
- type: Transform
- pos: 70.5,37.5
+ pos: 89.5,-11.5
parent: 2
- - uid: 33352
+ - uid: 30270
components:
- type: Transform
- pos: 73.5,36.5
+ pos: 7.5,45.5
parent: 2
- - uid: 33353
+ - uid: 30279
components:
- type: Transform
- pos: 61.5,32.5
+ pos: 106.5,-24.5
parent: 2
- - uid: 33354
+ - uid: 30281
components:
- type: Transform
- pos: 60.5,32.5
+ pos: -32.5,25.5
parent: 2
- - uid: 33355
+ - uid: 30318
components:
- type: Transform
- pos: 59.5,32.5
+ pos: -62.5,8.5
parent: 2
- - uid: 33356
+ - uid: 30319
components:
- type: Transform
- pos: 58.5,32.5
+ pos: -63.5,8.5
parent: 2
- - uid: 33357
+ - uid: 30324
components:
- type: Transform
- pos: 57.5,32.5
+ pos: 13.5,45.5
parent: 2
- - uid: 33358
+ - uid: 30409
components:
- type: Transform
- pos: 56.5,32.5
+ pos: 10.5,-26.5
parent: 2
- - uid: 33359
+ - uid: 30487
components:
- type: Transform
- pos: 55.5,32.5
+ pos: -43.5,-28.5
parent: 2
- - uid: 33360
+ - uid: 30560
components:
- type: Transform
- pos: 54.5,32.5
+ pos: 106.5,-8.5
parent: 2
- - uid: 33361
+ - uid: 30617
components:
- type: Transform
- pos: 53.5,32.5
+ pos: -40.5,-30.5
parent: 2
- - uid: 33362
+ - uid: 30620
components:
- type: Transform
- pos: 52.5,32.5
+ pos: -41.5,-30.5
parent: 2
- - uid: 33364
+ - uid: 30625
components:
- type: Transform
- pos: 52.5,33.5
+ pos: -41.5,-29.5
parent: 2
- - uid: 33365
+ - uid: 30627
components:
- type: Transform
- pos: 52.5,34.5
+ pos: -41.5,-28.5
parent: 2
- - uid: 33366
+ - uid: 30629
components:
- type: Transform
- pos: 52.5,35.5
+ pos: -38.5,-30.5
parent: 2
- - uid: 33367
+ - uid: 30630
components:
- type: Transform
- pos: 52.5,36.5
+ pos: -37.5,-30.5
parent: 2
- - uid: 33368
+ - uid: 30646
components:
- type: Transform
- pos: 52.5,37.5
+ pos: 112.5,-20.5
parent: 2
- - uid: 33369
+ - uid: 30650
components:
- type: Transform
- pos: 52.5,38.5
+ pos: 29.5,-22.5
parent: 2
- - uid: 33370
+ - uid: 30670
components:
- type: Transform
- pos: 52.5,39.5
+ pos: 59.5,52.5
parent: 2
- - uid: 33371
+ - uid: 30671
components:
- type: Transform
- pos: 53.5,39.5
+ pos: 59.5,53.5
parent: 2
- - uid: 33372
+ - uid: 30675
components:
- type: Transform
- pos: 54.5,39.5
+ pos: 59.5,51.5
parent: 2
- - uid: 33373
+ - uid: 30689
components:
- type: Transform
- pos: 54.5,38.5
+ pos: 58.5,51.5
parent: 2
- - uid: 33374
+ - uid: 30695
components:
- type: Transform
- pos: 54.5,37.5
+ pos: 57.5,51.5
parent: 2
- - uid: 33375
+ - uid: 30700
components:
- type: Transform
- pos: 54.5,36.5
+ pos: -35.5,63.5
parent: 2
- - uid: 33376
+ - uid: 30708
components:
- type: Transform
- pos: 54.5,35.5
+ pos: 56.5,51.5
parent: 2
- - uid: 33377
+ - uid: 30711
components:
- type: Transform
- pos: 54.5,34.5
+ pos: 55.5,51.5
parent: 2
- - uid: 33378
+ - uid: 30712
components:
- type: Transform
- pos: 55.5,34.5
+ pos: -35.5,64.5
parent: 2
- - uid: 33379
+ - uid: 30727
components:
- type: Transform
- pos: 56.5,34.5
+ pos: -56.5,-21.5
parent: 2
- - uid: 33380
+ - uid: 30732
components:
- type: Transform
- pos: 57.5,34.5
+ pos: -56.5,-22.5
parent: 2
- - uid: 33381
+ - uid: 30795
components:
- type: Transform
- pos: 58.5,34.5
+ pos: -51.5,41.5
parent: 2
- - uid: 33382
+ - uid: 30797
components:
- type: Transform
- pos: 59.5,34.5
+ pos: -22.5,-4.5
parent: 2
- - uid: 33383
+ - uid: 30805
components:
- type: Transform
- pos: 60.5,34.5
+ pos: -40.5,-15.5
parent: 2
- - uid: 33384
+ - uid: 30806
components:
- type: Transform
- pos: 60.5,35.5
+ pos: -37.5,-28.5
parent: 2
- - uid: 33385
+ - uid: 30808
components:
- type: Transform
- pos: 60.5,36.5
+ pos: -22.5,4.5
parent: 2
- - uid: 33386
+ - uid: 30822
components:
- type: Transform
- pos: 59.5,36.5
+ pos: -22.5,3.5
parent: 2
- - uid: 33387
+ - uid: 30863
components:
- type: Transform
- pos: 58.5,36.5
+ pos: -46.5,69.5
parent: 2
- - uid: 33388
+ - uid: 30868
components:
- type: Transform
- pos: 58.5,37.5
+ pos: -46.5,64.5
parent: 2
- - uid: 33389
+ - uid: 30869
components:
- type: Transform
- pos: 58.5,38.5
+ pos: -46.5,63.5
parent: 2
- - uid: 33390
+ - uid: 30870
components:
- type: Transform
- pos: 59.5,38.5
+ pos: -46.5,62.5
parent: 2
- - uid: 33391
+ - uid: 30871
components:
- type: Transform
- pos: 60.5,38.5
+ pos: -46.5,61.5
parent: 2
- - uid: 33392
+ - uid: 30872
components:
- type: Transform
- pos: 61.5,38.5
+ pos: -46.5,60.5
parent: 2
- - uid: 33393
+ - uid: 30873
components:
- type: Transform
- pos: 62.5,38.5
+ pos: -46.5,59.5
parent: 2
- - uid: 33394
+ - uid: 30875
components:
- type: Transform
- pos: 63.5,38.5
+ pos: 11.5,67.5
parent: 2
- - uid: 33395
+ - uid: 30877
components:
- type: Transform
- pos: 64.5,38.5
+ pos: -37.5,60.5
parent: 2
- - uid: 33396
+ - uid: 30878
components:
- type: Transform
- pos: 64.5,39.5
+ pos: -37.5,64.5
parent: 2
- - uid: 33397
+ - uid: 30883
components:
- type: Transform
- pos: 64.5,40.5
+ pos: -39.5,56.5
parent: 2
- - uid: 33398
+ - uid: 30884
components:
- type: Transform
- pos: 64.5,41.5
+ pos: -38.5,56.5
parent: 2
- - uid: 33399
+ - uid: 30885
components:
- type: Transform
- pos: 64.5,42.5
+ pos: -37.5,56.5
parent: 2
- - uid: 33400
+ - uid: 30886
components:
- type: Transform
- pos: 65.5,42.5
+ pos: -36.5,56.5
parent: 2
- - uid: 33401
+ - uid: 30887
components:
- type: Transform
- pos: 66.5,42.5
+ pos: -35.5,56.5
parent: 2
- - uid: 33402
+ - uid: 30888
components:
- type: Transform
- pos: 66.5,41.5
+ pos: -35.5,55.5
parent: 2
- - uid: 33403
+ - uid: 30911
components:
- type: Transform
- pos: 66.5,40.5
+ pos: -38.5,64.5
parent: 2
- - uid: 33404
+ - uid: 30912
components:
- type: Transform
- pos: 66.5,39.5
+ pos: -37.5,59.5
parent: 2
- - uid: 33405
+ - uid: 30913
components:
- type: Transform
- pos: 66.5,38.5
+ pos: -37.5,61.5
parent: 2
- - uid: 33406
+ - uid: 30914
components:
- type: Transform
- pos: 66.5,37.5
+ pos: -19.5,50.5
parent: 2
- - uid: 33407
+ - uid: 30915
components:
- type: Transform
- pos: 57.5,36.5
+ pos: -31.5,60.5
parent: 2
- - uid: 33408
+ - uid: 30924
components:
- type: Transform
- pos: 56.5,36.5
+ pos: -34.5,64.5
parent: 2
- - uid: 33409
+ - uid: 30926
components:
- type: Transform
- pos: 56.5,37.5
+ pos: -35.5,62.5
parent: 2
- - uid: 33410
+ - uid: 30927
components:
- type: Transform
- pos: 56.5,38.5
+ pos: -36.5,62.5
parent: 2
- - uid: 33411
+ - uid: 30928
components:
- type: Transform
- pos: 56.5,39.5
+ pos: -37.5,62.5
parent: 2
- - uid: 33412
+ - uid: 30929
components:
- type: Transform
- pos: 56.5,40.5
+ pos: -38.5,62.5
parent: 2
- - uid: 33413
+ - uid: 30930
components:
- type: Transform
- pos: 57.5,40.5
+ pos: -39.5,62.5
parent: 2
- - uid: 33414
+ - uid: 30972
components:
- type: Transform
- pos: 58.5,40.5
+ pos: 10.5,-12.5
parent: 2
- - uid: 33415
+ - uid: 30974
components:
- type: Transform
- pos: 59.5,40.5
+ pos: 4.5,-1.5
parent: 2
- - uid: 33416
+ - uid: 30975
components:
- type: Transform
- pos: 60.5,40.5
+ pos: 5.5,-1.5
parent: 2
- - uid: 33417
+ - uid: 30979
components:
- type: Transform
- pos: 60.5,41.5
+ pos: 6.5,-1.5
parent: 2
- - uid: 33418
+ - uid: 30980
components:
- type: Transform
- pos: 60.5,42.5
+ pos: 6.5,-0.5
parent: 2
- - uid: 33419
+ - uid: 30981
components:
- type: Transform
- pos: 60.5,43.5
+ pos: 6.5,0.5
parent: 2
- - uid: 33420
+ - uid: 30982
components:
- type: Transform
- pos: 60.5,44.5
+ pos: 6.5,1.5
parent: 2
- - uid: 33421
+ - uid: 31004
components:
- type: Transform
- pos: 60.5,45.5
+ pos: 29.5,-23.5
parent: 2
- - uid: 33422
+ - uid: 31009
components:
- type: Transform
- pos: 60.5,46.5
+ pos: -23.5,-4.5
parent: 2
- - uid: 33423
+ - uid: 31057
components:
- type: Transform
- pos: 61.5,46.5
+ pos: -38.5,65.5
parent: 2
- - uid: 33424
+ - uid: 31062
components:
- type: Transform
- pos: 62.5,46.5
+ pos: -33.5,64.5
parent: 2
- - uid: 33425
+ - uid: 31068
components:
- type: Transform
- pos: 63.5,46.5
+ pos: 41.5,41.5
parent: 2
- - uid: 33426
+ - uid: 31075
components:
- type: Transform
- pos: 64.5,46.5
+ pos: -18.5,50.5
parent: 2
- - uid: 33427
+ - uid: 31083
components:
- type: Transform
- pos: 64.5,47.5
+ pos: -20.5,4.5
parent: 2
- - uid: 33428
+ - uid: 31137
components:
- type: Transform
- pos: 64.5,48.5
+ pos: -20.5,3.5
parent: 2
- - uid: 33429
+ - uid: 31157
components:
- type: Transform
- pos: 65.5,48.5
+ pos: -18.5,4.5
parent: 2
- - uid: 33430
+ - uid: 31158
components:
- type: Transform
- pos: 66.5,48.5
+ pos: -18.5,3.5
parent: 2
- - uid: 33431
+ - uid: 31160
components:
- type: Transform
- pos: 66.5,47.5
+ pos: -16.5,4.5
parent: 2
- - uid: 33432
+ - uid: 31161
components:
- type: Transform
- pos: 66.5,46.5
+ pos: -16.5,3.5
parent: 2
- - uid: 33433
+ - uid: 31162
components:
- type: Transform
- pos: 66.5,45.5
+ pos: -14.5,5.5
parent: 2
- - uid: 33434
+ - uid: 31163
components:
- type: Transform
- pos: 66.5,44.5
+ pos: -14.5,4.5
parent: 2
- - uid: 33435
+ - uid: 31164
components:
- type: Transform
- pos: 65.5,44.5
+ pos: -14.5,3.5
parent: 2
- - uid: 33436
+ - uid: 31184
components:
- type: Transform
- pos: 64.5,44.5
+ pos: -47.5,61.5
parent: 2
- - uid: 33437
+ - uid: 31185
components:
- type: Transform
- pos: 63.5,44.5
+ pos: -48.5,61.5
parent: 2
- - uid: 33438
+ - uid: 31306
components:
- type: Transform
- pos: 62.5,44.5
+ pos: 68.5,25.5
parent: 2
- - uid: 33439
+ - uid: 31318
components:
- type: Transform
- pos: 62.5,43.5
+ pos: 112.5,-16.5
parent: 2
- - uid: 33440
+ - uid: 31343
components:
- type: Transform
- pos: 62.5,42.5
+ pos: -51.5,64.5
parent: 2
- - uid: 33441
+ - uid: 31344
components:
- type: Transform
- pos: 62.5,41.5
+ pos: -51.5,65.5
parent: 2
- - uid: 33442
+ - uid: 31345
components:
- type: Transform
- pos: 62.5,40.5
+ pos: -51.5,66.5
parent: 2
- - uid: 33443
+ - uid: 31346
components:
- type: Transform
- pos: 62.5,39.5
+ pos: -51.5,67.5
parent: 2
- - uid: 33444
+ - uid: 31347
components:
- type: Transform
- pos: 62.5,47.5
+ pos: -51.5,68.5
parent: 2
- - uid: 33445
+ - uid: 31348
components:
- type: Transform
- pos: 62.5,48.5
+ pos: -51.5,69.5
parent: 2
- - uid: 33446
+ - uid: 31349
components:
- type: Transform
- pos: 62.5,49.5
+ pos: -51.5,70.5
parent: 2
- - uid: 33447
+ - uid: 31350
components:
- type: Transform
- pos: 62.5,50.5
+ pos: -51.5,71.5
parent: 2
- - uid: 33449
+ - uid: 31351
components:
- type: Transform
- pos: 69.5,46.5
+ pos: -51.5,72.5
parent: 2
- - uid: 33450
+ - uid: 31352
components:
- type: Transform
- pos: 70.5,46.5
+ pos: -51.5,73.5
parent: 2
- - uid: 33451
+ - uid: 31353
components:
- type: Transform
- pos: 71.5,46.5
+ pos: -50.5,73.5
parent: 2
- - uid: 33452
+ - uid: 31354
components:
- type: Transform
- pos: 72.5,46.5
+ pos: -49.5,73.5
parent: 2
- - uid: 33453
+ - uid: 31355
components:
- type: Transform
- pos: 72.5,45.5
+ pos: -48.5,73.5
parent: 2
- - uid: 33454
+ - uid: 31356
components:
- type: Transform
- pos: 72.5,44.5
+ pos: -47.5,73.5
parent: 2
- - uid: 33455
+ - uid: 31357
components:
- type: Transform
- pos: 71.5,44.5
+ pos: -46.5,73.5
parent: 2
- - uid: 33456
+ - uid: 31358
components:
- type: Transform
- pos: 70.5,44.5
+ pos: -45.5,73.5
parent: 2
- - uid: 33457
+ - uid: 31359
components:
- type: Transform
- pos: 70.5,43.5
+ pos: -44.5,73.5
parent: 2
- - uid: 33458
+ - uid: 31360
components:
- type: Transform
- pos: 70.5,42.5
+ pos: -43.5,73.5
parent: 2
- - uid: 33459
+ - uid: 31361
components:
- type: Transform
- pos: 70.5,41.5
+ pos: -42.5,73.5
parent: 2
- - uid: 33460
+ - uid: 31362
components:
- type: Transform
- pos: 71.5,42.5
+ pos: -41.5,73.5
parent: 2
- - uid: 33461
+ - uid: 31363
components:
- type: Transform
- pos: 72.5,42.5
+ pos: -40.5,73.5
parent: 2
- - uid: 33462
+ - uid: 31434
components:
- type: Transform
- pos: 69.5,48.5
+ pos: 27.5,-32.5
parent: 2
- - uid: 33463
+ - uid: 31435
components:
- type: Transform
- pos: 70.5,48.5
+ pos: 28.5,-32.5
parent: 2
- - uid: 33464
+ - uid: 31451
components:
- type: Transform
- pos: 71.5,48.5
+ pos: -42.5,65.5
parent: 2
- - uid: 33465
+ - uid: 31452
components:
- type: Transform
- pos: 72.5,48.5
+ pos: -42.5,64.5
parent: 2
- - uid: 33466
+ - uid: 31453
components:
- type: Transform
- pos: 72.5,49.5
+ pos: -42.5,63.5
parent: 2
- - uid: 33467
+ - uid: 31454
components:
- type: Transform
- pos: 72.5,50.5
+ pos: -42.5,62.5
parent: 2
- - uid: 33468
+ - uid: 31455
components:
- type: Transform
- pos: 72.5,51.5
+ pos: -38.5,63.5
parent: 2
- - uid: 33469
+ - uid: 31456
components:
- type: Transform
- pos: 72.5,52.5
+ pos: -38.5,64.5
parent: 2
- - uid: 33470
+ - uid: 31457
components:
- type: Transform
- pos: 73.5,52.5
+ pos: -38.5,65.5
parent: 2
- - uid: 33471
+ - uid: 31458
components:
- type: Transform
- pos: 74.5,52.5
+ pos: -38.5,66.5
parent: 2
- - uid: 33472
+ - uid: 31464
components:
- type: Transform
- pos: 75.5,52.5
+ pos: -9.5,65.5
parent: 2
- - uid: 33473
+ - uid: 31465
components:
- type: Transform
- pos: 76.5,52.5
+ pos: -9.5,66.5
parent: 2
- - uid: 33474
+ - uid: 31466
components:
- type: Transform
- pos: 66.5,49.5
+ pos: -9.5,67.5
parent: 2
- - uid: 33475
+ - uid: 31467
components:
- type: Transform
- pos: 66.5,50.5
+ pos: -3.5,65.5
parent: 2
- - uid: 33476
+ - uid: 31468
components:
- type: Transform
- pos: 66.5,51.5
+ pos: -3.5,66.5
parent: 2
- - uid: 33477
+ - uid: 31469
components:
- type: Transform
- pos: 66.5,52.5
+ pos: -3.5,67.5
parent: 2
- - uid: 33478
+ - uid: 31472
components:
- type: Transform
- pos: 67.5,52.5
+ pos: -10.5,67.5
parent: 2
- - uid: 33479
+ - uid: 31473
components:
- type: Transform
- pos: 68.5,52.5
+ pos: -11.5,67.5
parent: 2
- - uid: 33480
+ - uid: 31497
components:
- type: Transform
- pos: 63.5,50.5
+ pos: -32.5,64.5
parent: 2
- - uid: 33481
+ - uid: 31498
components:
- type: Transform
- pos: 64.5,50.5
+ pos: -31.5,64.5
parent: 2
- - uid: 33482
+ - uid: 31499
components:
- type: Transform
- pos: 64.5,51.5
+ pos: -30.5,64.5
parent: 2
- - uid: 33483
+ - uid: 31500
components:
- type: Transform
- pos: 64.5,52.5
+ pos: -9.5,-29.5
parent: 2
- - uid: 33484
+ - uid: 31505
components:
- type: Transform
- pos: 64.5,53.5
+ pos: -23.5,39.5
parent: 2
- - uid: 33485
+ - uid: 31549
components:
- type: Transform
- pos: 64.5,54.5
+ pos: -48.5,62.5
parent: 2
- - uid: 33486
+ - uid: 31550
components:
- type: Transform
- pos: 65.5,54.5
+ pos: -48.5,63.5
parent: 2
- - uid: 33487
+ - uid: 31551
components:
- type: Transform
- pos: 66.5,54.5
+ pos: -48.5,64.5
parent: 2
- - uid: 33488
+ - uid: 31552
components:
- type: Transform
- pos: 67.5,54.5
+ pos: -48.5,65.5
parent: 2
- - uid: 33489
+ - uid: 31553
components:
- type: Transform
- pos: 68.5,54.5
+ pos: -48.5,66.5
parent: 2
- - uid: 33490
+ - uid: 31554
components:
- type: Transform
- pos: 68.5,55.5
+ pos: -48.5,67.5
parent: 2
- - uid: 33491
+ - uid: 31555
components:
- type: Transform
- pos: 68.5,56.5
+ pos: -48.5,68.5
parent: 2
- - uid: 33492
+ - uid: 31556
components:
- type: Transform
- pos: 68.5,57.5
+ pos: -48.5,69.5
parent: 2
- - uid: 33493
+ - uid: 31557
components:
- type: Transform
- pos: 68.5,58.5
+ pos: -48.5,70.5
parent: 2
- - uid: 33494
+ - uid: 31558
components:
- type: Transform
- pos: 68.5,59.5
+ pos: -47.5,70.5
parent: 2
- - uid: 33495
+ - uid: 31559
components:
- type: Transform
- pos: 68.5,60.5
+ pos: -46.5,70.5
parent: 2
- - uid: 33496
+ - uid: 31564
components:
- type: Transform
- pos: 68.5,61.5
+ pos: -56.5,44.5
parent: 2
- - uid: 33497
+ - uid: 31565
components:
- type: Transform
- pos: 68.5,62.5
+ pos: -57.5,44.5
parent: 2
- - uid: 33498
+ - uid: 31566
components:
- type: Transform
- pos: 68.5,63.5
+ pos: -58.5,44.5
parent: 2
- - uid: 33499
+ - uid: 31567
components:
- type: Transform
- pos: 68.5,64.5
+ pos: -59.5,44.5
parent: 2
- - uid: 33500
+ - uid: 31568
components:
- type: Transform
- pos: 68.5,65.5
+ pos: -59.5,45.5
parent: 2
- - uid: 33501
+ - uid: 31569
components:
- type: Transform
- pos: 68.5,66.5
+ pos: -59.5,46.5
parent: 2
- - uid: 33502
+ - uid: 31570
components:
- type: Transform
- pos: 68.5,67.5
+ pos: -59.5,47.5
parent: 2
- - uid: 33503
+ - uid: 31571
components:
- type: Transform
- pos: 61.5,48.5
+ pos: -59.5,48.5
parent: 2
- - uid: 33504
+ - uid: 31572
components:
- type: Transform
- pos: 54.5,40.5
+ pos: -59.5,49.5
parent: 2
- - uid: 33505
+ - uid: 31573
components:
- type: Transform
- pos: 54.5,41.5
+ pos: -59.5,50.5
parent: 2
- - uid: 33506
+ - uid: 31574
components:
- type: Transform
- pos: 54.5,42.5
+ pos: -59.5,51.5
parent: 2
- - uid: 33507
+ - uid: 31575
components:
- type: Transform
- pos: 53.5,42.5
+ pos: -59.5,52.5
parent: 2
- - uid: 33508
+ - uid: 31584
components:
- type: Transform
- pos: 52.5,42.5
+ pos: 75.5,-17.5
parent: 2
- - uid: 33509
+ - uid: 31585
components:
- type: Transform
- pos: 60.5,48.5
+ pos: 75.5,-18.5
parent: 2
- - uid: 33510
+ - uid: 31586
components:
- type: Transform
- pos: 59.5,48.5
+ pos: 68.5,-5.5
parent: 2
- - uid: 33511
+ - uid: 31587
components:
- type: Transform
- pos: 58.5,48.5
+ pos: 69.5,-5.5
parent: 2
- - uid: 33512
+ - uid: 31588
components:
- type: Transform
- pos: 57.5,48.5
+ pos: 70.5,-5.5
parent: 2
- - uid: 33513
+ - uid: 31589
components:
- type: Transform
- pos: 56.5,48.5
+ pos: 71.5,-5.5
parent: 2
- - uid: 33514
+ - uid: 31590
components:
- type: Transform
- pos: 56.5,47.5
+ pos: 72.5,-5.5
parent: 2
- - uid: 33515
+ - uid: 31591
components:
- type: Transform
- pos: 56.5,46.5
+ pos: 71.5,-6.5
parent: 2
- - uid: 33516
+ - uid: 31592
components:
- type: Transform
- pos: 56.5,45.5
+ pos: 71.5,-7.5
parent: 2
- - uid: 33517
+ - uid: 31597
components:
- type: Transform
- pos: 56.5,44.5
+ pos: -52.5,53.5
parent: 2
- - uid: 33518
+ - uid: 31598
components:
- type: Transform
- pos: 55.5,44.5
+ pos: -52.5,52.5
parent: 2
- - uid: 33519
+ - uid: 31599
components:
- type: Transform
- pos: 54.5,44.5
+ pos: -52.5,51.5
parent: 2
- - uid: 33520
+ - uid: 31600
components:
- type: Transform
- pos: 58.5,47.5
+ pos: -52.5,50.5
parent: 2
- - uid: 33521
+ - uid: 31601
components:
- type: Transform
- pos: 58.5,46.5
+ pos: -52.5,49.5
parent: 2
- - uid: 33522
+ - uid: 31602
components:
- type: Transform
- pos: 58.5,45.5
+ pos: -52.5,48.5
parent: 2
- - uid: 33523
+ - uid: 31603
components:
- type: Transform
- pos: 58.5,44.5
+ pos: -52.5,47.5
parent: 2
- - uid: 33524
+ - uid: 31604
components:
- type: Transform
- pos: 58.5,43.5
+ pos: -52.5,46.5
parent: 2
- - uid: 33525
+ - uid: 31605
components:
- type: Transform
- pos: 58.5,42.5
+ pos: -52.5,45.5
parent: 2
- - uid: 33526
+ - uid: 31729
components:
- type: Transform
- pos: 57.5,42.5
+ pos: 11.5,15.5
parent: 2
- - uid: 33527
+ - uid: 31742
components:
- type: Transform
- pos: 56.5,42.5
+ pos: 9.5,14.5
parent: 2
- - uid: 33528
+ - uid: 31753
components:
- type: Transform
- pos: 76.5,32.5
+ pos: 27.5,14.5
parent: 2
- - uid: 33529
+ - uid: 31755
components:
- type: Transform
- pos: 77.5,32.5
+ pos: 27.5,15.5
parent: 2
- - uid: 33530
+ - uid: 31760
components:
- type: Transform
- pos: 77.5,31.5
+ pos: -73.5,8.5
parent: 2
- - uid: 33531
+ - uid: 31772
components:
- type: Transform
- pos: 77.5,30.5
+ pos: -82.5,9.5
parent: 2
- - uid: 33532
+ - uid: 31785
components:
- type: Transform
- pos: 77.5,29.5
+ pos: -82.5,10.5
parent: 2
- - uid: 33533
+ - uid: 31801
components:
- type: Transform
- pos: 77.5,28.5
+ pos: -59.5,32.5
parent: 2
- - uid: 33534
+ - uid: 31802
components:
- type: Transform
- pos: 77.5,27.5
+ pos: -60.5,32.5
parent: 2
- - uid: 33535
+ - uid: 31803
components:
- type: Transform
- pos: 77.5,26.5
+ pos: -61.5,32.5
parent: 2
- - uid: 33536
+ - uid: 31804
components:
- type: Transform
- pos: 76.5,26.5
+ pos: -62.5,32.5
parent: 2
- - uid: 33537
+ - uid: 31805
components:
- type: Transform
- pos: 75.5,26.5
+ pos: -63.5,32.5
parent: 2
- - uid: 33538
+ - uid: 31806
components:
- type: Transform
- pos: 74.5,26.5
+ pos: -63.5,33.5
parent: 2
- - uid: 33539
+ - uid: 31807
components:
- type: Transform
- pos: 73.5,26.5
+ pos: -61.5,32.5
parent: 2
- - uid: 33540
+ - uid: 31808
components:
- type: Transform
- pos: 72.5,26.5
+ pos: -61.5,31.5
parent: 2
- - uid: 33692
+ - uid: 31809
components:
- type: Transform
- pos: -56.5,-16.5
+ pos: -61.5,30.5
parent: 2
- - uid: 33694
+ - uid: 31810
components:
- type: Transform
- pos: -56.5,-17.5
+ pos: -61.5,29.5
parent: 2
- - uid: 33695
+ - uid: 31811
components:
- type: Transform
- pos: -55.5,-17.5
+ pos: -61.5,28.5
parent: 2
- - uid: 33697
+ - uid: 31812
components:
- type: Transform
- pos: -54.5,-17.5
+ pos: -61.5,27.5
parent: 2
- - uid: 33698
+ - uid: 31813
components:
- type: Transform
- pos: -53.5,-17.5
+ pos: -61.5,26.5
parent: 2
- - uid: 33701
+ - uid: 31814
components:
- type: Transform
- pos: -56.5,17.5
+ pos: -61.5,25.5
parent: 2
- - uid: 33703
+ - uid: 31815
components:
- type: Transform
- pos: -55.5,17.5
+ pos: -61.5,24.5
parent: 2
- - uid: 33709
+ - uid: 31816
components:
- type: Transform
- pos: -53.5,19.5
+ pos: -61.5,23.5
parent: 2
- - uid: 33728
+ - uid: 31817
components:
- type: Transform
- pos: 1.5,-39.5
+ pos: -61.5,22.5
parent: 2
- - uid: 33729
+ - uid: 31818
components:
- type: Transform
- pos: 1.5,-40.5
+ pos: -62.5,22.5
parent: 2
- - uid: 33730
+ - uid: 31819
components:
- type: Transform
- pos: 1.5,-41.5
+ pos: -63.5,22.5
parent: 2
- - uid: 33731
+ - uid: 31820
components:
- type: Transform
- pos: 1.5,-42.5
+ pos: -64.5,22.5
parent: 2
- - uid: 33732
+ - uid: 31821
components:
- type: Transform
- pos: 1.5,-43.5
+ pos: -65.5,22.5
parent: 2
- - uid: 33733
+ - uid: 31822
components:
- type: Transform
- pos: -2.5,-39.5
+ pos: -65.5,23.5
parent: 2
- - uid: 33734
+ - uid: 31823
components:
- type: Transform
- pos: -2.5,-40.5
+ pos: -65.5,24.5
parent: 2
- - uid: 33735
+ - uid: 31824
components:
- type: Transform
- pos: -2.5,-41.5
+ pos: -65.5,25.5
parent: 2
- - uid: 33736
+ - uid: 31825
components:
- type: Transform
- pos: -2.5,-42.5
+ pos: -65.5,26.5
parent: 2
- - uid: 33737
+ - uid: 31826
components:
- type: Transform
- pos: -2.5,-43.5
+ pos: -65.5,27.5
parent: 2
- - uid: 33738
+ - uid: 31827
components:
- type: Transform
- pos: -1.5,-43.5
+ pos: -64.5,27.5
parent: 2
- - uid: 33739
+ - uid: 31828
components:
- type: Transform
- pos: -0.5,-43.5
+ pos: -63.5,27.5
parent: 2
- - uid: 33740
+ - uid: 31829
components:
- type: Transform
- pos: 0.5,-43.5
+ pos: -62.5,27.5
parent: 2
- - uid: 33741
+ - uid: 31830
components:
- type: Transform
- pos: 5.5,-38.5
+ pos: -60.5,27.5
parent: 2
- - uid: 33742
+ - uid: 31831
components:
- type: Transform
- pos: 5.5,-39.5
+ pos: -59.5,27.5
parent: 2
- - uid: 33743
+ - uid: 31832
components:
- type: Transform
- pos: 5.5,-40.5
+ pos: -58.5,27.5
parent: 2
- - uid: 33744
+ - uid: 31833
components:
- type: Transform
- pos: 5.5,-41.5
+ pos: -57.5,27.5
parent: 2
- - uid: 33745
+ - uid: 31834
components:
- type: Transform
- pos: 5.5,-42.5
+ pos: -57.5,26.5
parent: 2
- - uid: 33746
+ - uid: 31835
components:
- type: Transform
- pos: 5.5,-43.5
+ pos: -57.5,25.5
parent: 2
- - uid: 33747
+ - uid: 31836
components:
- type: Transform
- pos: 4.5,-43.5
+ pos: -57.5,24.5
parent: 2
- - uid: 33748
+ - uid: 31837
components:
- type: Transform
- pos: 3.5,-43.5
+ pos: -57.5,23.5
parent: 2
- - uid: 33749
+ - uid: 31838
components:
- type: Transform
- pos: 2.5,-43.5
+ pos: -57.5,22.5
parent: 2
- - uid: 33760
+ - uid: 31839
components:
- type: Transform
- pos: 3.5,7.5
+ pos: -58.5,22.5
parent: 2
- - uid: 33761
+ - uid: 31840
components:
- type: Transform
- pos: 2.5,7.5
+ pos: -59.5,22.5
parent: 2
- - uid: 33762
+ - uid: 31841
components:
- type: Transform
- pos: 1.5,7.5
+ pos: -60.5,22.5
parent: 2
- - uid: 33763
+ - uid: 31842
components:
- type: Transform
- pos: -0.5,4.5
+ pos: -61.5,22.5
parent: 2
- - uid: 33764
+ - uid: 31867
components:
- type: Transform
- pos: -0.5,5.5
+ pos: -57.5,18.5
parent: 2
- - uid: 33765
+ - uid: 31868
components:
- type: Transform
- pos: -0.5,6.5
+ pos: -57.5,19.5
parent: 2
- - uid: 33766
+ - uid: 31869
components:
- type: Transform
- pos: -0.5,7.5
+ pos: -57.5,20.5
parent: 2
- - uid: 33767
+ - uid: 31870
components:
- type: Transform
- pos: -1.5,7.5
+ pos: -58.5,20.5
parent: 2
- - uid: 33768
+ - uid: 31871
components:
- type: Transform
- pos: -2.5,7.5
+ pos: -59.5,20.5
parent: 2
- - uid: 33769
+ - uid: 31872
components:
- type: Transform
- pos: -3.5,7.5
+ pos: -60.5,20.5
parent: 2
- - uid: 33770
+ - uid: 31873
components:
- type: Transform
- pos: -4.5,7.5
+ pos: -61.5,20.5
parent: 2
- - uid: 33771
+ - uid: 31874
components:
- type: Transform
- pos: -5.5,7.5
+ pos: -62.5,20.5
parent: 2
- - uid: 33772
+ - uid: 31875
components:
- type: Transform
- pos: -6.5,7.5
+ pos: -63.5,20.5
parent: 2
- - uid: 33773
+ - uid: 31876
components:
- type: Transform
- pos: -7.5,7.5
+ pos: -63.5,19.5
parent: 2
- - uid: 33774
+ - uid: 31877
components:
- type: Transform
- pos: -8.5,7.5
+ pos: -63.5,18.5
parent: 2
- - uid: 33775
+ - uid: 31878
components:
- type: Transform
- pos: -9.5,7.5
+ pos: -63.5,17.5
parent: 2
- - uid: 33776
+ - uid: 31879
components:
- type: Transform
- pos: -3.5,-1.5
+ pos: -63.5,16.5
parent: 2
- - uid: 33777
+ - uid: 31880
components:
- type: Transform
- pos: -3.5,-0.5
+ pos: -63.5,15.5
parent: 2
- - uid: 33778
+ - uid: 31881
components:
- type: Transform
- pos: -3.5,0.5
+ pos: -62.5,15.5
parent: 2
- - uid: 33779
+ - uid: 31882
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -61.5,15.5
parent: 2
- - uid: 33780
+ - uid: 31883
components:
- type: Transform
- pos: -5.5,0.5
+ pos: -60.5,15.5
parent: 2
- - uid: 33781
+ - uid: 31884
components:
- type: Transform
- pos: -6.5,0.5
+ pos: -59.5,15.5
parent: 2
- - uid: 33782
+ - uid: 31885
components:
- type: Transform
- pos: -5.5,-4.5
+ pos: -58.5,15.5
parent: 2
- - uid: 33783
+ - uid: 31886
components:
- type: Transform
- pos: -4.5,-4.5
+ pos: -57.5,15.5
parent: 2
- - uid: 33784
+ - uid: 31890
components:
- type: Transform
- pos: -3.5,-4.5
+ pos: 93.5,-11.5
parent: 2
- - uid: 33785
+ - uid: 31892
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: 56.5,-37.5
parent: 2
- - uid: 33786
+ - uid: 31896
components:
- type: Transform
- pos: -2.5,-5.5
+ pos: 56.5,-38.5
parent: 2
- - uid: 33787
+ - uid: 31897
components:
- type: Transform
- pos: -2.5,-6.5
+ pos: 56.5,-39.5
parent: 2
- - uid: 33788
+ - uid: 31898
components:
- type: Transform
- pos: -2.5,-7.5
+ pos: 56.5,-40.5
parent: 2
- - uid: 33789
+ - uid: 31926
components:
- type: Transform
- pos: -2.5,-8.5
+ pos: 108.5,-8.5
parent: 2
- - uid: 33790
+ - uid: 31927
components:
- type: Transform
- pos: -2.5,-9.5
+ pos: 46.5,-34.5
parent: 2
- - uid: 33791
+ - uid: 31928
components:
- type: Transform
- pos: -2.5,-10.5
+ pos: 46.5,-35.5
parent: 2
- - uid: 33792
+ - uid: 31929
components:
- type: Transform
- pos: -3.5,-10.5
+ pos: 109.5,-9.5
parent: 2
- - uid: 33793
+ - uid: 31946
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -22.5,39.5
parent: 2
- - uid: 33794
+ - uid: 31947
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: -22.5,40.5
parent: 2
- - uid: 33795
+ - uid: 31948
components:
- type: Transform
- pos: -6.5,-10.5
+ pos: -22.5,41.5
parent: 2
- - uid: 33796
+ - uid: 31949
components:
- type: Transform
- pos: -6.5,-9.5
+ pos: -23.5,41.5
parent: 2
- - uid: 33797
+ - uid: 31950
components:
- type: Transform
- pos: -6.5,-8.5
+ pos: -24.5,41.5
parent: 2
- - uid: 33798
+ - uid: 31951
components:
- type: Transform
- pos: -6.5,-7.5
+ pos: -25.5,41.5
parent: 2
- - uid: 33799
+ - uid: 31952
components:
- type: Transform
- pos: -6.5,-6.5
+ pos: -26.5,41.5
parent: 2
- - uid: 33800
+ - uid: 31953
components:
- type: Transform
- pos: -6.5,-5.5
+ pos: -27.5,41.5
parent: 2
- - uid: 33801
+ - uid: 31954
components:
- type: Transform
- pos: -9.5,-10.5
+ pos: -27.5,40.5
parent: 2
- - uid: 33802
+ - uid: 31955
components:
- type: Transform
- pos: -9.5,-11.5
+ pos: 98.5,-27.5
parent: 2
- - uid: 33803
+ - uid: 31956
components:
- type: Transform
- pos: -14.5,-11.5
+ pos: 101.5,-27.5
parent: 2
- - uid: 33804
+ - uid: 31957
components:
- type: Transform
- pos: -13.5,-11.5
+ pos: 81.5,-11.5
parent: 2
- - uid: 33805
+ - uid: 31967
components:
- type: Transform
- pos: -13.5,-10.5
+ pos: 52.5,-41.5
parent: 2
- - uid: 33806
+ - uid: 31968
components:
- type: Transform
- pos: -13.5,-9.5
+ pos: 52.5,-40.5
parent: 2
- - uid: 33807
+ - uid: 31969
components:
- type: Transform
- pos: -13.5,-8.5
+ pos: 52.5,-39.5
parent: 2
- - uid: 33808
+ - uid: 31970
components:
- type: Transform
- pos: -13.5,-7.5
+ pos: 52.5,-38.5
parent: 2
- - uid: 33809
+ - uid: 31971
components:
- type: Transform
- pos: -13.5,-6.5
+ pos: 52.5,-37.5
parent: 2
- - uid: 33810
+ - uid: 31972
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: 52.5,-36.5
parent: 2
- - uid: 33811
+ - uid: 31973
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: 52.5,-35.5
parent: 2
- - uid: 33812
+ - uid: 31974
components:
- type: Transform
- pos: -17.5,-8.5
+ pos: 51.5,-35.5
parent: 2
- - uid: 33813
+ - uid: 31975
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: 50.5,-35.5
parent: 2
- - uid: 33814
+ - uid: 31976
components:
- type: Transform
- pos: -17.5,-10.5
+ pos: 49.5,-35.5
parent: 2
- - uid: 33815
+ - uid: 31977
components:
- type: Transform
- pos: -17.5,-11.5
+ pos: 48.5,-35.5
parent: 2
- - uid: 33816
+ - uid: 31978
components:
- type: Transform
- pos: -16.5,-11.5
+ pos: 47.5,-35.5
parent: 2
- - uid: 33817
+ - uid: 31979
components:
- type: Transform
- pos: -19.5,-6.5
+ pos: 45.5,-35.5
parent: 2
- - uid: 33818
+ - uid: 31980
components:
- type: Transform
- pos: -19.5,-7.5
+ pos: 44.5,-35.5
parent: 2
- - uid: 33819
+ - uid: 31981
components:
- type: Transform
- pos: -19.5,-8.5
+ pos: 43.5,-35.5
parent: 2
- - uid: 33820
+ - uid: 31982
components:
- type: Transform
- pos: -19.5,-9.5
+ pos: 42.5,-35.5
parent: 2
- - uid: 33821
+ - uid: 31983
components:
- type: Transform
- pos: -19.5,-10.5
+ pos: 41.5,-35.5
parent: 2
- - uid: 33822
+ - uid: 31984
components:
- type: Transform
- pos: -19.5,-11.5
+ pos: 40.5,-35.5
parent: 2
- - uid: 33823
+ - uid: 31985
components:
- type: Transform
- pos: -20.5,-11.5
+ pos: 40.5,-36.5
parent: 2
- - uid: 33824
+ - uid: 31986
components:
- type: Transform
- pos: -22.5,-11.5
+ pos: 40.5,-37.5
parent: 2
- - uid: 33825
+ - uid: 31987
components:
- type: Transform
- pos: -23.5,-11.5
+ pos: 40.5,-38.5
parent: 2
- - uid: 33826
+ - uid: 31988
components:
- type: Transform
- pos: -23.5,-10.5
+ pos: 40.5,-39.5
parent: 2
- - uid: 33827
+ - uid: 31989
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: 40.5,-40.5
parent: 2
- - uid: 33828
+ - uid: 31990
components:
- type: Transform
- pos: -23.5,-8.5
+ pos: 40.5,-41.5
parent: 2
- - uid: 33829
+ - uid: 32012
components:
- type: Transform
- pos: -23.5,-7.5
+ pos: -89.5,-55.5
parent: 2
- - uid: 33830
+ - uid: 32013
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: -89.5,-59.5
parent: 2
- - uid: 33831
+ - uid: 32014
components:
- type: Transform
- pos: -27.5,-9.5
+ pos: -89.5,-41.5
parent: 2
- - uid: 33832
+ - uid: 32015
components:
- type: Transform
- pos: -27.5,-8.5
+ pos: -89.5,-42.5
parent: 2
- - uid: 33833
+ - uid: 32016
components:
- type: Transform
- pos: -27.5,-7.5
+ pos: -89.5,-52.5
parent: 2
- - uid: 33834
+ - uid: 32017
components:
- type: Transform
- pos: -26.5,-7.5
+ pos: -89.5,-54.5
parent: 2
- - uid: 33835
+ - uid: 32020
components:
- type: Transform
- pos: -25.5,-7.5
+ pos: -66.5,-29.5
parent: 2
- - uid: 33836
+ - uid: 32023
components:
- type: Transform
- pos: -25.5,-8.5
+ pos: -64.5,-19.5
parent: 2
- - uid: 33837
+ - uid: 32024
components:
- type: Transform
- pos: -25.5,-9.5
+ pos: -65.5,-19.5
parent: 2
- - uid: 33838
+ - uid: 32025
components:
- type: Transform
- pos: -25.5,-10.5
+ pos: -66.5,-19.5
parent: 2
- - uid: 33839
+ - uid: 32034
components:
- type: Transform
- pos: -25.5,-11.5
+ pos: -19.5,48.5
parent: 2
- - uid: 33840
+ - uid: 32035
components:
- type: Transform
- pos: -26.5,-11.5
+ pos: -20.5,48.5
parent: 2
- - uid: 33841
+ - uid: 32036
components:
- type: Transform
- pos: -27.5,-11.5
+ pos: -21.5,48.5
parent: 2
- - uid: 33842
+ - uid: 32037
components:
- type: Transform
- pos: -28.5,-11.5
+ pos: -22.5,48.5
parent: 2
- - uid: 33843
+ - uid: 32043
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: -66.5,-13.5
parent: 2
- - uid: 33844
+ - uid: 32044
components:
- type: Transform
- pos: -5.5,-7.5
+ pos: -65.5,-13.5
parent: 2
- - uid: 33845
+ - uid: 32045
components:
- type: Transform
- pos: -4.5,-7.5
+ pos: -64.5,-13.5
parent: 2
- - uid: 33846
+ - uid: 32046
components:
- type: Transform
- pos: -3.5,-7.5
+ pos: -63.5,-13.5
parent: 2
- - uid: 33871
+ - uid: 32047
components:
- type: Transform
- pos: 18.5,-8.5
+ pos: -62.5,-13.5
parent: 2
- - uid: 33872
+ - uid: 32062
components:
- type: Transform
- pos: 18.5,-9.5
+ pos: 103.5,71.5
parent: 2
- - uid: 33873
+ - uid: 32068
components:
- type: Transform
- pos: 18.5,-10.5
+ pos: 103.5,73.5
parent: 2
- - uid: 33874
+ - uid: 32078
components:
- type: Transform
- pos: 16.5,-5.5
+ pos: 88.5,79.5
parent: 2
- - uid: 33875
+ - uid: 32103
components:
- type: Transform
- pos: 17.5,-5.5
+ pos: -67.5,51.5
parent: 2
- - uid: 33876
+ - uid: 32110
components:
- type: Transform
- pos: 18.5,-5.5
+ pos: -67.5,42.5
parent: 2
- - uid: 33877
+ - uid: 32112
components:
- type: Transform
- pos: 19.5,-5.5
+ pos: 103.5,75.5
parent: 2
- - uid: 33878
+ - uid: 32113
components:
- type: Transform
- pos: 20.5,-5.5
+ pos: -66.5,49.5
parent: 2
- - uid: 33879
+ - uid: 32114
components:
- type: Transform
- pos: 21.5,-5.5
+ pos: -66.5,50.5
parent: 2
- - uid: 33880
+ - uid: 32115
components:
- type: Transform
- pos: 21.5,-4.5
+ pos: -66.5,51.5
parent: 2
- - uid: 33881
+ - uid: 32116
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: -65.5,51.5
parent: 2
- - uid: 33882
+ - uid: 32117
components:
- type: Transform
- pos: 21.5,-2.5
+ pos: -89.5,-58.5
parent: 2
- - uid: 33883
+ - uid: 32120
components:
- type: Transform
- pos: 20.5,1.5
+ pos: -52.5,70.5
parent: 2
- - uid: 33885
+ - uid: 32121
components:
- type: Transform
- pos: 26.5,1.5
+ pos: -45.5,74.5
parent: 2
- - uid: 33890
+ - uid: 32126
components:
- type: Transform
- pos: 24.5,16.5
+ pos: -68.5,51.5
parent: 2
- - uid: 33891
+ - uid: 32127
components:
- type: Transform
- pos: 23.5,16.5
+ pos: -69.5,51.5
parent: 2
- - uid: 33892
+ - uid: 32128
components:
- type: Transform
- pos: 23.5,15.5
+ pos: -70.5,51.5
parent: 2
- - uid: 33893
+ - uid: 32129
components:
- type: Transform
- pos: 23.5,14.5
+ pos: -71.5,51.5
parent: 2
- - uid: 33894
+ - uid: 32130
components:
- type: Transform
- pos: 23.5,13.5
+ pos: -72.5,51.5
parent: 2
- - uid: 33895
+ - uid: 32131
components:
- type: Transform
- pos: 23.5,12.5
+ pos: -73.5,51.5
parent: 2
- - uid: 33896
+ - uid: 32132
components:
- type: Transform
- pos: 23.5,11.5
+ pos: -74.5,51.5
parent: 2
- - uid: 33897
+ - uid: 32133
components:
- type: Transform
- pos: 23.5,10.5
+ pos: -75.5,51.5
parent: 2
- - uid: 33898
+ - uid: 32134
components:
- type: Transform
- pos: 23.5,9.5
+ pos: -76.5,51.5
parent: 2
- - uid: 33899
+ - uid: 32135
components:
- type: Transform
- pos: 24.5,9.5
+ pos: -77.5,51.5
parent: 2
- - uid: 33900
+ - uid: 32136
components:
- type: Transform
- pos: 26.5,16.5
+ pos: -78.5,51.5
parent: 2
- - uid: 33901
+ - uid: 32137
components:
- type: Transform
- pos: 27.5,16.5
+ pos: -79.5,51.5
parent: 2
- - uid: 33902
+ - uid: 32138
components:
- type: Transform
- pos: 28.5,16.5
+ pos: -80.5,51.5
parent: 2
- - uid: 33903
+ - uid: 32139
components:
- type: Transform
- pos: 29.5,16.5
+ pos: -81.5,51.5
parent: 2
- - uid: 33904
+ - uid: 32140
components:
- type: Transform
- pos: 30.5,16.5
+ pos: 102.5,-8.5
parent: 2
- - uid: 33905
+ - uid: 32141
components:
- type: Transform
- pos: 31.5,16.5
+ pos: 109.5,-10.5
parent: 2
- - uid: 33906
+ - uid: 32142
components:
- type: Transform
- pos: 32.5,16.5
+ pos: 92.5,-27.5
parent: 2
- - uid: 33907
+ - uid: 32143
components:
- type: Transform
- pos: 33.5,16.5
+ pos: 105.5,-24.5
parent: 2
- - uid: 33908
+ - uid: 32146
components:
- type: Transform
- pos: 34.5,16.5
+ pos: 102.5,75.5
parent: 2
- - uid: 33909
+ - uid: 32149
components:
- type: Transform
- pos: 17.5,16.5
+ pos: 83.5,-11.5
parent: 2
- - uid: 33910
+ - uid: 32150
components:
- type: Transform
- pos: 16.5,16.5
+ pos: 87.5,-11.5
parent: 2
- - uid: 33911
+ - uid: 32152
components:
- type: Transform
- pos: 15.5,16.5
+ pos: 86.5,-11.5
parent: 2
- - uid: 33912
+ - uid: 32153
components:
- type: Transform
- pos: 15.5,15.5
+ pos: 84.5,-11.5
parent: 2
- - uid: 33913
+ - uid: 32154
components:
- type: Transform
- pos: 15.5,14.5
+ pos: 108.5,-24.5
parent: 2
- - uid: 33914
+ - uid: 32155
components:
- type: Transform
- pos: 15.5,13.5
+ pos: 107.5,-24.5
parent: 2
- - uid: 33915
+ - uid: 32156
components:
- type: Transform
- pos: 15.5,12.5
+ pos: 109.5,-22.5
parent: 2
- - uid: 33916
+ - uid: 32157
components:
- type: Transform
- pos: 16.5,12.5
+ pos: 101.5,-24.5
parent: 2
- - uid: 33917
+ - uid: 32158
components:
- type: Transform
- pos: 18.5,12.5
+ pos: 109.5,-21.5
parent: 2
- - uid: 33918
+ - uid: 32159
components:
- type: Transform
- pos: 19.5,12.5
+ pos: 112.5,-13.5
parent: 2
- - uid: 33919
+ - uid: 32162
components:
- type: Transform
- pos: 20.5,12.5
+ pos: 90.5,-8.5
parent: 2
- - uid: 33920
+ - uid: 32164
components:
- type: Transform
- pos: 21.5,12.5
+ pos: 90.5,-10.5
parent: 2
- - uid: 33921
+ - uid: 32174
components:
- type: Transform
- pos: 21.5,13.5
+ pos: 99.5,-5.5
parent: 2
- - uid: 33922
+ - uid: 32175
components:
- type: Transform
- pos: 21.5,14.5
+ pos: 98.5,-5.5
parent: 2
- - uid: 33923
+ - uid: 32180
components:
- type: Transform
- pos: 21.5,15.5
+ pos: 91.5,-5.5
parent: 2
- - uid: 33924
+ - uid: 32183
components:
- type: Transform
- pos: 21.5,16.5
+ pos: 90.5,-5.5
parent: 2
- - uid: 33925
+ - uid: 32184
components:
- type: Transform
- pos: 20.5,16.5
+ pos: 97.5,-5.5
parent: 2
- - uid: 33926
+ - uid: 32185
components:
- type: Transform
- pos: 19.5,16.5
+ pos: 112.5,-8.5
parent: 2
- - uid: 33927
+ - uid: 32186
components:
- type: Transform
- pos: 18.5,16.5
+ pos: 112.5,-21.5
parent: 2
- - uid: 33928
+ - uid: 32187
components:
- type: Transform
- pos: 13.5,11.5
+ pos: 112.5,-17.5
parent: 2
- - uid: 33929
+ - uid: 32188
components:
- type: Transform
- pos: 13.5,10.5
+ pos: 104.5,-8.5
parent: 2
- - uid: 33930
+ - uid: 32189
components:
- type: Transform
- pos: 13.5,9.5
+ pos: 96.5,-27.5
parent: 2
- - uid: 33931
+ - uid: 32195
components:
- type: Transform
- pos: 12.5,9.5
+ pos: 94.5,-5.5
parent: 2
- - uid: 33932
+ - uid: 32198
components:
- type: Transform
- pos: 11.5,9.5
+ pos: 95.5,-5.5
parent: 2
- - uid: 33933
+ - uid: 32199
components:
- type: Transform
- pos: 9.5,9.5
+ pos: 103.5,-24.5
parent: 2
- - uid: 33934
+ - uid: 32200
components:
- type: Transform
- pos: 8.5,9.5
+ pos: 109.5,-11.5
parent: 2
- - uid: 33935
+ - uid: 32201
components:
- type: Transform
- pos: 7.5,9.5
+ pos: 101.5,75.5
parent: 2
- - uid: 33936
+ - uid: 32202
components:
- type: Transform
- pos: 6.5,9.5
+ pos: 100.5,75.5
parent: 2
- - uid: 33937
+ - uid: 32203
components:
- type: Transform
- pos: 5.5,9.5
+ pos: 100.5,76.5
parent: 2
- - uid: 33938
+ - uid: 32204
components:
- type: Transform
- pos: 5.5,13.5
+ pos: 100.5,77.5
parent: 2
- - uid: 33939
+ - uid: 32205
components:
- type: Transform
- pos: 6.5,13.5
+ pos: 100.5,78.5
parent: 2
- - uid: 33940
+ - uid: 32206
components:
- type: Transform
- pos: 7.5,13.5
+ pos: 99.5,78.5
parent: 2
- - uid: 33941
+ - uid: 32207
components:
- type: Transform
- pos: 8.5,13.5
+ pos: 98.5,78.5
parent: 2
- - uid: 33942
+ - uid: 32210
components:
- type: Transform
- pos: 9.5,13.5
+ pos: 93.5,-5.5
parent: 2
- - uid: 33943
+ - uid: 32213
components:
- type: Transform
- pos: 11.5,13.5
+ pos: 88.5,-11.5
parent: 2
- - uid: 33944
+ - uid: 32215
components:
- type: Transform
- pos: 12.5,13.5
+ pos: 110.5,-5.5
parent: 2
- - uid: 33945
+ - uid: 32216
components:
- type: Transform
- pos: 13.5,13.5
+ pos: 92.5,-5.5
parent: 2
- - uid: 33946
+ - uid: 32217
components:
- type: Transform
- pos: 13.5,15.5
+ pos: 112.5,-12.5
parent: 2
- - uid: 33947
+ - uid: 32220
components:
- type: Transform
- pos: 6.5,15.5
+ pos: 112.5,-11.5
parent: 2
- - uid: 33948
+ - uid: 32221
components:
- type: Transform
- pos: 5.5,15.5
+ pos: 96.5,-5.5
parent: 2
- - uid: 33949
+ - uid: 32222
components:
- type: Transform
- pos: -3.5,14.5
+ pos: 104.5,-24.5
parent: 2
- - uid: 33950
+ - uid: 32223
components:
- type: Transform
- pos: -3.5,15.5
+ pos: 102.5,-24.5
parent: 2
- - uid: 33951
+ - uid: 32224
components:
- type: Transform
- pos: -3.5,16.5
+ pos: 99.5,-24.5
parent: 2
- - uid: 33952
+ - uid: 32225
components:
- type: Transform
- pos: -4.5,16.5
+ pos: 100.5,-24.5
parent: 2
- - uid: 33953
+ - uid: 32226
components:
- type: Transform
- pos: -5.5,16.5
+ pos: 109.5,-23.5
parent: 2
- - uid: 33954
+ - uid: 32234
components:
- type: Transform
- pos: -6.5,16.5
+ pos: 97.5,-27.5
parent: 2
- - uid: 33955
+ - uid: 32235
components:
- type: Transform
- pos: -7.5,16.5
+ pos: 109.5,-8.5
parent: 2
- - uid: 33956
+ - uid: 32237
components:
- type: Transform
- pos: -8.5,16.5
+ pos: 112.5,-14.5
parent: 2
- - uid: 33957
+ - uid: 32238
components:
- type: Transform
- pos: -8.5,15.5
+ pos: 112.5,-18.5
parent: 2
- - uid: 33958
+ - uid: 32239
components:
- type: Transform
- pos: -8.5,14.5
+ pos: 112.5,-19.5
parent: 2
- - uid: 33959
+ - uid: 32241
components:
- type: Transform
- pos: -8.5,12.5
+ pos: 112.5,-10.5
parent: 2
- - uid: 33960
+ - uid: 32242
components:
- type: Transform
- pos: -8.5,11.5
+ pos: 90.5,-9.5
parent: 2
- - uid: 33961
+ - uid: 32249
components:
- type: Transform
- pos: -8.5,10.5
+ pos: 90.5,-7.5
parent: 2
- - uid: 33962
+ - uid: 32255
components:
- type: Transform
- pos: -8.5,9.5
+ pos: -32.5,9.5
parent: 2
- - uid: 33963
+ - uid: 32275
components:
- type: Transform
- pos: -7.5,9.5
+ pos: -89.5,-46.5
parent: 2
- - uid: 33964
+ - uid: 32276
components:
- type: Transform
- pos: -6.5,9.5
+ pos: -89.5,-39.5
parent: 2
- - uid: 33965
+ - uid: 32293
components:
- type: Transform
- pos: -5.5,9.5
+ pos: 97.5,78.5
parent: 2
- - uid: 33966
+ - uid: 32300
components:
- type: Transform
- pos: -4.5,9.5
+ pos: 97.5,79.5
parent: 2
- - uid: 33971
+ - uid: 32302
components:
- type: Transform
- pos: -11.5,14.5
+ pos: 97.5,80.5
parent: 2
- - uid: 33972
+ - uid: 32303
components:
- type: Transform
- pos: -11.5,15.5
+ pos: 96.5,80.5
parent: 2
- - uid: 33973
+ - uid: 32304
components:
- type: Transform
- pos: -11.5,16.5
+ pos: 95.5,80.5
parent: 2
- - uid: 33974
+ - uid: 32314
components:
- type: Transform
- pos: -12.5,16.5
+ pos: 93.5,80.5
parent: 2
- - uid: 33975
+ - uid: 32315
components:
- type: Transform
- pos: -13.5,16.5
+ pos: -89.5,-40.5
parent: 2
- - uid: 33976
+ - uid: 32316
components:
- type: Transform
- pos: -14.5,16.5
+ pos: 94.5,80.5
parent: 2
- - uid: 33977
+ - uid: 32320
components:
- type: Transform
- pos: -14.5,15.5
+ pos: -89.5,-43.5
parent: 2
- - uid: 33978
+ - uid: 32329
components:
- type: Transform
- pos: -14.5,14.5
+ pos: 98.5,71.5
parent: 2
- - uid: 33979
+ - uid: 32344
components:
- type: Transform
- pos: -17.5,14.5
+ pos: -32.5,10.5
parent: 2
- - uid: 33980
+ - uid: 32440
components:
- type: Transform
- pos: -17.5,15.5
+ pos: -35.5,2.5
parent: 2
- - uid: 33981
+ - uid: 32454
components:
- type: Transform
- pos: -17.5,16.5
+ pos: 92.5,80.5
parent: 2
- - uid: 33982
+ - uid: 32465
components:
- type: Transform
- pos: -20.5,14.5
+ pos: 103.5,74.5
parent: 2
- - uid: 33983
+ - uid: 32469
components:
- type: Transform
- pos: -20.5,15.5
+ pos: 89.5,75.5
parent: 2
- - uid: 33984
+ - uid: 32470
components:
- type: Transform
- pos: -20.5,16.5
+ pos: 89.5,74.5
parent: 2
- - uid: 33985
+ - uid: 32471
components:
- type: Transform
- pos: -23.5,14.5
+ pos: 89.5,73.5
parent: 2
- - uid: 33986
+ - uid: 32472
components:
- type: Transform
- pos: -23.5,15.5
+ pos: 89.5,72.5
parent: 2
- - uid: 33987
+ - uid: 32473
components:
- type: Transform
- pos: -23.5,16.5
+ pos: 93.5,72.5
parent: 2
- - uid: 33988
+ - uid: 32474
components:
- type: Transform
- pos: -26.5,14.5
+ pos: 93.5,73.5
parent: 2
- - uid: 33989
+ - uid: 32475
components:
- type: Transform
- pos: -26.5,15.5
+ pos: 93.5,74.5
parent: 2
- - uid: 33990
+ - uid: 32476
components:
- type: Transform
- pos: -26.5,16.5
+ pos: 93.5,75.5
parent: 2
- - uid: 33991
+ - uid: 32477
components:
- type: Transform
- pos: -29.5,14.5
+ pos: 93.5,77.5
parent: 2
- - uid: 33992
+ - uid: 32478
components:
- type: Transform
- pos: -29.5,15.5
+ pos: 93.5,76.5
parent: 2
- - uid: 33994
+ - uid: 32479
components:
- type: Transform
- pos: -29.5,12.5
+ pos: 93.5,79.5
parent: 2
- - uid: 33995
+ - uid: 32480
components:
- type: Transform
- pos: -29.5,11.5
+ pos: 93.5,78.5
parent: 2
- - uid: 33996
+ - uid: 32481
components:
- type: Transform
- pos: -29.5,10.5
+ pos: 97.5,76.5
parent: 2
- - uid: 33997
+ - uid: 32518
components:
- type: Transform
- pos: -26.5,12.5
+ pos: 98.5,70.5
parent: 2
- - uid: 33998
+ - uid: 32519
components:
- type: Transform
- pos: -26.5,11.5
+ pos: 98.5,69.5
parent: 2
- - uid: 33999
+ - uid: 32520
components:
- type: Transform
- pos: -26.5,10.5
+ pos: 98.5,68.5
parent: 2
- - uid: 34001
+ - uid: 32521
components:
- type: Transform
- pos: -23.5,12.5
+ pos: 98.5,67.5
parent: 2
- - uid: 34002
+ - uid: 32522
components:
- type: Transform
- pos: -23.5,11.5
+ pos: 98.5,66.5
parent: 2
- - uid: 34003
+ - uid: 32523
components:
- type: Transform
- pos: -23.5,10.5
+ pos: 97.5,66.5
parent: 2
- - uid: 34005
+ - uid: 32524
components:
- type: Transform
- pos: -20.5,12.5
+ pos: 96.5,66.5
parent: 2
- - uid: 34006
+ - uid: 32525
components:
- type: Transform
- pos: -20.5,11.5
+ pos: 95.5,66.5
parent: 2
- - uid: 34007
+ - uid: 32687
components:
- type: Transform
- pos: -20.5,10.5
+ pos: 62.5,27.5
parent: 2
- - uid: 34009
+ - uid: 32688
components:
- type: Transform
- pos: -17.5,12.5
+ pos: 62.5,28.5
parent: 2
- - uid: 34010
+ - uid: 32689
components:
- type: Transform
- pos: -17.5,11.5
+ pos: 62.5,29.5
parent: 2
- - uid: 34011
+ - uid: 32690
components:
- type: Transform
- pos: -17.5,10.5
+ pos: 62.5,30.5
parent: 2
- - uid: 34015
+ - uid: 32692
components:
- type: Transform
- pos: -36.5,12.5
+ pos: 62.5,32.5
parent: 2
- - uid: 34016
+ - uid: 32697
components:
- type: Transform
- pos: -37.5,12.5
+ pos: 61.5,30.5
parent: 2
- - uid: 34017
+ - uid: 32698
components:
- type: Transform
- pos: -38.5,12.5
+ pos: 60.5,30.5
parent: 2
- - uid: 34018
+ - uid: 32699
components:
- type: Transform
- pos: -39.5,12.5
+ pos: 59.5,30.5
parent: 2
- - uid: 34019
+ - uid: 32700
components:
- type: Transform
- pos: -40.5,12.5
+ pos: 58.5,30.5
parent: 2
- - uid: 34020
+ - uid: 32701
components:
- type: Transform
- pos: -40.5,11.5
+ pos: 57.5,30.5
parent: 2
- - uid: 34021
+ - uid: 32702
components:
- type: Transform
- pos: -40.5,10.5
+ pos: 56.5,30.5
parent: 2
- - uid: 34022
+ - uid: 32703
components:
- type: Transform
- pos: -41.5,10.5
+ pos: 55.5,30.5
parent: 2
- - uid: 34023
+ - uid: 32704
components:
- type: Transform
- pos: -41.5,9.5
+ pos: 54.5,30.5
parent: 2
- - uid: 34024
+ - uid: 32705
components:
- type: Transform
- pos: -41.5,8.5
+ pos: 53.5,30.5
parent: 2
- - uid: 34025
+ - uid: 32706
components:
- type: Transform
- pos: -40.5,8.5
+ pos: 52.5,30.5
parent: 2
- - uid: 34026
+ - uid: 32712
components:
- type: Transform
- pos: -39.5,8.5
+ pos: 66.5,29.5
parent: 2
- - uid: 34027
+ - uid: 32713
components:
- type: Transform
- pos: -38.5,8.5
+ pos: 66.5,28.5
parent: 2
- - uid: 34028
+ - uid: 32714
components:
- type: Transform
- pos: -37.5,8.5
+ pos: 66.5,27.5
parent: 2
- - uid: 34029
+ - uid: 32715
components:
- type: Transform
- pos: -36.5,8.5
+ pos: 66.5,26.5
parent: 2
- - uid: 34030
+ - uid: 32718
components:
- type: Transform
- pos: -35.5,8.5
+ pos: 64.5,24.5
parent: 2
- - uid: 34031
+ - uid: 32719
components:
- type: Transform
- pos: -34.5,8.5
+ pos: 65.5,24.5
parent: 2
- - uid: 34049
+ - uid: 32720
components:
- type: Transform
- pos: -52.5,19.5
+ pos: 66.5,24.5
parent: 2
- - uid: 34068
+ - uid: 32721
components:
- type: Transform
- pos: -32.5,49.5
+ pos: 67.5,24.5
parent: 2
- - uid: 34069
+ - uid: 32722
components:
- type: Transform
- pos: -13.5,36.5
+ pos: 68.5,24.5
parent: 2
- - uid: 34070
+ - uid: 32723
components:
- type: Transform
- pos: -54.5,24.5
+ pos: 69.5,24.5
parent: 2
- - uid: 34071
+ - uid: 32724
components:
- type: Transform
- pos: -12.5,36.5
+ pos: 69.5,23.5
parent: 2
- - uid: 34074
+ - uid: 32731
components:
- type: Transform
- pos: -14.5,34.5
+ pos: 68.5,12.5
parent: 2
- - uid: 34075
+ - uid: 32732
components:
- type: Transform
- pos: -14.5,33.5
+ pos: 68.5,11.5
parent: 2
- - uid: 34076
+ - uid: 32733
components:
- type: Transform
- pos: -14.5,32.5
+ pos: 68.5,10.5
parent: 2
- - uid: 34077
+ - uid: 32734
components:
- type: Transform
- pos: -14.5,31.5
+ pos: 68.5,9.5
parent: 2
- - uid: 34078
+ - uid: 32735
components:
- type: Transform
- pos: -8.5,35.5
+ pos: 68.5,8.5
parent: 2
- - uid: 34079
+ - uid: 32736
components:
- type: Transform
- pos: -7.5,35.5
+ pos: 67.5,8.5
parent: 2
- - uid: 34080
+ - uid: 32737
components:
- type: Transform
- pos: -6.5,35.5
+ pos: 66.5,8.5
parent: 2
- - uid: 34081
+ - uid: 32738
components:
- type: Transform
- pos: -5.5,35.5
+ pos: 66.5,9.5
parent: 2
- - uid: 34082
+ - uid: 32739
components:
- type: Transform
- pos: -4.5,35.5
+ pos: 66.5,10.5
parent: 2
- - uid: 34083
+ - uid: 32740
components:
- type: Transform
- pos: -9.5,32.5
+ pos: 65.5,10.5
parent: 2
- - uid: 34084
+ - uid: 32741
components:
- type: Transform
- pos: -8.5,32.5
+ pos: 64.5,10.5
parent: 2
- - uid: 34085
+ - uid: 32742
components:
- type: Transform
- pos: -7.5,32.5
+ pos: 63.5,10.5
parent: 2
- - uid: 34086
+ - uid: 32743
components:
- type: Transform
- pos: -6.5,32.5
+ pos: 62.5,10.5
parent: 2
- - uid: 34087
+ - uid: 32744
components:
- type: Transform
- pos: -5.5,32.5
+ pos: 61.5,10.5
parent: 2
- - uid: 34088
+ - uid: 32745
components:
- type: Transform
- pos: -4.5,32.5
+ pos: 60.5,10.5
parent: 2
- - uid: 34089
+ - uid: 32746
components:
- type: Transform
- pos: -5.5,25.5
+ pos: 59.5,10.5
parent: 2
- - uid: 34090
+ - uid: 32747
components:
- type: Transform
- pos: -5.5,24.5
+ pos: 58.5,10.5
parent: 2
- - uid: 34091
+ - uid: 32748
components:
- type: Transform
- pos: -5.5,23.5
+ pos: 57.5,10.5
parent: 2
- - uid: 34092
+ - uid: 32749
components:
- type: Transform
- pos: -6.5,23.5
+ pos: 56.5,10.5
parent: 2
- - uid: 34093
+ - uid: 32750
components:
- type: Transform
- pos: -7.5,23.5
+ pos: 55.5,10.5
parent: 2
- - uid: 34094
+ - uid: 32751
components:
- type: Transform
- pos: -7.5,24.5
+ pos: 54.5,10.5
parent: 2
- - uid: 34095
+ - uid: 32752
components:
- type: Transform
- pos: -8.5,24.5
+ pos: 54.5,24.5
parent: 2
- - uid: 34096
+ - uid: 32753
components:
- type: Transform
- pos: -9.5,24.5
+ pos: 55.5,24.5
parent: 2
- - uid: 34097
+ - uid: 32754
components:
- type: Transform
- pos: -10.5,24.5
+ pos: 56.5,24.5
parent: 2
- - uid: 34098
+ - uid: 32755
components:
- type: Transform
- pos: -11.5,24.5
+ pos: 57.5,24.5
parent: 2
- - uid: 34099
+ - uid: 32756
components:
- type: Transform
- pos: -11.5,25.5
+ pos: 58.5,24.5
parent: 2
- - uid: 34100
+ - uid: 32757
components:
- type: Transform
- pos: -4.5,23.5
+ pos: 59.5,24.5
parent: 2
- - uid: 34101
+ - uid: 32758
components:
- type: Transform
- pos: -1.5,27.5
+ pos: 60.5,24.5
parent: 2
- - uid: 34102
+ - uid: 32759
components:
- type: Transform
- pos: -1.5,26.5
+ pos: 61.5,24.5
parent: 2
- - uid: 34103
+ - uid: 32760
components:
- type: Transform
- pos: -1.5,25.5
+ pos: 62.5,24.5
parent: 2
- - uid: 34104
+ - uid: 32790
components:
- type: Transform
- pos: -18.5,39.5
+ pos: 78.5,48.5
parent: 2
- - uid: 34105
+ - uid: 32898
components:
- type: Transform
- pos: -17.5,40.5
+ pos: 71.5,82.5
parent: 2
- - uid: 34106
+ - uid: 32899
components:
- type: Transform
- pos: -17.5,41.5
+ pos: 78.5,73.5
parent: 2
- - uid: 34107
+ - uid: 33353
components:
- type: Transform
- pos: -17.5,42.5
+ pos: 61.5,32.5
parent: 2
- - uid: 34108
+ - uid: 33354
components:
- type: Transform
- pos: -16.5,42.5
+ pos: 60.5,32.5
parent: 2
- - uid: 34109
+ - uid: 33355
components:
- type: Transform
- pos: -16.5,43.5
+ pos: 59.5,32.5
parent: 2
- - uid: 34110
+ - uid: 33356
components:
- type: Transform
- pos: -27.5,42.5
+ pos: 58.5,32.5
parent: 2
- - uid: 34111
+ - uid: 33357
components:
- type: Transform
- pos: -26.5,42.5
+ pos: 57.5,32.5
parent: 2
- - uid: 34112
+ - uid: 33364
components:
- type: Transform
- pos: -25.5,42.5
+ pos: 52.5,33.5
parent: 2
- - uid: 34113
+ - uid: 33365
components:
- type: Transform
- pos: -24.5,42.5
+ pos: 52.5,34.5
parent: 2
- - uid: 34114
+ - uid: 33366
components:
- type: Transform
- pos: -23.5,42.5
+ pos: 52.5,35.5
parent: 2
- - uid: 34115
+ - uid: 33367
components:
- type: Transform
- pos: -22.5,42.5
+ pos: 52.5,36.5
parent: 2
- - uid: 34116
+ - uid: 33368
components:
- type: Transform
- pos: -21.5,42.5
+ pos: 52.5,37.5
parent: 2
- - uid: 34117
+ - uid: 33369
components:
- type: Transform
- pos: -20.5,42.5
+ pos: 52.5,38.5
parent: 2
- - uid: 34119
+ - uid: 33370
components:
- type: Transform
- pos: -18.5,42.5
+ pos: 52.5,39.5
parent: 2
- - uid: 34120
+ - uid: 33386
components:
- type: Transform
- pos: -24.5,43.5
+ pos: 77.5,54.5
parent: 2
- - uid: 34123
+ - uid: 33387
components:
- type: Transform
- pos: -18.5,45.5
+ pos: 78.5,54.5
parent: 2
- - uid: 34124
+ - uid: 33388
components:
- type: Transform
- pos: -29.5,41.5
+ pos: 78.5,53.5
parent: 2
- - uid: 34125
+ - uid: 33389
components:
- type: Transform
- pos: -29.5,42.5
+ pos: 78.5,52.5
parent: 2
- - uid: 34126
+ - uid: 33390
components:
- type: Transform
- pos: -29.5,43.5
+ pos: 78.5,51.5
parent: 2
- - uid: 34128
+ - uid: 33391
components:
- type: Transform
- pos: 11.5,38.5
+ pos: 78.5,50.5
parent: 2
- - uid: 34129
+ - uid: 33392
components:
- type: Transform
- pos: 11.5,37.5
+ pos: 77.5,50.5
parent: 2
- - uid: 34130
+ - uid: 33393
components:
- type: Transform
- pos: 11.5,36.5
+ pos: 77.5,49.5
parent: 2
- - uid: 34131
+ - uid: 33394
components:
- type: Transform
- pos: 11.5,35.5
+ pos: 77.5,48.5
parent: 2
- - uid: 34132
+ - uid: 33395
components:
- type: Transform
- pos: 10.5,35.5
+ pos: 77.5,47.5
parent: 2
- - uid: 34133
+ - uid: 33396
components:
- type: Transform
- pos: 9.5,35.5
+ pos: 77.5,46.5
parent: 2
- - uid: 34134
+ - uid: 33397
components:
- type: Transform
- pos: 8.5,35.5
+ pos: 77.5,45.5
parent: 2
- - uid: 34135
+ - uid: 33398
components:
- type: Transform
- pos: 7.5,35.5
+ pos: 77.5,44.5
parent: 2
- - uid: 34136
+ - uid: 33399
components:
- type: Transform
- pos: 6.5,35.5
+ pos: 77.5,43.5
parent: 2
- - uid: 34137
+ - uid: 33400
components:
- type: Transform
- pos: 5.5,35.5
+ pos: 77.5,42.5
parent: 2
- - uid: 34138
+ - uid: 33401
components:
- type: Transform
- pos: 4.5,35.5
+ pos: 77.5,41.5
parent: 2
- - uid: 34139
+ - uid: 33402
components:
- type: Transform
- pos: 4.5,36.5
+ pos: 77.5,40.5
parent: 2
- - uid: 34140
+ - uid: 33403
components:
- type: Transform
- pos: 4.5,37.5
+ pos: 77.5,39.5
parent: 2
- - uid: 34141
+ - uid: 33404
components:
- type: Transform
- pos: 4.5,38.5
+ pos: 76.5,39.5
parent: 2
- - uid: 34142
+ - uid: 33405
components:
- type: Transform
- pos: 4.5,40.5
+ pos: 75.5,39.5
parent: 2
- - uid: 34143
+ - uid: 33406
components:
- type: Transform
- pos: 4.5,41.5
+ pos: 74.5,39.5
parent: 2
- - uid: 34144
+ - uid: 33407
components:
- type: Transform
- pos: 4.5,42.5
+ pos: 80.5,48.5
parent: 2
- - uid: 34145
+ - uid: 33408
components:
- type: Transform
- pos: 5.5,42.5
+ pos: 79.5,48.5
parent: 2
- - uid: 34146
+ - uid: 33410
components:
- type: Transform
- pos: 6.5,42.5
+ pos: 81.5,48.5
parent: 2
- - uid: 34147
+ - uid: 33413
components:
- type: Transform
- pos: 7.5,42.5
+ pos: 82.5,48.5
parent: 2
- - uid: 34148
+ - uid: 33414
components:
- type: Transform
- pos: 7.5,41.5
+ pos: 83.5,48.5
parent: 2
- - uid: 34149
+ - uid: 33415
components:
- type: Transform
- pos: 7.5,40.5
+ pos: 84.5,48.5
parent: 2
- - uid: 34150
+ - uid: 33416
components:
- type: Transform
- pos: 7.5,38.5
+ pos: 85.5,48.5
parent: 2
- - uid: 34151
+ - uid: 33417
components:
- type: Transform
- pos: 7.5,37.5
+ pos: 86.5,48.5
parent: 2
- - uid: 34152
+ - uid: 33418
components:
- type: Transform
- pos: 7.5,36.5
+ pos: 87.5,48.5
parent: 2
- - uid: 34154
+ - uid: 33419
components:
- type: Transform
- pos: 9.5,42.5
+ pos: 88.5,48.5
parent: 2
- - uid: 34155
+ - uid: 33420
components:
- type: Transform
- pos: 8.5,42.5
+ pos: 89.5,48.5
parent: 2
- - uid: 34156
+ - uid: 33421
components:
- type: Transform
- pos: 18.5,38.5
+ pos: 90.5,48.5
parent: 2
- - uid: 34157
+ - uid: 33422
components:
- type: Transform
- pos: 18.5,37.5
+ pos: 91.5,48.5
parent: 2
- - uid: 34158
+ - uid: 33423
components:
- type: Transform
- pos: 18.5,36.5
+ pos: 92.5,48.5
parent: 2
- - uid: 34159
+ - uid: 33424
components:
- type: Transform
- pos: 18.5,35.5
+ pos: 92.5,49.5
parent: 2
- - uid: 34160
+ - uid: 33425
components:
- type: Transform
- pos: 17.5,35.5
+ pos: 92.5,50.5
parent: 2
- - uid: 34161
+ - uid: 33426
components:
- type: Transform
- pos: 16.5,35.5
+ pos: 92.5,51.5
parent: 2
- - uid: 34162
+ - uid: 33427
components:
- type: Transform
- pos: 16.5,36.5
+ pos: 92.5,52.5
parent: 2
- - uid: 34163
+ - uid: 33428
components:
- type: Transform
- pos: 16.5,37.5
+ pos: 92.5,53.5
parent: 2
- - uid: 34164
+ - uid: 33429
components:
- type: Transform
- pos: 16.5,38.5
+ pos: 93.5,53.5
parent: 2
- - uid: 34165
+ - uid: 33430
components:
- type: Transform
- pos: 19.5,35.5
+ pos: 94.5,53.5
parent: 2
- - uid: 34166
+ - uid: 33431
components:
- type: Transform
- pos: 20.5,35.5
+ pos: 95.5,53.5
parent: 2
- - uid: 34167
+ - uid: 33432
components:
- type: Transform
- pos: 20.5,36.5
+ pos: 96.5,53.5
parent: 2
- - uid: 34168
+ - uid: 33433
components:
- type: Transform
- pos: 20.5,37.5
+ pos: 97.5,53.5
parent: 2
- - uid: 34169
+ - uid: 33434
components:
- type: Transform
- pos: 20.5,38.5
+ pos: 98.5,53.5
parent: 2
- - uid: 34170
+ - uid: 33435
components:
- type: Transform
- pos: 20.5,39.5
+ pos: 99.5,53.5
parent: 2
- - uid: 34171
+ - uid: 33436
components:
- type: Transform
- pos: 20.5,40.5
+ pos: 100.5,53.5
parent: 2
- - uid: 34172
+ - uid: 33437
components:
- type: Transform
- pos: 21.5,35.5
+ pos: 101.5,53.5
parent: 2
- - uid: 34173
+ - uid: 33438
components:
- type: Transform
- pos: 22.5,35.5
+ pos: 102.5,53.5
parent: 2
- - uid: 34174
+ - uid: 33439
components:
- type: Transform
- pos: 23.5,35.5
+ pos: 103.5,53.5
parent: 2
- - uid: 34175
+ - uid: 33440
components:
- type: Transform
- pos: 23.5,36.5
+ pos: 104.5,53.5
parent: 2
- - uid: 34176
+ - uid: 33441
components:
- type: Transform
- pos: 23.5,37.5
+ pos: 105.5,53.5
parent: 2
- - uid: 34177
+ - uid: 33442
components:
- type: Transform
- pos: 23.5,38.5
+ pos: 106.5,53.5
parent: 2
- - uid: 34178
+ - uid: 33443
components:
- type: Transform
- pos: 23.5,39.5
+ pos: 107.5,53.5
parent: 2
- - uid: 34179
+ - uid: 33447
components:
- type: Transform
- pos: 28.5,39.5
+ pos: 92.5,54.5
parent: 2
- - uid: 34180
+ - uid: 33448
components:
- type: Transform
- pos: 22.5,40.5
+ pos: 92.5,55.5
parent: 2
- - uid: 34181
+ - uid: 33449
components:
- type: Transform
- pos: 22.5,39.5
+ pos: 92.5,56.5
parent: 2
- - uid: 34182
+ - uid: 33450
components:
- type: Transform
- pos: 21.5,39.5
+ pos: 92.5,57.5
parent: 2
- - uid: 34184
+ - uid: 33451
components:
- type: Transform
- pos: 28.5,45.5
+ pos: 78.5,39.5
parent: 2
- - uid: 34185
+ - uid: 33452
components:
- type: Transform
- pos: 29.5,45.5
+ pos: 79.5,39.5
parent: 2
- - uid: 34187
+ - uid: 33453
components:
- type: Transform
- pos: 23.5,48.5
+ pos: 80.5,39.5
parent: 2
- - uid: 34190
+ - uid: 33454
components:
- type: Transform
- pos: 29.5,50.5
+ pos: 81.5,39.5
parent: 2
- - uid: 34191
+ - uid: 33455
components:
- type: Transform
- pos: 29.5,51.5
+ pos: 82.5,39.5
parent: 2
- - uid: 34192
+ - uid: 33457
components:
- type: Transform
- pos: 29.5,52.5
+ pos: 82.5,38.5
parent: 2
- - uid: 34193
+ - uid: 33458
components:
- type: Transform
- pos: 28.5,52.5
+ pos: 83.5,38.5
parent: 2
- - uid: 34194
+ - uid: 33459
components:
- type: Transform
- pos: 27.5,52.5
+ pos: 83.5,37.5
parent: 2
- - uid: 34195
+ - uid: 33460
components:
- type: Transform
- pos: 26.5,52.5
+ pos: 83.5,36.5
parent: 2
- - uid: 34196
+ - uid: 33461
components:
- type: Transform
- pos: 25.5,52.5
+ pos: 84.5,36.5
parent: 2
- - uid: 34197
+ - uid: 33462
components:
- type: Transform
- pos: 24.5,52.5
+ pos: 84.5,35.5
parent: 2
- - uid: 34198
+ - uid: 33463
components:
- type: Transform
- pos: 24.5,51.5
+ pos: 85.5,35.5
parent: 2
- - uid: 34199
+ - uid: 33464
components:
- type: Transform
- pos: 23.5,51.5
+ pos: 86.5,35.5
parent: 2
- - uid: 34200
+ - uid: 33465
components:
- type: Transform
- pos: 23.5,50.5
+ pos: 87.5,35.5
parent: 2
- - uid: 34201
+ - uid: 33466
components:
- type: Transform
- pos: 37.5,46.5
+ pos: 88.5,35.5
parent: 2
- - uid: 34202
+ - uid: 33467
components:
- type: Transform
- pos: 36.5,46.5
+ pos: 89.5,35.5
parent: 2
- - uid: 34203
+ - uid: 33468
components:
- type: Transform
- pos: 35.5,46.5
+ pos: 90.5,35.5
parent: 2
- - uid: 34204
+ - uid: 33469
components:
- type: Transform
- pos: 34.5,46.5
+ pos: 90.5,36.5
parent: 2
- - uid: 34205
+ - uid: 33470
components:
- type: Transform
- pos: 34.5,47.5
+ pos: 91.5,36.5
parent: 2
- - uid: 34206
+ - uid: 33471
components:
- type: Transform
- pos: 34.5,48.5
+ pos: 91.5,37.5
parent: 2
- - uid: 34207
+ - uid: 33472
components:
- type: Transform
- pos: 35.5,50.5
+ pos: 91.5,38.5
parent: 2
- - uid: 34208
+ - uid: 33473
components:
- type: Transform
- pos: 35.5,51.5
+ pos: 92.5,38.5
parent: 2
- - uid: 34209
+ - uid: 33474
components:
- type: Transform
- pos: 35.5,52.5
+ pos: 92.5,39.5
parent: 2
- - uid: 34210
+ - uid: 33475
components:
- type: Transform
- pos: 35.5,53.5
+ pos: 92.5,40.5
parent: 2
- - uid: 34211
+ - uid: 33476
components:
- type: Transform
- pos: 35.5,54.5
+ pos: 92.5,41.5
parent: 2
- - uid: 34212
+ - uid: 33478
components:
- type: Transform
- pos: 35.5,55.5
+ pos: 92.5,42.5
parent: 2
- - uid: 34213
+ - uid: 33479
components:
- type: Transform
- pos: 35.5,56.5
+ pos: 92.5,43.5
parent: 2
- - uid: 34214
+ - uid: 33480
components:
- type: Transform
- pos: 35.5,57.5
+ pos: 93.5,43.5
parent: 2
- - uid: 34215
+ - uid: 33482
components:
- type: Transform
- pos: 36.5,57.5
+ pos: 91.5,14.5
parent: 2
- - uid: 34216
+ - uid: 33483
components:
- type: Transform
- pos: 48.5,57.5
+ pos: 91.5,13.5
parent: 2
- - uid: 34217
+ - uid: 33498
components:
- type: Transform
- pos: 49.5,57.5
+ pos: 78.5,59.5
parent: 2
- - uid: 34218
+ - uid: 33499
components:
- type: Transform
- pos: 49.5,56.5
+ pos: 78.5,58.5
parent: 2
- - uid: 34219
+ - uid: 33500
components:
- type: Transform
- pos: 49.5,55.5
+ pos: 78.5,57.5
parent: 2
- - uid: 34220
+ - uid: 33501
components:
- type: Transform
- pos: 49.5,54.5
+ pos: 78.5,56.5
parent: 2
- - uid: 34221
+ - uid: 33502
components:
- type: Transform
- pos: 49.5,53.5
+ pos: 78.5,55.5
parent: 2
- - uid: 34222
+ - uid: 33503
components:
- type: Transform
- pos: 49.5,52.5
+ pos: 78.5,60.5
parent: 2
- - uid: 34223
+ - uid: 33504
components:
- type: Transform
- pos: 49.5,51.5
+ pos: 78.5,61.5
parent: 2
- - uid: 34224
+ - uid: 33505
components:
- type: Transform
- pos: 49.5,50.5
+ pos: 78.5,62.5
parent: 2
- - uid: 34225
+ - uid: 33506
components:
- type: Transform
- pos: 50.5,48.5
+ pos: 54.5,42.5
parent: 2
- - uid: 34226
+ - uid: 33507
components:
- type: Transform
- pos: 50.5,47.5
+ pos: 53.5,42.5
parent: 2
- - uid: 34227
+ - uid: 33508
components:
- type: Transform
- pos: 50.5,46.5
+ pos: 52.5,42.5
parent: 2
- - uid: 34228
+ - uid: 33509
components:
- type: Transform
- pos: 49.5,46.5
+ pos: 78.5,63.5
parent: 2
- - uid: 34229
+ - uid: 33510
components:
- type: Transform
- pos: 48.5,46.5
+ pos: 78.5,64.5
parent: 2
- - uid: 34230
+ - uid: 33511
components:
- type: Transform
- pos: 47.5,46.5
+ pos: 78.5,65.5
parent: 2
- - uid: 34231
+ - uid: 33512
components:
- type: Transform
- pos: 46.5,46.5
+ pos: 78.5,66.5
parent: 2
- - uid: 34232
+ - uid: 33513
components:
- type: Transform
- pos: 45.5,46.5
+ pos: 78.5,67.5
parent: 2
- - uid: 34233
+ - uid: 33514
components:
- type: Transform
- pos: 44.5,46.5
+ pos: 78.5,68.5
parent: 2
- - uid: 34234
+ - uid: 33515
components:
- type: Transform
- pos: 43.5,46.5
+ pos: 78.5,69.5
parent: 2
- - uid: 34235
+ - uid: 33516
components:
- type: Transform
- pos: 41.5,46.5
+ pos: 78.5,70.5
parent: 2
- - uid: 34236
+ - uid: 33517
components:
- type: Transform
- pos: 40.5,46.5
+ pos: 78.5,71.5
parent: 2
- - uid: 34237
+ - uid: 33518
components:
- type: Transform
- pos: 49.5,44.5
+ pos: 55.5,44.5
parent: 2
- - uid: 34238
+ - uid: 33519
components:
- type: Transform
- pos: 48.5,44.5
+ pos: 78.5,72.5
parent: 2
- - uid: 34239
+ - uid: 33532
components:
- type: Transform
- pos: 47.5,44.5
+ pos: 92.5,13.5
parent: 2
- - uid: 34240
+ - uid: 33533
components:
- type: Transform
- pos: 46.5,44.5
+ pos: 93.5,13.5
parent: 2
- - uid: 34241
+ - uid: 33534
components:
- type: Transform
- pos: 45.5,44.5
+ pos: 94.5,13.5
parent: 2
- - uid: 34242
+ - uid: 33535
components:
- type: Transform
- pos: 44.5,44.5
+ pos: 95.5,13.5
parent: 2
- - uid: 34243
+ - uid: 33536
components:
- type: Transform
- pos: 43.5,44.5
+ pos: 96.5,13.5
parent: 2
- - uid: 34245
+ - uid: 33541
components:
- type: Transform
- pos: 41.5,44.5
+ pos: 86.5,27.5
parent: 2
- - uid: 34246
+ - uid: 33552
components:
- type: Transform
- pos: 40.5,44.5
+ pos: 97.5,13.5
parent: 2
- - uid: 34247
+ - uid: 33553
components:
- type: Transform
- pos: 38.5,44.5
+ pos: 98.5,13.5
parent: 2
- - uid: 34248
+ - uid: 33554
components:
- type: Transform
- pos: 37.5,44.5
+ pos: 99.5,13.5
parent: 2
- - uid: 34249
+ - uid: 33555
components:
- type: Transform
- pos: 37.5,43.5
+ pos: 100.5,13.5
parent: 2
- - uid: 34250
+ - uid: 33556
components:
- type: Transform
- pos: 37.5,42.5
+ pos: 100.5,14.5
parent: 2
- - uid: 34251
+ - uid: 33557
components:
- type: Transform
- pos: 37.5,41.5
+ pos: 101.5,14.5
parent: 2
- - uid: 34252
+ - uid: 33558
components:
- type: Transform
- pos: 37.5,40.5
+ pos: 101.5,15.5
parent: 2
- - uid: 34253
+ - uid: 33559
components:
- type: Transform
- pos: 37.5,39.5
+ pos: 102.5,15.5
parent: 2
- - uid: 34254
+ - uid: 33692
components:
- type: Transform
- pos: 37.5,38.5
+ pos: -56.5,-16.5
parent: 2
- - uid: 34255
+ - uid: 33694
components:
- type: Transform
- pos: 37.5,37.5
+ pos: -56.5,-17.5
parent: 2
- - uid: 34256
+ - uid: 33695
components:
- type: Transform
- pos: 37.5,36.5
+ pos: -55.5,-17.5
parent: 2
- - uid: 34257
+ - uid: 33697
components:
- type: Transform
- pos: 37.5,35.5
+ pos: -54.5,-17.5
parent: 2
- - uid: 34258
+ - uid: 33698
components:
- type: Transform
- pos: 37.5,34.5
+ pos: -53.5,-17.5
parent: 2
- - uid: 34259
+ - uid: 33701
components:
- type: Transform
- pos: 37.5,33.5
+ pos: -56.5,17.5
parent: 2
- - uid: 34260
+ - uid: 33703
components:
- type: Transform
- pos: 37.5,32.5
+ pos: -55.5,17.5
parent: 2
- - uid: 34261
+ - uid: 33709
components:
- type: Transform
- pos: 38.5,32.5
+ pos: -53.5,19.5
parent: 2
- - uid: 34262
+ - uid: 33728
components:
- type: Transform
- pos: 49.5,32.5
+ pos: 1.5,-39.5
parent: 2
- - uid: 34263
+ - uid: 33729
components:
- type: Transform
- pos: 49.5,33.5
+ pos: 1.5,-40.5
parent: 2
- - uid: 34264
+ - uid: 33730
components:
- type: Transform
- pos: 49.5,34.5
+ pos: 1.5,-41.5
parent: 2
- - uid: 34265
+ - uid: 33731
components:
- type: Transform
- pos: 48.5,34.5
+ pos: 1.5,-42.5
parent: 2
- - uid: 34266
+ - uid: 33732
components:
- type: Transform
- pos: 47.5,34.5
+ pos: 1.5,-43.5
parent: 2
- - uid: 34267
+ - uid: 33733
components:
- type: Transform
- pos: 46.5,34.5
+ pos: -2.5,-39.5
parent: 2
- - uid: 34268
+ - uid: 33734
components:
- type: Transform
- pos: 45.5,34.5
+ pos: -2.5,-40.5
parent: 2
- - uid: 34269
+ - uid: 33735
components:
- type: Transform
- pos: 44.5,34.5
+ pos: -2.5,-41.5
parent: 2
- - uid: 34270
+ - uid: 33736
components:
- type: Transform
- pos: 43.5,34.5
+ pos: -2.5,-42.5
parent: 2
- - uid: 34271
+ - uid: 33737
components:
- type: Transform
- pos: 42.5,34.5
+ pos: -2.5,-43.5
parent: 2
- - uid: 34272
+ - uid: 33738
components:
- type: Transform
- pos: 41.5,34.5
+ pos: -1.5,-43.5
parent: 2
- - uid: 34273
+ - uid: 33739
components:
- type: Transform
- pos: 40.5,34.5
+ pos: -0.5,-43.5
parent: 2
- - uid: 34275
+ - uid: 33740
components:
- type: Transform
- pos: 45.5,28.5
+ pos: 0.5,-43.5
parent: 2
- - uid: 34276
+ - uid: 33741
components:
- type: Transform
- pos: 45.5,27.5
+ pos: 5.5,-38.5
parent: 2
- - uid: 34277
+ - uid: 33742
components:
- type: Transform
- pos: 45.5,26.5
+ pos: 5.5,-39.5
parent: 2
- - uid: 34278
+ - uid: 33743
components:
- type: Transform
- pos: 49.5,25.5
+ pos: 5.5,-40.5
parent: 2
- - uid: 34281
+ - uid: 33744
components:
- type: Transform
- pos: 48.5,23.5
+ pos: 5.5,-41.5
parent: 2
- - uid: 34282
+ - uid: 33745
components:
- type: Transform
- pos: 47.5,23.5
+ pos: 5.5,-42.5
parent: 2
- - uid: 34283
+ - uid: 33746
components:
- type: Transform
- pos: 46.5,23.5
+ pos: 5.5,-43.5
parent: 2
- - uid: 34284
+ - uid: 33747
components:
- type: Transform
- pos: 45.5,23.5
+ pos: 4.5,-43.5
parent: 2
- - uid: 34285
+ - uid: 33748
components:
- type: Transform
- pos: 44.5,23.5
+ pos: 3.5,-43.5
parent: 2
- - uid: 34286
+ - uid: 33749
components:
- type: Transform
- pos: 43.5,23.5
+ pos: 2.5,-43.5
parent: 2
- - uid: 34287
+ - uid: 33760
components:
- type: Transform
- pos: 42.5,23.5
+ pos: 3.5,7.5
parent: 2
- - uid: 34288
+ - uid: 33761
components:
- type: Transform
- pos: 42.5,24.5
+ pos: 2.5,7.5
parent: 2
- - uid: 34289
+ - uid: 33762
components:
- type: Transform
- pos: 42.5,25.5
+ pos: 1.5,7.5
parent: 2
- - uid: 34290
+ - uid: 33763
components:
- type: Transform
- pos: 42.5,26.5
+ pos: -0.5,4.5
parent: 2
- - uid: 34293
+ - uid: 33764
components:
- type: Transform
- pos: 36.5,26.5
+ pos: -0.5,5.5
parent: 2
- - uid: 34294
+ - uid: 33765
components:
- type: Transform
- pos: 37.5,26.5
+ pos: -0.5,6.5
parent: 2
- - uid: 34295
+ - uid: 33766
components:
- type: Transform
- pos: 38.5,26.5
+ pos: -0.5,7.5
parent: 2
- - uid: 34296
+ - uid: 33767
components:
- type: Transform
- pos: 39.5,26.5
+ pos: -1.5,7.5
parent: 2
- - uid: 34297
+ - uid: 33768
components:
- type: Transform
- pos: 40.5,26.5
+ pos: -2.5,7.5
parent: 2
- - uid: 34298
+ - uid: 33769
components:
- type: Transform
- pos: 31.5,30.5
+ pos: -3.5,7.5
parent: 2
- - uid: 34299
+ - uid: 33770
components:
- type: Transform
- pos: 30.5,30.5
+ pos: -4.5,7.5
parent: 2
- - uid: 34300
+ - uid: 33771
components:
- type: Transform
- pos: 29.5,30.5
+ pos: -5.5,7.5
parent: 2
- - uid: 34301
+ - uid: 33772
components:
- type: Transform
- pos: 28.5,30.5
+ pos: -6.5,7.5
parent: 2
- - uid: 34302
+ - uid: 33773
components:
- type: Transform
- pos: 27.5,30.5
+ pos: -7.5,7.5
parent: 2
- - uid: 34303
+ - uid: 33774
components:
- type: Transform
- pos: 26.5,30.5
+ pos: -8.5,7.5
parent: 2
- - uid: 34304
+ - uid: 33775
components:
- type: Transform
- pos: 26.5,29.5
+ pos: -9.5,7.5
parent: 2
- - uid: 34305
+ - uid: 33776
components:
- type: Transform
- pos: 26.5,28.5
+ pos: -3.5,-1.5
parent: 2
- - uid: 34306
+ - uid: 33777
components:
- type: Transform
- pos: 26.5,24.5
+ pos: -3.5,-0.5
parent: 2
- - uid: 34307
+ - uid: 33778
components:
- type: Transform
- pos: 26.5,23.5
+ pos: -3.5,0.5
parent: 2
- - uid: 34308
+ - uid: 33779
components:
- type: Transform
- pos: 27.5,23.5
+ pos: -4.5,0.5
parent: 2
- - uid: 34309
+ - uid: 33780
components:
- type: Transform
- pos: 28.5,23.5
+ pos: -5.5,0.5
parent: 2
- - uid: 34310
+ - uid: 33782
components:
- type: Transform
- pos: 29.5,23.5
+ pos: -5.5,-4.5
parent: 2
- - uid: 34311
+ - uid: 33783
components:
- type: Transform
- pos: 30.5,23.5
+ pos: -4.5,-4.5
parent: 2
- - uid: 34313
+ - uid: 33784
components:
- type: Transform
- pos: -71.5,14.5
+ pos: -3.5,-4.5
parent: 2
- - uid: 34314
+ - uid: 33785
components:
- type: Transform
- pos: -70.5,14.5
+ pos: -2.5,-4.5
parent: 2
- - uid: 34315
+ - uid: 33786
components:
- type: Transform
- pos: -69.5,14.5
+ pos: -2.5,-5.5
parent: 2
- - uid: 34316
+ - uid: 33787
components:
- type: Transform
- pos: -68.5,14.5
+ pos: -2.5,-6.5
parent: 2
- - uid: 34317
+ - uid: 33788
components:
- type: Transform
- pos: -68.5,15.5
+ pos: -2.5,-7.5
parent: 2
- - uid: 34318
+ - uid: 33789
components:
- type: Transform
- pos: 11.5,28.5
+ pos: -2.5,-8.5
parent: 2
- - uid: 34319
+ - uid: 33790
components:
- type: Transform
- pos: 11.5,27.5
+ pos: -2.5,-9.5
parent: 2
- - uid: 34320
+ - uid: 33791
components:
- type: Transform
- pos: 12.5,27.5
+ pos: -2.5,-10.5
parent: 2
- - uid: 34321
+ - uid: 33792
components:
- type: Transform
- pos: 13.5,27.5
+ pos: -3.5,-10.5
parent: 2
- - uid: 34322
+ - uid: 33793
components:
- type: Transform
- pos: 14.5,27.5
+ pos: -4.5,-10.5
parent: 2
- - uid: 34323
+ - uid: 33794
components:
- type: Transform
- pos: 14.5,28.5
+ pos: -5.5,-10.5
parent: 2
- - uid: 34324
+ - uid: 33795
components:
- type: Transform
- pos: 6.5,24.5
+ pos: -6.5,-10.5
parent: 2
- - uid: 34325
+ - uid: 33796
components:
- type: Transform
- pos: 6.5,23.5
+ pos: -6.5,-9.5
parent: 2
- - uid: 34326
+ - uid: 33797
components:
- type: Transform
- pos: 7.5,23.5
+ pos: -6.5,-8.5
parent: 2
- - uid: 34327
+ - uid: 33798
components:
- type: Transform
- pos: 8.5,23.5
+ pos: -6.5,-7.5
parent: 2
- - uid: 34328
+ - uid: 33799
components:
- type: Transform
- pos: 9.5,23.5
+ pos: -6.5,-6.5
parent: 2
- - uid: 34329
+ - uid: 33800
components:
- type: Transform
- pos: 10.5,23.5
+ pos: -6.5,-5.5
parent: 2
- - uid: 34330
+ - uid: 33801
components:
- type: Transform
- pos: 11.5,23.5
+ pos: -9.5,-10.5
parent: 2
- - uid: 34331
+ - uid: 33802
components:
- type: Transform
- pos: 12.5,23.5
+ pos: -9.5,-11.5
parent: 2
- - uid: 34332
+ - uid: 33828
components:
- type: Transform
- pos: 12.5,24.5
+ pos: -25.5,-4.5
parent: 2
- - uid: 34333
+ - uid: 33831
components:
- type: Transform
- pos: 4.5,28.5
+ pos: -27.5,-9.5
parent: 2
- - uid: 34334
+ - uid: 33832
components:
- type: Transform
- pos: 4.5,27.5
+ pos: -27.5,-8.5
parent: 2
- - uid: 34335
+ - uid: 33833
components:
- type: Transform
- pos: 5.5,27.5
+ pos: -27.5,-7.5
parent: 2
- - uid: 34336
+ - uid: 33834
components:
- type: Transform
- pos: 6.5,27.5
+ pos: -26.5,-7.5
parent: 2
- - uid: 34337
+ - uid: 33835
components:
- type: Transform
- pos: 7.5,27.5
+ pos: -25.5,-7.5
parent: 2
- - uid: 34338
+ - uid: 33836
components:
- type: Transform
- pos: 8.5,27.5
+ pos: -25.5,-8.5
parent: 2
- - uid: 34339
+ - uid: 33837
components:
- type: Transform
- pos: 9.5,27.5
+ pos: -25.5,-9.5
parent: 2
- - uid: 34340
+ - uid: 33838
components:
- type: Transform
- pos: 9.5,28.5
+ pos: -25.5,-10.5
parent: 2
- - uid: 34341
+ - uid: 33839
components:
- type: Transform
- pos: 17.5,58.5
+ pos: -25.5,-11.5
parent: 2
- - uid: 34342
+ - uid: 33840
components:
- type: Transform
- pos: 17.5,59.5
+ pos: -26.5,-11.5
parent: 2
- - uid: 34343
+ - uid: 33841
components:
- type: Transform
- pos: 16.5,59.5
+ pos: -27.5,-11.5
parent: 2
- - uid: 34344
+ - uid: 33842
components:
- type: Transform
- pos: 15.5,59.5
+ pos: -28.5,-11.5
parent: 2
- - uid: 34345
+ - uid: 33843
components:
- type: Transform
- pos: 14.5,59.5
+ pos: -29.5,-11.5
parent: 2
- - uid: 34346
+ - uid: 33844
components:
- type: Transform
- pos: 14.5,60.5
+ pos: -5.5,-7.5
parent: 2
- - uid: 34347
+ - uid: 33845
components:
- type: Transform
- pos: 13.5,59.5
+ pos: -4.5,-7.5
parent: 2
- - uid: 34348
+ - uid: 33846
components:
- type: Transform
- pos: 13.5,58.5
+ pos: -3.5,-7.5
parent: 2
- - uid: 34349
+ - uid: 33871
components:
- type: Transform
- pos: 12.5,58.5
+ pos: 18.5,-8.5
parent: 2
- - uid: 34350
+ - uid: 33872
components:
- type: Transform
- pos: 12.5,57.5
+ pos: 18.5,-9.5
parent: 2
- - uid: 34351
+ - uid: 33873
components:
- type: Transform
- pos: 12.5,56.5
+ pos: 18.5,-10.5
parent: 2
- - uid: 34352
+ - uid: 33874
components:
- type: Transform
- pos: 12.5,55.5
+ pos: 16.5,-5.5
parent: 2
- - uid: 34353
+ - uid: 33875
components:
- type: Transform
- pos: 12.5,54.5
+ pos: 17.5,-5.5
parent: 2
- - uid: 34354
+ - uid: 33876
components:
- type: Transform
- pos: -79.5,9.5
+ pos: 18.5,-5.5
parent: 2
- - uid: 34355
+ - uid: 33877
components:
- type: Transform
- pos: 10.5,57.5
+ pos: 19.5,-5.5
parent: 2
- - uid: 34356
+ - uid: 33878
components:
- type: Transform
- pos: 9.5,57.5
+ pos: 20.5,-5.5
parent: 2
- - uid: 34357
+ - uid: 33879
components:
- type: Transform
- pos: 8.5,57.5
+ pos: 21.5,-5.5
parent: 2
- - uid: 34358
+ - uid: 33880
components:
- type: Transform
- pos: 7.5,57.5
+ pos: 21.5,-4.5
parent: 2
- - uid: 34359
+ - uid: 33881
components:
- type: Transform
- pos: 6.5,57.5
+ pos: 21.5,-3.5
parent: 2
- - uid: 34360
+ - uid: 33882
components:
- type: Transform
- pos: 5.5,57.5
+ pos: 21.5,-2.5
parent: 2
- - uid: 34361
+ - uid: 33901
components:
- type: Transform
- pos: 4.5,57.5
+ pos: 27.5,16.5
parent: 2
- - uid: 34362
+ - uid: 33902
components:
- type: Transform
- pos: 4.5,56.5
+ pos: 28.5,16.5
parent: 2
- - uid: 34363
+ - uid: 33903
components:
- type: Transform
- pos: 4.5,55.5
+ pos: 29.5,16.5
parent: 2
- - uid: 34364
+ - uid: 33904
components:
- type: Transform
- pos: 4.5,54.5
+ pos: 30.5,16.5
parent: 2
- - uid: 34365
+ - uid: 33905
components:
- type: Transform
- pos: 4.5,53.5
+ pos: 31.5,16.5
parent: 2
- - uid: 34366
+ - uid: 33906
components:
- type: Transform
- pos: 4.5,52.5
+ pos: 32.5,16.5
parent: 2
- - uid: 34367
+ - uid: 33907
components:
- type: Transform
- pos: 4.5,51.5
+ pos: 33.5,16.5
parent: 2
- - uid: 34368
+ - uid: 33908
components:
- type: Transform
- pos: 4.5,50.5
+ pos: 34.5,16.5
parent: 2
- - uid: 34369
+ - uid: 33927
components:
- type: Transform
- pos: -79.5,7.5
+ pos: 10.5,14.5
parent: 2
- - uid: 34370
+ - uid: 33937
components:
- type: Transform
- pos: 12.5,54.5
+ pos: 11.5,14.5
parent: 2
- - uid: 34371
+ - uid: 33940
components:
- type: Transform
- pos: 12.5,53.5
+ pos: 8.5,14.5
parent: 2
- - uid: 34372
+ - uid: 33949
components:
- type: Transform
- pos: 13.5,53.5
+ pos: -3.5,14.5
parent: 2
- - uid: 34373
+ - uid: 33950
components:
- type: Transform
- pos: 14.5,53.5
+ pos: -3.5,15.5
parent: 2
- - uid: 34374
+ - uid: 33951
components:
- type: Transform
- pos: 14.5,52.5
+ pos: -3.5,16.5
parent: 2
- - uid: 34375
+ - uid: 33952
components:
- type: Transform
- pos: 15.5,52.5
+ pos: -4.5,16.5
parent: 2
- - uid: 34376
+ - uid: 33953
components:
- type: Transform
- pos: 15.5,51.5
+ pos: -5.5,16.5
parent: 2
- - uid: 34377
+ - uid: 33954
components:
- type: Transform
- pos: 16.5,51.5
+ pos: -6.5,16.5
parent: 2
- - uid: 34378
+ - uid: 33955
components:
- type: Transform
- pos: -77.5,6.5
+ pos: -7.5,16.5
parent: 2
- - uid: 34379
+ - uid: 33956
components:
- type: Transform
- pos: -77.5,7.5
+ pos: -8.5,16.5
parent: 2
- - uid: 34385
+ - uid: 33957
components:
- type: Transform
- pos: 24.5,55.5
+ pos: -8.5,15.5
parent: 2
- - uid: 34386
+ - uid: 33958
components:
- type: Transform
- pos: 24.5,57.5
+ pos: -8.5,14.5
parent: 2
- - uid: 34387
+ - uid: 33959
components:
- type: Transform
- pos: 25.5,57.5
+ pos: -8.5,12.5
parent: 2
- - uid: 34388
+ - uid: 33960
components:
- type: Transform
- pos: 26.5,57.5
+ pos: -8.5,11.5
parent: 2
- - uid: 34389
+ - uid: 33961
components:
- type: Transform
- pos: 27.5,57.5
+ pos: -8.5,10.5
parent: 2
- - uid: 34390
+ - uid: 33962
components:
- type: Transform
- pos: 28.5,57.5
+ pos: -8.5,9.5
parent: 2
- - uid: 34391
+ - uid: 33963
components:
- type: Transform
- pos: 29.5,55.5
+ pos: -7.5,9.5
parent: 2
- - uid: 34392
+ - uid: 33964
components:
- type: Transform
- pos: 30.5,55.5
+ pos: -6.5,9.5
parent: 2
- - uid: 34393
+ - uid: 33965
components:
- type: Transform
- pos: 31.5,55.5
+ pos: -5.5,9.5
parent: 2
- - uid: 34394
+ - uid: 33966
components:
- type: Transform
- pos: 24.5,57.5
+ pos: -4.5,9.5
parent: 2
- - uid: 34395
+ - uid: 33971
components:
- type: Transform
- pos: 24.5,58.5
+ pos: -11.5,14.5
parent: 2
- - uid: 34396
+ - uid: 33972
components:
- type: Transform
- pos: 23.5,58.5
+ pos: -11.5,15.5
parent: 2
- - uid: 34397
+ - uid: 33973
components:
- type: Transform
- pos: 23.5,59.5
+ pos: -11.5,16.5
parent: 2
- - uid: 34398
+ - uid: 33974
components:
- type: Transform
- pos: 22.5,59.5
+ pos: -12.5,16.5
parent: 2
- - uid: 34399
+ - uid: 33975
components:
- type: Transform
- pos: 22.5,60.5
+ pos: -13.5,16.5
parent: 2
- - uid: 34400
+ - uid: 33976
components:
- type: Transform
- pos: 21.5,60.5
+ pos: -14.5,16.5
parent: 2
- - uid: 34401
+ - uid: 33977
components:
- type: Transform
- pos: 20.5,60.5
+ pos: -14.5,15.5
parent: 2
- - uid: 34402
+ - uid: 33978
components:
- type: Transform
- pos: 19.5,60.5
+ pos: -14.5,14.5
parent: 2
- - uid: 34403
+ - uid: 33979
components:
- type: Transform
- pos: 18.5,60.5
+ pos: -17.5,14.5
parent: 2
- - uid: 34404
+ - uid: 33980
components:
- type: Transform
- pos: 17.5,60.5
+ pos: -17.5,15.5
parent: 2
- - uid: 34405
+ - uid: 33981
components:
- type: Transform
- pos: 16.5,60.5
+ pos: -17.5,16.5
parent: 2
- - uid: 34406
+ - uid: 33982
components:
- type: Transform
- pos: 15.5,60.5
+ pos: -20.5,14.5
parent: 2
- - uid: 34407
+ - uid: 33983
components:
- type: Transform
- pos: 14.5,60.5
+ pos: -20.5,15.5
parent: 2
- - uid: 34408
+ - uid: 33984
components:
- type: Transform
- pos: 16.5,55.5
+ pos: -20.5,16.5
parent: 2
- - uid: 34409
+ - uid: 33985
components:
- type: Transform
- pos: 15.5,55.5
+ pos: -23.5,14.5
parent: 2
- - uid: 34410
+ - uid: 33986
components:
- type: Transform
- pos: 14.5,55.5
+ pos: -23.5,15.5
parent: 2
- - uid: 34411
+ - uid: 33987
components:
- type: Transform
- pos: 13.5,55.5
+ pos: -23.5,16.5
parent: 2
- - uid: 34412
+ - uid: 33988
components:
- type: Transform
- pos: 21.5,57.5
+ pos: -26.5,14.5
parent: 2
- - uid: 34413
+ - uid: 33989
components:
- type: Transform
- pos: 21.5,58.5
+ pos: -26.5,15.5
parent: 2
- - uid: 34414
+ - uid: 33990
components:
- type: Transform
- pos: 21.5,59.5
+ pos: -26.5,16.5
parent: 2
- - uid: 34415
+ - uid: 33991
components:
- type: Transform
- pos: 16.5,2.5
+ pos: -29.5,14.5
parent: 2
- - uid: 34425
+ - uid: 33992
components:
- type: Transform
- pos: -60.5,-6.5
+ pos: -29.5,15.5
parent: 2
- - uid: 34426
+ - uid: 33994
components:
- type: Transform
- pos: -61.5,-6.5
+ pos: -29.5,12.5
parent: 2
- - uid: 34427
+ - uid: 33995
components:
- type: Transform
- pos: -62.5,-6.5
+ pos: -29.5,11.5
parent: 2
- - uid: 34428
+ - uid: 33996
components:
- type: Transform
- pos: -62.5,-7.5
+ pos: -29.5,10.5
parent: 2
- - uid: 34429
+ - uid: 33997
components:
- type: Transform
- pos: -62.5,-8.5
+ pos: -26.5,12.5
parent: 2
- - uid: 34430
+ - uid: 33998
components:
- type: Transform
- pos: -62.5,-9.5
+ pos: -26.5,11.5
parent: 2
- - uid: 34431
+ - uid: 33999
components:
- type: Transform
- pos: -61.5,-9.5
+ pos: -26.5,10.5
parent: 2
- - uid: 34432
+ - uid: 34001
components:
- type: Transform
- pos: -60.5,-9.5
+ pos: -23.5,12.5
parent: 2
- - uid: 34433
+ - uid: 34002
components:
- type: Transform
- pos: -58.5,-9.5
+ pos: -23.5,11.5
parent: 2
- - uid: 34434
+ - uid: 34003
components:
- type: Transform
- pos: -57.5,-9.5
+ pos: -23.5,10.5
parent: 2
- - uid: 34435
+ - uid: 34005
components:
- type: Transform
- pos: -57.5,-8.5
+ pos: -20.5,12.5
parent: 2
- - uid: 34436
+ - uid: 34006
components:
- type: Transform
- pos: -57.5,-7.5
+ pos: -20.5,11.5
parent: 2
- - uid: 34437
+ - uid: 34007
components:
- type: Transform
- pos: -57.5,-6.5
+ pos: -20.5,10.5
parent: 2
- - uid: 34438
+ - uid: 34009
components:
- type: Transform
- pos: -58.5,-6.5
+ pos: -17.5,12.5
parent: 2
- - uid: 34439
+ - uid: 34010
components:
- type: Transform
- pos: -60.5,-1.5
+ pos: -17.5,11.5
parent: 2
- - uid: 34440
+ - uid: 34011
components:
- type: Transform
- pos: -61.5,-1.5
+ pos: -17.5,10.5
parent: 2
- - uid: 34441
+ - uid: 34012
components:
- type: Transform
- pos: -62.5,-1.5
+ pos: 53.5,86.5
parent: 2
- - uid: 34442
+ - uid: 34015
components:
- type: Transform
- pos: -62.5,-2.5
+ pos: -36.5,12.5
parent: 2
- - uid: 34443
+ - uid: 34016
components:
- type: Transform
- pos: -62.5,-3.5
+ pos: -37.5,12.5
parent: 2
- - uid: 34444
+ - uid: 34017
components:
- type: Transform
- pos: -62.5,-4.5
+ pos: -38.5,12.5
parent: 2
- - uid: 34445
+ - uid: 34018
components:
- type: Transform
- pos: -61.5,-4.5
+ pos: -39.5,12.5
parent: 2
- - uid: 34446
+ - uid: 34019
components:
- type: Transform
- pos: -60.5,-4.5
+ pos: -40.5,12.5
parent: 2
- - uid: 34447
+ - uid: 34020
components:
- type: Transform
- pos: -59.5,-4.5
+ pos: -40.5,11.5
parent: 2
- - uid: 34448
+ - uid: 34021
components:
- type: Transform
- pos: -58.5,-4.5
+ pos: -40.5,10.5
parent: 2
- - uid: 34449
+ - uid: 34022
components:
- type: Transform
- pos: -57.5,-4.5
+ pos: -41.5,10.5
parent: 2
- - uid: 34450
+ - uid: 34023
components:
- type: Transform
- pos: -57.5,-3.5
+ pos: -41.5,9.5
parent: 2
- - uid: 34451
+ - uid: 34024
components:
- type: Transform
- pos: -57.5,-2.5
+ pos: -41.5,8.5
parent: 2
- - uid: 34452
+ - uid: 34025
components:
- type: Transform
- pos: -57.5,-1.5
+ pos: -40.5,8.5
parent: 2
- - uid: 34453
+ - uid: 34026
components:
- type: Transform
- pos: -56.5,-1.5
+ pos: -39.5,8.5
parent: 2
- - uid: 34454
+ - uid: 34027
components:
- type: Transform
- pos: -55.5,-1.5
+ pos: -38.5,8.5
parent: 2
- - uid: 34455
+ - uid: 34028
components:
- type: Transform
- pos: -54.5,-1.5
+ pos: -37.5,8.5
parent: 2
- - uid: 34456
+ - uid: 34029
components:
- type: Transform
- pos: -53.5,-1.5
+ pos: -36.5,8.5
parent: 2
- - uid: 34457
+ - uid: 34030
components:
- type: Transform
- pos: -52.5,-1.5
+ pos: -35.5,8.5
parent: 2
- - uid: 34458
+ - uid: 34031
components:
- type: Transform
- pos: -51.5,-1.5
+ pos: -34.5,8.5
parent: 2
- - uid: 34459
+ - uid: 34033
components:
- type: Transform
- pos: -50.5,-1.5
+ pos: -38.5,7.5
parent: 2
- - uid: 34460
+ - uid: 34043
components:
- type: Transform
- pos: -49.5,-1.5
+ pos: -38.5,2.5
parent: 2
- - uid: 34461
+ - uid: 34049
components:
- type: Transform
- pos: -49.5,-2.5
+ pos: -52.5,19.5
parent: 2
- - uid: 34462
+ - uid: 34070
components:
- type: Transform
- pos: -49.5,-3.5
+ pos: -54.5,24.5
parent: 2
- - uid: 34463
+ - uid: 34074
components:
- type: Transform
- pos: -50.5,-3.5
+ pos: -14.5,34.5
parent: 2
- - uid: 34464
+ - uid: 34075
components:
- type: Transform
- pos: -51.5,-3.5
+ pos: -14.5,33.5
parent: 2
- - uid: 34465
+ - uid: 34076
components:
- type: Transform
- pos: -52.5,-3.5
+ pos: -14.5,32.5
parent: 2
- - uid: 34466
+ - uid: 34077
components:
- type: Transform
- pos: -53.5,-3.5
+ pos: -14.5,31.5
parent: 2
- - uid: 34467
+ - uid: 34078
components:
- type: Transform
- pos: -54.5,-3.5
+ pos: -8.5,35.5
parent: 2
- - uid: 34468
+ - uid: 34079
components:
- type: Transform
- pos: -55.5,-3.5
+ pos: -7.5,35.5
parent: 2
- - uid: 34469
+ - uid: 34080
components:
- type: Transform
- pos: -55.5,-2.5
+ pos: -6.5,35.5
parent: 2
- - uid: 34470
+ - uid: 34081
components:
- type: Transform
- pos: -60.5,0.5
+ pos: -5.5,35.5
parent: 2
- - uid: 34471
+ - uid: 34082
components:
- type: Transform
- pos: -61.5,0.5
+ pos: -4.5,35.5
parent: 2
- - uid: 34472
+ - uid: 34083
components:
- type: Transform
- pos: -62.5,0.5
+ pos: -9.5,32.5
parent: 2
- - uid: 34473
+ - uid: 34084
components:
- type: Transform
- pos: -62.5,1.5
+ pos: -8.5,32.5
parent: 2
- - uid: 34474
+ - uid: 34085
components:
- type: Transform
- pos: -62.5,2.5
+ pos: -7.5,32.5
parent: 2
- - uid: 34475
+ - uid: 34086
components:
- type: Transform
- pos: -62.5,3.5
+ pos: -6.5,32.5
parent: 2
- - uid: 34476
+ - uid: 34087
components:
- type: Transform
- pos: -62.5,4.5
+ pos: -5.5,32.5
parent: 2
- - uid: 34477
+ - uid: 34088
components:
- type: Transform
- pos: -62.5,5.5
+ pos: -4.5,32.5
parent: 2
- - uid: 34478
+ - uid: 34089
components:
- type: Transform
- pos: -61.5,5.5
+ pos: -5.5,25.5
parent: 2
- - uid: 34479
+ - uid: 34090
components:
- type: Transform
- pos: -60.5,5.5
+ pos: -5.5,24.5
parent: 2
- - uid: 34480
+ - uid: 34091
components:
- type: Transform
- pos: -49.5,4.5
+ pos: -5.5,23.5
parent: 2
- - uid: 34481
+ - uid: 34092
components:
- type: Transform
- pos: -49.5,3.5
+ pos: -6.5,23.5
parent: 2
- - uid: 34482
+ - uid: 34093
components:
- type: Transform
- pos: -49.5,2.5
+ pos: -7.5,23.5
parent: 2
- - uid: 34483
+ - uid: 34094
components:
- type: Transform
- pos: -49.5,1.5
+ pos: -7.5,24.5
parent: 2
- - uid: 34484
+ - uid: 34095
components:
- type: Transform
- pos: -49.5,0.5
+ pos: -8.5,24.5
parent: 2
- - uid: 34485
+ - uid: 34096
components:
- type: Transform
- pos: -50.5,0.5
+ pos: -9.5,24.5
parent: 2
- - uid: 34486
+ - uid: 34097
components:
- type: Transform
- pos: -51.5,0.5
+ pos: -10.5,24.5
parent: 2
- - uid: 34487
+ - uid: 34098
components:
- type: Transform
- pos: -52.5,0.5
+ pos: -11.5,24.5
parent: 2
- - uid: 34488
+ - uid: 34099
components:
- type: Transform
- pos: -53.5,0.5
+ pos: -11.5,25.5
parent: 2
- - uid: 34489
+ - uid: 34100
components:
- type: Transform
- pos: -54.5,0.5
+ pos: -4.5,23.5
parent: 2
- - uid: 34490
+ - uid: 34105
components:
- type: Transform
- pos: -54.5,1.5
+ pos: -17.5,40.5
parent: 2
- - uid: 34491
+ - uid: 34106
components:
- type: Transform
- pos: -54.5,2.5
+ pos: -17.5,41.5
parent: 2
- - uid: 34492
+ - uid: 34107
components:
- type: Transform
- pos: -54.5,3.5
+ pos: -17.5,42.5
parent: 2
- - uid: 34493
+ - uid: 34108
components:
- type: Transform
- pos: -55.5,3.5
+ pos: -16.5,42.5
parent: 2
- - uid: 34494
+ - uid: 34128
components:
- type: Transform
- pos: -56.5,3.5
+ pos: 11.5,38.5
parent: 2
- - uid: 34495
+ - uid: 34129
components:
- type: Transform
- pos: -57.5,3.5
+ pos: 11.5,37.5
parent: 2
- - uid: 34496
+ - uid: 34130
components:
- type: Transform
- pos: -57.5,2.5
+ pos: 11.5,36.5
parent: 2
- - uid: 34497
+ - uid: 34131
components:
- type: Transform
- pos: -57.5,1.5
+ pos: 11.5,35.5
parent: 2
- - uid: 34498
+ - uid: 34132
components:
- type: Transform
- pos: -57.5,0.5
+ pos: 10.5,35.5
parent: 2
- - uid: 34499
+ - uid: 34133
components:
- type: Transform
- pos: -58.5,0.5
+ pos: 9.5,35.5
parent: 2
- - uid: 34500
+ - uid: 34134
components:
- type: Transform
- pos: -62.5,12.5
+ pos: 8.5,35.5
parent: 2
- - uid: 34501
+ - uid: 34135
components:
- type: Transform
- pos: -47.5,13.5
+ pos: 7.5,35.5
parent: 2
- - uid: 34502
+ - uid: 34136
components:
- type: Transform
- pos: -47.5,14.5
+ pos: 6.5,35.5
parent: 2
- - uid: 34503
+ - uid: 34137
components:
- type: Transform
- pos: -48.5,14.5
+ pos: 5.5,35.5
parent: 2
- - uid: 34504
+ - uid: 34138
components:
- type: Transform
- pos: -49.5,14.5
+ pos: 4.5,35.5
parent: 2
- - uid: 34505
+ - uid: 34139
components:
- type: Transform
- pos: -50.5,14.5
+ pos: 4.5,36.5
parent: 2
- - uid: 34506
+ - uid: 34140
components:
- type: Transform
- pos: -51.5,14.5
+ pos: 4.5,37.5
parent: 2
- - uid: 34507
+ - uid: 34141
components:
- type: Transform
- pos: -47.5,12.5
+ pos: 4.5,38.5
parent: 2
- - uid: 34508
+ - uid: 34142
components:
- type: Transform
- pos: -47.5,11.5
+ pos: 4.5,40.5
parent: 2
- - uid: 34509
+ - uid: 34143
components:
- type: Transform
- pos: -47.5,17.5
+ pos: 4.5,41.5
parent: 2
- - uid: 34510
+ - uid: 34144
components:
- type: Transform
- pos: -47.5,16.5
+ pos: 4.5,42.5
parent: 2
- - uid: 34511
+ - uid: 34145
components:
- type: Transform
- pos: -47.5,18.5
+ pos: 5.5,42.5
parent: 2
- - uid: 34512
+ - uid: 34146
components:
- type: Transform
- pos: -47.5,19.5
+ pos: 6.5,42.5
parent: 2
- - uid: 34513
+ - uid: 34147
components:
- type: Transform
- pos: -48.5,19.5
+ pos: 7.5,42.5
parent: 2
- - uid: 34514
+ - uid: 34148
components:
- type: Transform
- pos: -49.5,19.5
+ pos: 7.5,41.5
parent: 2
- - uid: 34515
+ - uid: 34149
components:
- type: Transform
- pos: -50.5,19.5
+ pos: 7.5,40.5
parent: 2
- - uid: 34516
+ - uid: 34150
components:
- type: Transform
- pos: -51.5,19.5
+ pos: 7.5,38.5
parent: 2
- - uid: 34517
+ - uid: 34151
components:
- type: Transform
- pos: -51.5,20.5
+ pos: 7.5,37.5
parent: 2
- - uid: 34518
+ - uid: 34152
components:
- type: Transform
- pos: -51.5,21.5
+ pos: 7.5,36.5
parent: 2
- - uid: 34519
+ - uid: 34154
components:
- type: Transform
- pos: -48.5,22.5
+ pos: 9.5,42.5
parent: 2
- - uid: 34520
+ - uid: 34155
components:
- type: Transform
- pos: -47.5,22.5
+ pos: 8.5,42.5
parent: 2
- - uid: 34521
+ - uid: 34156
components:
- type: Transform
- pos: -47.5,21.5
+ pos: 18.5,38.5
parent: 2
- - uid: 34522
+ - uid: 34157
components:
- type: Transform
- pos: -47.5,20.5
+ pos: 18.5,37.5
parent: 2
- - uid: 34523
+ - uid: 34158
components:
- type: Transform
- pos: -48.5,20.5
+ pos: 18.5,36.5
parent: 2
- - uid: 34524
+ - uid: 34159
components:
- type: Transform
- pos: -48.5,26.5
+ pos: 18.5,35.5
parent: 2
- - uid: 34525
+ - uid: 34160
components:
- type: Transform
- pos: -47.5,26.5
+ pos: 17.5,35.5
parent: 2
- - uid: 34526
+ - uid: 34161
components:
- type: Transform
- pos: -50.5,26.5
+ pos: 16.5,35.5
parent: 2
- - uid: 34527
+ - uid: 34162
components:
- type: Transform
- pos: -51.5,26.5
+ pos: 16.5,36.5
parent: 2
- - uid: 34528
+ - uid: 34163
components:
- type: Transform
- pos: -47.5,25.5
+ pos: 16.5,37.5
parent: 2
- - uid: 34529
+ - uid: 34164
components:
- type: Transform
- pos: -55.5,30.5
+ pos: 16.5,38.5
parent: 2
- - uid: 34530
+ - uid: 34165
components:
- type: Transform
- pos: -56.5,30.5
+ pos: 19.5,35.5
parent: 2
- - uid: 34531
+ - uid: 34166
components:
- type: Transform
- pos: -53.5,33.5
+ pos: 20.5,35.5
parent: 2
- - uid: 34532
+ - uid: 34167
components:
- type: Transform
- pos: -52.5,33.5
+ pos: 20.5,36.5
parent: 2
- - uid: 34533
+ - uid: 34168
components:
- type: Transform
- pos: -51.5,33.5
+ pos: 20.5,37.5
parent: 2
- - uid: 34534
+ - uid: 34169
components:
- type: Transform
- pos: -51.5,34.5
+ pos: 20.5,38.5
parent: 2
- - uid: 34535
+ - uid: 34170
components:
- type: Transform
- pos: -51.5,35.5
+ pos: 20.5,39.5
parent: 2
- - uid: 34536
+ - uid: 34171
components:
- type: Transform
- pos: -51.5,36.5
+ pos: 20.5,40.5
parent: 2
- - uid: 34537
+ - uid: 34172
components:
- type: Transform
- pos: -52.5,36.5
+ pos: 21.5,35.5
parent: 2
- - uid: 34538
+ - uid: 34173
components:
- type: Transform
- pos: -56.5,36.5
+ pos: 22.5,35.5
parent: 2
- - uid: 34539
+ - uid: 34174
components:
- type: Transform
- pos: -57.5,36.5
+ pos: 23.5,35.5
parent: 2
- - uid: 34540
+ - uid: 34175
components:
- type: Transform
- pos: -57.5,35.5
+ pos: 23.5,36.5
parent: 2
- - uid: 34541
+ - uid: 34176
components:
- type: Transform
- pos: -57.5,33.5
+ pos: 23.5,37.5
parent: 2
- - uid: 34542
+ - uid: 34177
components:
- type: Transform
- pos: -44.5,35.5
+ pos: 23.5,38.5
parent: 2
- - uid: 34543
+ - uid: 34178
components:
- type: Transform
- pos: -45.5,35.5
+ pos: 23.5,39.5
parent: 2
- - uid: 34544
+ - uid: 34179
components:
- type: Transform
- pos: -46.5,35.5
+ pos: 28.5,39.5
parent: 2
- - uid: 34545
+ - uid: 34180
components:
- type: Transform
- pos: -47.5,35.5
+ pos: 22.5,40.5
parent: 2
- - uid: 34546
+ - uid: 34181
components:
- type: Transform
- pos: -48.5,35.5
+ pos: 22.5,39.5
parent: 2
- - uid: 34547
+ - uid: 34182
components:
- type: Transform
- pos: -49.5,35.5
+ pos: 21.5,39.5
parent: 2
- - uid: 34548
+ - uid: 34184
components:
- type: Transform
- pos: -49.5,34.5
+ pos: 28.5,45.5
parent: 2
- - uid: 34549
+ - uid: 34185
components:
- type: Transform
- pos: -49.5,33.5
+ pos: 29.5,45.5
parent: 2
- - uid: 34550
+ - uid: 34187
components:
- type: Transform
- pos: -48.5,33.5
+ pos: 23.5,48.5
parent: 2
- - uid: 34551
+ - uid: 34190
components:
- type: Transform
- pos: -47.5,33.5
+ pos: 29.5,50.5
parent: 2
- - uid: 34552
+ - uid: 34191
components:
- type: Transform
- pos: -46.5,33.5
+ pos: 29.5,51.5
parent: 2
- - uid: 34553
+ - uid: 34192
components:
- type: Transform
- pos: -45.5,33.5
+ pos: 29.5,52.5
parent: 2
- - uid: 34554
+ - uid: 34193
components:
- type: Transform
- pos: -44.5,33.5
+ pos: 28.5,52.5
parent: 2
- - uid: 34555
+ - uid: 34194
components:
- type: Transform
- pos: -42.5,33.5
+ pos: 27.5,52.5
parent: 2
- - uid: 34556
+ - uid: 34195
components:
- type: Transform
- pos: -41.5,33.5
+ pos: 26.5,52.5
parent: 2
- - uid: 34557
+ - uid: 34196
components:
- type: Transform
- pos: -41.5,34.5
+ pos: 25.5,52.5
parent: 2
- - uid: 34558
+ - uid: 34197
components:
- type: Transform
- pos: -41.5,35.5
+ pos: 24.5,52.5
parent: 2
- - uid: 34559
+ - uid: 34198
components:
- type: Transform
- pos: -42.5,35.5
+ pos: 24.5,51.5
parent: 2
- - uid: 34560
+ - uid: 34199
components:
- type: Transform
- pos: -58.5,46.5
+ pos: 23.5,51.5
parent: 2
- - uid: 34561
+ - uid: 34202
components:
- type: Transform
- pos: -57.5,46.5
+ pos: 36.5,46.5
parent: 2
- - uid: 34562
+ - uid: 34215
components:
- type: Transform
- pos: -56.5,46.5
+ pos: 36.5,57.5
parent: 2
- - uid: 34563
+ - uid: 34216
components:
- type: Transform
- pos: -55.5,46.5
+ pos: 48.5,57.5
parent: 2
- - uid: 34564
+ - uid: 34217
components:
- type: Transform
- pos: -54.5,46.5
+ pos: 49.5,57.5
parent: 2
- - uid: 34565
+ - uid: 34218
components:
- type: Transform
- pos: -54.5,47.5
+ pos: 49.5,56.5
parent: 2
- - uid: 34566
+ - uid: 34219
components:
- type: Transform
- pos: -54.5,48.5
+ pos: 49.5,55.5
parent: 2
- - uid: 34567
+ - uid: 34220
components:
- type: Transform
- pos: -54.5,49.5
+ pos: 49.5,54.5
parent: 2
- - uid: 34568
+ - uid: 34221
components:
- type: Transform
- pos: -54.5,50.5
+ pos: 49.5,53.5
parent: 2
- - uid: 34569
+ - uid: 34222
components:
- type: Transform
- pos: -54.5,51.5
+ pos: 49.5,52.5
parent: 2
- - uid: 34570
+ - uid: 34223
components:
- type: Transform
- pos: -54.5,52.5
+ pos: 49.5,51.5
parent: 2
- - uid: 34571
+ - uid: 34224
components:
- type: Transform
- pos: -54.5,53.5
+ pos: 49.5,50.5
parent: 2
- - uid: 34578
+ - uid: 34245
components:
- type: Transform
- pos: -85.5,19.5
+ pos: 41.5,44.5
parent: 2
- - uid: 34579
+ - uid: 34250
components:
- type: Transform
- pos: -86.5,19.5
+ pos: 37.5,42.5
parent: 2
- - uid: 34583
+ - uid: 34251
components:
- type: Transform
- pos: -80.5,18.5
+ pos: 37.5,41.5
parent: 2
- - uid: 34584
+ - uid: 34252
components:
- type: Transform
- pos: -81.5,18.5
+ pos: 37.5,40.5
parent: 2
- - uid: 34585
+ - uid: 34253
components:
- type: Transform
- pos: -82.5,18.5
+ pos: 37.5,39.5
parent: 2
- - uid: 34586
+ - uid: 34254
components:
- type: Transform
- pos: -83.5,18.5
+ pos: 37.5,38.5
parent: 2
- - uid: 34592
+ - uid: 34255
components:
- type: Transform
- pos: -97.5,12.5
+ pos: 37.5,37.5
parent: 2
- - uid: 34593
+ - uid: 34256
components:
- type: Transform
- pos: -96.5,12.5
+ pos: 37.5,36.5
parent: 2
- - uid: 34594
+ - uid: 34257
components:
- type: Transform
- pos: -95.5,12.5
+ pos: 37.5,35.5
parent: 2
- - uid: 34603
+ - uid: 34258
components:
- type: Transform
- pos: -85.5,12.5
+ pos: 37.5,34.5
parent: 2
- - uid: 34606
+ - uid: 34259
components:
- type: Transform
- pos: -75.5,-2.5
+ pos: 37.5,33.5
parent: 2
- - uid: 34608
+ - uid: 34260
components:
- type: Transform
- pos: -74.5,-2.5
+ pos: 37.5,32.5
parent: 2
- - uid: 34609
+ - uid: 34261
components:
- type: Transform
- pos: -76.5,-5.5
+ pos: 38.5,32.5
parent: 2
- - uid: 34610
+ - uid: 34262
components:
- type: Transform
- pos: -76.5,-6.5
+ pos: 49.5,32.5
parent: 2
- - uid: 34611
+ - uid: 34263
components:
- type: Transform
- pos: -75.5,-6.5
+ pos: 49.5,33.5
parent: 2
- - uid: 34612
+ - uid: 34264
components:
- type: Transform
- pos: -74.5,-6.5
+ pos: 49.5,34.5
parent: 2
- - uid: 34613
+ - uid: 34265
components:
- type: Transform
- pos: -72.5,-6.5
+ pos: 48.5,34.5
parent: 2
- - uid: 34615
+ - uid: 34266
components:
- type: Transform
- pos: -72.5,-5.5
+ pos: 47.5,34.5
parent: 2
- - uid: 34616
+ - uid: 34267
components:
- type: Transform
- pos: -73.5,-6.5
+ pos: 46.5,34.5
parent: 2
- - uid: 34700
+ - uid: 34268
components:
- type: Transform
- pos: 40.5,21.5
+ pos: 45.5,34.5
parent: 2
- - uid: 34702
+ - uid: 34269
components:
- type: Transform
- pos: 41.5,21.5
+ pos: 44.5,34.5
parent: 2
- - uid: 34710
+ - uid: 34270
components:
- type: Transform
- pos: 41.5,20.5
+ pos: 43.5,34.5
parent: 2
- - uid: 34711
+ - uid: 34271
components:
- type: Transform
- pos: 41.5,19.5
+ pos: 42.5,34.5
parent: 2
- - uid: 34712
+ - uid: 34272
components:
- type: Transform
- pos: 42.5,19.5
+ pos: 41.5,34.5
parent: 2
- - uid: 34730
+ - uid: 34273
components:
- type: Transform
- pos: -30.5,-10.5
+ pos: 40.5,34.5
parent: 2
- - uid: 34753
+ - uid: 34275
components:
- type: Transform
- pos: -39.5,59.5
+ pos: 45.5,28.5
parent: 2
- - uid: 34754
+ - uid: 34276
components:
- type: Transform
- pos: -38.5,59.5
+ pos: 45.5,27.5
parent: 2
- - uid: 34755
+ - uid: 34277
components:
- type: Transform
- pos: -40.5,59.5
+ pos: 45.5,26.5
parent: 2
- - uid: 34756
+ - uid: 34278
components:
- type: Transform
- pos: -41.5,59.5
+ pos: 49.5,25.5
parent: 2
- - uid: 34757
+ - uid: 34281
components:
- type: Transform
- pos: -42.5,59.5
+ pos: 48.5,23.5
parent: 2
- - uid: 34854
+ - uid: 34282
components:
- type: Transform
- pos: -7.5,-41.5
+ pos: 47.5,23.5
parent: 2
- - uid: 34855
+ - uid: 34283
components:
- type: Transform
- pos: 6.5,-34.5
+ pos: 46.5,23.5
parent: 2
- - uid: 34856
+ - uid: 34284
components:
- type: Transform
- pos: -6.5,-42.5
+ pos: 45.5,23.5
parent: 2
- - uid: 34857
+ - uid: 34285
components:
- type: Transform
- pos: -7.5,-42.5
+ pos: 44.5,23.5
parent: 2
- - uid: 34858
+ - uid: 34286
components:
- type: Transform
- pos: -8.5,-42.5
+ pos: 43.5,23.5
parent: 2
- - uid: 34859
+ - uid: 34287
components:
- type: Transform
- pos: -9.5,-42.5
+ pos: 42.5,23.5
parent: 2
- - uid: 34860
+ - uid: 34288
components:
- type: Transform
- pos: -10.5,-42.5
+ pos: 42.5,24.5
parent: 2
- - uid: 34861
+ - uid: 34289
components:
- type: Transform
- pos: -11.5,-42.5
+ pos: 42.5,25.5
parent: 2
- - uid: 34862
+ - uid: 34290
components:
- type: Transform
- pos: -12.5,-42.5
+ pos: 42.5,26.5
parent: 2
- - uid: 34863
+ - uid: 34293
components:
- type: Transform
- pos: -13.5,-42.5
+ pos: 36.5,26.5
parent: 2
- - uid: 34864
+ - uid: 34294
components:
- type: Transform
- pos: -13.5,-41.5
+ pos: 37.5,26.5
parent: 2
- - uid: 34865
+ - uid: 34295
components:
- type: Transform
- pos: -13.5,-40.5
+ pos: 38.5,26.5
parent: 2
- - uid: 34866
+ - uid: 34296
components:
- type: Transform
- pos: -15.5,-38.5
+ pos: 39.5,26.5
parent: 2
- - uid: 34867
+ - uid: 34297
components:
- type: Transform
- pos: -15.5,-37.5
+ pos: 40.5,26.5
parent: 2
- - uid: 34868
+ - uid: 34298
components:
- type: Transform
- pos: -14.5,-28.5
+ pos: 31.5,30.5
parent: 2
- - uid: 34869
+ - uid: 34299
components:
- type: Transform
- pos: -16.5,-28.5
+ pos: 30.5,30.5
parent: 2
- - uid: 34871
+ - uid: 34300
components:
- type: Transform
- pos: -16.5,-30.5
+ pos: 29.5,30.5
parent: 2
- - uid: 34872
+ - uid: 34301
components:
- type: Transform
- pos: -15.5,-30.5
+ pos: 28.5,30.5
parent: 2
- - uid: 34876
+ - uid: 34302
components:
- type: Transform
- pos: -15.5,-28.5
+ pos: 27.5,30.5
parent: 2
- - uid: 34883
+ - uid: 34303
components:
- type: Transform
- pos: -9.5,-27.5
+ pos: 26.5,30.5
parent: 2
- - uid: 34884
+ - uid: 34304
components:
- type: Transform
- pos: 7.5,-34.5
+ pos: 26.5,29.5
parent: 2
- - uid: 34885
+ - uid: 34305
components:
- type: Transform
- pos: 7.5,-33.5
+ pos: 26.5,28.5
parent: 2
- - uid: 34886
+ - uid: 34306
components:
- type: Transform
- pos: 7.5,-32.5
+ pos: 26.5,24.5
parent: 2
- - uid: 34887
+ - uid: 34307
components:
- type: Transform
- pos: 7.5,-31.5
+ pos: 26.5,23.5
parent: 2
- - uid: 34888
+ - uid: 34308
components:
- type: Transform
- pos: 6.5,-31.5
+ pos: 27.5,23.5
parent: 2
- - uid: 34889
+ - uid: 34309
components:
- type: Transform
- pos: 5.5,-31.5
+ pos: 28.5,23.5
parent: 2
- - uid: 34890
+ - uid: 34310
components:
- type: Transform
- pos: 4.5,-31.5
+ pos: 29.5,23.5
parent: 2
- - uid: 34891
+ - uid: 34311
components:
- type: Transform
- pos: 3.5,-31.5
+ pos: 30.5,23.5
parent: 2
- - uid: 34892
+ - uid: 34313
components:
- type: Transform
- pos: 2.5,-31.5
+ pos: -71.5,14.5
parent: 2
- - uid: 34893
+ - uid: 34314
components:
- type: Transform
- pos: 0.5,-31.5
+ pos: -70.5,14.5
parent: 2
- - uid: 34894
+ - uid: 34315
components:
- type: Transform
- pos: -0.5,-31.5
+ pos: -69.5,14.5
parent: 2
- - uid: 34895
+ - uid: 34316
components:
- type: Transform
- pos: -1.5,-31.5
+ pos: -68.5,14.5
parent: 2
- - uid: 34896
+ - uid: 34317
components:
- type: Transform
- pos: -2.5,-31.5
+ pos: -68.5,15.5
parent: 2
- - uid: 34897
+ - uid: 34318
components:
- type: Transform
- pos: -3.5,-31.5
+ pos: 11.5,28.5
parent: 2
- - uid: 34898
+ - uid: 34319
components:
- type: Transform
- pos: -4.5,-31.5
+ pos: 11.5,27.5
parent: 2
- - uid: 34899
+ - uid: 34320
components:
- type: Transform
- pos: -4.5,-32.5
+ pos: 12.5,27.5
parent: 2
- - uid: 34900
+ - uid: 34321
components:
- type: Transform
- pos: -4.5,-33.5
+ pos: 13.5,27.5
parent: 2
- - uid: 34901
+ - uid: 34322
components:
- type: Transform
- pos: -4.5,-34.5
+ pos: 14.5,27.5
parent: 2
- - uid: 34902
+ - uid: 34323
components:
- type: Transform
- pos: -4.5,-35.5
+ pos: 14.5,28.5
parent: 2
- - uid: 34903
+ - uid: 34324
components:
- type: Transform
- pos: -4.5,-36.5
+ pos: 6.5,24.5
parent: 2
- - uid: 34904
+ - uid: 34325
components:
- type: Transform
- pos: -4.5,-37.5
+ pos: 6.5,23.5
parent: 2
- - uid: 34905
+ - uid: 34326
components:
- type: Transform
- pos: -4.5,-38.5
+ pos: 7.5,23.5
parent: 2
- - uid: 34906
+ - uid: 34327
components:
- type: Transform
- pos: -4.5,-39.5
+ pos: 8.5,23.5
parent: 2
- - uid: 34907
+ - uid: 34328
components:
- type: Transform
- pos: -4.5,-40.5
+ pos: 9.5,23.5
parent: 2
- - uid: 34908
+ - uid: 34329
components:
- type: Transform
- pos: -4.5,-41.5
+ pos: 10.5,23.5
parent: 2
- - uid: 34909
+ - uid: 34330
components:
- type: Transform
- pos: -4.5,-42.5
+ pos: 11.5,23.5
parent: 2
- - uid: 34910
+ - uid: 34331
components:
- type: Transform
- pos: -4.5,-43.5
+ pos: 12.5,23.5
parent: 2
- - uid: 34911
+ - uid: 34332
components:
- type: Transform
- pos: -3.5,-43.5
+ pos: 12.5,24.5
parent: 2
- - uid: 34915
+ - uid: 34333
components:
- type: Transform
- pos: 6.5,-44.5
+ pos: 4.5,28.5
parent: 2
- - uid: 34920
+ - uid: 34334
components:
- type: Transform
- pos: 6.5,-43.5
+ pos: 4.5,27.5
parent: 2
- - uid: 34921
+ - uid: 34335
components:
- type: Transform
- pos: 6.5,-40.5
+ pos: 5.5,27.5
parent: 2
- - uid: 34922
+ - uid: 34336
components:
- type: Transform
- pos: 7.5,-40.5
+ pos: 6.5,27.5
parent: 2
- - uid: 34923
+ - uid: 34337
components:
- type: Transform
- pos: 8.5,-40.5
+ pos: 7.5,27.5
parent: 2
- - uid: 34926
+ - uid: 34338
components:
- type: Transform
- pos: -9.5,-51.5
+ pos: 8.5,27.5
parent: 2
- - uid: 34942
+ - uid: 34339
components:
- type: Transform
- pos: 86.5,18.5
+ pos: 9.5,27.5
parent: 2
- - uid: 34943
+ - uid: 34340
components:
- type: Transform
- pos: 88.5,18.5
+ pos: 9.5,28.5
parent: 2
- - uid: 34944
+ - uid: 34341
components:
- type: Transform
- pos: 89.5,18.5
+ pos: 17.5,58.5
parent: 2
- - uid: 34945
+ - uid: 34362
components:
- type: Transform
- pos: 90.5,18.5
+ pos: 4.5,56.5
parent: 2
- - uid: 34946
+ - uid: 34369
components:
- type: Transform
- pos: 91.5,18.5
+ pos: -79.5,7.5
parent: 2
- - uid: 34947
+ - uid: 34378
components:
- type: Transform
- pos: 91.5,17.5
+ pos: -77.5,6.5
parent: 2
- - uid: 34948
+ - uid: 34379
components:
- type: Transform
- pos: 91.5,16.5
+ pos: -77.5,7.5
parent: 2
- - uid: 34949
+ - uid: 34385
components:
- type: Transform
- pos: 91.5,15.5
+ pos: 24.5,55.5
parent: 2
- - uid: 34950
+ - uid: 34386
components:
- type: Transform
- pos: 90.5,15.5
+ pos: 24.5,57.5
parent: 2
- - uid: 34951
+ - uid: 34389
components:
- type: Transform
- pos: 89.5,15.5
+ pos: 27.5,57.5
parent: 2
- - uid: 34952
+ - uid: 34391
components:
- type: Transform
- pos: 88.5,15.5
+ pos: 29.5,55.5
parent: 2
- - uid: 34953
+ - uid: 34394
components:
- type: Transform
- pos: 88.5,16.5
+ pos: 24.5,57.5
parent: 2
- - uid: 34954
+ - uid: 34395
components:
- type: Transform
- pos: 88.5,17.5
+ pos: 24.5,58.5
parent: 2
- - uid: 35000
+ - uid: 34396
components:
- type: Transform
- pos: 56.5,-42.5
+ pos: 23.5,58.5
parent: 2
- - uid: 35021
+ - uid: 34397
components:
- type: Transform
- pos: 56.5,-43.5
+ pos: 23.5,59.5
parent: 2
- - uid: 35022
+ - uid: 34398
components:
- type: Transform
- pos: 56.5,-44.5
+ pos: 22.5,59.5
parent: 2
- - uid: 35023
+ - uid: 34399
components:
- type: Transform
- pos: 56.5,-45.5
+ pos: 22.5,60.5
parent: 2
- - uid: 35024
+ - uid: 34400
components:
- type: Transform
- pos: 56.5,-46.5
+ pos: 21.5,60.5
parent: 2
- - uid: 35025
+ - uid: 34401
components:
- type: Transform
- pos: 56.5,-47.5
+ pos: 20.5,60.5
parent: 2
- - uid: 35026
+ - uid: 34402
components:
- type: Transform
- pos: 56.5,-48.5
+ pos: 19.5,60.5
parent: 2
- - uid: 35027
+ - uid: 34403
components:
- type: Transform
- pos: 56.5,-49.5
+ pos: 18.5,60.5
parent: 2
- - uid: 35028
+ - uid: 34408
components:
- type: Transform
- pos: 56.5,-50.5
+ pos: 16.5,55.5
parent: 2
- - uid: 35029
+ - uid: 34409
components:
- type: Transform
- pos: 56.5,-51.5
+ pos: 15.5,55.5
parent: 2
- - uid: 35030
+ - uid: 34412
components:
- type: Transform
- pos: 56.5,-52.5
+ pos: 21.5,57.5
parent: 2
- - uid: 35031
+ - uid: 34413
components:
- type: Transform
- pos: 56.5,-53.5
+ pos: 21.5,58.5
parent: 2
- - uid: 35032
+ - uid: 34414
components:
- type: Transform
- pos: 56.5,-54.5
+ pos: 21.5,59.5
parent: 2
- - uid: 35033
+ - uid: 34415
components:
- type: Transform
- pos: 56.5,-55.5
+ pos: 16.5,2.5
parent: 2
- - uid: 35034
+ - uid: 34425
components:
- type: Transform
- pos: 56.5,-56.5
+ pos: -60.5,-6.5
parent: 2
- - uid: 35035
+ - uid: 34426
components:
- type: Transform
- pos: 56.5,-57.5
+ pos: -61.5,-6.5
parent: 2
- - uid: 35036
+ - uid: 34427
components:
- type: Transform
- pos: 56.5,-58.5
+ pos: -62.5,-6.5
parent: 2
- - uid: 35037
+ - uid: 34428
components:
- type: Transform
- pos: 56.5,-59.5
+ pos: -62.5,-7.5
parent: 2
- - uid: 35038
+ - uid: 34429
components:
- type: Transform
- pos: 56.5,-60.5
+ pos: -62.5,-8.5
parent: 2
- - uid: 35039
+ - uid: 34430
components:
- type: Transform
- pos: 56.5,-61.5
+ pos: -62.5,-9.5
parent: 2
- - uid: 35040
+ - uid: 34431
components:
- type: Transform
- pos: 56.5,-62.5
+ pos: -61.5,-9.5
parent: 2
- - uid: 35041
+ - uid: 34432
components:
- type: Transform
- pos: 56.5,-63.5
+ pos: -60.5,-9.5
parent: 2
- - uid: 35042
+ - uid: 34433
components:
- type: Transform
- pos: 56.5,-64.5
+ pos: -58.5,-9.5
parent: 2
- - uid: 35043
+ - uid: 34434
components:
- type: Transform
- pos: 56.5,-65.5
+ pos: -57.5,-9.5
parent: 2
- - uid: 35044
+ - uid: 34435
components:
- type: Transform
- pos: 56.5,-66.5
+ pos: -57.5,-8.5
parent: 2
- - uid: 35045
+ - uid: 34436
components:
- type: Transform
- pos: 56.5,-67.5
+ pos: -57.5,-7.5
parent: 2
- - uid: 35046
+ - uid: 34437
components:
- type: Transform
- pos: 56.5,-68.5
+ pos: -57.5,-6.5
parent: 2
- - uid: 35047
+ - uid: 34438
components:
- type: Transform
- pos: 56.5,-69.5
+ pos: -58.5,-6.5
parent: 2
- - uid: 35048
+ - uid: 34439
components:
- type: Transform
- pos: 56.5,-70.5
+ pos: -60.5,-1.5
parent: 2
- - uid: 35049
+ - uid: 34440
components:
- type: Transform
- pos: 56.5,-71.5
+ pos: -61.5,-1.5
parent: 2
- - uid: 35050
+ - uid: 34441
components:
- type: Transform
- pos: 56.5,-72.5
+ pos: -62.5,-1.5
parent: 2
- - uid: 35051
+ - uid: 34442
components:
- type: Transform
- pos: 56.5,-73.5
+ pos: -62.5,-2.5
parent: 2
- - uid: 35052
+ - uid: 34443
components:
- type: Transform
- pos: 56.5,-74.5
+ pos: -62.5,-3.5
parent: 2
- - uid: 35053
+ - uid: 34444
components:
- type: Transform
- pos: 56.5,-75.5
+ pos: -62.5,-4.5
parent: 2
- - uid: 35054
+ - uid: 34445
components:
- type: Transform
- pos: 56.5,-76.5
+ pos: -61.5,-4.5
parent: 2
- - uid: 35055
+ - uid: 34446
components:
- type: Transform
- pos: 56.5,-77.5
+ pos: -60.5,-4.5
parent: 2
- - uid: 35056
+ - uid: 34447
components:
- type: Transform
- pos: 56.5,-78.5
+ pos: -59.5,-4.5
parent: 2
- - uid: 35057
+ - uid: 34448
components:
- type: Transform
- pos: 57.5,-78.5
+ pos: -58.5,-4.5
parent: 2
- - uid: 35058
+ - uid: 34449
components:
- type: Transform
- pos: 57.5,-79.5
+ pos: -57.5,-4.5
parent: 2
- - uid: 35059
+ - uid: 34450
components:
- type: Transform
- pos: 58.5,-79.5
+ pos: -57.5,-3.5
parent: 2
- - uid: 35060
+ - uid: 34451
components:
- type: Transform
- pos: 58.5,-80.5
+ pos: -57.5,-2.5
parent: 2
- - uid: 35061
+ - uid: 34452
components:
- type: Transform
- pos: 58.5,-81.5
+ pos: -57.5,-1.5
parent: 2
- - uid: 35062
+ - uid: 34453
components:
- type: Transform
- pos: 59.5,-81.5
+ pos: -56.5,-1.5
parent: 2
- - uid: 35063
+ - uid: 34454
components:
- type: Transform
- pos: 59.5,-82.5
+ pos: -55.5,-1.5
parent: 2
- - uid: 35064
+ - uid: 34455
components:
- type: Transform
- pos: 59.5,-83.5
+ pos: -54.5,-1.5
parent: 2
- - uid: 35065
+ - uid: 34456
components:
- type: Transform
- pos: 61.5,-83.5
+ pos: -53.5,-1.5
parent: 2
- - uid: 35066
+ - uid: 34457
components:
- type: Transform
- pos: 61.5,-83.5
+ pos: -52.5,-1.5
parent: 2
- - uid: 35068
+ - uid: 34458
components:
- type: Transform
- pos: 63.5,-84.5
+ pos: -51.5,-1.5
parent: 2
- - uid: 35069
+ - uid: 34459
components:
- type: Transform
- pos: 63.5,-85.5
+ pos: -50.5,-1.5
parent: 2
- - uid: 35070
+ - uid: 34460
components:
- type: Transform
- pos: 63.5,-86.5
+ pos: -49.5,-1.5
parent: 2
- - uid: 35071
+ - uid: 34461
components:
- type: Transform
- pos: 64.5,-86.5
+ pos: -49.5,-2.5
parent: 2
- - uid: 35072
+ - uid: 34462
components:
- type: Transform
- pos: 66.5,-86.5
+ pos: -49.5,-3.5
parent: 2
- - uid: 35073
+ - uid: 34463
components:
- type: Transform
- pos: 66.5,-86.5
+ pos: -50.5,-3.5
parent: 2
- - uid: 35074
+ - uid: 34464
components:
- type: Transform
- pos: 65.5,-86.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 35080
+ - uid: 34465
components:
- type: Transform
- pos: 60.5,-83.5
+ pos: -52.5,-3.5
parent: 2
- - uid: 35081
+ - uid: 34466
components:
- type: Transform
- pos: 63.5,-83.5
+ pos: -53.5,-3.5
parent: 2
- - uid: 35082
+ - uid: 34467
components:
- type: Transform
- pos: 64.5,-83.5
+ pos: -54.5,-3.5
parent: 2
- - uid: 35196
+ - uid: 34468
components:
- type: Transform
- pos: -80.5,52.5
+ pos: -55.5,-3.5
parent: 2
- - uid: 35415
+ - uid: 34469
components:
- type: Transform
- pos: -80.5,53.5
+ pos: -55.5,-2.5
parent: 2
- - uid: 35416
+ - uid: 34470
components:
- type: Transform
- pos: -80.5,54.5
+ pos: -60.5,0.5
parent: 2
- - uid: 35417
+ - uid: 34471
components:
- type: Transform
- pos: -80.5,55.5
+ pos: -61.5,0.5
parent: 2
- - uid: 35418
+ - uid: 34472
components:
- type: Transform
- pos: -80.5,56.5
+ pos: -62.5,0.5
parent: 2
- - uid: 35419
+ - uid: 34473
components:
- type: Transform
- pos: -80.5,57.5
+ pos: -62.5,1.5
parent: 2
- - uid: 35420
+ - uid: 34474
components:
- type: Transform
- pos: -80.5,58.5
+ pos: -62.5,2.5
parent: 2
- - uid: 35421
+ - uid: 34475
components:
- type: Transform
- pos: -80.5,59.5
+ pos: -62.5,3.5
parent: 2
- - uid: 35422
+ - uid: 34476
components:
- type: Transform
- pos: -80.5,60.5
+ pos: -62.5,4.5
parent: 2
- - uid: 35423
+ - uid: 34477
components:
- type: Transform
- pos: -80.5,61.5
+ pos: -62.5,5.5
parent: 2
- - uid: 35424
+ - uid: 34478
components:
- type: Transform
- pos: -80.5,62.5
+ pos: -61.5,5.5
parent: 2
- - uid: 35425
+ - uid: 34479
components:
- type: Transform
- pos: -80.5,63.5
+ pos: -60.5,5.5
parent: 2
- - uid: 35426
+ - uid: 34480
components:
- type: Transform
- pos: -80.5,64.5
+ pos: -49.5,4.5
parent: 2
- - uid: 35427
+ - uid: 34481
components:
- type: Transform
- pos: -80.5,65.5
+ pos: -49.5,3.5
parent: 2
- - uid: 35428
+ - uid: 34482
components:
- type: Transform
- pos: -80.5,66.5
+ pos: -49.5,2.5
parent: 2
- - uid: 35429
+ - uid: 34483
components:
- type: Transform
- pos: -80.5,67.5
+ pos: -49.5,1.5
parent: 2
- - uid: 35430
+ - uid: 34484
components:
- type: Transform
- pos: -80.5,68.5
+ pos: -49.5,0.5
parent: 2
- - uid: 35431
+ - uid: 34485
components:
- type: Transform
- pos: -80.5,69.5
+ pos: -50.5,0.5
parent: 2
- - uid: 35432
+ - uid: 34486
components:
- type: Transform
- pos: -80.5,70.5
+ pos: -51.5,0.5
parent: 2
- - uid: 35433
+ - uid: 34487
components:
- type: Transform
- pos: -80.5,71.5
+ pos: -52.5,0.5
parent: 2
- - uid: 35434
+ - uid: 34488
components:
- type: Transform
- pos: -80.5,72.5
+ pos: -53.5,0.5
parent: 2
- - uid: 35435
+ - uid: 34489
components:
- type: Transform
- pos: -80.5,73.5
+ pos: -54.5,0.5
parent: 2
- - uid: 35436
+ - uid: 34490
components:
- type: Transform
- pos: -80.5,74.5
+ pos: -54.5,1.5
parent: 2
- - uid: 35437
+ - uid: 34491
components:
- type: Transform
- pos: -80.5,75.5
+ pos: -54.5,2.5
parent: 2
- - uid: 35438
+ - uid: 34492
components:
- type: Transform
- pos: -80.5,76.5
+ pos: -54.5,3.5
parent: 2
- - uid: 35439
+ - uid: 34493
components:
- type: Transform
- pos: -80.5,77.5
+ pos: -55.5,3.5
parent: 2
- - uid: 35440
+ - uid: 34494
components:
- type: Transform
- pos: -80.5,78.5
+ pos: -56.5,3.5
parent: 2
- - uid: 35441
+ - uid: 34495
components:
- type: Transform
- pos: -80.5,79.5
+ pos: -57.5,3.5
parent: 2
- - uid: 35442
+ - uid: 34496
components:
- type: Transform
- pos: -80.5,80.5
+ pos: -57.5,2.5
parent: 2
- - uid: 35443
+ - uid: 34497
components:
- type: Transform
- pos: -80.5,81.5
+ pos: -57.5,1.5
parent: 2
- - uid: 35444
+ - uid: 34498
components:
- type: Transform
- pos: -80.5,82.5
+ pos: -57.5,0.5
parent: 2
- - uid: 35445
+ - uid: 34499
components:
- type: Transform
- pos: -80.5,83.5
+ pos: -58.5,0.5
parent: 2
- - uid: 35446
+ - uid: 34500
components:
- type: Transform
- pos: -80.5,84.5
+ pos: -62.5,12.5
parent: 2
- - uid: 35447
+ - uid: 34501
components:
- type: Transform
- pos: -80.5,85.5
+ pos: -47.5,13.5
parent: 2
- - uid: 35448
+ - uid: 34502
components:
- type: Transform
- pos: -80.5,86.5
+ pos: -47.5,14.5
parent: 2
- - uid: 35449
+ - uid: 34503
components:
- type: Transform
- pos: -80.5,87.5
+ pos: -48.5,14.5
parent: 2
- - uid: 35450
+ - uid: 34504
components:
- type: Transform
- pos: -80.5,88.5
+ pos: -49.5,14.5
parent: 2
- - uid: 35451
+ - uid: 34505
components:
- type: Transform
- pos: -80.5,89.5
+ pos: -50.5,14.5
parent: 2
- - uid: 35452
+ - uid: 34506
components:
- type: Transform
- pos: -80.5,90.5
+ pos: -51.5,14.5
parent: 2
- - uid: 35453
+ - uid: 34507
components:
- type: Transform
- pos: -80.5,91.5
+ pos: -47.5,12.5
parent: 2
- - uid: 35454
+ - uid: 34508
components:
- type: Transform
- pos: -80.5,92.5
+ pos: -47.5,11.5
parent: 2
- - uid: 35455
+ - uid: 34509
components:
- type: Transform
- pos: -80.5,93.5
+ pos: -47.5,17.5
parent: 2
- - uid: 35456
+ - uid: 34510
components:
- type: Transform
- pos: -80.5,94.5
+ pos: -47.5,16.5
parent: 2
- - uid: 35457
+ - uid: 34511
components:
- type: Transform
- pos: -80.5,95.5
+ pos: -47.5,18.5
parent: 2
- - uid: 35458
+ - uid: 34512
components:
- type: Transform
- pos: -80.5,97.5
+ pos: -47.5,19.5
parent: 2
- - uid: 35459
+ - uid: 34513
components:
- type: Transform
- pos: -80.5,98.5
+ pos: -48.5,19.5
parent: 2
- - uid: 35460
+ - uid: 34514
components:
- type: Transform
- pos: -80.5,99.5
+ pos: -49.5,19.5
parent: 2
- - uid: 35461
+ - uid: 34515
components:
- type: Transform
- pos: -79.5,89.5
+ pos: -50.5,19.5
parent: 2
- - uid: 35463
+ - uid: 34516
components:
- type: Transform
- pos: -79.5,79.5
+ pos: -51.5,19.5
parent: 2
- - uid: 35464
+ - uid: 34517
components:
- type: Transform
- pos: -79.5,69.5
+ pos: -51.5,20.5
parent: 2
- - uid: 35465
+ - uid: 34518
components:
- type: Transform
- pos: -79.5,59.5
+ pos: -51.5,21.5
parent: 2
- - uid: 35813
+ - uid: 34519
components:
- type: Transform
- pos: 29.5,39.5
+ pos: -48.5,22.5
parent: 2
- - uid: 36051
+ - uid: 34520
components:
- type: Transform
- pos: -52.5,-17.5
+ pos: -47.5,22.5
parent: 2
- - uid: 36052
+ - uid: 34521
components:
- type: Transform
- pos: -52.5,-16.5
+ pos: -47.5,21.5
parent: 2
- - uid: 36053
+ - uid: 34522
components:
- type: Transform
- pos: -48.5,9.5
+ pos: -47.5,20.5
parent: 2
- - uid: 36291
+ - uid: 34523
components:
- type: Transform
- pos: -47.5,31.5
+ pos: -48.5,20.5
parent: 2
- - uid: 36292
+ - uid: 34524
components:
- type: Transform
- pos: -48.5,32.5
+ pos: -48.5,26.5
parent: 2
- - uid: 36293
+ - uid: 34525
components:
- type: Transform
- pos: -47.5,32.5
+ pos: -47.5,26.5
parent: 2
- - uid: 36294
+ - uid: 34526
components:
- type: Transform
- pos: -46.5,32.5
+ pos: -50.5,26.5
parent: 2
- - uid: 36295
+ - uid: 34527
components:
- type: Transform
- pos: -48.5,36.5
+ pos: -51.5,26.5
parent: 2
- - uid: 36296
+ - uid: 34528
components:
- type: Transform
- pos: -47.5,36.5
+ pos: -47.5,25.5
parent: 2
- - uid: 36297
+ - uid: 34529
components:
- type: Transform
- pos: -46.5,36.5
+ pos: -55.5,30.5
parent: 2
- - uid: 36298
+ - uid: 34530
components:
- type: Transform
- pos: -50.5,35.5
+ pos: -56.5,30.5
parent: 2
- - uid: 36299
+ - uid: 34531
components:
- type: Transform
- pos: -50.5,34.5
+ pos: -53.5,33.5
parent: 2
- - uid: 36300
+ - uid: 34532
components:
- type: Transform
- pos: -50.5,33.5
+ pos: -52.5,33.5
parent: 2
- - uid: 36301
+ - uid: 34533
components:
- type: Transform
- pos: -58.5,33.5
+ pos: -51.5,33.5
parent: 2
- - uid: 36302
+ - uid: 34534
components:
- type: Transform
- pos: -56.5,26.5
+ pos: -51.5,34.5
parent: 2
- - uid: 36303
+ - uid: 34535
components:
- type: Transform
- pos: -56.5,27.5
+ pos: -51.5,35.5
parent: 2
- - uid: 36304
+ - uid: 34536
components:
- type: Transform
- pos: -56.5,23.5
+ pos: -51.5,36.5
parent: 2
- - uid: 36305
+ - uid: 34537
components:
- type: Transform
- pos: -56.5,22.5
+ pos: -52.5,36.5
parent: 2
- - uid: 36343
+ - uid: 34538
components:
- type: Transform
- pos: -50.5,15.5
+ pos: -56.5,36.5
parent: 2
- - uid: 36344
+ - uid: 34539
components:
- type: Transform
- pos: -49.5,15.5
+ pos: -57.5,36.5
parent: 2
- - uid: 36345
+ - uid: 34540
components:
- type: Transform
- pos: -48.5,15.5
+ pos: -57.5,35.5
parent: 2
- - uid: 36346
+ - uid: 34541
components:
- type: Transform
- pos: -21.5,23.5
+ pos: -57.5,33.5
parent: 2
- - uid: 36347
+ - uid: 34542
components:
- type: Transform
- pos: -20.5,23.5
+ pos: -44.5,35.5
parent: 2
- - uid: 36348
+ - uid: 34543
components:
- type: Transform
- pos: -19.5,23.5
+ pos: -45.5,35.5
parent: 2
- - uid: 36349
+ - uid: 34544
components:
- type: Transform
- pos: -21.5,24.5
+ pos: -46.5,35.5
parent: 2
- - uid: 36352
+ - uid: 34545
components:
- type: Transform
- pos: 3.5,27.5
+ pos: -47.5,35.5
parent: 2
- - uid: 36353
+ - uid: 34546
components:
- type: Transform
- pos: 8.5,26.5
+ pos: -48.5,35.5
parent: 2
- - uid: 36354
+ - uid: 34547
components:
- type: Transform
- pos: 9.5,26.5
+ pos: -49.5,35.5
parent: 2
- - uid: 36355
+ - uid: 34548
components:
- type: Transform
- pos: 11.5,26.5
+ pos: -49.5,34.5
parent: 2
- - uid: 36356
+ - uid: 34549
components:
- type: Transform
- pos: 19.5,22.5
+ pos: -49.5,33.5
parent: 2
- - uid: 36357
+ - uid: 34550
components:
- type: Transform
- pos: 36.5,56.5
+ pos: -48.5,33.5
parent: 2
- - uid: 36358
+ - uid: 34551
components:
- type: Transform
- pos: 36.5,55.5
+ pos: -47.5,33.5
parent: 2
- - uid: 36359
+ - uid: 34552
components:
- type: Transform
- pos: 36.5,54.5
+ pos: -46.5,33.5
parent: 2
- - uid: 36360
+ - uid: 34553
components:
- type: Transform
- pos: 37.5,58.5
+ pos: -45.5,33.5
parent: 2
- - uid: 36361
+ - uid: 34554
components:
- type: Transform
- pos: 41.5,58.5
+ pos: -44.5,33.5
parent: 2
- - uid: 36362
+ - uid: 34555
components:
- type: Transform
- pos: 42.5,56.5
+ pos: -42.5,33.5
parent: 2
- - uid: 36363
+ - uid: 34556
components:
- type: Transform
- pos: 42.5,55.5
+ pos: -41.5,33.5
parent: 2
- - uid: 36364
+ - uid: 34557
components:
- type: Transform
- pos: 42.5,54.5
+ pos: -41.5,34.5
parent: 2
- - uid: 36365
+ - uid: 34558
components:
- type: Transform
- pos: 43.5,58.5
+ pos: -41.5,35.5
parent: 2
- - uid: 36366
+ - uid: 34559
components:
- type: Transform
- pos: 47.5,58.5
+ pos: -42.5,35.5
parent: 2
- - uid: 36367
+ - uid: 34560
components:
- type: Transform
- pos: 48.5,56.5
+ pos: -58.5,46.5
parent: 2
- - uid: 36368
+ - uid: 34561
components:
- type: Transform
- pos: 48.5,55.5
+ pos: -57.5,46.5
parent: 2
- - uid: 36369
+ - uid: 34562
components:
- type: Transform
- pos: 48.5,54.5
+ pos: -56.5,46.5
parent: 2
- - uid: 36370
+ - uid: 34563
components:
- type: Transform
- pos: 45.5,52.5
+ pos: -55.5,46.5
parent: 2
- - uid: 36371
+ - uid: 34564
components:
- type: Transform
- pos: 44.5,52.5
+ pos: -54.5,46.5
parent: 2
- - uid: 36372
+ - uid: 34565
components:
- type: Transform
- pos: 43.5,52.5
+ pos: -54.5,47.5
parent: 2
- - uid: 36373
+ - uid: 34566
components:
- type: Transform
- pos: 48.5,52.5
+ pos: -54.5,48.5
parent: 2
- - uid: 36374
+ - uid: 34567
components:
- type: Transform
- pos: 49.5,52.5
+ pos: -54.5,49.5
parent: 2
- - uid: 36375
+ - uid: 34568
components:
- type: Transform
- pos: 50.5,52.5
+ pos: -54.5,50.5
parent: 2
- - uid: 36376
+ - uid: 34569
components:
- type: Transform
- pos: 41.5,52.5
+ pos: -54.5,51.5
parent: 2
- - uid: 36377
+ - uid: 34570
components:
- type: Transform
- pos: 40.5,52.5
+ pos: -54.5,52.5
parent: 2
- - uid: 36378
+ - uid: 34571
components:
- type: Transform
- pos: 39.5,52.5
+ pos: -54.5,53.5
parent: 2
- - uid: 36379
+ - uid: 34578
components:
- type: Transform
- pos: 35.5,52.5
+ pos: -85.5,19.5
parent: 2
- - uid: 36380
+ - uid: 34579
components:
- type: Transform
- pos: 34.5,52.5
+ pos: -86.5,19.5
parent: 2
- - uid: 36395
+ - uid: 34583
components:
- type: Transform
- pos: -18.5,30.5
+ pos: -80.5,18.5
parent: 2
- - uid: 36396
+ - uid: 34584
components:
- type: Transform
- pos: -30.5,37.5
+ pos: -81.5,18.5
parent: 2
- - uid: 36397
+ - uid: 34585
components:
- type: Transform
- pos: -31.5,37.5
+ pos: -82.5,18.5
parent: 2
- - uid: 36398
+ - uid: 34586
components:
- type: Transform
- pos: -32.5,37.5
+ pos: -83.5,18.5
parent: 2
-- proto: CablecuffsBroken
- entities:
- - uid: 5375
+ - uid: 34592
components:
- type: Transform
- pos: 58.823177,56.228245
+ pos: -97.5,12.5
parent: 2
- - uid: 5376
+ - uid: 34593
components:
- type: Transform
- pos: 59.354427,55.61887
+ pos: -96.5,12.5
parent: 2
- - uid: 6998
+ - uid: 34594
components:
- type: Transform
- pos: -30.291754,-34.461353
+ pos: -95.5,12.5
parent: 2
-- proto: CableHV
- entities:
- - uid: 91
+ - uid: 34603
components:
- type: Transform
- pos: -62.5,27.5
+ pos: -85.5,12.5
parent: 2
- - uid: 112
+ - uid: 34606
components:
- type: Transform
- pos: -62.5,25.5
+ pos: -75.5,-2.5
parent: 2
- - uid: 122
+ - uid: 34608
components:
- type: Transform
- pos: -61.5,33.5
+ pos: -74.5,-2.5
parent: 2
- - uid: 137
+ - uid: 34609
components:
- type: Transform
- pos: -5.5,70.5
+ pos: -76.5,-5.5
parent: 2
- - uid: 200
+ - uid: 34610
components:
- type: Transform
- pos: -29.5,-5.5
+ pos: -76.5,-6.5
parent: 2
- - uid: 208
+ - uid: 34611
components:
- type: Transform
- pos: -61.5,31.5
+ pos: -75.5,-6.5
parent: 2
- - uid: 216
+ - uid: 34612
components:
- type: Transform
- pos: -61.5,34.5
+ pos: -74.5,-6.5
parent: 2
- - uid: 233
+ - uid: 34613
components:
- type: Transform
- pos: -51.5,61.5
+ pos: -72.5,-6.5
parent: 2
- - uid: 246
+ - uid: 34615
components:
- type: Transform
- pos: -46.5,57.5
+ pos: -72.5,-5.5
parent: 2
- - uid: 275
+ - uid: 34616
components:
- type: Transform
- pos: -51.5,60.5
+ pos: -73.5,-6.5
parent: 2
- - uid: 383
+ - uid: 34700
components:
- type: Transform
- pos: -62.5,35.5
+ pos: 40.5,21.5
parent: 2
- - uid: 419
+ - uid: 34702
components:
- type: Transform
- pos: -59.5,36.5
+ pos: 41.5,21.5
parent: 2
- - uid: 420
+ - uid: 34710
components:
- type: Transform
- pos: -60.5,27.5
+ pos: 41.5,20.5
parent: 2
- - uid: 421
+ - uid: 34711
components:
- type: Transform
- pos: -59.5,35.5
+ pos: 41.5,19.5
parent: 2
- - uid: 979
+ - uid: 34712
components:
- type: Transform
- pos: -33.5,-6.5
+ pos: 42.5,19.5
parent: 2
- - uid: 1459
+ - uid: 34730
components:
- type: Transform
- pos: -10.5,68.5
+ pos: -30.5,-10.5
parent: 2
- - uid: 2526
+ - uid: 34753
components:
- type: Transform
- pos: -3.5,-20.5
+ pos: -39.5,59.5
parent: 2
- - uid: 3658
+ - uid: 34754
components:
- type: Transform
- pos: -60.5,36.5
+ pos: -38.5,59.5
parent: 2
- - uid: 3660
+ - uid: 34755
components:
- type: Transform
- pos: -61.5,35.5
+ pos: -40.5,59.5
parent: 2
- - uid: 3893
+ - uid: 34756
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: -41.5,59.5
parent: 2
- - uid: 4040
+ - uid: 34757
components:
- type: Transform
- pos: -51.5,17.5
+ pos: -42.5,59.5
parent: 2
- - uid: 4053
+ - uid: 34854
components:
- type: Transform
- pos: -49.5,17.5
+ pos: -7.5,-41.5
parent: 2
- - uid: 4084
+ - uid: 34855
components:
- type: Transform
- pos: -50.5,17.5
+ pos: 6.5,-34.5
parent: 2
- - uid: 4190
+ - uid: 34856
components:
- type: Transform
- pos: -52.5,17.5
+ pos: -6.5,-42.5
parent: 2
- - uid: 4332
+ - uid: 34857
components:
- type: Transform
- pos: -48.5,17.5
+ pos: -7.5,-42.5
parent: 2
- - uid: 4335
+ - uid: 34858
components:
- type: Transform
- pos: 32.5,36.5
+ pos: -8.5,-42.5
parent: 2
- - uid: 4336
+ - uid: 34859
components:
- type: Transform
- pos: -47.5,17.5
+ pos: -9.5,-42.5
parent: 2
- - uid: 4428
+ - uid: 34860
components:
- type: Transform
- pos: -47.5,18.5
+ pos: -10.5,-42.5
parent: 2
- - uid: 4735
+ - uid: 34861
components:
- type: Transform
- pos: -25.5,23.5
+ pos: -11.5,-42.5
parent: 2
- - uid: 4765
+ - uid: 34862
components:
- type: Transform
- pos: -27.5,23.5
+ pos: -12.5,-42.5
parent: 2
- - uid: 4828
+ - uid: 34863
components:
- type: Transform
- pos: 32.5,35.5
+ pos: -13.5,-42.5
parent: 2
- - uid: 4852
+ - uid: 34864
components:
- type: Transform
- pos: -82.5,-45.5
+ pos: -13.5,-41.5
parent: 2
- - uid: 4853
+ - uid: 34865
components:
- type: Transform
- pos: -93.5,-33.5
+ pos: -13.5,-40.5
parent: 2
- - uid: 4873
+ - uid: 34866
components:
- type: Transform
- pos: -84.5,-45.5
+ pos: -15.5,-38.5
parent: 2
- - uid: 4874
+ - uid: 34867
components:
- type: Transform
- pos: -85.5,-45.5
+ pos: -15.5,-37.5
parent: 2
- - uid: 4875
+ - uid: 34868
components:
- type: Transform
- pos: -86.5,-48.5
+ pos: -14.5,-28.5
parent: 2
- - uid: 4878
+ - uid: 34869
components:
- type: Transform
- pos: -83.5,-45.5
+ pos: -16.5,-28.5
parent: 2
- - uid: 4879
+ - uid: 34871
components:
- type: Transform
- pos: -94.5,-33.5
+ pos: -16.5,-30.5
parent: 2
- - uid: 4883
+ - uid: 34872
components:
- type: Transform
- pos: -60.5,44.5
+ pos: -15.5,-30.5
parent: 2
- - uid: 4884
+ - uid: 34876
components:
- type: Transform
- pos: -92.5,-33.5
+ pos: -15.5,-28.5
parent: 2
- - uid: 5260
+ - uid: 34883
components:
- type: Transform
- pos: 33.5,36.5
+ pos: -9.5,-27.5
parent: 2
- - uid: 5870
+ - uid: 34884
components:
- type: Transform
- pos: -53.5,17.5
+ pos: 7.5,-34.5
parent: 2
- - uid: 5922
+ - uid: 34885
components:
- type: Transform
- pos: -41.5,56.5
+ pos: 7.5,-33.5
parent: 2
- - uid: 5925
+ - uid: 34886
components:
- type: Transform
- pos: -42.5,56.5
+ pos: 7.5,-32.5
parent: 2
- - uid: 5965
+ - uid: 34887
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: 7.5,-31.5
parent: 2
- - uid: 6396
+ - uid: 34888
components:
- type: Transform
- pos: -24.5,27.5
+ pos: 6.5,-31.5
parent: 2
- - uid: 7293
+ - uid: 34889
components:
- type: Transform
- pos: -25.5,26.5
+ pos: 5.5,-31.5
parent: 2
- - uid: 7323
+ - uid: 34890
components:
- type: Transform
- pos: -95.5,-33.5
+ pos: 4.5,-31.5
parent: 2
- - uid: 7408
+ - uid: 34891
components:
- type: Transform
- pos: -89.5,51.5
+ pos: 3.5,-31.5
parent: 2
- - uid: 7409
+ - uid: 34892
components:
- type: Transform
- pos: -95.5,54.5
+ pos: 2.5,-31.5
parent: 2
- - uid: 7410
+ - uid: 34893
components:
- type: Transform
- pos: -87.5,51.5
+ pos: 0.5,-31.5
parent: 2
- - uid: 7466
+ - uid: 34894
components:
- type: Transform
- pos: -46.5,56.5
+ pos: -0.5,-31.5
parent: 2
- - uid: 7467
+ - uid: 34895
components:
- type: Transform
- pos: -6.5,70.5
+ pos: -1.5,-31.5
parent: 2
- - uid: 7473
+ - uid: 34896
components:
- type: Transform
- pos: -4.5,70.5
+ pos: -2.5,-31.5
parent: 2
- - uid: 7474
+ - uid: 34897
components:
- type: Transform
- pos: -9.5,68.5
+ pos: -3.5,-31.5
parent: 2
- - uid: 7488
+ - uid: 34898
components:
- type: Transform
- pos: -7.5,69.5
+ pos: -4.5,-31.5
parent: 2
- - uid: 7489
+ - uid: 34899
components:
- type: Transform
- pos: -11.5,68.5
+ pos: -4.5,-32.5
parent: 2
- - uid: 7492
+ - uid: 34900
components:
- type: Transform
- pos: -51.5,59.5
+ pos: -4.5,-33.5
parent: 2
- - uid: 7581
+ - uid: 34901
components:
- type: Transform
- pos: -43.5,69.5
+ pos: -4.5,-34.5
parent: 2
- - uid: 7630
+ - uid: 34902
components:
- type: Transform
- pos: -69.5,24.5
+ pos: -4.5,-35.5
parent: 2
- - uid: 7694
+ - uid: 34903
components:
- type: Transform
- pos: -96.5,-33.5
+ pos: -4.5,-36.5
parent: 2
- - uid: 7710
+ - uid: 34904
components:
- type: Transform
- pos: -97.5,-33.5
+ pos: -4.5,-37.5
parent: 2
- - uid: 7715
+ - uid: 34905
components:
- type: Transform
- pos: -95.5,-35.5
+ pos: -4.5,-38.5
parent: 2
- - uid: 7964
+ - uid: 34906
components:
- type: Transform
- pos: -51.5,56.5
+ pos: -4.5,-39.5
parent: 2
- - uid: 8147
+ - uid: 34907
components:
- type: Transform
- pos: -71.5,-33.5
+ pos: -4.5,-40.5
parent: 2
- - uid: 8152
+ - uid: 34908
components:
- type: Transform
- pos: -48.5,-35.5
+ pos: -4.5,-41.5
parent: 2
- - uid: 8153
+ - uid: 34909
components:
- type: Transform
- pos: -70.5,-33.5
+ pos: -4.5,-42.5
parent: 2
- - uid: 8283
+ - uid: 34910
components:
- type: Transform
- pos: -52.5,54.5
+ pos: -4.5,-43.5
parent: 2
- - uid: 8315
+ - uid: 34911
components:
- type: Transform
- pos: -51.5,54.5
+ pos: -3.5,-43.5
parent: 2
- - uid: 8317
+ - uid: 34915
components:
- type: Transform
- pos: -51.5,57.5
+ pos: 6.5,-44.5
parent: 2
- - uid: 8318
+ - uid: 34920
components:
- type: Transform
- pos: -51.5,58.5
+ pos: 6.5,-43.5
parent: 2
- - uid: 8319
+ - uid: 34921
components:
- type: Transform
- pos: -51.5,55.5
+ pos: 6.5,-40.5
parent: 2
- - uid: 8467
+ - uid: 34922
components:
- type: Transform
- pos: -31.5,52.5
+ pos: 7.5,-40.5
parent: 2
- - uid: 8469
+ - uid: 34923
components:
- type: Transform
- pos: -18.5,46.5
+ pos: 8.5,-40.5
parent: 2
- - uid: 8639
+ - uid: 34942
components:
- type: Transform
- pos: -70.5,24.5
+ pos: 86.5,18.5
parent: 2
- - uid: 8690
+ - uid: 34943
components:
- type: Transform
- pos: -92.5,-35.5
+ pos: 88.5,18.5
parent: 2
- - uid: 8854
+ - uid: 34944
components:
- type: Transform
- pos: -99.5,51.5
+ pos: 89.5,18.5
parent: 2
- - uid: 8868
+ - uid: 34945
components:
- type: Transform
- pos: -60.5,35.5
+ pos: 90.5,18.5
parent: 2
- - uid: 8932
+ - uid: 34946
components:
- type: Transform
- pos: -61.5,27.5
+ pos: 91.5,18.5
parent: 2
- - uid: 8940
+ - uid: 34947
components:
- type: Transform
- pos: -61.5,26.5
+ pos: 91.5,17.5
parent: 2
- - uid: 8947
+ - uid: 34948
components:
- type: Transform
- pos: -61.5,29.5
+ pos: 91.5,16.5
parent: 2
- - uid: 8948
+ - uid: 34949
components:
- type: Transform
- pos: -61.5,28.5
+ pos: 91.5,15.5
parent: 2
- - uid: 8956
+ - uid: 34950
components:
- type: Transform
- pos: -61.5,30.5
+ pos: 90.5,15.5
parent: 2
- - uid: 8978
+ - uid: 34951
components:
- type: Transform
- pos: -62.5,36.5
+ pos: 89.5,15.5
parent: 2
- - uid: 8980
+ - uid: 34952
components:
- type: Transform
- pos: -63.5,35.5
+ pos: 88.5,15.5
parent: 2
- - uid: 8982
+ - uid: 34953
components:
- type: Transform
- pos: -61.5,36.5
+ pos: 88.5,16.5
parent: 2
- - uid: 9057
+ - uid: 34954
components:
- type: Transform
- pos: -97.5,-34.5
+ pos: 88.5,17.5
parent: 2
- - uid: 9144
+ - uid: 34967
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: -37.5,2.5
parent: 2
- - uid: 9515
+ - uid: 34980
components:
- type: Transform
- pos: -5.5,64.5
+ pos: 29.5,-21.5
parent: 2
- - uid: 9516
+ - uid: 35000
components:
- type: Transform
- pos: -3.5,64.5
+ pos: 56.5,-42.5
parent: 2
- - uid: 9542
+ - uid: 35021
components:
- type: Transform
- pos: -7.5,64.5
+ pos: 56.5,-43.5
parent: 2
- - uid: 9561
+ - uid: 35022
components:
- type: Transform
- pos: -12.5,64.5
+ pos: 56.5,-44.5
parent: 2
- - uid: 9562
+ - uid: 35023
components:
- type: Transform
- pos: -26.5,64.5
+ pos: 56.5,-45.5
parent: 2
- - uid: 9564
+ - uid: 35024
components:
- type: Transform
- pos: -26.5,63.5
+ pos: 56.5,-46.5
parent: 2
- - uid: 9565
+ - uid: 35025
components:
- type: Transform
- pos: -26.5,62.5
+ pos: 56.5,-47.5
parent: 2
- - uid: 9566
+ - uid: 35026
components:
- type: Transform
- pos: -26.5,61.5
+ pos: 56.5,-48.5
parent: 2
- - uid: 9569
+ - uid: 35027
components:
- type: Transform
- pos: -26.5,60.5
+ pos: 56.5,-49.5
parent: 2
- - uid: 9573
+ - uid: 35028
components:
- type: Transform
- pos: -26.5,59.5
+ pos: 56.5,-50.5
parent: 2
- - uid: 9575
+ - uid: 35029
components:
- type: Transform
- pos: -26.5,58.5
+ pos: 56.5,-51.5
parent: 2
- - uid: 9576
+ - uid: 35030
components:
- type: Transform
- pos: -26.5,57.5
+ pos: 56.5,-52.5
parent: 2
- - uid: 9577
+ - uid: 35031
components:
- type: Transform
- pos: -26.5,56.5
+ pos: 56.5,-53.5
parent: 2
- - uid: 9708
+ - uid: 35032
components:
- type: Transform
- pos: -94.5,-35.5
+ pos: 56.5,-54.5
parent: 2
- - uid: 9709
+ - uid: 35033
components:
- type: Transform
- pos: -75.5,51.5
+ pos: 56.5,-55.5
parent: 2
- - uid: 9710
+ - uid: 35034
components:
- type: Transform
- pos: -97.5,-35.5
+ pos: 56.5,-56.5
parent: 2
- - uid: 9711
+ - uid: 35035
components:
- type: Transform
- pos: -85.5,-53.5
+ pos: 56.5,-57.5
parent: 2
- - uid: 9712
+ - uid: 35036
components:
- type: Transform
- pos: -87.5,-59.5
+ pos: 56.5,-58.5
parent: 2
- - uid: 9713
+ - uid: 35037
components:
- type: Transform
- pos: -90.5,-49.5
+ pos: 56.5,-59.5
parent: 2
- - uid: 9714
+ - uid: 35038
components:
- type: Transform
- pos: -95.5,-48.5
+ pos: 56.5,-60.5
parent: 2
- - uid: 9715
+ - uid: 35039
components:
- type: Transform
- pos: -97.5,-50.5
+ pos: 56.5,-61.5
parent: 2
- - uid: 9716
+ - uid: 35040
components:
- type: Transform
- pos: -83.5,-48.5
+ pos: 56.5,-62.5
parent: 2
- - uid: 9717
+ - uid: 35041
components:
- type: Transform
- pos: -86.5,-54.5
+ pos: 56.5,-63.5
parent: 2
- - uid: 9718
+ - uid: 35042
components:
- type: Transform
- pos: -84.5,-48.5
+ pos: 56.5,-64.5
parent: 2
- - uid: 9719
+ - uid: 35043
components:
- type: Transform
- pos: -84.5,-58.5
+ pos: 56.5,-65.5
parent: 2
- - uid: 9720
+ - uid: 35044
components:
- type: Transform
- pos: -81.5,-58.5
+ pos: 56.5,-66.5
parent: 2
- - uid: 9723
+ - uid: 35045
components:
- type: Transform
- pos: -84.5,-50.5
+ pos: 56.5,-67.5
parent: 2
- - uid: 9724
+ - uid: 35046
components:
- type: Transform
- pos: -85.5,-48.5
+ pos: 56.5,-68.5
parent: 2
- - uid: 9725
+ - uid: 35047
components:
- type: Transform
- pos: -84.5,-55.5
+ pos: 56.5,-69.5
parent: 2
- - uid: 9726
+ - uid: 35048
components:
- type: Transform
- pos: -85.5,-50.5
+ pos: 56.5,-70.5
parent: 2
- - uid: 9727
+ - uid: 35049
components:
- type: Transform
- pos: -84.5,-53.5
+ pos: 56.5,-71.5
parent: 2
- - uid: 9728
+ - uid: 35050
components:
- type: Transform
- pos: -86.5,-50.5
+ pos: 56.5,-72.5
parent: 2
- - uid: 9729
+ - uid: 35051
components:
- type: Transform
- pos: -83.5,-53.5
+ pos: 56.5,-73.5
parent: 2
- - uid: 9730
+ - uid: 35052
components:
- type: Transform
- pos: -97.5,-53.5
+ pos: 56.5,-74.5
parent: 2
- - uid: 9731
+ - uid: 35053
components:
- type: Transform
- pos: -92.5,-53.5
+ pos: 56.5,-75.5
parent: 2
- - uid: 9732
+ - uid: 35054
components:
- type: Transform
- pos: -82.5,-53.5
+ pos: 56.5,-76.5
parent: 2
- - uid: 9736
+ - uid: 35055
components:
- type: Transform
- pos: -70.5,51.5
+ pos: 56.5,-77.5
parent: 2
- - uid: 9738
+ - uid: 35056
components:
- type: Transform
- pos: -76.5,51.5
+ pos: 56.5,-78.5
parent: 2
- - uid: 9739
+ - uid: 35057
components:
- type: Transform
- pos: -86.5,51.5
+ pos: 57.5,-78.5
parent: 2
- - uid: 9740
+ - uid: 35058
components:
- type: Transform
- pos: -85.5,51.5
+ pos: 57.5,-79.5
parent: 2
- - uid: 9741
+ - uid: 35059
components:
- type: Transform
- pos: -69.5,51.5
+ pos: 58.5,-79.5
parent: 2
- - uid: 9743
+ - uid: 35060
components:
- type: Transform
- pos: -83.5,51.5
+ pos: 58.5,-80.5
parent: 2
- - uid: 9748
+ - uid: 35061
components:
- type: Transform
- pos: 58.5,-79.5
+ pos: 58.5,-81.5
parent: 2
- - uid: 9749
+ - uid: 35062
components:
- type: Transform
- pos: 64.5,-45.5
+ pos: 59.5,-81.5
parent: 2
- - uid: 9750
+ - uid: 35063
components:
- type: Transform
- pos: 59.5,-49.5
+ pos: 59.5,-82.5
parent: 2
- - uid: 9751
+ - uid: 35064
components:
- type: Transform
- pos: 61.5,-49.5
+ pos: 59.5,-83.5
parent: 2
- - uid: 9752
+ - uid: 35065
components:
- type: Transform
- pos: 65.5,-50.5
+ pos: 61.5,-83.5
parent: 2
- - uid: 9754
+ - uid: 35066
components:
- type: Transform
- pos: -62.5,40.5
+ pos: 61.5,-83.5
parent: 2
- - uid: 9755
+ - uid: 35068
components:
- type: Transform
- pos: -63.5,40.5
+ pos: 63.5,-84.5
parent: 2
- - uid: 9756
+ - uid: 35069
components:
- type: Transform
- pos: -65.5,40.5
+ pos: 63.5,-85.5
parent: 2
- - uid: 9757
+ - uid: 35070
components:
- type: Transform
- pos: -66.5,40.5
+ pos: 63.5,-86.5
parent: 2
- - uid: 9758
+ - uid: 35071
components:
- type: Transform
- pos: -66.5,41.5
+ pos: 64.5,-86.5
parent: 2
- - uid: 9759
+ - uid: 35072
components:
- type: Transform
- pos: -66.5,43.5
+ pos: 66.5,-86.5
parent: 2
- - uid: 9760
+ - uid: 35073
components:
- type: Transform
- pos: -66.5,44.5
+ pos: 66.5,-86.5
parent: 2
- - uid: 9761
+ - uid: 35074
components:
- type: Transform
- pos: -66.5,45.5
+ pos: 65.5,-86.5
parent: 2
- - uid: 9762
+ - uid: 35080
components:
- type: Transform
- pos: -66.5,46.5
+ pos: 60.5,-83.5
parent: 2
- - uid: 9763
+ - uid: 35081
components:
- type: Transform
- pos: -66.5,50.5
+ pos: 63.5,-83.5
parent: 2
- - uid: 9764
+ - uid: 35082
components:
- type: Transform
- pos: -66.5,51.5
+ pos: 64.5,-83.5
parent: 2
- - uid: 9765
+ - uid: 35196
components:
- type: Transform
- pos: -67.5,51.5
+ pos: -80.5,52.5
parent: 2
- - uid: 9766
+ - uid: 35415
components:
- type: Transform
- pos: 62.5,-61.5
+ pos: -80.5,53.5
parent: 2
- - uid: 9767
+ - uid: 35416
components:
- type: Transform
- pos: 60.5,-61.5
+ pos: -80.5,54.5
parent: 2
- - uid: 9768
+ - uid: 35417
components:
- type: Transform
- pos: 50.5,-61.5
+ pos: -80.5,55.5
parent: 2
- - uid: 9769
+ - uid: 35418
components:
- type: Transform
- pos: -84.5,51.5
+ pos: -80.5,56.5
parent: 2
- - uid: 9770
+ - uid: 35419
components:
- type: Transform
- pos: -73.5,51.5
+ pos: -80.5,57.5
parent: 2
- - uid: 9771
+ - uid: 35420
components:
- type: Transform
- pos: 48.5,-61.5
+ pos: -80.5,58.5
parent: 2
- - uid: 9772
+ - uid: 35421
components:
- type: Transform
- pos: 67.5,-85.5
+ pos: -80.5,59.5
parent: 2
- - uid: 9773
+ - uid: 35422
components:
- type: Transform
- pos: 63.5,-86.5
+ pos: -80.5,60.5
parent: 2
- - uid: 9774
+ - uid: 35423
components:
- type: Transform
- pos: -72.5,51.5
+ pos: -80.5,61.5
parent: 2
- - uid: 9775
+ - uid: 35424
components:
- type: Transform
- pos: -71.5,51.5
+ pos: -80.5,62.5
parent: 2
- - uid: 9776
+ - uid: 35425
components:
- type: Transform
- pos: 57.5,-80.5
+ pos: -80.5,63.5
parent: 2
- - uid: 9777
+ - uid: 35426
components:
- type: Transform
- pos: 57.5,-76.5
+ pos: -80.5,64.5
parent: 2
- - uid: 9778
+ - uid: 35427
components:
- type: Transform
- pos: 50.5,-51.5
+ pos: -80.5,65.5
parent: 2
- - uid: 9779
+ - uid: 35428
components:
- type: Transform
- pos: 50.5,-49.5
+ pos: -80.5,66.5
parent: 2
- - uid: 9780
+ - uid: 35429
components:
- type: Transform
- pos: 51.5,-49.5
+ pos: -80.5,67.5
parent: 2
- - uid: 9781
+ - uid: 35430
components:
- type: Transform
- pos: 52.5,-49.5
+ pos: -80.5,68.5
parent: 2
- - uid: 9782
+ - uid: 35431
components:
- type: Transform
- pos: 55.5,-45.5
+ pos: -80.5,69.5
parent: 2
- - uid: 9783
+ - uid: 35432
components:
- type: Transform
- pos: 57.5,-45.5
+ pos: -80.5,70.5
parent: 2
- - uid: 9802
+ - uid: 35433
components:
- type: Transform
- pos: -92.5,-58.5
+ pos: -80.5,71.5
parent: 2
- - uid: 9803
+ - uid: 35434
components:
- type: Transform
- pos: -95.5,-58.5
+ pos: -80.5,72.5
parent: 2
- - uid: 9804
+ - uid: 35435
components:
- type: Transform
- pos: -98.5,-34.5
+ pos: -80.5,73.5
parent: 2
- - uid: 9805
+ - uid: 35436
components:
- type: Transform
- pos: -96.5,-35.5
+ pos: -80.5,74.5
parent: 2
- - uid: 9806
+ - uid: 35437
components:
- type: Transform
- pos: -89.5,-62.5
+ pos: -80.5,75.5
parent: 2
- - uid: 9809
+ - uid: 35438
components:
- type: Transform
- pos: -87.5,-64.5
+ pos: -80.5,76.5
parent: 2
- - uid: 9810
+ - uid: 35439
components:
- type: Transform
- pos: -86.5,-63.5
+ pos: -80.5,77.5
parent: 2
- - uid: 9812
+ - uid: 35440
components:
- type: Transform
- pos: -89.5,-64.5
+ pos: -80.5,78.5
parent: 2
- - uid: 9813
+ - uid: 35441
components:
- type: Transform
- pos: -82.5,-34.5
+ pos: -80.5,79.5
parent: 2
- - uid: 9814
+ - uid: 35442
components:
- type: Transform
- pos: -77.5,-34.5
+ pos: -80.5,80.5
parent: 2
- - uid: 9816
+ - uid: 35443
components:
- type: Transform
- pos: -83.5,-34.5
+ pos: -80.5,81.5
parent: 2
- - uid: 9817
+ - uid: 35444
components:
- type: Transform
- pos: -76.5,-34.5
+ pos: -80.5,82.5
parent: 2
- - uid: 9820
+ - uid: 35445
components:
- type: Transform
- pos: -80.5,-34.5
+ pos: -80.5,83.5
parent: 2
- - uid: 9827
+ - uid: 35446
components:
- type: Transform
- pos: -89.5,-48.5
+ pos: -80.5,84.5
parent: 2
- - uid: 9828
+ - uid: 35447
components:
- type: Transform
- pos: -89.5,-49.5
+ pos: -80.5,85.5
parent: 2
- - uid: 9830
+ - uid: 35448
components:
- type: Transform
- pos: -89.5,-50.5
+ pos: -80.5,86.5
parent: 2
- - uid: 9831
+ - uid: 35449
components:
- type: Transform
- pos: -89.5,-61.5
+ pos: -80.5,87.5
parent: 2
- - uid: 9834
+ - uid: 35450
components:
- type: Transform
- pos: -78.5,51.5
+ pos: -80.5,88.5
parent: 2
- - uid: 9836
+ - uid: 35451
components:
- type: Transform
- pos: -85.5,-63.5
+ pos: -80.5,89.5
parent: 2
- - uid: 9838
+ - uid: 35452
components:
- type: Transform
- pos: -81.5,-34.5
+ pos: -80.5,90.5
parent: 2
- - uid: 9839
+ - uid: 35453
components:
- type: Transform
- pos: -84.5,-34.5
+ pos: -80.5,91.5
parent: 2
- - uid: 9849
+ - uid: 35454
components:
- type: Transform
- pos: -85.5,-34.5
+ pos: -80.5,92.5
parent: 2
- - uid: 9881
+ - uid: 35455
components:
- type: Transform
- pos: -54.5,35.5
+ pos: -80.5,93.5
parent: 2
- - uid: 9898
+ - uid: 35456
components:
- type: Transform
- pos: -57.5,39.5
+ pos: -80.5,94.5
parent: 2
- - uid: 9903
+ - uid: 35457
components:
- type: Transform
- pos: -57.5,40.5
+ pos: -80.5,95.5
parent: 2
- - uid: 9904
+ - uid: 35458
components:
- type: Transform
- pos: -58.5,40.5
+ pos: -80.5,97.5
parent: 2
- - uid: 9905
+ - uid: 35459
components:
- type: Transform
- pos: -56.5,34.5
+ pos: -80.5,98.5
parent: 2
- - uid: 9909
+ - uid: 35460
components:
- type: Transform
- pos: -63.5,36.5
+ pos: -80.5,99.5
parent: 2
- - uid: 9911
+ - uid: 35461
components:
- type: Transform
- pos: -57.5,34.5
+ pos: -79.5,89.5
parent: 2
- - uid: 9912
+ - uid: 35463
components:
- type: Transform
- pos: -58.5,34.5
+ pos: -79.5,79.5
parent: 2
- - uid: 9914
+ - uid: 35464
components:
- type: Transform
- pos: -59.5,34.5
+ pos: -79.5,69.5
parent: 2
- - uid: 9941
+ - uid: 35465
components:
- type: Transform
- pos: -89.5,-63.5
+ pos: -79.5,59.5
parent: 2
- - uid: 9947
+ - uid: 35565
components:
- type: Transform
- pos: -88.5,-64.5
+ pos: 76.5,77.5
parent: 2
- - uid: 9950
+ - uid: 35566
components:
- type: Transform
- pos: -54.5,38.5
+ pos: 76.5,76.5
parent: 2
- - uid: 9951
+ - uid: 35570
components:
- type: Transform
- pos: -54.5,36.5
+ pos: 78.5,74.5
parent: 2
- - uid: 9954
+ - uid: 35589
components:
- type: Transform
- pos: -54.5,34.5
+ pos: 75.5,77.5
parent: 2
- - uid: 9957
+ - uid: 35605
components:
- type: Transform
- pos: -58.5,41.5
+ pos: 75.5,78.5
parent: 2
- - uid: 9958
+ - uid: 35606
components:
- type: Transform
- pos: -57.5,41.5
+ pos: 75.5,79.5
parent: 2
- - uid: 9959
+ - uid: 35607
components:
- type: Transform
- pos: -60.5,41.5
+ pos: 74.5,79.5
parent: 2
- - uid: 9960
+ - uid: 35608
components:
- type: Transform
- pos: -61.5,41.5
+ pos: 78.5,76.5
parent: 2
- - uid: 9961
+ - uid: 35610
components:
- type: Transform
- pos: -61.5,40.5
+ pos: 77.5,76.5
parent: 2
- - uid: 9967
+ - uid: 35612
components:
- type: Transform
- pos: -59.5,41.5
+ pos: 78.5,75.5
parent: 2
- - uid: 9968
+ - uid: 35614
components:
- type: Transform
- pos: -55.5,34.5
+ pos: 73.5,79.5
parent: 2
- - uid: 9969
+ - uid: 35615
components:
- type: Transform
- pos: -54.5,39.5
+ pos: 73.5,80.5
parent: 2
- - uid: 9970
+ - uid: 35616
components:
- type: Transform
- pos: -55.5,39.5
+ pos: 72.5,80.5
parent: 2
- - uid: 9971
+ - uid: 35617
components:
- type: Transform
- pos: -56.5,39.5
+ pos: 71.5,80.5
parent: 2
- - uid: 9972
+ - uid: 35618
components:
- type: Transform
- pos: -54.5,37.5
+ pos: 70.5,80.5
parent: 2
- - uid: 9973
+ - uid: 35619
components:
- type: Transform
- pos: -58.5,39.5
+ pos: 102.5,55.5
parent: 2
- - uid: 9977
+ - uid: 35620
components:
- type: Transform
- pos: -63.5,34.5
+ pos: 102.5,56.5
parent: 2
- - uid: 9978
+ - uid: 35621
components:
- type: Transform
- pos: -64.5,34.5
+ pos: 68.5,81.5
parent: 2
- - uid: 9979
+ - uid: 35622
components:
- type: Transform
- pos: -65.5,34.5
+ pos: 67.5,81.5
parent: 2
- - uid: 9980
+ - uid: 35623
components:
- type: Transform
- pos: -66.5,34.5
+ pos: 66.5,81.5
parent: 2
- - uid: 9981
+ - uid: 35624
components:
- type: Transform
- pos: -67.5,34.5
+ pos: 65.5,81.5
parent: 2
- - uid: 9982
+ - uid: 35625
components:
- type: Transform
- pos: -68.5,34.5
+ pos: 64.5,81.5
parent: 2
- - uid: 9983
+ - uid: 35626
components:
- type: Transform
- pos: -68.5,33.5
+ pos: 63.5,81.5
parent: 2
- - uid: 9984
+ - uid: 35627
components:
- type: Transform
- pos: -68.5,32.5
+ pos: 62.5,81.5
parent: 2
- - uid: 9985
+ - uid: 35628
components:
- type: Transform
- pos: -68.5,31.5
+ pos: 62.5,82.5
parent: 2
- - uid: 9986
+ - uid: 35629
components:
- type: Transform
- pos: -68.5,30.5
+ pos: 62.5,83.5
parent: 2
- - uid: 9987
+ - uid: 35630
components:
- type: Transform
- pos: -68.5,29.5
+ pos: 62.5,84.5
parent: 2
- - uid: 9988
+ - uid: 35631
components:
- type: Transform
- pos: -68.5,28.5
+ pos: 62.5,85.5
parent: 2
- - uid: 9989
+ - uid: 35647
components:
- type: Transform
- pos: -68.5,27.5
+ pos: 61.5,85.5
parent: 2
- - uid: 9990
+ - uid: 35648
components:
- type: Transform
- pos: -68.5,26.5
+ pos: 60.5,85.5
parent: 2
- - uid: 9991
+ - uid: 35649
components:
- type: Transform
- pos: -68.5,25.5
+ pos: 60.5,86.5
parent: 2
- - uid: 9992
+ - uid: 35650
components:
- type: Transform
- pos: -68.5,24.5
+ pos: 59.5,86.5
parent: 2
- - uid: 9993
+ - uid: 35651
components:
- type: Transform
- pos: -68.5,23.5
+ pos: 59.5,87.5
parent: 2
- - uid: 9994
+ - uid: 35652
components:
- type: Transform
- pos: -68.5,22.5
+ pos: 59.5,88.5
parent: 2
- - uid: 9995
+ - uid: 35653
components:
- type: Transform
- pos: -68.5,21.5
+ pos: 58.5,88.5
parent: 2
- - uid: 9996
+ - uid: 35654
components:
- type: Transform
- pos: -68.5,20.5
+ pos: 57.5,88.5
parent: 2
- - uid: 9997
+ - uid: 35655
components:
- type: Transform
- pos: -68.5,19.5
+ pos: 56.5,88.5
parent: 2
- - uid: 9998
+ - uid: 35656
components:
- type: Transform
- pos: -67.5,19.5
+ pos: 55.5,88.5
parent: 2
- - uid: 9999
+ - uid: 35657
components:
- type: Transform
- pos: -66.5,19.5
+ pos: 55.5,87.5
parent: 2
- - uid: 10000
+ - uid: 35658
components:
- type: Transform
- pos: -65.5,19.5
+ pos: 54.5,87.5
parent: 2
- - uid: 10001
+ - uid: 35659
components:
- type: Transform
- pos: -65.5,18.5
+ pos: 54.5,86.5
parent: 2
- - uid: 10002
+ - uid: 35661
components:
- type: Transform
- pos: -65.5,17.5
+ pos: 53.5,85.5
parent: 2
- - uid: 10003
+ - uid: 35662
components:
- type: Transform
- pos: -65.5,16.5
+ pos: 53.5,84.5
parent: 2
- - uid: 10004
+ - uid: 35663
components:
- type: Transform
- pos: -65.5,15.5
+ pos: 53.5,83.5
parent: 2
- - uid: 10005
+ - uid: 35664
components:
- type: Transform
- pos: -65.5,14.5
+ pos: 53.5,82.5
parent: 2
- - uid: 10006
+ - uid: 35665
components:
- type: Transform
- pos: -65.5,13.5
+ pos: 54.5,82.5
parent: 2
- - uid: 10007
+ - uid: 35666
components:
- type: Transform
- pos: -65.5,12.5
+ pos: 55.5,82.5
parent: 2
- - uid: 10008
+ - uid: 35667
components:
- type: Transform
- pos: -65.5,11.5
+ pos: 55.5,81.5
parent: 2
- - uid: 10009
+ - uid: 35698
components:
- type: Transform
- pos: -64.5,11.5
+ pos: 102.5,57.5
parent: 2
- - uid: 10010
+ - uid: 35789
components:
- type: Transform
- pos: -64.5,10.5
+ pos: 86.5,79.5
parent: 2
- - uid: 10011
+ - uid: 35790
components:
- type: Transform
- pos: -64.5,9.5
+ pos: 85.5,79.5
parent: 2
- - uid: 10012
+ - uid: 35791
components:
- type: Transform
- pos: -64.5,8.5
+ pos: 84.5,79.5
parent: 2
- - uid: 10067
+ - uid: 35792
components:
- type: Transform
- pos: -67.5,35.5
+ pos: 84.5,78.5
parent: 2
- - uid: 10068
+ - uid: 35793
components:
- type: Transform
- pos: -67.5,36.5
+ pos: 84.5,77.5
parent: 2
- - uid: 10069
+ - uid: 35810
components:
- type: Transform
- pos: -66.5,36.5
+ pos: 84.5,76.5
parent: 2
- - uid: 10070
+ - uid: 35813
components:
- type: Transform
- pos: -65.5,36.5
+ pos: 29.5,39.5
parent: 2
- - uid: 10344
+ - uid: 35819
components:
- type: Transform
- pos: -23.5,64.5
+ pos: 84.5,75.5
parent: 2
- - uid: 10355
+ - uid: 35844
components:
- type: Transform
- pos: -86.5,-64.5
+ pos: 84.5,74.5
parent: 2
- - uid: 10368
+ - uid: 35846
components:
- type: Transform
- pos: -35.5,55.5
+ pos: 84.5,73.5
parent: 2
- - uid: 10369
+ - uid: 35863
components:
- type: Transform
- pos: -34.5,55.5
+ pos: 84.5,72.5
parent: 2
- - uid: 10370
+ - uid: 35868
components:
- type: Transform
- pos: -33.5,55.5
+ pos: 84.5,71.5
parent: 2
- - uid: 10371
+ - uid: 35869
components:
- type: Transform
- pos: -32.5,55.5
+ pos: 84.5,70.5
parent: 2
- - uid: 10372
+ - uid: 35870
components:
- type: Transform
- pos: -31.5,55.5
+ pos: 84.5,69.5
parent: 2
- - uid: 10373
+ - uid: 35871
components:
- type: Transform
- pos: -30.5,55.5
+ pos: 84.5,68.5
parent: 2
- - uid: 10374
+ - uid: 35872
components:
- type: Transform
- pos: -29.5,55.5
+ pos: 85.5,68.5
parent: 2
- - uid: 10375
+ - uid: 35940
components:
- type: Transform
- pos: -28.5,55.5
+ pos: -17.5,50.5
parent: 2
- - uid: 10417
+ - uid: 35951
components:
- type: Transform
- pos: -62.5,-33.5
+ pos: 69.5,81.5
parent: 2
- - uid: 10418
+ - uid: 35955
components:
- type: Transform
- pos: -63.5,-33.5
+ pos: 69.5,80.5
parent: 2
- - uid: 10419
+ - uid: 35984
components:
- type: Transform
- pos: -64.5,-33.5
+ pos: 71.5,83.5
parent: 2
- - uid: 10420
+ - uid: 35985
components:
- type: Transform
- pos: -65.5,-33.5
+ pos: 71.5,84.5
parent: 2
- - uid: 10421
+ - uid: 36051
components:
- type: Transform
- pos: -63.5,-35.5
+ pos: -52.5,-17.5
parent: 2
- - uid: 10422
+ - uid: 36052
components:
- type: Transform
- pos: -64.5,-35.5
+ pos: -52.5,-16.5
parent: 2
- - uid: 10423
+ - uid: 36053
components:
- type: Transform
- pos: -65.5,-35.5
+ pos: -48.5,9.5
parent: 2
- - uid: 10424
+ - uid: 36160
components:
- type: Transform
- pos: -65.5,-34.5
+ pos: 71.5,85.5
parent: 2
- - uid: 10425
+ - uid: 36162
components:
- type: Transform
- pos: -66.5,-34.5
+ pos: 71.5,86.5
parent: 2
- - uid: 10426
+ - uid: 36163
components:
- type: Transform
- pos: -67.5,-34.5
+ pos: 70.5,86.5
parent: 2
- - uid: 10427
+ - uid: 36165
components:
- type: Transform
- pos: -77.5,51.5
+ pos: 72.5,86.5
parent: 2
- - uid: 10431
+ - uid: 36177
components:
- type: Transform
- pos: -84.5,-38.5
+ pos: 73.5,86.5
parent: 2
- - uid: 10432
+ - uid: 36291
components:
- type: Transform
- pos: -83.5,-38.5
+ pos: -47.5,31.5
parent: 2
- - uid: 10433
+ - uid: 36292
components:
- type: Transform
- pos: -82.5,-38.5
+ pos: -48.5,32.5
parent: 2
- - uid: 10434
+ - uid: 36293
components:
- type: Transform
- pos: -81.5,-38.5
+ pos: -47.5,32.5
parent: 2
- - uid: 10435
+ - uid: 36294
components:
- type: Transform
- pos: -79.5,-34.5
+ pos: -46.5,32.5
parent: 2
- - uid: 10436
+ - uid: 36298
components:
- type: Transform
- pos: -78.5,-34.5
+ pos: -50.5,35.5
parent: 2
- - uid: 10464
+ - uid: 36299
components:
- type: Transform
- pos: -80.5,56.5
+ pos: -50.5,34.5
parent: 2
- - uid: 10465
+ - uid: 36300
components:
- type: Transform
- pos: -68.5,51.5
+ pos: -50.5,33.5
parent: 2
- - uid: 10468
+ - uid: 36301
components:
- type: Transform
- pos: -80.5,57.5
+ pos: -58.5,33.5
parent: 2
- - uid: 10470
+ - uid: 36302
components:
- type: Transform
- pos: -80.5,55.5
+ pos: -56.5,26.5
parent: 2
- - uid: 10474
+ - uid: 36303
components:
- type: Transform
- pos: -81.5,51.5
+ pos: -56.5,27.5
parent: 2
- - uid: 10476
+ - uid: 36304
components:
- type: Transform
- pos: -80.5,58.5
+ pos: -56.5,23.5
parent: 2
- - uid: 10479
+ - uid: 36305
components:
- type: Transform
- pos: -80.5,71.5
+ pos: -56.5,22.5
parent: 2
- - uid: 10504
+ - uid: 36343
components:
- type: Transform
- pos: -80.5,63.5
+ pos: -50.5,15.5
parent: 2
- - uid: 10517
+ - uid: 36344
components:
- type: Transform
- pos: 56.5,-42.5
+ pos: -49.5,15.5
parent: 2
- - uid: 10518
+ - uid: 36345
components:
- type: Transform
- pos: 56.5,-43.5
+ pos: -48.5,15.5
parent: 2
- - uid: 10519
+ - uid: 36346
components:
- type: Transform
- pos: 56.5,-44.5
+ pos: -21.5,23.5
parent: 2
- - uid: 10520
+ - uid: 36347
components:
- type: Transform
- pos: 56.5,-46.5
+ pos: -20.5,23.5
parent: 2
- - uid: 10521
+ - uid: 36348
components:
- type: Transform
- pos: 56.5,-49.5
+ pos: -19.5,23.5
parent: 2
- - uid: 10522
+ - uid: 36349
components:
- type: Transform
- pos: 56.5,-53.5
+ pos: -21.5,24.5
parent: 2
- - uid: 10523
+ - uid: 36352
components:
- type: Transform
- pos: 56.5,-71.5
+ pos: 3.5,27.5
parent: 2
- - uid: 10524
+ - uid: 36353
components:
- type: Transform
- pos: 65.5,-45.5
+ pos: 8.5,26.5
parent: 2
- - uid: 10525
+ - uid: 36354
components:
- type: Transform
- pos: 60.5,-49.5
+ pos: 9.5,26.5
parent: 2
- - uid: 10526
+ - uid: 36355
components:
- type: Transform
- pos: 63.5,-49.5
+ pos: 11.5,26.5
parent: 2
- - uid: 10527
+ - uid: 36356
components:
- type: Transform
- pos: 64.5,-51.5
+ pos: 19.5,22.5
parent: 2
- - uid: 10528
+ - uid: 36357
components:
- type: Transform
- pos: 61.5,-61.5
+ pos: 36.5,56.5
parent: 2
- - uid: 10529
+ - uid: 36358
components:
- type: Transform
- pos: 51.5,-61.5
+ pos: 36.5,55.5
parent: 2
- - uid: 10530
+ - uid: 36359
components:
- type: Transform
- pos: 49.5,-61.5
+ pos: 36.5,54.5
parent: 2
- - uid: 10531
+ - uid: 36360
components:
- type: Transform
- pos: 50.5,-64.5
+ pos: 37.5,58.5
parent: 2
- - uid: 10532
+ - uid: 36361
components:
- type: Transform
- pos: 67.5,-84.5
+ pos: 41.5,58.5
parent: 2
- - uid: 10533
+ - uid: 36362
components:
- type: Transform
- pos: 56.5,-80.5
+ pos: 42.5,56.5
parent: 2
- - uid: 10534
+ - uid: 36363
components:
- type: Transform
- pos: 56.5,-75.5
+ pos: 42.5,55.5
parent: 2
- - uid: 10535
+ - uid: 36364
components:
- type: Transform
- pos: 51.5,-51.5
+ pos: 42.5,54.5
parent: 2
- - uid: 10536
+ - uid: 36365
components:
- type: Transform
- pos: 53.5,-49.5
+ pos: 43.5,58.5
parent: 2
- - uid: 10537
+ - uid: 36366
components:
- type: Transform
- pos: 58.5,-45.5
+ pos: 47.5,58.5
parent: 2
- - uid: 10538
+ - uid: 36367
components:
- type: Transform
- pos: 59.5,-45.5
+ pos: 48.5,56.5
parent: 2
- - uid: 10539
+ - uid: 36368
components:
- type: Transform
- pos: 53.5,-50.5
+ pos: 48.5,55.5
parent: 2
- - uid: 10540
+ - uid: 36369
components:
- type: Transform
- pos: 54.5,-50.5
+ pos: 48.5,54.5
parent: 2
- - uid: 10541
+ - uid: 36370
components:
- type: Transform
- pos: 61.5,-56.5
+ pos: 45.5,52.5
parent: 2
- - uid: 10542
+ - uid: 36371
components:
- type: Transform
- pos: 59.5,-59.5
+ pos: 44.5,52.5
parent: 2
- - uid: 10543
+ - uid: 36372
components:
- type: Transform
- pos: 58.5,-60.5
+ pos: 43.5,52.5
parent: 2
- - uid: 10544
+ - uid: 36373
components:
- type: Transform
- pos: 60.5,-59.5
+ pos: 48.5,52.5
parent: 2
- - uid: 10545
+ - uid: 36374
components:
- type: Transform
- pos: 59.5,-60.5
+ pos: 49.5,52.5
parent: 2
- - uid: 10546
+ - uid: 36375
components:
- type: Transform
- pos: 51.5,-69.5
+ pos: 50.5,52.5
parent: 2
- - uid: 10547
+ - uid: 36376
components:
- type: Transform
- pos: 52.5,-69.5
+ pos: 41.5,52.5
parent: 2
- - uid: 10548
+ - uid: 36377
components:
- type: Transform
- pos: 53.5,-69.5
+ pos: 40.5,52.5
parent: 2
- - uid: 10549
+ - uid: 36378
components:
- type: Transform
- pos: 49.5,-69.5
+ pos: 39.5,52.5
parent: 2
- - uid: 10550
+ - uid: 36395
components:
- type: Transform
- pos: 57.5,-60.5
+ pos: -18.5,30.5
parent: 2
- - uid: 10551
+ - uid: 36531
components:
- type: Transform
- pos: 63.5,-61.5
+ pos: 55.5,80.5
parent: 2
- - uid: 10552
+ - uid: 36532
components:
- type: Transform
- pos: 48.5,-71.5
+ pos: 55.5,79.5
parent: 2
- - uid: 10553
+ - uid: 36533
components:
- type: Transform
- pos: 48.5,-70.5
+ pos: 55.5,78.5
parent: 2
- - uid: 10554
+ - uid: 36534
components:
- type: Transform
- pos: 47.5,-70.5
+ pos: 55.5,77.5
parent: 2
- - uid: 10555
+ - uid: 36551
components:
- type: Transform
- pos: 59.5,-55.5
+ pos: 75.5,80.5
parent: 2
- - uid: 10556
+ - uid: 36552
components:
- type: Transform
- pos: 59.5,-54.5
+ pos: 75.5,81.5
parent: 2
- - uid: 10557
+ - uid: 36553
components:
- type: Transform
- pos: 60.5,-54.5
+ pos: 75.5,82.5
parent: 2
- - uid: 10558
+ - uid: 36554
components:
- type: Transform
- pos: 63.5,-54.5
+ pos: 75.5,83.5
parent: 2
- - uid: 10559
+ - uid: 36555
components:
- type: Transform
- pos: 63.5,-51.5
+ pos: 75.5,84.5
parent: 2
- - uid: 10560
+ - uid: 36556
components:
- type: Transform
- pos: 61.5,-51.5
+ pos: 75.5,85.5
parent: 2
- - uid: 10561
+ - uid: 36557
components:
- type: Transform
- pos: -66.5,49.5
+ pos: 75.5,86.5
parent: 2
- - uid: 10562
+ - uid: 36558
components:
- type: Transform
- pos: -66.5,48.5
+ pos: 74.5,86.5
parent: 2
- - uid: 10563
+ - uid: 36559
components:
- type: Transform
- pos: -66.5,47.5
+ pos: 76.5,86.5
parent: 2
- - uid: 10564
+ - uid: 36560
components:
- type: Transform
- pos: -66.5,42.5
+ pos: 77.5,86.5
parent: 2
- - uid: 10565
+ - uid: 36561
components:
- type: Transform
- pos: -64.5,40.5
+ pos: 78.5,86.5
parent: 2
- - uid: 10569
+ - uid: 36562
components:
- type: Transform
- pos: 60.5,-51.5
+ pos: 79.5,86.5
parent: 2
- - uid: 10571
+ - uid: 36563
components:
- type: Transform
- pos: 52.5,-64.5
+ pos: 79.5,85.5
parent: 2
- - uid: 10572
+ - uid: 36564
components:
- type: Transform
- pos: 64.5,-54.5
+ pos: 79.5,84.5
parent: 2
- - uid: 10573
+ - uid: 36565
components:
- type: Transform
- pos: 64.5,-55.5
+ pos: 79.5,83.5
parent: 2
- - uid: 10574
+ - uid: 36566
components:
- type: Transform
- pos: 59.5,-51.5
+ pos: 79.5,82.5
parent: 2
- - uid: 10575
+ - uid: 36567
components:
- type: Transform
- pos: 58.5,-50.5
+ pos: 79.5,81.5
parent: 2
- - uid: 10580
+ - uid: 36592
components:
- type: Transform
- pos: 57.5,-50.5
+ pos: 70.5,79.5
parent: 2
- - uid: 10581
+ - uid: 36594
components:
- type: Transform
- pos: 53.5,-64.5
+ pos: 64.5,80.5
parent: 2
- - uid: 10588
+ - uid: 36702
components:
- type: Transform
- pos: 60.5,-69.5
+ pos: 76.5,81.5
parent: 2
- - uid: 10589
+ - uid: 36703
components:
- type: Transform
- pos: 61.5,-64.5
+ pos: 77.5,81.5
parent: 2
- - uid: 10590
+ - uid: 36704
components:
- type: Transform
- pos: 60.5,-64.5
+ pos: 78.5,81.5
parent: 2
- - uid: 10591
+ - uid: 36705
components:
- type: Transform
- pos: 59.5,-69.5
+ pos: 79.5,81.5
parent: 2
- - uid: 10592
+ - uid: 36706
components:
- type: Transform
- pos: 59.5,-70.5
+ pos: 80.5,81.5
parent: 2
- - uid: 10593
+ - uid: 36707
components:
- type: Transform
- pos: 58.5,-70.5
+ pos: 81.5,81.5
parent: 2
- - uid: 10594
+ - uid: 36708
components:
- type: Transform
- pos: 57.5,-70.5
+ pos: 81.5,82.5
parent: 2
- - uid: 10595
+ - uid: 36709
components:
- type: Transform
- pos: 64.5,-69.5
+ pos: 81.5,83.5
parent: 2
- - uid: 10596
+ - uid: 36736
components:
- type: Transform
- pos: 65.5,-70.5
+ pos: 10.5,-23.5
parent: 2
- - uid: 10597
+ - uid: 36831
components:
- type: Transform
- pos: 64.5,-86.5
+ pos: 77.5,70.5
parent: 2
- - uid: 10598
+ - uid: 36833
components:
- type: Transform
- pos: 51.5,-59.5
+ pos: 76.5,70.5
parent: 2
- - uid: 10599
+ - uid: 36834
components:
- type: Transform
- pos: 54.5,-55.5
+ pos: 75.5,70.5
parent: 2
- - uid: 10600
+ - uid: 36835
components:
- type: Transform
- pos: 53.5,-55.5
+ pos: 74.5,70.5
parent: 2
- - uid: 10601
+ - uid: 36836
components:
- type: Transform
- pos: 53.5,-56.5
+ pos: 73.5,70.5
parent: 2
- - uid: 10602
+ - uid: 36837
components:
- type: Transform
- pos: 52.5,-56.5
+ pos: 72.5,70.5
parent: 2
- - uid: 10603
+ - uid: 36839
components:
- type: Transform
- pos: 51.5,-56.5
+ pos: 73.5,73.5
parent: 2
- - uid: 10604
+ - uid: 36840
components:
- type: Transform
- pos: 49.5,-51.5
+ pos: 72.5,73.5
parent: 2
- - uid: 10605
+ - uid: 36841
components:
- type: Transform
- pos: 65.5,-55.5
+ pos: 71.5,73.5
parent: 2
- - uid: 10606
+ - uid: 36842
components:
- type: Transform
- pos: 64.5,-56.5
+ pos: 71.5,74.5
parent: 2
- - uid: 10607
+ - uid: 36843
components:
- type: Transform
- pos: 63.5,-56.5
+ pos: 70.5,74.5
parent: 2
- - uid: 10608
+ - uid: 36844
components:
- type: Transform
- pos: 62.5,-56.5
+ pos: 69.5,74.5
parent: 2
- - uid: 10609
+ - uid: 36845
components:
- type: Transform
- pos: 64.5,-50.5
+ pos: 73.5,72.5
parent: 2
- - uid: 10610
+ - uid: 36911
components:
- type: Transform
- pos: 55.5,-60.5
+ pos: 104.5,52.5
parent: 2
- - uid: 10611
+ - uid: 36912
components:
- type: Transform
- pos: 54.5,-60.5
+ pos: 104.5,51.5
parent: 2
- - uid: 10614
+ - uid: 36913
components:
- type: Transform
- pos: 53.5,-60.5
+ pos: 104.5,50.5
parent: 2
- - uid: 10615
+ - uid: 36914
components:
- type: Transform
- pos: 53.5,-59.5
+ pos: 104.5,49.5
parent: 2
- - uid: 10620
+ - uid: 36917
components:
- type: Transform
- pos: -64.5,-34.5
+ pos: 16.5,-27.5
parent: 2
- - uid: 10629
+ - uid: 36918
components:
- type: Transform
- pos: -62.5,-35.5
+ pos: 16.5,-26.5
parent: 2
- - uid: 10630
+ - uid: 36919
components:
- type: Transform
- pos: -61.5,-33.5
+ pos: 15.5,-26.5
parent: 2
- - uid: 10631
+ - uid: 36920
components:
- type: Transform
- pos: -61.5,-35.5
+ pos: 14.5,-26.5
parent: 2
- - uid: 10632
+ - uid: 36923
components:
- type: Transform
- pos: -61.5,-34.5
+ pos: 13.5,-26.5
parent: 2
- - uid: 10633
+ - uid: 36941
components:
- type: Transform
- pos: -60.5,-34.5
+ pos: -17.5,49.5
parent: 2
- - uid: 10634
+ - uid: 37014
components:
- type: Transform
- pos: -59.5,-34.5
+ pos: 12.5,-26.5
parent: 2
- - uid: 10635
+ - uid: 37016
components:
- type: Transform
- pos: -58.5,-34.5
+ pos: 11.5,-26.5
parent: 2
- - uid: 10636
+ - uid: 37169
components:
- type: Transform
- pos: -58.5,-35.5
+ pos: 82.5,60.5
parent: 2
- - uid: 10637
+ - uid: 37170
components:
- type: Transform
- pos: -57.5,-35.5
+ pos: 82.5,59.5
parent: 2
- - uid: 10638
+ - uid: 37171
components:
- type: Transform
- pos: -56.5,-35.5
+ pos: 82.5,58.5
parent: 2
- - uid: 10639
+ - uid: 37172
components:
- type: Transform
- pos: -58.5,-33.5
+ pos: 82.5,57.5
parent: 2
- - uid: 10640
+ - uid: 37173
components:
- type: Transform
- pos: -57.5,-33.5
+ pos: 83.5,57.5
parent: 2
- - uid: 10641
+ - uid: 37174
components:
- type: Transform
- pos: -56.5,-33.5
+ pos: 84.5,57.5
parent: 2
- - uid: 10642
+ - uid: 37175
components:
- type: Transform
- pos: -55.5,-33.5
+ pos: 85.5,57.5
parent: 2
- - uid: 10643
+ - uid: 37204
components:
- type: Transform
- pos: -55.5,-34.5
+ pos: 23.5,47.5
parent: 2
- - uid: 10644
+ - uid: 37205
components:
- type: Transform
- pos: -55.5,-35.5
+ pos: 22.5,47.5
parent: 2
- - uid: 10650
+ - uid: 37206
components:
- type: Transform
- pos: -55.5,-32.5
+ pos: 22.5,44.5
parent: 2
- - uid: 10658
+ - uid: 37207
components:
- type: Transform
- pos: -61.5,-30.5
+ pos: 23.5,44.5
parent: 2
- - uid: 10659
+ - uid: 37208
components:
- type: Transform
- pos: -61.5,-29.5
+ pos: 24.5,44.5
parent: 2
- - uid: 10660
+ - uid: 37209
components:
- type: Transform
- pos: -61.5,-28.5
+ pos: 26.5,42.5
parent: 2
- - uid: 10661
+ - uid: 37210
components:
- type: Transform
- pos: -61.5,-27.5
+ pos: 28.5,42.5
parent: 2
- - uid: 10662
+ - uid: 37211
components:
- type: Transform
- pos: -61.5,-26.5
+ pos: 29.5,44.5
parent: 2
- - uid: 10663
+ - uid: 37212
components:
- type: Transform
- pos: -61.5,-25.5
+ pos: 26.5,38.5
parent: 2
- - uid: 10664
+ - uid: 37213
components:
- type: Transform
- pos: -61.5,-24.5
+ pos: 25.5,38.5
parent: 2
- - uid: 10665
+ - uid: 37214
components:
- type: Transform
- pos: -61.5,-23.5
+ pos: 25.5,37.5
parent: 2
- - uid: 10666
+ - uid: 37215
components:
- type: Transform
- pos: -61.5,-22.5
+ pos: 29.5,38.5
parent: 2
- - uid: 10667
+ - uid: 37216
components:
- type: Transform
- pos: -61.5,-21.5
+ pos: 28.5,38.5
parent: 2
- - uid: 10668
+ - uid: 37217
components:
- type: Transform
- pos: -61.5,-20.5
+ pos: 29.5,37.5
parent: 2
- - uid: 10669
+ - uid: 37218
components:
- type: Transform
- pos: -61.5,-19.5
+ pos: 27.5,36.5
parent: 2
- - uid: 10670
+ - uid: 37219
components:
- type: Transform
- pos: -61.5,-18.5
+ pos: 26.5,36.5
parent: 2
- - uid: 10671
+ - uid: 37220
components:
- type: Transform
- pos: -61.5,-17.5
+ pos: 28.5,36.5
parent: 2
- - uid: 10672
+ - uid: 37237
components:
- type: Transform
- pos: -61.5,-16.5
+ pos: -26.5,-4.5
parent: 2
- - uid: 10673
+ - uid: 37238
components:
- type: Transform
- pos: -61.5,-15.5
+ pos: -26.5,-5.5
parent: 2
- - uid: 10674
+ - uid: 37239
components:
- type: Transform
- pos: -61.5,-14.5
+ pos: -26.5,-6.5
parent: 2
- - uid: 10675
+ - uid: 37266
components:
- type: Transform
- pos: -61.5,-13.5
+ pos: -28.5,6.5
parent: 2
- - uid: 10676
+ - uid: 37267
components:
- type: Transform
- pos: -61.5,-12.5
+ pos: -27.5,-4.5
parent: 2
- - uid: 10677
+ - uid: 37268
components:
- type: Transform
- pos: -61.5,-11.5
+ pos: -28.5,-4.5
parent: 2
- - uid: 10678
+ - uid: 37269
components:
- type: Transform
- pos: -62.5,-11.5
+ pos: -29.5,-4.5
parent: 2
- - uid: 10679
+ - uid: 37270
components:
- type: Transform
- pos: -63.5,-11.5
+ pos: -30.5,-4.5
parent: 2
- - uid: 10680
+ - uid: 37271
components:
- type: Transform
- pos: -64.5,-11.5
+ pos: -31.5,-4.5
parent: 2
- - uid: 10681
+ - uid: 37272
components:
- type: Transform
- pos: -64.5,-10.5
+ pos: -32.5,-4.5
parent: 2
- - uid: 10682
+ - uid: 37273
components:
- type: Transform
- pos: -64.5,-9.5
+ pos: -32.5,-1.5
parent: 2
- - uid: 10683
+ - uid: 37274
components:
- type: Transform
- pos: -64.5,-8.5
+ pos: -31.5,-1.5
parent: 2
- - uid: 10684
+ - uid: 37275
components:
- type: Transform
- pos: -64.5,-7.5
+ pos: -30.5,-1.5
parent: 2
- - uid: 10685
+ - uid: 37280
components:
- type: Transform
- pos: -64.5,-6.5
+ pos: -34.5,2.5
parent: 2
- - uid: 10686
+ - uid: 37292
components:
- type: Transform
- pos: -64.5,-5.5
+ pos: -23.5,2.5
parent: 2
- - uid: 10687
+ - uid: 37293
components:
- type: Transform
- pos: -64.5,-4.5
+ pos: -24.5,2.5
parent: 2
- - uid: 10688
+ - uid: 37294
components:
- type: Transform
- pos: -64.5,-3.5
+ pos: -25.5,2.5
parent: 2
- - uid: 10689
+ - uid: 37295
components:
- type: Transform
- pos: -64.5,-2.5
+ pos: -26.5,2.5
parent: 2
- - uid: 10690
+ - uid: 37296
components:
- type: Transform
- pos: -64.5,-1.5
+ pos: -27.5,2.5
parent: 2
- - uid: 10691
+ - uid: 37297
components:
- type: Transform
- pos: -64.5,-0.5
+ pos: -28.5,2.5
parent: 2
- - uid: 10692
+ - uid: 37298
components:
- type: Transform
- pos: -64.5,0.5
+ pos: -29.5,2.5
parent: 2
- - uid: 10693
+ - uid: 37299
components:
- type: Transform
- pos: -64.5,1.5
+ pos: -30.5,2.5
parent: 2
- - uid: 10694
+ - uid: 37318
components:
- type: Transform
- pos: -64.5,2.5
+ pos: -40.5,68.5
parent: 2
- - uid: 10695
+ - uid: 37319
components:
- type: Transform
- pos: -64.5,3.5
+ pos: -40.5,69.5
parent: 2
- - uid: 10696
+ - uid: 37323
components:
- type: Transform
- pos: -64.5,4.5
+ pos: -39.5,68.5
parent: 2
- - uid: 10697
+ - uid: 37330
components:
- type: Transform
- pos: -64.5,5.5
+ pos: -40.5,70.5
parent: 2
- - uid: 10698
+ - uid: 37331
components:
- type: Transform
- pos: -64.5,6.5
+ pos: -40.5,69.5
parent: 2
- - uid: 10699
+ - uid: 37334
components:
- type: Transform
- pos: -64.5,7.5
+ pos: -37.5,69.5
parent: 2
- - uid: 10700
+ - uid: 37335
components:
- type: Transform
- pos: -54.5,-35.5
+ pos: -37.5,70.5
parent: 2
- - uid: 10701
+ - uid: 37336
components:
- type: Transform
- pos: -53.5,-35.5
+ pos: -37.5,71.5
parent: 2
- - uid: 10702
+ - uid: 37365
components:
- type: Transform
- pos: -52.5,-35.5
+ pos: -43.5,55.5
parent: 2
- - uid: 10703
+ - uid: 37366
components:
- type: Transform
- pos: -51.5,-35.5
+ pos: -42.5,55.5
parent: 2
- - uid: 10704
+ - uid: 37367
components:
- type: Transform
- pos: -50.5,-35.5
+ pos: -41.5,55.5
parent: 2
- - uid: 10705
+ - uid: 37368
components:
- type: Transform
- pos: -49.5,-35.5
+ pos: -42.5,57.5
parent: 2
- - uid: 10707
+ - uid: 37418
components:
- type: Transform
- pos: -47.5,-35.5
+ pos: 33.5,53.5
parent: 2
- - uid: 10708
+ - uid: 37419
components:
- type: Transform
- pos: -46.5,-35.5
+ pos: 33.5,54.5
parent: 2
- - uid: 10709
+ - uid: 37420
components:
- type: Transform
- pos: -45.5,-35.5
+ pos: 33.5,55.5
parent: 2
- - uid: 10710
+ - uid: 37513
components:
- type: Transform
- pos: -44.5,-35.5
+ pos: -39.5,2.5
parent: 2
- - uid: 10711
+ - uid: 37514
components:
- type: Transform
- pos: -43.5,-35.5
+ pos: -40.5,2.5
parent: 2
- - uid: 10712
+ - uid: 37515
components:
- type: Transform
- pos: -42.5,-35.5
+ pos: -41.5,2.5
parent: 2
- - uid: 10713
+ - uid: 37532
components:
- type: Transform
- pos: -41.5,-35.5
+ pos: -11.5,68.5
parent: 2
- - uid: 10714
+ - uid: 37534
components:
- type: Transform
- pos: -40.5,-35.5
+ pos: -7.5,68.5
parent: 2
- - uid: 10715
+ - uid: 37698
components:
- type: Transform
- pos: -39.5,-35.5
+ pos: -33.5,10.5
parent: 2
- - uid: 10716
+ - uid: 37874
components:
- type: Transform
- pos: -38.5,-35.5
+ pos: 81.5,-22.5
parent: 2
- - uid: 10717
+ - uid: 37930
components:
- type: Transform
- pos: -37.5,-35.5
+ pos: 80.5,-16.5
parent: 2
- - uid: 10718
+ - uid: 37931
components:
- type: Transform
- pos: -36.5,-35.5
+ pos: 81.5,-16.5
parent: 2
- - uid: 10719
+ - uid: 37932
components:
- type: Transform
- pos: -35.5,-35.5
+ pos: 82.5,-16.5
parent: 2
- - uid: 10720
+ - uid: 37933
components:
- type: Transform
- pos: -63.5,8.5
+ pos: 83.5,-16.5
parent: 2
- - uid: 10721
+ - uid: 37934
components:
- type: Transform
- pos: -62.5,8.5
+ pos: 84.5,-16.5
parent: 2
- - uid: 10722
+ - uid: 37935
components:
- type: Transform
- pos: -61.5,8.5
+ pos: 85.5,-16.5
parent: 2
- - uid: 10723
+ - uid: 37936
components:
- type: Transform
- pos: -60.5,8.5
+ pos: 86.5,-16.5
parent: 2
- - uid: 10724
+ - uid: 37939
components:
- type: Transform
- pos: -59.5,8.5
+ pos: 89.5,-18.5
parent: 2
- - uid: 10725
+ - uid: 37940
components:
- type: Transform
- pos: -58.5,8.5
+ pos: 89.5,-17.5
parent: 2
- - uid: 10726
+ - uid: 37941
components:
- type: Transform
- pos: -57.5,8.5
+ pos: 89.5,-16.5
parent: 2
- - uid: 10727
+ - uid: 37942
components:
- type: Transform
- pos: -56.5,8.5
+ pos: 89.5,-15.5
parent: 2
- - uid: 10728
+ - uid: 37943
components:
- type: Transform
- pos: -55.5,8.5
+ pos: 89.5,-14.5
parent: 2
- - uid: 10729
+ - uid: 37944
components:
- type: Transform
- pos: -54.5,8.5
+ pos: 89.5,-13.5
parent: 2
- - uid: 10730
+ - uid: 37945
components:
- type: Transform
- pos: -53.5,8.5
+ pos: 89.5,-12.5
parent: 2
- - uid: 10731
+ - uid: 37946
components:
- type: Transform
- pos: -52.5,8.5
+ pos: 92.5,-12.5
parent: 2
- - uid: 10732
+ - uid: 37947
components:
- type: Transform
- pos: -51.5,8.5
+ pos: 92.5,-13.5
parent: 2
- - uid: 10733
+ - uid: 37948
components:
- type: Transform
- pos: -50.5,8.5
+ pos: 92.5,-14.5
parent: 2
- - uid: 10734
+ - uid: 37949
components:
- type: Transform
- pos: -49.5,8.5
+ pos: 92.5,-15.5
parent: 2
- - uid: 10735
+ - uid: 37950
components:
- type: Transform
- pos: -48.5,8.5
+ pos: 92.5,-16.5
parent: 2
- - uid: 10736
+ - uid: 37951
components:
- type: Transform
- pos: -47.5,8.5
+ pos: 92.5,-17.5
parent: 2
- - uid: 10737
+ - uid: 37952
components:
- type: Transform
- pos: -46.5,8.5
+ pos: 92.5,-18.5
parent: 2
- - uid: 10738
+ - uid: 37953
components:
- type: Transform
- pos: -45.5,8.5
+ pos: 92.5,-19.5
parent: 2
- - uid: 10739
+ - uid: 37954
components:
- type: Transform
- pos: -45.5,7.5
+ pos: 92.5,-20.5
parent: 2
- - uid: 10740
+ - uid: 37984
components:
- type: Transform
- pos: -45.5,6.5
+ pos: 87.5,-20.5
parent: 2
- - uid: 10741
+ - uid: 37985
components:
- type: Transform
- pos: -45.5,5.5
+ pos: 87.5,-19.5
parent: 2
- - uid: 10742
+ - uid: 37986
components:
- type: Transform
- pos: -45.5,4.5
+ pos: 87.5,-13.5
parent: 2
- - uid: 10743
+ - uid: 37987
components:
- type: Transform
- pos: -46.5,4.5
+ pos: 87.5,-12.5
parent: 2
- - uid: 10744
+ - uid: 38016
components:
- type: Transform
- pos: -46.5,3.5
+ pos: 17.5,-26.5
parent: 2
- - uid: 10745
+ - uid: 38017
components:
- type: Transform
- pos: -46.5,2.5
+ pos: 17.5,-25.5
parent: 2
- - uid: 10746
+ - uid: 38018
components:
- type: Transform
- pos: -46.5,1.5
+ pos: 17.5,-24.5
parent: 2
- - uid: 10747
+ - uid: 38019
components:
- type: Transform
- pos: -46.5,0.5
+ pos: 17.5,-23.5
parent: 2
- - uid: 10748
+ - uid: 38020
components:
- type: Transform
- pos: -46.5,-0.5
+ pos: 17.5,-22.5
parent: 2
- - uid: 10749
+ - uid: 38021
components:
- type: Transform
- pos: -46.5,-1.5
+ pos: 17.5,-28.5
parent: 2
- - uid: 10750
+ - uid: 38022
components:
- type: Transform
- pos: -46.5,-2.5
+ pos: 17.5,-29.5
parent: 2
- - uid: 10751
+ - uid: 38023
components:
- type: Transform
- pos: -46.5,-3.5
+ pos: 17.5,-30.5
parent: 2
- - uid: 10752
+ - uid: 38067
components:
- type: Transform
- pos: -46.5,-4.5
+ pos: -76.5,16.5
parent: 2
- - uid: 10753
+ - uid: 38073
components:
- type: Transform
- pos: -46.5,-5.5
+ pos: -77.5,16.5
parent: 2
- - uid: 10754
+ - uid: 38074
components:
- type: Transform
- pos: -46.5,-6.5
+ pos: -77.5,17.5
parent: 2
- - uid: 10755
+ - uid: 38075
components:
- type: Transform
- pos: -46.5,-7.5
+ pos: -77.5,18.5
parent: 2
- - uid: 10756
+ - uid: 38076
components:
- type: Transform
- pos: -46.5,-8.5
+ pos: -77.5,15.5
parent: 2
- - uid: 10757
+ - uid: 38077
components:
- type: Transform
- pos: -46.5,-9.5
+ pos: -77.5,14.5
parent: 2
- - uid: 10758
+ - uid: 38078
components:
- type: Transform
- pos: -45.5,-9.5
+ pos: -77.5,13.5
parent: 2
- - uid: 10759
+ - uid: 38079
components:
- type: Transform
- pos: -45.5,-10.5
+ pos: -77.5,12.5
parent: 2
- - uid: 10760
+ - uid: 38080
components:
- type: Transform
- pos: -44.5,-10.5
+ pos: -77.5,11.5
parent: 2
- - uid: 10761
+ - uid: 38161
components:
- type: Transform
- pos: -44.5,-11.5
+ pos: 29.5,-20.5
parent: 2
- - uid: 10762
+ - uid: 38799
components:
- type: Transform
- pos: -43.5,-11.5
+ pos: -45.5,41.5
parent: 2
- - uid: 10763
+ - uid: 38800
components:
- type: Transform
- pos: -43.5,-12.5
+ pos: -47.5,41.5
parent: 2
- - uid: 10764
+ - uid: 38907
components:
- type: Transform
- pos: -42.5,-12.5
+ pos: 10.5,-38.5
parent: 2
- - uid: 10765
+ - uid: 38908
components:
- type: Transform
- pos: -42.5,-13.5
+ pos: 10.5,-39.5
parent: 2
- - uid: 10766
+ - uid: 38909
components:
- type: Transform
- pos: -41.5,-13.5
+ pos: 10.5,-40.5
parent: 2
- - uid: 10767
+ - uid: 38910
components:
- type: Transform
- pos: -41.5,-14.5
+ pos: 10.5,-41.5
parent: 2
- - uid: 10768
+ - uid: 38911
components:
- type: Transform
- pos: -40.5,-14.5
+ pos: 10.5,-42.5
parent: 2
- - uid: 10769
+ - uid: 38920
components:
- type: Transform
- pos: -39.5,-14.5
+ pos: 9.5,-39.5
parent: 2
- - uid: 10770
+ - uid: 38942
components:
- type: Transform
- pos: -39.5,-15.5
+ pos: -69.5,27.5
parent: 2
- - uid: 10771
+ - uid: 38943
components:
- type: Transform
- pos: -38.5,-15.5
+ pos: -70.5,27.5
parent: 2
- - uid: 10772
+ - uid: 38944
components:
- type: Transform
- pos: -37.5,-15.5
+ pos: -71.5,27.5
parent: 2
- - uid: 10773
+ - uid: 38945
components:
- type: Transform
- pos: -36.5,-15.5
+ pos: -72.5,27.5
parent: 2
- - uid: 10774
+ - uid: 38946
components:
- type: Transform
- pos: -35.5,-15.5
+ pos: -73.5,27.5
parent: 2
- - uid: 10775
+ - uid: 39251
components:
- type: Transform
- pos: -34.5,-15.5
+ pos: -51.5,-36.5
parent: 2
- - uid: 10776
+ - uid: 39252
components:
- type: Transform
- pos: -33.5,-15.5
+ pos: -51.5,-37.5
parent: 2
- - uid: 10777
+ - uid: 39253
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -51.5,-38.5
parent: 2
- - uid: 10778
+ - uid: 39254
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: -50.5,-38.5
parent: 2
- - uid: 10779
+ - uid: 39255
components:
- type: Transform
- pos: -30.5,-15.5
+ pos: -49.5,-38.5
parent: 2
- - uid: 10780
+ - uid: 39256
components:
- type: Transform
- pos: -29.5,-15.5
+ pos: -48.5,-38.5
parent: 2
- - uid: 10781
+ - uid: 39257
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: -47.5,-38.5
parent: 2
- - uid: 10782
+ - uid: 39258
components:
- type: Transform
- pos: -27.5,-15.5
+ pos: -46.5,-38.5
parent: 2
- - uid: 10783
+ - uid: 39259
components:
- type: Transform
- pos: -26.5,-15.5
+ pos: -45.5,-38.5
parent: 2
- - uid: 10784
+ - uid: 39260
components:
- type: Transform
- pos: -25.5,-15.5
+ pos: -44.5,-38.5
parent: 2
- - uid: 10785
+ - uid: 39261
components:
- type: Transform
- pos: -24.5,-15.5
+ pos: -43.5,-38.5
parent: 2
- - uid: 10786
+ - uid: 39262
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: -42.5,-38.5
parent: 2
- - uid: 10787
+ - uid: 39263
components:
- type: Transform
- pos: -22.5,-15.5
+ pos: -41.5,-38.5
parent: 2
- - uid: 10788
+ - uid: 39264
components:
- type: Transform
- pos: -21.5,-15.5
+ pos: -40.5,-38.5
parent: 2
- - uid: 10789
+ - uid: 39265
components:
- type: Transform
- pos: -20.5,-15.5
+ pos: -39.5,-38.5
parent: 2
- - uid: 10790
+ - uid: 39266
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: -38.5,-38.5
parent: 2
- - uid: 10791
+ - uid: 39267
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: -37.5,-38.5
parent: 2
- - uid: 10792
+ - uid: 39268
components:
- type: Transform
- pos: -17.5,-15.5
+ pos: -36.5,-38.5
parent: 2
- - uid: 10793
+ - uid: 39269
components:
- type: Transform
- pos: -16.5,-15.5
+ pos: -39.5,-20.5
parent: 2
- - uid: 10794
+ - uid: 39270
components:
- type: Transform
- pos: -15.5,-15.5
+ pos: -39.5,-21.5
parent: 2
- - uid: 10795
+ - uid: 39271
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: -36.5,-21.5
parent: 2
- - uid: 10796
+- proto: CableApcStack
+ entities:
+ - uid: 7993
components:
- type: Transform
- pos: -13.5,-15.5
+ pos: -47.674454,16.665512
parent: 2
- - uid: 10797
+- proto: CableApcStack1
+ entities:
+ - uid: 12431
components:
- type: Transform
- pos: -12.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -5.4545693,-1.4517026
parent: 2
- - uid: 10798
+ - uid: 17387
components:
- type: Transform
- pos: -11.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -5.606913,-1.5454526
parent: 2
- - uid: 10799
+- proto: CableApcStack10
+ entities:
+ - uid: 12090
components:
- type: Transform
- pos: -10.5,-15.5
+ pos: 10.465606,58.667007
parent: 2
- - uid: 10800
+- proto: CablecuffsBroken
+ entities:
+ - uid: 5375
components:
- type: Transform
- pos: -9.5,-15.5
+ pos: 58.823177,56.228245
parent: 2
- - uid: 10801
+ - uid: 5376
components:
- type: Transform
- pos: -8.5,-15.5
+ pos: 59.354427,55.61887
parent: 2
- - uid: 10802
+ - uid: 6998
components:
- type: Transform
- pos: -7.5,-15.5
+ pos: -30.291754,-34.461353
parent: 2
- - uid: 10803
+ - uid: 8161
components:
- type: Transform
- pos: -6.5,-15.5
+ pos: 90.38191,72.34944
parent: 2
- - uid: 10804
+ - uid: 8162
components:
- type: Transform
- pos: -5.5,-15.5
+ pos: 92.59285,75.20882
parent: 2
- - uid: 10805
+ - uid: 8163
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: 94.764725,73.61507
parent: 2
- - uid: 10806
+- proto: CableHV
+ entities:
+ - uid: 91
components:
- type: Transform
- pos: -3.5,-15.5
+ pos: -62.5,27.5
parent: 2
- - uid: 10807
+ - uid: 112
components:
- type: Transform
- pos: -2.5,-15.5
+ pos: -62.5,25.5
parent: 2
- - uid: 10808
+ - uid: 122
components:
- type: Transform
- pos: -1.5,-15.5
+ pos: -61.5,33.5
parent: 2
- - uid: 10809
+ - uid: 137
components:
- type: Transform
- pos: -0.5,-15.5
+ pos: -5.5,70.5
parent: 2
- - uid: 10810
+ - uid: 208
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: -61.5,31.5
parent: 2
- - uid: 10811
+ - uid: 233
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: -51.5,61.5
parent: 2
- - uid: 10812
+ - uid: 246
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: -46.5,57.5
parent: 2
- - uid: 10813
+ - uid: 275
components:
- type: Transform
- pos: 3.5,-15.5
+ pos: -51.5,60.5
parent: 2
- - uid: 10814
+ - uid: 383
components:
- type: Transform
- pos: 4.5,-15.5
+ pos: -62.5,35.5
parent: 2
- - uid: 10815
+ - uid: 385
components:
- type: Transform
- pos: 5.5,-15.5
+ pos: -45.5,-38.5
parent: 2
- - uid: 10816
+ - uid: 395
components:
- type: Transform
- pos: 6.5,-15.5
+ pos: -42.5,-38.5
parent: 2
- - uid: 10817
+ - uid: 419
components:
- type: Transform
- pos: 7.5,-15.5
+ pos: -59.5,36.5
parent: 2
- - uid: 10818
+ - uid: 420
components:
- type: Transform
- pos: 8.5,-15.5
+ pos: -60.5,27.5
parent: 2
- - uid: 10819
+ - uid: 421
components:
- type: Transform
- pos: 9.5,-15.5
+ pos: -59.5,35.5
parent: 2
- - uid: 10820
+ - uid: 429
components:
- type: Transform
- pos: 10.5,-15.5
+ pos: -47.5,-38.5
parent: 2
- - uid: 10821
+ - uid: 432
components:
- type: Transform
- pos: 11.5,-15.5
+ pos: -43.5,-38.5
parent: 2
- - uid: 10822
+ - uid: 791
components:
- type: Transform
- pos: 12.5,-15.5
+ pos: 17.5,-27.5
parent: 2
- - uid: 10823
+ - uid: 915
components:
- type: Transform
- pos: 13.5,-15.5
+ pos: -26.5,2.5
parent: 2
- - uid: 10824
+ - uid: 979
components:
- type: Transform
- pos: 14.5,-15.5
+ pos: -33.5,-6.5
parent: 2
- - uid: 10825
+ - uid: 1417
components:
- type: Transform
- pos: 15.5,-15.5
+ pos: 11.5,20.5
parent: 2
- - uid: 10826
+ - uid: 1418
components:
- type: Transform
- pos: 16.5,-15.5
+ pos: 12.5,20.5
parent: 2
- - uid: 10827
+ - uid: 1431
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 13.5,20.5
parent: 2
- - uid: 10828
+ - uid: 1432
components:
- type: Transform
- pos: 18.5,-15.5
+ pos: 14.5,20.5
parent: 2
- - uid: 10829
+ - uid: 1442
components:
- type: Transform
- pos: 19.5,-15.5
+ pos: 82.5,-20.5
parent: 2
- - uid: 10830
+ - uid: 1453
components:
- type: Transform
- pos: 20.5,-15.5
+ pos: 82.5,-23.5
parent: 2
- - uid: 10831
+ - uid: 1459
components:
- type: Transform
- pos: 21.5,-15.5
+ pos: -10.5,68.5
parent: 2
- - uid: 10832
+ - uid: 1470
components:
- type: Transform
- pos: 22.5,-15.5
+ pos: 81.5,-23.5
parent: 2
- - uid: 10833
+ - uid: 1477
components:
- type: Transform
- pos: 23.5,-15.5
+ pos: 83.5,-20.5
parent: 2
- - uid: 10834
+ - uid: 1831
components:
- type: Transform
- pos: 24.5,-15.5
+ pos: 21.5,-26.5
parent: 2
- - uid: 10835
+ - uid: 1832
components:
- type: Transform
- pos: 25.5,-15.5
+ pos: 25.5,-22.5
parent: 2
- - uid: 10836
+ - uid: 1873
components:
- type: Transform
- pos: 26.5,-15.5
+ pos: 20.5,-26.5
parent: 2
- - uid: 10837
+ - uid: 2048
components:
- type: Transform
- pos: 27.5,-15.5
+ pos: 83.5,-12.5
parent: 2
- - uid: 10838
+ - uid: 2049
components:
- type: Transform
- pos: 28.5,-15.5
+ pos: 16.5,20.5
parent: 2
- - uid: 10839
+ - uid: 2070
components:
- type: Transform
- pos: 29.5,-15.5
+ pos: 79.5,-10.5
parent: 2
- - uid: 10840
+ - uid: 2071
components:
- type: Transform
- pos: 30.5,-15.5
+ pos: 83.5,-17.5
parent: 2
- - uid: 10841
+ - uid: 2084
components:
- type: Transform
- pos: 31.5,-15.5
+ pos: -30.5,3.5
parent: 2
- - uid: 10842
+ - uid: 2085
components:
- type: Transform
- pos: 32.5,-15.5
+ pos: -30.5,2.5
parent: 2
- - uid: 10843
+ - uid: 2109
components:
- type: Transform
- pos: 33.5,-15.5
+ pos: 18.5,20.5
parent: 2
- - uid: 10844
+ - uid: 2120
components:
- type: Transform
- pos: 34.5,-15.5
+ pos: 10.5,-26.5
parent: 2
- - uid: 10845
+ - uid: 2121
components:
- type: Transform
- pos: 35.5,-15.5
+ pos: 15.5,20.5
parent: 2
- - uid: 10846
+ - uid: 2137
components:
- type: Transform
- pos: 36.5,-15.5
+ pos: 36.5,-26.5
parent: 2
- - uid: 10847
+ - uid: 2186
components:
- type: Transform
- pos: 37.5,-15.5
+ pos: 28.5,-27.5
parent: 2
- - uid: 10848
+ - uid: 2334
components:
- type: Transform
- pos: 38.5,-15.5
+ pos: 11.5,-26.5
parent: 2
- - uid: 10849
+ - uid: 2404
components:
- type: Transform
- pos: 38.5,-16.5
+ pos: 15.5,-26.5
parent: 2
- - uid: 10850
+ - uid: 2433
components:
- type: Transform
- pos: 39.5,-16.5
+ pos: 80.5,-23.5
parent: 2
- - uid: 10851
+ - uid: 2455
components:
- type: Transform
- pos: 39.5,-17.5
+ pos: 10.5,-28.5
parent: 2
- - uid: 10852
+ - uid: 2525
components:
- type: Transform
- pos: 40.5,-17.5
+ pos: 14.5,-26.5
parent: 2
- - uid: 10853
+ - uid: 2526
components:
- type: Transform
- pos: 41.5,-17.5
+ pos: -3.5,-20.5
parent: 2
- - uid: 10854
+ - uid: 2552
components:
- type: Transform
- pos: 42.5,-17.5
+ pos: 13.5,-26.5
parent: 2
- - uid: 10855
+ - uid: 2616
components:
- type: Transform
- pos: 43.5,-17.5
+ pos: -29.5,2.5
parent: 2
- - uid: 10856
+ - uid: 2618
components:
- type: Transform
- pos: 44.5,-17.5
+ pos: 17.5,-28.5
parent: 2
- - uid: 10857
+ - uid: 2648
components:
- type: Transform
- pos: 45.5,-17.5
+ pos: 12.5,-26.5
parent: 2
- - uid: 10858
+ - uid: 2700
components:
- type: Transform
- pos: 43.5,-26.5
+ pos: -23.5,45.5
parent: 2
- - uid: 10859
+ - uid: 2724
components:
- type: Transform
- pos: 46.5,-16.5
+ pos: 85.5,-23.5
parent: 2
- - uid: 10860
+ - uid: 2728
components:
- type: Transform
- pos: 47.5,-16.5
+ pos: 17.5,-29.5
parent: 2
- - uid: 10861
+ - uid: 2761
components:
- type: Transform
- pos: 47.5,-15.5
+ pos: -41.5,20.5
parent: 2
- - uid: 10862
+ - uid: 2863
components:
- type: Transform
- pos: 48.5,-15.5
+ pos: -22.5,45.5
parent: 2
- - uid: 10863
+ - uid: 3001
components:
- type: Transform
- pos: 48.5,-14.5
+ pos: 17.5,-30.5
parent: 2
- - uid: 10864
+ - uid: 3108
components:
- type: Transform
- pos: 49.5,-14.5
+ pos: -2.5,26.5
parent: 2
- - uid: 10865
+ - uid: 3139
components:
- type: Transform
- pos: 49.5,-13.5
+ pos: -28.5,2.5
parent: 2
- - uid: 10866
+ - uid: 3193
components:
- type: Transform
- pos: 50.5,-13.5
+ pos: 25.5,-30.5
parent: 2
- - uid: 10867
+ - uid: 3197
components:
- type: Transform
- pos: 50.5,-12.5
+ pos: 25.5,-23.5
parent: 2
- - uid: 10868
+ - uid: 3286
components:
- type: Transform
- pos: 50.5,-11.5
+ pos: 25.5,-24.5
parent: 2
- - uid: 10869
+ - uid: 3288
components:
- type: Transform
- pos: 50.5,-10.5
+ pos: 25.5,-25.5
parent: 2
- - uid: 10870
+ - uid: 3289
components:
- type: Transform
- pos: 50.5,-9.5
+ pos: 25.5,-28.5
parent: 2
- - uid: 10871
+ - uid: 3291
components:
- type: Transform
- pos: 50.5,-8.5
+ pos: 25.5,-29.5
parent: 2
- - uid: 10872
+ - uid: 3306
components:
- type: Transform
- pos: 50.5,-7.5
+ pos: 25.5,-26.5
parent: 2
- - uid: 10873
+ - uid: 3309
components:
- type: Transform
- pos: 50.5,-6.5
+ pos: 25.5,-27.5
parent: 2
- - uid: 10874
+ - uid: 3313
components:
- type: Transform
- pos: 50.5,-5.5
+ pos: -27.5,2.5
parent: 2
- - uid: 10875
+ - uid: 3340
components:
- type: Transform
- pos: 50.5,-4.5
+ pos: 25.5,-31.5
parent: 2
- - uid: 10876
+ - uid: 3355
components:
- type: Transform
- pos: 50.5,-3.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 10877
+ - uid: 3387
components:
- type: Transform
- pos: 50.5,-2.5
+ pos: -32.5,6.5
parent: 2
- - uid: 10878
+ - uid: 3389
components:
- type: Transform
- pos: 50.5,-1.5
+ pos: -28.5,6.5
parent: 2
- - uid: 10879
+ - uid: 3392
components:
- type: Transform
- pos: 50.5,-0.5
+ pos: -25.5,-1.5
parent: 2
- - uid: 10880
+ - uid: 3393
components:
- type: Transform
- pos: 50.5,0.5
+ pos: -27.5,-1.5
parent: 2
- - uid: 10881
+ - uid: 3398
components:
- type: Transform
- pos: 50.5,1.5
+ pos: -26.5,-1.5
parent: 2
- - uid: 10882
+ - uid: 3412
components:
- type: Transform
- pos: 50.5,2.5
+ pos: -30.5,6.5
parent: 2
- - uid: 10883
+ - uid: 3413
components:
- type: Transform
- pos: 50.5,3.5
+ pos: -25.5,3.5
parent: 2
- - uid: 10884
+ - uid: 3424
components:
- type: Transform
- pos: 49.5,3.5
+ pos: -25.5,-0.5
parent: 2
- - uid: 10885
+ - uid: 3425
components:
- type: Transform
- pos: 49.5,4.5
+ pos: -25.5,0.5
parent: 2
- - uid: 10886
+ - uid: 3485
components:
- type: Transform
- pos: 49.5,5.5
+ pos: 52.5,40.5
parent: 2
- - uid: 10887
+ - uid: 3486
components:
- type: Transform
- pos: 49.5,6.5
+ pos: 52.5,41.5
parent: 2
- - uid: 10888
+ - uid: 3551
components:
- type: Transform
- pos: 49.5,7.5
+ pos: -27.5,40.5
parent: 2
- - uid: 10889
+ - uid: 3658
components:
- type: Transform
- pos: 49.5,8.5
+ pos: -60.5,36.5
parent: 2
- - uid: 10890
+ - uid: 3660
components:
- type: Transform
- pos: 49.5,9.5
+ pos: -61.5,35.5
parent: 2
- - uid: 10891
+ - uid: 3817
components:
- type: Transform
- pos: 49.5,10.5
+ pos: -25.5,4.5
parent: 2
- - uid: 10892
+ - uid: 3861
components:
- type: Transform
- pos: 49.5,11.5
+ pos: -29.5,6.5
parent: 2
- - uid: 10893
+ - uid: 3928
components:
- type: Transform
- pos: 49.5,12.5
+ pos: 39.5,13.5
parent: 2
- - uid: 10894
+ - uid: 3949
components:
- type: Transform
- pos: 49.5,13.5
+ pos: -25.5,5.5
parent: 2
- - uid: 10895
+ - uid: 4015
components:
- type: Transform
- pos: 49.5,14.5
+ pos: -25.5,6.5
parent: 2
- - uid: 10896
+ - uid: 4040
components:
- type: Transform
- pos: 49.5,15.5
+ pos: -51.5,17.5
parent: 2
- - uid: 10897
+ - uid: 4053
components:
- type: Transform
- pos: 49.5,16.5
+ pos: -49.5,17.5
parent: 2
- - uid: 10898
+ - uid: 4084
components:
- type: Transform
- pos: 49.5,17.5
+ pos: -50.5,17.5
parent: 2
- - uid: 10899
+ - uid: 4190
components:
- type: Transform
- pos: 48.5,17.5
+ pos: -52.5,17.5
parent: 2
- - uid: 10900
+ - uid: 4332
components:
- type: Transform
- pos: 48.5,18.5
+ pos: -48.5,17.5
parent: 2
- - uid: 10901
+ - uid: 4335
components:
- type: Transform
- pos: 48.5,19.5
+ pos: 32.5,36.5
parent: 2
- - uid: 10902
+ - uid: 4336
components:
- type: Transform
- pos: 47.5,19.5
+ pos: -47.5,17.5
parent: 2
- - uid: 10903
+ - uid: 4586
components:
- type: Transform
- pos: 46.5,19.5
+ pos: -51.5,-37.5
parent: 2
- - uid: 10904
+ - uid: 4622
components:
- type: Transform
- pos: 45.5,19.5
+ pos: -51.5,-38.5
parent: 2
- - uid: 10905
+ - uid: 4649
components:
- type: Transform
- pos: 44.5,19.5
+ pos: -28.5,43.5
parent: 2
- - uid: 10906
+ - uid: 4652
components:
- type: Transform
- pos: 43.5,19.5
+ pos: 17.5,-19.5
parent: 2
- - uid: 10907
+ - uid: 4654
components:
- type: Transform
- pos: 42.5,19.5
+ pos: 17.5,-21.5
parent: 2
- - uid: 10908
+ - uid: 4691
components:
- type: Transform
- pos: 41.5,19.5
+ pos: 17.5,-17.5
parent: 2
- - uid: 10909
+ - uid: 4720
components:
- type: Transform
- pos: 40.5,19.5
+ pos: 10.5,-27.5
parent: 2
- - uid: 10910
+ - uid: 4735
components:
- type: Transform
- pos: 39.5,19.5
+ pos: -25.5,23.5
parent: 2
- - uid: 10911
+ - uid: 4765
components:
- type: Transform
- pos: 38.5,19.5
+ pos: -27.5,23.5
parent: 2
- - uid: 10912
+ - uid: 4779
components:
- type: Transform
- pos: 37.5,19.5
+ pos: 17.5,-16.5
parent: 2
- - uid: 10913
+ - uid: 4812
components:
- type: Transform
- pos: 36.5,19.5
+ pos: 17.5,-18.5
parent: 2
- - uid: 10914
+ - uid: 4828
components:
- type: Transform
- pos: 35.5,19.5
+ pos: 32.5,35.5
parent: 2
- - uid: 10915
+ - uid: 4852
components:
- type: Transform
- pos: 34.5,19.5
+ pos: -82.5,-45.5
parent: 2
- - uid: 10916
+ - uid: 4853
components:
- type: Transform
- pos: 33.5,19.5
+ pos: -93.5,-33.5
parent: 2
- - uid: 10917
+ - uid: 4873
components:
- type: Transform
- pos: 32.5,19.5
+ pos: -84.5,-45.5
parent: 2
- - uid: 10918
+ - uid: 4874
components:
- type: Transform
- pos: 31.5,19.5
+ pos: -85.5,-45.5
parent: 2
- - uid: 10919
+ - uid: 4875
components:
- type: Transform
- pos: 30.5,19.5
+ pos: -86.5,-48.5
parent: 2
- - uid: 10920
+ - uid: 4878
components:
- type: Transform
- pos: 29.5,19.5
+ pos: -83.5,-45.5
parent: 2
- - uid: 10921
+ - uid: 4879
components:
- type: Transform
- pos: 28.5,19.5
+ pos: -94.5,-33.5
parent: 2
- - uid: 10922
+ - uid: 4883
components:
- type: Transform
- pos: 27.5,19.5
+ pos: -60.5,44.5
parent: 2
- - uid: 10923
+ - uid: 4884
components:
- type: Transform
- pos: 26.5,19.5
+ pos: -92.5,-33.5
parent: 2
- - uid: 10924
+ - uid: 4914
components:
- type: Transform
- pos: 25.5,19.5
+ pos: 52.5,43.5
parent: 2
- - uid: 10925
+ - uid: 5030
components:
- type: Transform
- pos: 24.5,19.5
+ pos: -28.5,42.5
parent: 2
- - uid: 10926
+ - uid: 5039
components:
- type: Transform
- pos: 23.5,19.5
+ pos: 80.5,-16.5
parent: 2
- - uid: 10927
+ - uid: 5042
components:
- type: Transform
- pos: 22.5,19.5
+ pos: -28.5,40.5
parent: 2
- - uid: 10928
+ - uid: 5043
components:
- type: Transform
- pos: 21.5,19.5
+ pos: -28.5,41.5
parent: 2
- - uid: 10929
+ - uid: 5086
components:
- type: Transform
- pos: 20.5,19.5
+ pos: -28.5,44.5
parent: 2
- - uid: 10930
+ - uid: 5208
components:
- type: Transform
- pos: 19.5,19.5
+ pos: 25.5,-19.5
parent: 2
- - uid: 10931
+ - uid: 5260
components:
- type: Transform
- pos: 18.5,19.5
+ pos: 33.5,36.5
parent: 2
- - uid: 10932
+ - uid: 5296
components:
- type: Transform
- pos: 17.5,19.5
+ pos: 8.5,-28.5
parent: 2
- - uid: 10933
+ - uid: 5318
components:
- type: Transform
- pos: 16.5,19.5
+ pos: 97.5,76.5
parent: 2
- - uid: 10934
+ - uid: 5319
components:
- type: Transform
- pos: 15.5,19.5
+ pos: 98.5,76.5
parent: 2
- - uid: 10935
+ - uid: 5380
components:
- type: Transform
- pos: 14.5,19.5
+ pos: -26.5,45.5
parent: 2
- - uid: 10936
+ - uid: 5515
components:
- type: Transform
- pos: 13.5,19.5
+ pos: -38.5,35.5
parent: 2
- - uid: 10937
+ - uid: 5536
components:
- type: Transform
- pos: 12.5,19.5
+ pos: -28.5,45.5
parent: 2
- - uid: 10938
+ - uid: 5651
components:
- type: Transform
- pos: 11.5,19.5
+ pos: -28.5,38.5
parent: 2
- - uid: 10939
+ - uid: 5752
components:
- type: Transform
- pos: 10.5,19.5
+ pos: -27.5,6.5
parent: 2
- - uid: 10940
+ - uid: 5753
components:
- type: Transform
- pos: 9.5,19.5
+ pos: -30.5,-1.5
parent: 2
- - uid: 10941
+ - uid: 5754
components:
- type: Transform
- pos: 8.5,19.5
+ pos: -29.5,-1.5
parent: 2
- - uid: 10942
+ - uid: 5870
components:
- type: Transform
- pos: 7.5,19.5
+ pos: -53.5,17.5
parent: 2
- - uid: 10943
+ - uid: 5902
components:
- type: Transform
- pos: 6.5,19.5
+ pos: 34.5,-26.5
parent: 2
- - uid: 10944
+ - uid: 5903
components:
- type: Transform
- pos: 5.5,19.5
+ pos: 28.5,-26.5
parent: 2
- - uid: 10945
+ - uid: 5904
components:
- type: Transform
- pos: 4.5,19.5
+ pos: 28.5,-30.5
parent: 2
- - uid: 10946
+ - uid: 5912
components:
- type: Transform
- pos: 3.5,19.5
+ pos: 84.5,-20.5
parent: 2
- - uid: 10947
+ - uid: 5922
components:
- type: Transform
- pos: 2.5,19.5
+ pos: -41.5,56.5
parent: 2
- - uid: 10948
+ - uid: 5925
components:
- type: Transform
- pos: 1.5,19.5
+ pos: -42.5,56.5
parent: 2
- - uid: 10949
+ - uid: 5965
components:
- type: Transform
- pos: 0.5,19.5
+ pos: -33.5,-7.5
parent: 2
- - uid: 10950
+ - uid: 6001
components:
- type: Transform
- pos: -0.5,19.5
+ pos: -28.5,37.5
parent: 2
- - uid: 10951
+ - uid: 6315
components:
- type: Transform
- pos: -1.5,19.5
+ pos: -21.5,45.5
parent: 2
- - uid: 10952
+ - uid: 6327
components:
- type: Transform
- pos: -2.5,19.5
+ pos: -26.5,40.5
parent: 2
- - uid: 10953
+ - uid: 6396
components:
- type: Transform
- pos: -3.5,19.5
+ pos: -24.5,27.5
parent: 2
- - uid: 10954
+ - uid: 6424
components:
- type: Transform
- pos: -4.5,19.5
+ pos: 79.5,0.5
parent: 2
- - uid: 10955
+ - uid: 6427
components:
- type: Transform
- pos: -5.5,19.5
+ pos: 79.5,3.5
parent: 2
- - uid: 10956
+ - uid: 6428
components:
- type: Transform
- pos: -6.5,19.5
+ pos: 79.5,2.5
parent: 2
- - uid: 10957
+ - uid: 6429
components:
- type: Transform
- pos: -6.5,20.5
+ pos: 79.5,1.5
parent: 2
- - uid: 10958
+ - uid: 6430
components:
- type: Transform
- pos: -7.5,20.5
+ pos: 84.5,26.5
parent: 2
- - uid: 10959
+ - uid: 6431
components:
- type: Transform
- pos: -8.5,20.5
+ pos: 80.5,3.5
parent: 2
- - uid: 10960
+ - uid: 6438
components:
- type: Transform
- pos: -9.5,20.5
+ pos: 81.5,-9.5
parent: 2
- - uid: 10961
+ - uid: 6855
components:
- type: Transform
- pos: -10.5,20.5
+ pos: 25.5,-18.5
parent: 2
- - uid: 10962
+ - uid: 6933
components:
- type: Transform
- pos: -11.5,20.5
+ pos: -25.5,40.5
parent: 2
- - uid: 10963
+ - uid: 7133
components:
- type: Transform
- pos: -12.5,20.5
+ pos: 17.5,-20.5
parent: 2
- - uid: 10964
+ - uid: 7202
components:
- type: Transform
- pos: -13.5,20.5
+ pos: -31.5,6.5
parent: 2
- - uid: 10965
+ - uid: 7204
components:
- type: Transform
- pos: -14.5,20.5
+ pos: -25.5,1.5
parent: 2
- - uid: 10966
+ - uid: 7205
components:
- type: Transform
- pos: -15.5,20.5
+ pos: -25.5,2.5
parent: 2
- - uid: 10967
+ - uid: 7206
components:
- type: Transform
- pos: -16.5,20.5
+ pos: -26.5,6.5
parent: 2
- - uid: 10968
+ - uid: 7293
components:
- type: Transform
- pos: -17.5,20.5
+ pos: -25.5,26.5
parent: 2
- - uid: 10969
+ - uid: 7323
components:
- type: Transform
- pos: -18.5,20.5
+ pos: -95.5,-33.5
parent: 2
- - uid: 10970
+ - uid: 7404
components:
- type: Transform
- pos: -19.5,20.5
+ pos: -24.5,40.5
parent: 2
- - uid: 10971
+ - uid: 7466
components:
- type: Transform
- pos: -20.5,20.5
+ pos: -46.5,56.5
parent: 2
- - uid: 10972
+ - uid: 7467
components:
- type: Transform
- pos: -21.5,20.5
+ pos: -6.5,70.5
parent: 2
- - uid: 10973
+ - uid: 7473
components:
- type: Transform
- pos: -22.5,20.5
+ pos: -4.5,70.5
parent: 2
- - uid: 10974
+ - uid: 7474
components:
- type: Transform
- pos: -23.5,20.5
+ pos: -9.5,68.5
parent: 2
- - uid: 10975
+ - uid: 7488
components:
- type: Transform
- pos: -24.5,20.5
+ pos: -7.5,69.5
parent: 2
- - uid: 10976
+ - uid: 7489
components:
- type: Transform
- pos: -25.5,20.5
+ pos: -11.5,68.5
parent: 2
- - uid: 10977
+ - uid: 7492
components:
- type: Transform
- pos: -26.5,20.5
+ pos: -51.5,59.5
parent: 2
- - uid: 10978
+ - uid: 7553
components:
- type: Transform
- pos: -27.5,20.5
+ pos: -23.5,40.5
parent: 2
- - uid: 10979
+ - uid: 7581
components:
- type: Transform
- pos: -28.5,20.5
+ pos: -43.5,69.5
parent: 2
- - uid: 10980
+ - uid: 7630
components:
- type: Transform
- pos: -29.5,20.5
+ pos: -69.5,24.5
parent: 2
- - uid: 10981
+ - uid: 7691
components:
- type: Transform
- pos: -30.5,20.5
+ pos: -22.5,40.5
parent: 2
- - uid: 10982
+ - uid: 7694
components:
- type: Transform
- pos: -31.5,20.5
+ pos: -96.5,-33.5
parent: 2
- - uid: 10983
+ - uid: 7710
components:
- type: Transform
- pos: -32.5,20.5
+ pos: -97.5,-33.5
parent: 2
- - uid: 10985
+ - uid: 7715
components:
- type: Transform
- pos: -33.5,19.5
+ pos: -95.5,-35.5
parent: 2
- - uid: 10986
+ - uid: 7808
components:
- type: Transform
- pos: -34.5,19.5
+ pos: 23.5,-26.5
parent: 2
- - uid: 10987
+ - uid: 7941
components:
- type: Transform
- pos: -35.5,19.5
+ pos: 69.5,38.5
parent: 2
- - uid: 10988
+ - uid: 7964
components:
- type: Transform
- pos: -36.5,19.5
+ pos: -51.5,56.5
parent: 2
- - uid: 10989
+ - uid: 7968
components:
- type: Transform
- pos: -36.5,18.5
+ pos: -21.5,40.5
parent: 2
- - uid: 10990
+ - uid: 8017
components:
- type: Transform
- pos: -37.5,18.5
+ pos: 22.5,-26.5
parent: 2
- - uid: 10991
+ - uid: 8019
components:
- type: Transform
- pos: -37.5,17.5
+ pos: -20.5,40.5
parent: 2
- - uid: 10992
+ - uid: 8137
components:
- type: Transform
- pos: -38.5,17.5
+ pos: 7.5,-28.5
parent: 2
- - uid: 10993
+ - uid: 8147
components:
- type: Transform
- pos: -39.5,17.5
+ pos: -71.5,-33.5
parent: 2
- - uid: 10994
+ - uid: 8153
components:
- type: Transform
- pos: -39.5,16.5
+ pos: -70.5,-33.5
parent: 2
- - uid: 10995
+ - uid: 8283
components:
- type: Transform
- pos: -41.5,16.5
+ pos: -52.5,54.5
parent: 2
- - uid: 10996
+ - uid: 8302
components:
- type: Transform
- pos: -40.5,16.5
+ pos: 81.5,5.5
parent: 2
- - uid: 10997
+ - uid: 8303
components:
- type: Transform
- pos: -42.5,16.5
+ pos: 85.5,11.5
parent: 2
- - uid: 10998
+ - uid: 8305
components:
- type: Transform
- pos: -43.5,16.5
+ pos: 85.5,9.5
parent: 2
- - uid: 10999
+ - uid: 8315
components:
- type: Transform
- pos: -44.5,16.5
+ pos: -51.5,54.5
parent: 2
- - uid: 11000
+ - uid: 8317
components:
- type: Transform
- pos: -44.5,15.5
+ pos: -51.5,57.5
parent: 2
- - uid: 11001
+ - uid: 8318
components:
- type: Transform
- pos: -44.5,14.5
+ pos: -51.5,58.5
parent: 2
- - uid: 11002
+ - uid: 8319
components:
- type: Transform
- pos: -44.5,13.5
+ pos: -51.5,55.5
parent: 2
- - uid: 11003
+ - uid: 8323
components:
- type: Transform
- pos: -44.5,12.5
+ pos: 39.5,15.5
parent: 2
- - uid: 11004
+ - uid: 8344
components:
- type: Transform
- pos: -44.5,11.5
+ pos: 83.5,8.5
parent: 2
- - uid: 11005
+ - uid: 8406
components:
- type: Transform
- pos: -44.5,10.5
+ pos: 5.5,46.5
parent: 2
- - uid: 11006
+ - uid: 8477
components:
- type: Transform
- pos: -44.5,9.5
+ pos: 28.5,-28.5
parent: 2
- - uid: 11007
+ - uid: 8479
components:
- type: Transform
- pos: -44.5,8.5
+ pos: 84.5,8.5
parent: 2
- - uid: 11263
+ - uid: 8490
components:
- type: Transform
- pos: -51.5,63.5
+ pos: 83.5,6.5
parent: 2
- - uid: 11414
+ - uid: 8498
components:
- type: Transform
- pos: 1.5,-21.5
+ pos: 85.5,10.5
parent: 2
- - uid: 11415
+ - uid: 8499
components:
- type: Transform
- pos: 2.5,-21.5
+ pos: 85.5,8.5
parent: 2
- - uid: 11605
+ - uid: 8500
components:
- type: Transform
- pos: 52.5,-59.5
+ pos: 85.5,13.5
parent: 2
- - uid: 11606
+ - uid: 8502
components:
- type: Transform
- pos: 63.5,-44.5
+ pos: 85.5,16.5
parent: 2
- - uid: 11608
+ - uid: 8503
components:
- type: Transform
- pos: 64.5,-44.5
+ pos: 85.5,14.5
parent: 2
- - uid: 11609
+ - uid: 8639
components:
- type: Transform
- pos: 53.5,-44.5
+ pos: -70.5,24.5
parent: 2
- - uid: 11610
+ - uid: 8644
components:
- type: Transform
- pos: 54.5,-45.5
+ pos: 85.5,15.5
parent: 2
- - uid: 11611
+ - uid: 8690
components:
- type: Transform
- pos: 56.5,-45.5
+ pos: -92.5,-35.5
parent: 2
- - uid: 11612
+ - uid: 8768
components:
- type: Transform
- pos: 56.5,-46.5
+ pos: -43.5,20.5
parent: 2
- - uid: 11613
+ - uid: 8771
components:
- type: Transform
- pos: 55.5,-50.5
+ pos: -47.5,16.5
parent: 2
- - uid: 11614
+ - uid: 8825
components:
- type: Transform
- pos: 52.5,-44.5
+ pos: 28.5,-29.5
parent: 2
- - uid: 11615
+ - uid: 8868
components:
- type: Transform
- pos: 53.5,-45.5
+ pos: -60.5,35.5
parent: 2
- - uid: 11616
+ - uid: 8932
components:
- type: Transform
- pos: 59.5,-44.5
+ pos: -61.5,27.5
parent: 2
- - uid: 11617
+ - uid: 8940
components:
- type: Transform
- pos: 60.5,-44.5
+ pos: -61.5,26.5
parent: 2
- - uid: 11636
+ - uid: 8947
components:
- type: Transform
- pos: 3.5,-21.5
+ pos: -61.5,29.5
parent: 2
- - uid: 11639
+ - uid: 8948
components:
- type: Transform
- pos: -45.5,56.5
+ pos: -61.5,28.5
parent: 2
- - uid: 11650
+ - uid: 8956
components:
- type: Transform
- pos: 1.5,-22.5
+ pos: -61.5,30.5
parent: 2
- - uid: 11692
+ - uid: 8977
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: 39.5,16.5
parent: 2
- - uid: 11693
+ - uid: 8978
components:
- type: Transform
- pos: -33.5,-17.5
+ pos: -62.5,36.5
parent: 2
- - uid: 11694
+ - uid: 8980
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -63.5,35.5
parent: 2
- - uid: 11695
+ - uid: 8982
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -61.5,36.5
parent: 2
- - uid: 11696
+ - uid: 9052
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: 24.5,-26.5
parent: 2
- - uid: 11697
+ - uid: 9057
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: -97.5,-34.5
parent: 2
- - uid: 11698
+ - uid: 9133
components:
- type: Transform
- pos: -33.5,-22.5
+ pos: -13.5,40.5
parent: 2
- - uid: 11699
+ - uid: 9134
components:
- type: Transform
- pos: -33.5,-23.5
+ pos: -12.5,40.5
parent: 2
- - uid: 11700
+ - uid: 9218
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: -26.5,51.5
parent: 2
- - uid: 11701
+ - uid: 9228
components:
- type: Transform
- pos: -33.5,-25.5
+ pos: -20.5,45.5
parent: 2
- - uid: 11702
+ - uid: 9305
components:
- type: Transform
- pos: -33.5,-26.5
+ pos: -18.5,45.5
parent: 2
- - uid: 11703
+ - uid: 9317
components:
- type: Transform
- pos: -33.5,-27.5
+ pos: -40.5,74.5
parent: 2
- - uid: 11704
+ - uid: 9347
components:
- type: Transform
- pos: -32.5,-27.5
+ pos: 84.5,-9.5
parent: 2
- - uid: 11705
+ - uid: 9515
components:
- type: Transform
- pos: -31.5,-27.5
+ pos: -5.5,64.5
parent: 2
- - uid: 11706
+ - uid: 9516
components:
- type: Transform
- pos: -30.5,-27.5
+ pos: -3.5,64.5
parent: 2
- - uid: 11707
+ - uid: 9517
components:
- type: Transform
- pos: -29.5,-27.5
+ pos: -17.5,45.5
parent: 2
- - uid: 11708
+ - uid: 9542
components:
- type: Transform
- pos: -28.5,-27.5
+ pos: -7.5,64.5
parent: 2
- - uid: 11709
+ - uid: 9545
components:
- type: Transform
- pos: -27.5,-27.5
+ pos: -19.5,45.5
parent: 2
- - uid: 11710
+ - uid: 9561
components:
- type: Transform
- pos: -26.5,-27.5
+ pos: -12.5,64.5
parent: 2
- - uid: 11711
+ - uid: 9562
components:
- type: Transform
- pos: -26.5,-28.5
+ pos: -26.5,64.5
parent: 2
- - uid: 11868
+ - uid: 9564
components:
- type: Transform
- pos: -63.5,-21.5
+ pos: -26.5,63.5
parent: 2
- - uid: 11869
+ - uid: 9565
components:
- type: Transform
- pos: -62.5,-21.5
+ pos: -26.5,62.5
parent: 2
- - uid: 11964
+ - uid: 9566
components:
- type: Transform
- pos: 7.5,-16.5
+ pos: -26.5,61.5
parent: 2
- - uid: 11965
+ - uid: 9569
components:
- type: Transform
- pos: 7.5,-17.5
+ pos: -26.5,60.5
parent: 2
- - uid: 11966
+ - uid: 9573
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: -26.5,59.5
parent: 2
- - uid: 11967
+ - uid: 9575
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: -26.5,58.5
parent: 2
- - uid: 11968
+ - uid: 9576
components:
- type: Transform
- pos: 9.5,-18.5
+ pos: -26.5,57.5
parent: 2
- - uid: 11969
+ - uid: 9577
components:
- type: Transform
- pos: 10.5,-18.5
+ pos: -26.5,56.5
parent: 2
- - uid: 11970
+ - uid: 9708
components:
- type: Transform
- pos: 11.5,-18.5
+ pos: -94.5,-35.5
parent: 2
- - uid: 11971
+ - uid: 9709
components:
- type: Transform
- pos: 6.5,-18.5
+ pos: -75.5,51.5
parent: 2
- - uid: 11972
+ - uid: 9710
components:
- type: Transform
- pos: 6.5,-19.5
+ pos: -97.5,-35.5
parent: 2
- - uid: 11974
+ - uid: 9711
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: -85.5,-53.5
parent: 2
- - uid: 11975
+ - uid: 9712
components:
- type: Transform
- pos: 5.5,-21.5
+ pos: -87.5,-59.5
parent: 2
- - uid: 11976
+ - uid: 9713
components:
- type: Transform
- pos: 5.5,-22.5
+ pos: -90.5,-49.5
parent: 2
- - uid: 11977
+ - uid: 9714
components:
- type: Transform
- pos: 5.5,-23.5
+ pos: -95.5,-48.5
parent: 2
- - uid: 11978
+ - uid: 9715
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: -97.5,-50.5
parent: 2
- - uid: 11979
+ - uid: 9716
components:
- type: Transform
- pos: 5.5,-25.5
+ pos: -83.5,-48.5
parent: 2
- - uid: 11980
+ - uid: 9717
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: -86.5,-54.5
parent: 2
- - uid: 11981
+ - uid: 9718
components:
- type: Transform
- pos: 5.5,-27.5
+ pos: -84.5,-48.5
parent: 2
- - uid: 11982
+ - uid: 9719
components:
- type: Transform
- pos: 5.5,-28.5
+ pos: -84.5,-58.5
parent: 2
- - uid: 11983
+ - uid: 9720
components:
- type: Transform
- pos: 6.5,-28.5
+ pos: -81.5,-58.5
parent: 2
- - uid: 11984
+ - uid: 9723
components:
- type: Transform
- pos: 7.5,-28.5
+ pos: -84.5,-50.5
parent: 2
- - uid: 11985
+ - uid: 9724
components:
- type: Transform
- pos: 8.5,-28.5
+ pos: -85.5,-48.5
parent: 2
- - uid: 11986
+ - uid: 9725
components:
- type: Transform
- pos: 9.5,-28.5
+ pos: -84.5,-55.5
parent: 2
- - uid: 11987
+ - uid: 9726
components:
- type: Transform
- pos: 10.5,-28.5
+ pos: -85.5,-50.5
parent: 2
- - uid: 11988
+ - uid: 9727
components:
- type: Transform
- pos: 10.5,-29.5
+ pos: -84.5,-53.5
parent: 2
- - uid: 11989
+ - uid: 9728
components:
- type: Transform
- pos: 10.5,-30.5
+ pos: -86.5,-50.5
parent: 2
- - uid: 11990
+ - uid: 9729
components:
- type: Transform
- pos: 10.5,-31.5
+ pos: -83.5,-53.5
parent: 2
- - uid: 11991
+ - uid: 9730
components:
- type: Transform
- pos: 10.5,-32.5
+ pos: -97.5,-53.5
parent: 2
- - uid: 11992
+ - uid: 9731
components:
- type: Transform
- pos: 10.5,-33.5
+ pos: -92.5,-53.5
parent: 2
- - uid: 11993
+ - uid: 9732
components:
- type: Transform
- pos: 10.5,-34.5
+ pos: -82.5,-53.5
parent: 2
- - uid: 11994
+ - uid: 9736
components:
- type: Transform
- pos: 10.5,-35.5
+ pos: -70.5,51.5
parent: 2
- - uid: 11995
+ - uid: 9738
components:
- type: Transform
- pos: 10.5,-36.5
+ pos: -76.5,51.5
parent: 2
- - uid: 11996
+ - uid: 9741
components:
- type: Transform
- pos: 10.5,-37.5
+ pos: -69.5,51.5
parent: 2
- - uid: 11997
+ - uid: 9743
components:
- type: Transform
- pos: 9.5,-37.5
+ pos: 88.5,-9.5
parent: 2
- - uid: 11998
+ - uid: 9748
components:
- type: Transform
- pos: 8.5,-37.5
+ pos: 58.5,-79.5
parent: 2
- - uid: 11999
+ - uid: 9749
components:
- type: Transform
- pos: 7.5,-37.5
+ pos: 64.5,-45.5
parent: 2
- - uid: 12000
+ - uid: 9750
components:
- type: Transform
- pos: 6.5,-37.5
+ pos: 59.5,-49.5
parent: 2
- - uid: 12001
+ - uid: 9751
components:
- type: Transform
- pos: 5.5,-37.5
+ pos: 61.5,-49.5
parent: 2
- - uid: 12002
+ - uid: 9752
components:
- type: Transform
- pos: 4.5,-37.5
+ pos: 65.5,-50.5
parent: 2
- - uid: 12005
+ - uid: 9754
components:
- type: Transform
- pos: 1.5,-37.5
+ pos: -62.5,40.5
parent: 2
- - uid: 12008
+ - uid: 9755
components:
- type: Transform
- pos: -1.5,-37.5
+ pos: -63.5,40.5
parent: 2
- - uid: 12009
+ - uid: 9756
components:
- type: Transform
- pos: -2.5,-37.5
+ pos: -65.5,40.5
parent: 2
- - uid: 12010
+ - uid: 9757
components:
- type: Transform
- pos: -3.5,-37.5
+ pos: -66.5,40.5
parent: 2
- - uid: 12011
+ - uid: 9758
components:
- type: Transform
- pos: -4.5,-37.5
+ pos: -66.5,41.5
parent: 2
- - uid: 12012
+ - uid: 9759
components:
- type: Transform
- pos: -5.5,-37.5
+ pos: -66.5,43.5
parent: 2
- - uid: 12013
+ - uid: 9760
components:
- type: Transform
- pos: -6.5,-37.5
+ pos: -66.5,44.5
parent: 2
- - uid: 12014
+ - uid: 9761
components:
- type: Transform
- pos: -6.5,-36.5
+ pos: -66.5,45.5
parent: 2
- - uid: 12015
+ - uid: 9762
components:
- type: Transform
- pos: -6.5,-35.5
+ pos: -66.5,46.5
parent: 2
- - uid: 12016
+ - uid: 9763
components:
- type: Transform
- pos: -6.5,-34.5
+ pos: -66.5,50.5
parent: 2
- - uid: 12017
+ - uid: 9764
components:
- type: Transform
- pos: -6.5,-33.5
+ pos: -66.5,51.5
parent: 2
- - uid: 12018
+ - uid: 9765
components:
- type: Transform
- pos: -6.5,-32.5
+ pos: -67.5,51.5
parent: 2
- - uid: 12019
+ - uid: 9766
components:
- type: Transform
- pos: -6.5,-31.5
+ pos: 62.5,-61.5
parent: 2
- - uid: 12020
+ - uid: 9767
components:
- type: Transform
- pos: -6.5,-30.5
+ pos: 60.5,-61.5
parent: 2
- - uid: 12021
+ - uid: 9768
components:
- type: Transform
- pos: -6.5,-29.5
+ pos: 50.5,-61.5
parent: 2
- - uid: 12022
+ - uid: 9770
components:
- type: Transform
- pos: -6.5,-28.5
+ pos: -73.5,51.5
parent: 2
- - uid: 12023
+ - uid: 9771
components:
- type: Transform
- pos: -5.5,-28.5
+ pos: 48.5,-61.5
parent: 2
- - uid: 12024
+ - uid: 9772
components:
- type: Transform
- pos: -4.5,-28.5
+ pos: 67.5,-85.5
parent: 2
- - uid: 12025
+ - uid: 9773
components:
- type: Transform
- pos: -3.5,-28.5
+ pos: 63.5,-86.5
parent: 2
- - uid: 12026
+ - uid: 9774
components:
- type: Transform
- pos: -2.5,-28.5
+ pos: -72.5,51.5
parent: 2
- - uid: 12027
+ - uid: 9775
components:
- type: Transform
- pos: -1.5,-28.5
+ pos: -71.5,51.5
parent: 2
- - uid: 12028
+ - uid: 9776
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: 57.5,-80.5
parent: 2
- - uid: 12029
+ - uid: 9777
components:
- type: Transform
- pos: 0.5,-28.5
+ pos: 57.5,-76.5
parent: 2
- - uid: 12030
+ - uid: 9778
components:
- type: Transform
- pos: 1.5,-28.5
+ pos: 50.5,-51.5
parent: 2
- - uid: 12034
+ - uid: 9779
components:
- type: Transform
- pos: -1.5,-27.5
+ pos: 50.5,-49.5
parent: 2
- - uid: 12035
+ - uid: 9780
components:
- type: Transform
- pos: -1.5,-26.5
+ pos: 51.5,-49.5
parent: 2
- - uid: 12036
+ - uid: 9781
components:
- type: Transform
- pos: -1.5,-25.5
+ pos: 52.5,-49.5
parent: 2
- - uid: 12037
+ - uid: 9782
components:
- type: Transform
- pos: -1.5,-24.5
+ pos: 55.5,-45.5
parent: 2
- - uid: 12038
+ - uid: 9783
components:
- type: Transform
- pos: -1.5,-23.5
+ pos: 57.5,-45.5
parent: 2
- - uid: 12039
+ - uid: 9797
components:
- type: Transform
- pos: -1.5,-22.5
+ pos: -33.5,68.5
parent: 2
- - uid: 12040
+ - uid: 9802
components:
- type: Transform
- pos: -1.5,-21.5
+ pos: -92.5,-58.5
parent: 2
- - uid: 12041
+ - uid: 9803
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: -95.5,-58.5
parent: 2
- - uid: 12042
+ - uid: 9804
components:
- type: Transform
- pos: -2.5,-20.5
+ pos: -98.5,-34.5
parent: 2
- - uid: 12044
+ - uid: 9805
components:
- type: Transform
- pos: -3.5,-19.5
+ pos: -96.5,-35.5
parent: 2
- - uid: 12045
+ - uid: 9806
components:
- type: Transform
- pos: -4.5,-19.5
+ pos: -89.5,-62.5
parent: 2
- - uid: 12046
+ - uid: 9809
components:
- type: Transform
- pos: -4.5,-18.5
+ pos: -87.5,-64.5
parent: 2
- - uid: 12047
+ - uid: 9810
components:
- type: Transform
- pos: -4.5,-17.5
+ pos: -86.5,-63.5
parent: 2
- - uid: 12048
+ - uid: 9812
components:
- type: Transform
- pos: -4.5,-16.5
+ pos: -89.5,-64.5
parent: 2
- - uid: 12625
+ - uid: 9813
components:
- type: Transform
- pos: 35.5,33.5
+ pos: -82.5,-34.5
parent: 2
- - uid: 12646
+ - uid: 9814
components:
- type: Transform
- pos: 38.5,33.5
+ pos: -77.5,-34.5
parent: 2
- - uid: 12680
+ - uid: 9816
components:
- type: Transform
- pos: 36.5,33.5
+ pos: -83.5,-34.5
parent: 2
- - uid: 12788
+ - uid: 9817
components:
- type: Transform
- pos: 53.5,9.5
+ pos: -76.5,-34.5
parent: 2
- - uid: 12789
+ - uid: 9820
components:
- type: Transform
- pos: 53.5,8.5
+ pos: -80.5,-34.5
parent: 2
- - uid: 12790
+ - uid: 9827
components:
- type: Transform
- pos: 53.5,7.5
+ pos: -89.5,-48.5
parent: 2
- - uid: 12791
+ - uid: 9828
components:
- type: Transform
- pos: 53.5,6.5
+ pos: -89.5,-49.5
parent: 2
- - uid: 12792
+ - uid: 9830
components:
- type: Transform
- pos: 53.5,5.5
+ pos: -89.5,-50.5
parent: 2
- - uid: 12793
+ - uid: 9831
components:
- type: Transform
- pos: 53.5,4.5
+ pos: -89.5,-61.5
parent: 2
- - uid: 12794
+ - uid: 9834
components:
- type: Transform
- pos: 53.5,3.5
+ pos: -78.5,51.5
parent: 2
- - uid: 12795
+ - uid: 9836
components:
- type: Transform
- pos: 54.5,3.5
+ pos: -85.5,-63.5
parent: 2
- - uid: 12796
+ - uid: 9838
components:
- type: Transform
- pos: 54.5,2.5
+ pos: -81.5,-34.5
parent: 2
- - uid: 12797
+ - uid: 9839
components:
- type: Transform
- pos: 54.5,1.5
+ pos: -84.5,-34.5
parent: 2
- - uid: 12798
+ - uid: 9849
components:
- type: Transform
- pos: 54.5,0.5
+ pos: -85.5,-34.5
parent: 2
- - uid: 12799
+ - uid: 9881
components:
- type: Transform
- pos: 54.5,-0.5
+ pos: -54.5,35.5
parent: 2
- - uid: 12800
+ - uid: 9898
components:
- type: Transform
- pos: 54.5,-1.5
+ pos: -57.5,39.5
parent: 2
- - uid: 12801
+ - uid: 9903
components:
- type: Transform
- pos: 53.5,-1.5
+ pos: -57.5,40.5
parent: 2
- - uid: 12802
+ - uid: 9904
components:
- type: Transform
- pos: 52.5,-1.5
+ pos: -58.5,40.5
parent: 2
- - uid: 12803
+ - uid: 9905
components:
- type: Transform
- pos: 51.5,-1.5
+ pos: -56.5,34.5
parent: 2
- - uid: 12804
+ - uid: 9909
components:
- type: Transform
- pos: 79.5,-0.5
+ pos: -63.5,36.5
parent: 2
- - uid: 12805
+ - uid: 9911
components:
- type: Transform
- pos: 79.5,-1.5
+ pos: -57.5,34.5
parent: 2
- - uid: 12806
+ - uid: 9912
components:
- type: Transform
- pos: 79.5,-2.5
+ pos: -58.5,34.5
parent: 2
- - uid: 12807
+ - uid: 9913
components:
- type: Transform
- pos: 79.5,-3.5
+ pos: 89.5,-9.5
parent: 2
- - uid: 12808
+ - uid: 9914
components:
- type: Transform
- pos: 78.5,-3.5
+ pos: -59.5,34.5
parent: 2
- - uid: 12809
+ - uid: 9915
components:
- type: Transform
- pos: 77.5,-3.5
+ pos: 89.5,-8.5
parent: 2
- - uid: 12810
+ - uid: 9916
components:
- type: Transform
- pos: 76.5,-3.5
+ pos: 89.5,-7.5
parent: 2
- - uid: 12811
+ - uid: 9941
components:
- type: Transform
- pos: 75.5,-3.5
+ pos: -89.5,-63.5
parent: 2
- - uid: 12812
+ - uid: 9947
components:
- type: Transform
- pos: 74.5,-3.5
+ pos: -88.5,-64.5
parent: 2
- - uid: 12813
+ - uid: 9950
components:
- type: Transform
- pos: 73.5,-3.5
+ pos: -54.5,38.5
parent: 2
- - uid: 12814
+ - uid: 9951
components:
- type: Transform
- pos: 72.5,-3.5
+ pos: -54.5,36.5
parent: 2
- - uid: 12815
+ - uid: 9954
components:
- type: Transform
- pos: 71.5,-3.5
+ pos: -54.5,34.5
parent: 2
- - uid: 12816
+ - uid: 9957
components:
- type: Transform
- pos: 70.5,-3.5
+ pos: -58.5,41.5
parent: 2
- - uid: 12817
+ - uid: 9958
components:
- type: Transform
- pos: 69.5,-3.5
+ pos: -57.5,41.5
parent: 2
- - uid: 12818
+ - uid: 9959
components:
- type: Transform
- pos: 68.5,-3.5
+ pos: -60.5,41.5
parent: 2
- - uid: 12819
+ - uid: 9960
components:
- type: Transform
- pos: 67.5,-3.5
+ pos: -61.5,41.5
parent: 2
- - uid: 12820
+ - uid: 9961
components:
- type: Transform
- pos: 66.5,-3.5
+ pos: -61.5,40.5
parent: 2
- - uid: 12821
+ - uid: 9967
components:
- type: Transform
- pos: 65.5,-3.5
+ pos: -59.5,41.5
parent: 2
- - uid: 12822
+ - uid: 9968
components:
- type: Transform
- pos: 64.5,-3.5
+ pos: -55.5,34.5
parent: 2
- - uid: 12823
+ - uid: 9969
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: -54.5,39.5
parent: 2
- - uid: 12824
+ - uid: 9970
components:
- type: Transform
- pos: 62.5,-3.5
+ pos: -55.5,39.5
parent: 2
- - uid: 12825
+ - uid: 9971
components:
- type: Transform
- pos: 61.5,-3.5
+ pos: -56.5,39.5
parent: 2
- - uid: 12826
+ - uid: 9972
components:
- type: Transform
- pos: 60.5,-3.5
+ pos: -54.5,37.5
parent: 2
- - uid: 12827
+ - uid: 9973
components:
- type: Transform
- pos: 59.5,-3.5
+ pos: -58.5,39.5
parent: 2
- - uid: 12828
+ - uid: 9977
components:
- type: Transform
- pos: 58.5,-3.5
+ pos: -63.5,34.5
parent: 2
- - uid: 12829
+ - uid: 9978
components:
- type: Transform
- pos: 57.5,-3.5
+ pos: -64.5,34.5
parent: 2
- - uid: 12830
+ - uid: 9979
components:
- type: Transform
- pos: 56.5,-3.5
+ pos: -65.5,34.5
parent: 2
- - uid: 12831
+ - uid: 9980
components:
- type: Transform
- pos: 55.5,-3.5
+ pos: -66.5,34.5
parent: 2
- - uid: 12832
+ - uid: 9981
components:
- type: Transform
- pos: 54.5,-3.5
+ pos: -67.5,34.5
parent: 2
- - uid: 12833
+ - uid: 9987
components:
- type: Transform
- pos: 54.5,-2.5
+ pos: -68.5,29.5
parent: 2
- - uid: 12834
+ - uid: 9988
components:
- type: Transform
- pos: 79.5,-4.5
+ pos: -68.5,28.5
parent: 2
- - uid: 12835
+ - uid: 9989
components:
- type: Transform
- pos: 79.5,-5.5
+ pos: -68.5,27.5
parent: 2
- - uid: 12836
+ - uid: 9990
components:
- type: Transform
- pos: 79.5,-6.5
+ pos: -68.5,26.5
parent: 2
- - uid: 12837
+ - uid: 9991
components:
- type: Transform
- pos: 78.5,-6.5
+ pos: -68.5,25.5
parent: 2
- - uid: 12838
+ - uid: 9992
components:
- type: Transform
- pos: 78.5,-7.5
+ pos: -68.5,24.5
parent: 2
- - uid: 12839
+ - uid: 9993
components:
- type: Transform
- pos: 78.5,-8.5
+ pos: -68.5,23.5
parent: 2
- - uid: 12840
+ - uid: 9994
components:
- type: Transform
- pos: 77.5,-8.5
+ pos: -68.5,22.5
parent: 2
- - uid: 12841
+ - uid: 9995
components:
- type: Transform
- pos: 77.5,-9.5
+ pos: -68.5,21.5
parent: 2
- - uid: 12842
+ - uid: 9996
components:
- type: Transform
- pos: 77.5,-10.5
+ pos: -68.5,20.5
parent: 2
- - uid: 12843
+ - uid: 9997
components:
- type: Transform
- pos: 76.5,-10.5
+ pos: -68.5,19.5
parent: 2
- - uid: 12844
+ - uid: 9998
components:
- type: Transform
- pos: 76.5,-11.5
+ pos: -67.5,19.5
parent: 2
- - uid: 12845
+ - uid: 9999
components:
- type: Transform
- pos: 76.5,-12.5
+ pos: -66.5,19.5
parent: 2
- - uid: 12846
+ - uid: 10000
components:
- type: Transform
- pos: 76.5,-13.5
+ pos: -65.5,19.5
parent: 2
- - uid: 12847
+ - uid: 10001
components:
- type: Transform
- pos: 76.5,-14.5
+ pos: -65.5,18.5
parent: 2
- - uid: 12848
+ - uid: 10002
components:
- type: Transform
- pos: 76.5,-15.5
+ pos: -65.5,17.5
parent: 2
- - uid: 12849
+ - uid: 10003
components:
- type: Transform
- pos: 76.5,-16.5
+ pos: -65.5,16.5
parent: 2
- - uid: 12850
+ - uid: 10004
components:
- type: Transform
- pos: 76.5,-17.5
+ pos: -65.5,15.5
parent: 2
- - uid: 12851
+ - uid: 10005
components:
- type: Transform
- pos: 76.5,-18.5
+ pos: -65.5,14.5
parent: 2
- - uid: 12852
+ - uid: 10006
components:
- type: Transform
- pos: 76.5,-19.5
+ pos: -65.5,13.5
parent: 2
- - uid: 12853
+ - uid: 10007
components:
- type: Transform
- pos: 76.5,-20.5
+ pos: -65.5,12.5
parent: 2
- - uid: 12854
+ - uid: 10008
components:
- type: Transform
- pos: 75.5,-20.5
+ pos: -65.5,11.5
parent: 2
- - uid: 12855
+ - uid: 10009
components:
- type: Transform
- pos: 74.5,-20.5
+ pos: -64.5,11.5
parent: 2
- - uid: 12856
+ - uid: 10010
components:
- type: Transform
- pos: 73.5,-20.5
+ pos: -64.5,10.5
parent: 2
- - uid: 12857
+ - uid: 10011
components:
- type: Transform
- pos: 72.5,-20.5
+ pos: -64.5,9.5
parent: 2
- - uid: 12858
+ - uid: 10012
components:
- type: Transform
- pos: 71.5,-20.5
+ pos: -64.5,8.5
parent: 2
- - uid: 12859
+ - uid: 10129
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: 32.5,52.5
parent: 2
- - uid: 12860
+ - uid: 10266
components:
- type: Transform
- pos: 70.5,-21.5
+ pos: -25.5,43.5
parent: 2
- - uid: 12861
+ - uid: 10344
components:
- type: Transform
- pos: 70.5,-22.5
+ pos: -23.5,64.5
parent: 2
- - uid: 12862
+ - uid: 10355
components:
- type: Transform
- pos: 70.5,-23.5
+ pos: -86.5,-64.5
parent: 2
- - uid: 12863
+ - uid: 10360
components:
- type: Transform
- pos: 70.5,-24.5
+ pos: 82.5,-16.5
parent: 2
- - uid: 12864
+ - uid: 10368
components:
- type: Transform
- pos: 69.5,-24.5
+ pos: -35.5,55.5
parent: 2
- - uid: 12865
+ - uid: 10369
components:
- type: Transform
- pos: 69.5,-25.5
+ pos: -47.5,56.5
parent: 2
- - uid: 12866
+ - uid: 10370
components:
- type: Transform
- pos: 69.5,-26.5
+ pos: -47.5,55.5
parent: 2
- - uid: 12867
+ - uid: 10375
components:
- type: Transform
- pos: 68.5,-26.5
+ pos: -28.5,55.5
parent: 2
- - uid: 12868
+ - uid: 10417
components:
- type: Transform
- pos: 68.5,-27.5
+ pos: -62.5,-33.5
parent: 2
- - uid: 12869
+ - uid: 10418
components:
- type: Transform
- pos: 67.5,-27.5
+ pos: -63.5,-33.5
parent: 2
- - uid: 12870
+ - uid: 10419
components:
- type: Transform
- pos: 66.5,-27.5
+ pos: -64.5,-33.5
parent: 2
- - uid: 12871
+ - uid: 10420
components:
- type: Transform
- pos: 66.5,-28.5
+ pos: -65.5,-33.5
parent: 2
- - uid: 12872
+ - uid: 10421
components:
- type: Transform
- pos: 65.5,-28.5
+ pos: -63.5,-35.5
parent: 2
- - uid: 12873
+ - uid: 10422
components:
- type: Transform
- pos: 64.5,-28.5
+ pos: -64.5,-35.5
parent: 2
- - uid: 12874
+ - uid: 10423
components:
- type: Transform
- pos: 63.5,-28.5
+ pos: -65.5,-35.5
parent: 2
- - uid: 12875
+ - uid: 10424
components:
- type: Transform
- pos: 63.5,-29.5
+ pos: -65.5,-34.5
parent: 2
- - uid: 12876
+ - uid: 10425
components:
- type: Transform
- pos: 62.5,-29.5
+ pos: -66.5,-34.5
parent: 2
- - uid: 12877
+ - uid: 10426
components:
- type: Transform
- pos: 62.5,-30.5
+ pos: -67.5,-34.5
parent: 2
- - uid: 12878
+ - uid: 10427
components:
- type: Transform
- pos: 61.5,-30.5
+ pos: -77.5,51.5
parent: 2
- - uid: 12879
+ - uid: 10431
components:
- type: Transform
- pos: 60.5,-30.5
+ pos: -84.5,-38.5
parent: 2
- - uid: 12880
+ - uid: 10432
components:
- type: Transform
- pos: 59.5,-30.5
+ pos: -83.5,-38.5
parent: 2
- - uid: 12881
+ - uid: 10433
components:
- type: Transform
- pos: 58.5,-30.5
+ pos: -82.5,-38.5
parent: 2
- - uid: 12882
+ - uid: 10434
components:
- type: Transform
- pos: 57.5,-30.5
+ pos: -81.5,-38.5
parent: 2
- - uid: 12883
+ - uid: 10435
components:
- type: Transform
- pos: 56.5,-30.5
+ pos: -79.5,-34.5
parent: 2
- - uid: 12884
+ - uid: 10436
components:
- type: Transform
- pos: 55.5,-30.5
+ pos: -78.5,-34.5
parent: 2
- - uid: 12885
+ - uid: 10464
components:
- type: Transform
- pos: 54.5,-30.5
+ pos: -80.5,56.5
parent: 2
- - uid: 12886
+ - uid: 10465
components:
- type: Transform
- pos: 53.5,-30.5
+ pos: -68.5,51.5
parent: 2
- - uid: 12887
+ - uid: 10468
components:
- type: Transform
- pos: 52.5,-30.5
+ pos: -80.5,57.5
parent: 2
- - uid: 12888
+ - uid: 10470
components:
- type: Transform
- pos: 51.5,-30.5
+ pos: -80.5,55.5
parent: 2
- - uid: 12889
+ - uid: 10474
components:
- type: Transform
- pos: 60.5,-29.5
+ pos: -81.5,51.5
parent: 2
- - uid: 12890
+ - uid: 10476
components:
- type: Transform
- pos: 51.5,-31.5
+ pos: -80.5,58.5
parent: 2
- - uid: 12891
+ - uid: 10479
components:
- type: Transform
- pos: 50.5,-31.5
+ pos: -80.5,71.5
parent: 2
- - uid: 12892
+ - uid: 10504
components:
- type: Transform
- pos: 49.5,-31.5
+ pos: -80.5,63.5
parent: 2
- - uid: 12893
+ - uid: 10517
components:
- type: Transform
- pos: 49.5,-32.5
+ pos: 56.5,-42.5
parent: 2
- - uid: 12894
+ - uid: 10518
components:
- type: Transform
- pos: 49.5,-33.5
+ pos: 56.5,-43.5
parent: 2
- - uid: 12895
+ - uid: 10519
components:
- type: Transform
- pos: 48.5,-33.5
+ pos: 56.5,-44.5
parent: 2
- - uid: 12896
+ - uid: 10520
components:
- type: Transform
- pos: 47.5,-33.5
+ pos: 56.5,-46.5
parent: 2
- - uid: 12897
+ - uid: 10521
components:
- type: Transform
- pos: 46.5,-33.5
+ pos: 56.5,-49.5
parent: 2
- - uid: 12898
+ - uid: 10522
components:
- type: Transform
- pos: 45.5,-33.5
+ pos: 56.5,-53.5
parent: 2
- - uid: 12899
+ - uid: 10523
components:
- type: Transform
- pos: 44.5,-33.5
+ pos: 56.5,-71.5
parent: 2
- - uid: 12900
+ - uid: 10524
components:
- type: Transform
- pos: 44.5,-32.5
+ pos: 65.5,-45.5
parent: 2
- - uid: 12901
+ - uid: 10525
components:
- type: Transform
- pos: 44.5,-31.5
+ pos: 60.5,-49.5
parent: 2
- - uid: 12902
+ - uid: 10526
components:
- type: Transform
- pos: 44.5,-30.5
+ pos: 63.5,-49.5
parent: 2
- - uid: 12903
+ - uid: 10527
components:
- type: Transform
- pos: 44.5,-29.5
+ pos: 64.5,-51.5
parent: 2
- - uid: 12904
+ - uid: 10528
components:
- type: Transform
- pos: 44.5,-28.5
+ pos: 61.5,-61.5
parent: 2
- - uid: 12905
+ - uid: 10529
components:
- type: Transform
- pos: 44.5,-27.5
+ pos: 51.5,-61.5
parent: 2
- - uid: 12906
+ - uid: 10530
components:
- type: Transform
- pos: 44.5,-26.5
+ pos: 49.5,-61.5
parent: 2
- - uid: 12907
+ - uid: 10531
components:
- type: Transform
- pos: 45.5,-26.5
+ pos: 50.5,-64.5
parent: 2
- - uid: 12908
+ - uid: 10532
components:
- type: Transform
- pos: 46.5,-26.5
+ pos: 67.5,-84.5
parent: 2
- - uid: 12909
+ - uid: 10533
components:
- type: Transform
- pos: 46.5,-25.5
+ pos: 56.5,-80.5
parent: 2
- - uid: 12910
+ - uid: 10534
components:
- type: Transform
- pos: 46.5,-24.5
+ pos: 56.5,-75.5
parent: 2
- - uid: 12911
+ - uid: 10535
components:
- type: Transform
- pos: 46.5,-23.5
+ pos: 51.5,-51.5
parent: 2
- - uid: 12912
+ - uid: 10536
components:
- type: Transform
- pos: 46.5,-22.5
+ pos: 53.5,-49.5
parent: 2
- - uid: 12913
+ - uid: 10537
components:
- type: Transform
- pos: 46.5,-21.5
+ pos: 58.5,-45.5
parent: 2
- - uid: 12914
+ - uid: 10538
components:
- type: Transform
- pos: 46.5,-20.5
+ pos: 59.5,-45.5
parent: 2
- - uid: 12915
+ - uid: 10539
components:
- type: Transform
- pos: 46.5,-19.5
+ pos: 53.5,-50.5
parent: 2
- - uid: 12916
+ - uid: 10540
components:
- type: Transform
- pos: 46.5,-18.5
+ pos: 54.5,-50.5
parent: 2
- - uid: 12917
+ - uid: 10541
components:
- type: Transform
- pos: 46.5,-17.5
+ pos: 61.5,-56.5
parent: 2
- - uid: 12918
+ - uid: 10542
components:
- type: Transform
- pos: 42.5,-26.5
+ pos: 59.5,-59.5
parent: 2
- - uid: 12919
+ - uid: 10543
components:
- type: Transform
- pos: 41.5,-26.5
+ pos: 58.5,-60.5
parent: 2
- - uid: 12920
+ - uid: 10544
components:
- type: Transform
- pos: 40.5,-26.5
+ pos: 60.5,-59.5
parent: 2
- - uid: 12996
+ - uid: 10545
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: 59.5,-60.5
parent: 2
- - uid: 13050
+ - uid: 10546
components:
- type: Transform
- pos: 37.5,33.5
+ pos: 51.5,-69.5
parent: 2
- - uid: 13193
+ - uid: 10547
components:
- type: Transform
- pos: -61.5,25.5
+ pos: 52.5,-69.5
parent: 2
- - uid: 13194
+ - uid: 10548
components:
- type: Transform
- pos: -61.5,24.5
+ pos: 53.5,-69.5
parent: 2
- - uid: 13195
+ - uid: 10549
components:
- type: Transform
- pos: -61.5,23.5
+ pos: 49.5,-69.5
parent: 2
- - uid: 13356
+ - uid: 10550
components:
- type: Transform
- pos: 56.5,-39.5
+ pos: 57.5,-60.5
parent: 2
- - uid: 13402
+ - uid: 10551
components:
- type: Transform
- pos: 55.5,-34.5
+ pos: 63.5,-61.5
parent: 2
- - uid: 13403
+ - uid: 10552
components:
- type: Transform
- pos: 55.5,-33.5
+ pos: 48.5,-71.5
parent: 2
- - uid: 13404
+ - uid: 10553
components:
- type: Transform
- pos: 56.5,-33.5
+ pos: 48.5,-70.5
parent: 2
- - uid: 13405
+ - uid: 10554
components:
- type: Transform
- pos: 57.5,-33.5
+ pos: 47.5,-70.5
parent: 2
- - uid: 13406
+ - uid: 10555
components:
- type: Transform
- pos: 57.5,-34.5
+ pos: 59.5,-55.5
parent: 2
- - uid: 13407
+ - uid: 10556
components:
- type: Transform
- pos: 55.5,-32.5
+ pos: 59.5,-54.5
parent: 2
- - uid: 13408
+ - uid: 10557
components:
- type: Transform
- pos: 55.5,-31.5
+ pos: 60.5,-54.5
parent: 2
- - uid: 13409
+ - uid: 10558
components:
- type: Transform
- pos: 57.5,-31.5
+ pos: 63.5,-54.5
parent: 2
- - uid: 13410
+ - uid: 10559
components:
- type: Transform
- pos: 57.5,-32.5
+ pos: 63.5,-51.5
parent: 2
- - uid: 13411
+ - uid: 10560
components:
- type: Transform
- pos: 55.5,-35.5
+ pos: 61.5,-51.5
parent: 2
- - uid: 13412
+ - uid: 10561
components:
- type: Transform
- pos: 55.5,-36.5
+ pos: -66.5,49.5
parent: 2
- - uid: 13413
+ - uid: 10562
components:
- type: Transform
- pos: 55.5,-37.5
+ pos: -66.5,48.5
parent: 2
- - uid: 13414
+ - uid: 10563
components:
- type: Transform
- pos: 55.5,-38.5
+ pos: -66.5,47.5
parent: 2
- - uid: 13415
+ - uid: 10564
components:
- type: Transform
- pos: 56.5,-38.5
+ pos: -66.5,42.5
parent: 2
- - uid: 13416
+ - uid: 10565
components:
- type: Transform
- pos: 57.5,-37.5
+ pos: -64.5,40.5
parent: 2
- - uid: 13417
+ - uid: 10569
components:
- type: Transform
- pos: 57.5,-38.5
+ pos: 60.5,-51.5
parent: 2
- - uid: 13418
+ - uid: 10571
components:
- type: Transform
- pos: 57.5,-36.5
+ pos: 52.5,-64.5
parent: 2
- - uid: 13419
+ - uid: 10572
components:
- type: Transform
- pos: 57.5,-35.5
+ pos: 64.5,-54.5
parent: 2
- - uid: 13420
+ - uid: 10573
components:
- type: Transform
- pos: 56.5,-40.5
+ pos: 64.5,-55.5
parent: 2
- - uid: 13421
+ - uid: 10574
components:
- type: Transform
- pos: 61.5,-44.5
+ pos: 59.5,-51.5
parent: 2
- - uid: 13422
+ - uid: 10575
components:
- type: Transform
- pos: 62.5,-44.5
+ pos: 58.5,-50.5
parent: 2
- - uid: 13423
+ - uid: 10576
components:
- type: Transform
- pos: 59.5,-46.5
+ pos: -26.5,50.5
parent: 2
- - uid: 13424
+ - uid: 10578
components:
- type: Transform
- pos: 61.5,-46.5
+ pos: -30.5,55.5
parent: 2
- - uid: 13425
+ - uid: 10580
components:
- type: Transform
- pos: 59.5,-50.5
+ pos: 57.5,-50.5
parent: 2
- - uid: 13426
+ - uid: 10581
components:
- type: Transform
- pos: 58.5,-76.5
+ pos: 53.5,-64.5
parent: 2
- - uid: 13427
+ - uid: 10588
components:
- type: Transform
- pos: 64.5,-70.5
+ pos: 60.5,-69.5
parent: 2
- - uid: 13428
+ - uid: 10589
components:
- type: Transform
- pos: 49.5,-71.5
+ pos: 61.5,-64.5
parent: 2
- - uid: 13429
+ - uid: 10590
components:
- type: Transform
- pos: 63.5,-46.5
+ pos: 60.5,-64.5
parent: 2
- - uid: 13430
+ - uid: 10591
components:
- type: Transform
- pos: 64.5,-46.5
+ pos: 59.5,-69.5
parent: 2
- - uid: 13431
+ - uid: 10592
components:
- type: Transform
- pos: 60.5,-46.5
+ pos: 59.5,-70.5
parent: 2
- - uid: 13432
+ - uid: 10593
components:
- type: Transform
- pos: 62.5,-46.5
+ pos: 58.5,-70.5
parent: 2
- - uid: 13433
+ - uid: 10594
components:
- type: Transform
- pos: -93.5,-35.5
+ pos: 57.5,-70.5
parent: 2
- - uid: 13434
+ - uid: 10595
components:
- type: Transform
- pos: -81.5,-53.5
+ pos: 64.5,-69.5
parent: 2
- - uid: 13435
+ - uid: 10596
components:
- type: Transform
- pos: -81.5,-59.5
+ pos: 65.5,-70.5
parent: 2
- - uid: 13436
+ - uid: 10597
components:
- type: Transform
- pos: -95.5,-53.5
+ pos: 64.5,-86.5
parent: 2
- - uid: 13437
+ - uid: 10598
components:
- type: Transform
- pos: -94.5,-55.5
+ pos: 51.5,-59.5
parent: 2
- - uid: 13438
+ - uid: 10599
components:
- type: Transform
- pos: -98.5,-49.5
+ pos: 54.5,-55.5
parent: 2
- - uid: 13439
+ - uid: 10600
components:
- type: Transform
- pos: -94.5,-48.5
+ pos: 53.5,-55.5
parent: 2
- - uid: 13440
+ - uid: 10601
components:
- type: Transform
- pos: -86.5,-55.5
+ pos: 53.5,-56.5
parent: 2
- - uid: 13443
+ - uid: 10602
components:
- type: Transform
- pos: -83.5,-58.5
+ pos: 52.5,-56.5
parent: 2
- - uid: 13444
+ - uid: 10603
components:
- type: Transform
- pos: -87.5,-54.5
+ pos: 51.5,-56.5
parent: 2
- - uid: 13445
+ - uid: 10604
components:
- type: Transform
- pos: -86.5,-59.5
+ pos: 49.5,-51.5
parent: 2
- - uid: 13446
+ - uid: 10605
components:
- type: Transform
- pos: -97.5,-49.5
+ pos: 65.5,-55.5
parent: 2
- - uid: 13447
+ - uid: 10606
components:
- type: Transform
- pos: -93.5,-55.5
+ pos: 64.5,-56.5
parent: 2
- - uid: 13448
+ - uid: 10607
components:
- type: Transform
- pos: -95.5,-55.5
+ pos: 63.5,-56.5
parent: 2
- - uid: 13449
+ - uid: 10608
components:
- type: Transform
- pos: -85.5,-55.5
+ pos: 62.5,-56.5
parent: 2
- - uid: 13450
+ - uid: 10609
components:
- type: Transform
- pos: -80.5,-59.5
+ pos: 64.5,-50.5
parent: 2
- - uid: 13451
+ - uid: 10610
components:
- type: Transform
- pos: -96.5,-53.5
+ pos: 55.5,-60.5
parent: 2
- - uid: 13452
+ - uid: 10611
components:
- type: Transform
- pos: -82.5,-58.5
+ pos: 54.5,-60.5
parent: 2
- - uid: 13453
+ - uid: 10614
components:
- type: Transform
- pos: -90.5,-39.5
+ pos: 53.5,-60.5
parent: 2
- - uid: 13457
+ - uid: 10615
components:
- type: Transform
- pos: -94.5,-38.5
+ pos: 53.5,-59.5
parent: 2
- - uid: 13458
+ - uid: 10620
components:
- type: Transform
- pos: -93.5,-38.5
+ pos: -64.5,-34.5
parent: 2
- - uid: 13462
+ - uid: 10629
components:
- type: Transform
- pos: -97.5,-39.5
+ pos: -62.5,-35.5
parent: 2
- - uid: 13463
+ - uid: 10630
components:
- type: Transform
- pos: -96.5,-38.5
+ pos: -61.5,-33.5
parent: 2
- - uid: 13464
+ - uid: 10631
components:
- type: Transform
- pos: -97.5,-38.5
+ pos: -61.5,-35.5
parent: 2
- - uid: 13465
+ - uid: 10632
components:
- type: Transform
- pos: -92.5,-38.5
+ pos: -61.5,-34.5
parent: 2
- - uid: 13473
+ - uid: 10633
components:
- type: Transform
- pos: 56.5,-69.5
+ pos: -60.5,-34.5
parent: 2
- - uid: 13483
+ - uid: 10634
components:
- type: Transform
- pos: -68.5,-34.5
+ pos: -59.5,-34.5
parent: 2
- - uid: 13493
+ - uid: 10635
components:
- type: Transform
- pos: -80.5,60.5
+ pos: -58.5,-34.5
parent: 2
- - uid: 13494
+ - uid: 10636
components:
- type: Transform
- pos: 56.5,-41.5
+ pos: -58.5,-35.5
parent: 2
- - uid: 13504
+ - uid: 10637
components:
- type: Transform
- pos: 56.5,-70.5
+ pos: -57.5,-35.5
parent: 2
- - uid: 13505
+ - uid: 10638
components:
- type: Transform
- pos: 56.5,-76.5
+ pos: -56.5,-35.5
parent: 2
- - uid: 13506
+ - uid: 10639
components:
- type: Transform
- pos: 56.5,-77.5
+ pos: -58.5,-33.5
parent: 2
- - uid: 13507
+ - uid: 10640
components:
- type: Transform
- pos: 56.5,-78.5
+ pos: -57.5,-33.5
parent: 2
- - uid: 13508
+ - uid: 10641
components:
- type: Transform
- pos: 57.5,-78.5
+ pos: -56.5,-33.5
parent: 2
- - uid: 13509
+ - uid: 10642
components:
- type: Transform
- pos: 58.5,-80.5
+ pos: -55.5,-33.5
parent: 2
- - uid: 13510
+ - uid: 10643
components:
- type: Transform
- pos: 58.5,-81.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 13511
+ - uid: 10644
components:
- type: Transform
- pos: 59.5,-82.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 13512
+ - uid: 10650
components:
- type: Transform
- pos: 59.5,-83.5
+ pos: -55.5,-32.5
parent: 2
- - uid: 13513
+ - uid: 10658
components:
- type: Transform
- pos: 60.5,-83.5
+ pos: -61.5,-30.5
parent: 2
- - uid: 13514
+ - uid: 10659
components:
- type: Transform
- pos: 62.5,-83.5
+ pos: -61.5,-29.5
parent: 2
- - uid: 13515
+ - uid: 10660
components:
- type: Transform
- pos: 62.5,-84.5
+ pos: -61.5,-28.5
parent: 2
- - uid: 13516
+ - uid: 10661
components:
- type: Transform
- pos: 63.5,-84.5
+ pos: -61.5,-27.5
parent: 2
- - uid: 13518
+ - uid: 10662
components:
- type: Transform
- pos: -80.5,64.5
+ pos: -61.5,-26.5
parent: 2
- - uid: 13536
+ - uid: 10663
components:
- type: Transform
- pos: -80.5,-44.5
+ pos: -61.5,-25.5
parent: 2
- - uid: 13537
+ - uid: 10664
components:
- type: Transform
- pos: -82.5,-40.5
+ pos: -61.5,-24.5
parent: 2
- - uid: 13538
+ - uid: 10665
components:
- type: Transform
- pos: -94.5,-40.5
+ pos: -61.5,-23.5
parent: 2
- - uid: 13539
+ - uid: 10666
components:
- type: Transform
- pos: -93.5,-40.5
+ pos: -61.5,-22.5
parent: 2
- - uid: 13540
+ - uid: 10667
components:
- type: Transform
- pos: -94.5,-45.5
+ pos: -61.5,-21.5
parent: 2
- - uid: 13541
+ - uid: 10668
components:
- type: Transform
- pos: -92.5,-45.5
+ pos: -61.5,-20.5
parent: 2
- - uid: 13542
+ - uid: 10669
components:
- type: Transform
- pos: -92.5,-44.5
+ pos: -61.5,-19.5
parent: 2
- - uid: 13543
+ - uid: 10670
components:
- type: Transform
- pos: -92.5,-40.5
+ pos: -61.5,-18.5
parent: 2
- - uid: 13545
+ - uid: 10671
components:
- type: Transform
- pos: -94.5,-43.5
+ pos: -61.5,-17.5
parent: 2
- - uid: 13546
+ - uid: 10672
components:
- type: Transform
- pos: -92.5,-43.5
+ pos: -61.5,-16.5
parent: 2
- - uid: 13547
+ - uid: 10673
components:
- type: Transform
- pos: -91.5,-44.5
+ pos: -61.5,-15.5
parent: 2
- - uid: 13548
+ - uid: 10674
components:
- type: Transform
- pos: -93.5,-45.5
+ pos: -61.5,-14.5
parent: 2
- - uid: 13549
+ - uid: 10675
components:
- type: Transform
- pos: -87.5,-39.5
+ pos: -61.5,-13.5
parent: 2
- - uid: 13551
+ - uid: 10676
components:
- type: Transform
- pos: -81.5,-45.5
+ pos: -61.5,-12.5
parent: 2
- - uid: 13552
+ - uid: 10677
components:
- type: Transform
- pos: -88.5,-39.5
+ pos: -61.5,-11.5
parent: 2
- - uid: 13553
+ - uid: 10678
components:
- type: Transform
- pos: -85.5,-40.5
+ pos: -62.5,-11.5
parent: 2
- - uid: 13554
+ - uid: 10679
components:
- type: Transform
- pos: -86.5,-40.5
+ pos: -63.5,-11.5
parent: 2
- - uid: 13555
+ - uid: 10680
components:
- type: Transform
- pos: -86.5,-39.5
+ pos: -64.5,-11.5
parent: 2
- - uid: 13556
+ - uid: 10681
components:
- type: Transform
- pos: -91.5,-34.5
+ pos: -64.5,-10.5
parent: 2
- - uid: 13557
+ - uid: 10682
components:
- type: Transform
- pos: -92.5,-34.5
+ pos: -64.5,-9.5
parent: 2
- - uid: 13562
+ - uid: 10683
components:
- type: Transform
- pos: -83.5,-40.5
+ pos: -64.5,-8.5
parent: 2
- - uid: 13563
+ - uid: 10684
components:
- type: Transform
- pos: -84.5,-40.5
+ pos: -64.5,-7.5
parent: 2
- - uid: 13564
+ - uid: 10685
components:
- type: Transform
- pos: -81.5,-40.5
+ pos: -64.5,-6.5
parent: 2
- - uid: 13565
+ - uid: 10686
components:
- type: Transform
- pos: -86.5,-43.5
+ pos: -64.5,-5.5
parent: 2
- - uid: 13566
+ - uid: 10687
components:
- type: Transform
- pos: -90.5,-44.5
+ pos: -64.5,-4.5
parent: 2
- - uid: 13567
+ - uid: 10688
components:
- type: Transform
- pos: -86.5,-44.5
+ pos: -64.5,-3.5
parent: 2
- - uid: 13568
+ - uid: 10689
components:
- type: Transform
- pos: -89.5,-44.5
+ pos: -64.5,-2.5
parent: 2
- - uid: 13569
+ - uid: 10690
components:
- type: Transform
- pos: -87.5,-44.5
+ pos: -64.5,-1.5
parent: 2
- - uid: 13570
+ - uid: 10691
components:
- type: Transform
- pos: -85.5,-43.5
+ pos: -64.5,-0.5
parent: 2
- - uid: 13571
+ - uid: 10692
components:
- type: Transform
- pos: -88.5,-44.5
+ pos: -64.5,0.5
parent: 2
- - uid: 13572
+ - uid: 10693
components:
- type: Transform
- pos: -81.5,-44.5
+ pos: -64.5,1.5
parent: 2
- - uid: 13573
+ - uid: 10694
components:
- type: Transform
- pos: -97.5,-45.5
+ pos: -64.5,2.5
parent: 2
- - uid: 13574
+ - uid: 10695
components:
- type: Transform
- pos: -93.5,-43.5
+ pos: -64.5,3.5
parent: 2
- - uid: 13575
+ - uid: 10696
components:
- type: Transform
- pos: -96.5,-45.5
+ pos: -64.5,4.5
parent: 2
- - uid: 13576
+ - uid: 10697
components:
- type: Transform
- pos: -95.5,-45.5
+ pos: -64.5,5.5
parent: 2
- - uid: 13578
+ - uid: 10698
components:
- type: Transform
- pos: -98.5,-39.5
+ pos: -64.5,6.5
parent: 2
- - uid: 13592
+ - uid: 10699
components:
- type: Transform
- pos: -80.5,54.5
+ pos: -64.5,7.5
parent: 2
- - uid: 13611
+ - uid: 10700
components:
- type: Transform
- pos: -80.5,52.5
+ pos: -54.5,-35.5
parent: 2
- - uid: 13616
+ - uid: 10701
components:
- type: Transform
- pos: 56.5,-66.5
+ pos: -53.5,-35.5
parent: 2
- - uid: 13617
+ - uid: 10702
components:
- type: Transform
- pos: 56.5,-50.5
+ pos: -52.5,-35.5
parent: 2
- - uid: 13618
+ - uid: 10703
components:
- type: Transform
- pos: 56.5,-51.5
+ pos: -51.5,-35.5
parent: 2
- - uid: 13619
+ - uid: 10720
components:
- type: Transform
- pos: 56.5,-54.5
+ pos: -63.5,8.5
parent: 2
- - uid: 13620
+ - uid: 10721
components:
- type: Transform
- pos: 56.5,-59.5
+ pos: -62.5,8.5
parent: 2
- - uid: 13621
+ - uid: 10722
components:
- type: Transform
- pos: 56.5,-48.5
+ pos: -61.5,8.5
parent: 2
- - uid: 13622
+ - uid: 10723
components:
- type: Transform
- pos: 56.5,-55.5
+ pos: -60.5,8.5
parent: 2
- - uid: 13627
+ - uid: 10724
components:
- type: Transform
- pos: -74.5,51.5
+ pos: -59.5,8.5
parent: 2
- - uid: 13639
+ - uid: 10725
components:
- type: Transform
- pos: 56.5,-64.5
+ pos: -58.5,8.5
parent: 2
- - uid: 13640
+ - uid: 10726
components:
- type: Transform
- pos: 56.5,-62.5
+ pos: -57.5,8.5
parent: 2
- - uid: 13641
+ - uid: 10727
components:
- type: Transform
- pos: 56.5,-67.5
+ pos: -56.5,8.5
parent: 2
- - uid: 13642
+ - uid: 10728
components:
- type: Transform
- pos: 56.5,-60.5
+ pos: -55.5,8.5
parent: 2
- - uid: 13643
+ - uid: 10729
components:
- type: Transform
- pos: 56.5,-61.5
+ pos: -54.5,8.5
parent: 2
- - uid: 13644
+ - uid: 10730
components:
- type: Transform
- pos: 56.5,-52.5
+ pos: -53.5,8.5
parent: 2
- - uid: 13668
+ - uid: 10731
components:
- type: Transform
- pos: -96.5,-40.5
+ pos: -52.5,8.5
parent: 2
- - uid: 13669
+ - uid: 10732
components:
- type: Transform
- pos: -95.5,-40.5
+ pos: -51.5,8.5
parent: 2
- - uid: 13670
+ - uid: 10733
components:
- type: Transform
- pos: -94.5,-58.5
+ pos: -50.5,8.5
parent: 2
- - uid: 13671
+ - uid: 10734
components:
- type: Transform
- pos: -93.5,-53.5
+ pos: -49.5,8.5
parent: 2
- - uid: 13672
+ - uid: 10735
components:
- type: Transform
- pos: -86.5,-53.5
+ pos: -48.5,8.5
parent: 2
- - uid: 13676
+ - uid: 10736
components:
- type: Transform
- pos: -89.5,-39.5
+ pos: -47.5,8.5
parent: 2
- - uid: 13677
+ - uid: 10737
components:
- type: Transform
- pos: -90.5,-34.5
+ pos: -46.5,8.5
parent: 2
- - uid: 13681
+ - uid: 10738
components:
- type: Transform
- pos: -86.5,-65.5
+ pos: -45.5,8.5
parent: 2
- - uid: 13682
+ - uid: 10739
components:
- type: Transform
- pos: -84.5,-65.5
+ pos: -45.5,7.5
parent: 2
- - uid: 13683
+ - uid: 10740
components:
- type: Transform
- pos: -82.5,-65.5
+ pos: -45.5,6.5
parent: 2
- - uid: 13819
+ - uid: 10741
components:
- type: Transform
- pos: -32.5,52.5
+ pos: -45.5,5.5
parent: 2
- - uid: 13828
+ - uid: 10742
components:
- type: Transform
- pos: -46.5,68.5
+ pos: -45.5,4.5
parent: 2
- - uid: 14292
+ - uid: 10743
components:
- type: Transform
- pos: 1.5,44.5
+ pos: -46.5,4.5
parent: 2
- - uid: 14293
+ - uid: 10744
components:
- type: Transform
- pos: 1.5,43.5
+ pos: -46.5,3.5
parent: 2
- - uid: 14294
+ - uid: 10745
components:
- type: Transform
- pos: 1.5,42.5
+ pos: -46.5,2.5
parent: 2
- - uid: 14295
+ - uid: 10746
components:
- type: Transform
- pos: 1.5,41.5
+ pos: -46.5,1.5
parent: 2
- - uid: 14296
+ - uid: 10747
components:
- type: Transform
- pos: 1.5,40.5
+ pos: -46.5,0.5
parent: 2
- - uid: 14297
+ - uid: 10748
components:
- type: Transform
- pos: 1.5,39.5
+ pos: -46.5,-0.5
parent: 2
- - uid: 14298
+ - uid: 10749
components:
- type: Transform
- pos: 1.5,33.5
+ pos: -46.5,-1.5
parent: 2
- - uid: 14300
+ - uid: 10750
components:
- type: Transform
- pos: 1.5,36.5
+ pos: -46.5,-2.5
parent: 2
- - uid: 14301
+ - uid: 10751
components:
- type: Transform
- pos: 1.5,35.5
+ pos: -46.5,-3.5
parent: 2
- - uid: 14302
+ - uid: 10752
components:
- type: Transform
- pos: 1.5,34.5
+ pos: -46.5,-4.5
parent: 2
- - uid: 14303
+ - uid: 10753
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -46.5,-5.5
parent: 2
- - uid: 14304
+ - uid: 10754
components:
- type: Transform
- pos: 1.5,32.5
+ pos: -46.5,-6.5
parent: 2
- - uid: 14305
+ - uid: 10755
components:
- type: Transform
- pos: 1.5,31.5
+ pos: -46.5,-7.5
parent: 2
- - uid: 14306
+ - uid: 10756
components:
- type: Transform
- pos: 1.5,30.5
+ pos: -46.5,-8.5
parent: 2
- - uid: 14307
+ - uid: 10757
components:
- type: Transform
- pos: 1.5,29.5
+ pos: -46.5,-9.5
parent: 2
- - uid: 14308
+ - uid: 10758
components:
- type: Transform
- pos: 1.5,28.5
+ pos: -45.5,-9.5
parent: 2
- - uid: 14309
+ - uid: 10759
components:
- type: Transform
- pos: 1.5,27.5
+ pos: -45.5,-10.5
parent: 2
- - uid: 14310
+ - uid: 10760
components:
- type: Transform
- pos: 1.5,26.5
+ pos: -44.5,-10.5
parent: 2
- - uid: 14311
+ - uid: 10761
components:
- type: Transform
- pos: 1.5,25.5
+ pos: -44.5,-11.5
parent: 2
- - uid: 14312
+ - uid: 10762
components:
- type: Transform
- pos: 1.5,24.5
+ pos: -43.5,-11.5
parent: 2
- - uid: 14313
+ - uid: 10763
components:
- type: Transform
- pos: 1.5,23.5
+ pos: -43.5,-12.5
parent: 2
- - uid: 14314
+ - uid: 10764
components:
- type: Transform
- pos: 1.5,22.5
+ pos: -42.5,-12.5
parent: 2
- - uid: 14315
+ - uid: 10765
components:
- type: Transform
- pos: 1.5,21.5
+ pos: -42.5,-13.5
parent: 2
- - uid: 14316
+ - uid: 10766
components:
- type: Transform
- pos: 1.5,20.5
+ pos: -41.5,-13.5
parent: 2
- - uid: 14317
+ - uid: 10767
components:
- type: Transform
- pos: 1.5,18.5
+ pos: -41.5,-14.5
parent: 2
- - uid: 14318
+ - uid: 10768
components:
- type: Transform
- pos: 1.5,17.5
+ pos: -40.5,-14.5
parent: 2
- - uid: 14319
+ - uid: 10769
components:
- type: Transform
- pos: 1.5,16.5
+ pos: -39.5,-14.5
parent: 2
- - uid: 14320
+ - uid: 10770
components:
- type: Transform
- pos: 1.5,15.5
+ pos: -39.5,-15.5
parent: 2
- - uid: 14321
+ - uid: 10771
components:
- type: Transform
- pos: 1.5,14.5
+ pos: -38.5,-15.5
parent: 2
- - uid: 14322
+ - uid: 10772
components:
- type: Transform
- pos: 1.5,13.5
+ pos: -37.5,-15.5
parent: 2
- - uid: 14323
+ - uid: 10773
components:
- type: Transform
- pos: 1.5,12.5
+ pos: -36.5,-15.5
parent: 2
- - uid: 14324
+ - uid: 10774
components:
- type: Transform
- pos: 1.5,11.5
+ pos: -35.5,-15.5
parent: 2
- - uid: 14325
+ - uid: 10775
components:
- type: Transform
- pos: 1.5,10.5
+ pos: -34.5,-15.5
parent: 2
- - uid: 14326
+ - uid: 10776
components:
- type: Transform
- pos: 1.5,9.5
+ pos: -33.5,-15.5
parent: 2
- - uid: 14327
+ - uid: 10777
components:
- type: Transform
- pos: 1.5,8.5
+ pos: -32.5,-15.5
parent: 2
- - uid: 14328
+ - uid: 10778
components:
- type: Transform
- pos: 1.5,7.5
+ pos: -31.5,-15.5
parent: 2
- - uid: 14329
+ - uid: 10779
components:
- type: Transform
- pos: 1.5,6.5
+ pos: -30.5,-15.5
parent: 2
- - uid: 14330
+ - uid: 10780
components:
- type: Transform
- pos: 1.5,5.5
+ pos: -29.5,-15.5
parent: 2
- - uid: 14331
+ - uid: 10781
components:
- type: Transform
- pos: 1.5,4.5
+ pos: -28.5,-15.5
parent: 2
- - uid: 14332
+ - uid: 10782
components:
- type: Transform
- pos: 1.5,3.5
+ pos: -27.5,-15.5
parent: 2
- - uid: 14333
+ - uid: 10783
components:
- type: Transform
- pos: 1.5,2.5
+ pos: -26.5,-15.5
parent: 2
- - uid: 14334
+ - uid: 10784
components:
- type: Transform
- pos: 1.5,1.5
+ pos: -25.5,-15.5
parent: 2
- - uid: 14335
+ - uid: 10785
components:
- type: Transform
- pos: 1.5,0.5
+ pos: -24.5,-15.5
parent: 2
- - uid: 14336
+ - uid: 10786
components:
- type: Transform
- pos: 1.5,-0.5
+ pos: -23.5,-15.5
parent: 2
- - uid: 14337
+ - uid: 10787
components:
- type: Transform
- pos: 1.5,-1.5
+ pos: -22.5,-15.5
parent: 2
- - uid: 14338
+ - uid: 10788
components:
- type: Transform
- pos: 1.5,-2.5
+ pos: -21.5,-15.5
parent: 2
- - uid: 14339
+ - uid: 10789
components:
- type: Transform
- pos: 1.5,-3.5
+ pos: -20.5,-15.5
parent: 2
- - uid: 14340
+ - uid: 10790
components:
- type: Transform
- pos: 1.5,-4.5
+ pos: -19.5,-15.5
parent: 2
- - uid: 14341
+ - uid: 10791
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: -18.5,-15.5
parent: 2
- - uid: 14342
+ - uid: 10792
components:
- type: Transform
- pos: 1.5,-6.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 14343
+ - uid: 10793
components:
- type: Transform
- pos: 1.5,-7.5
+ pos: -16.5,-15.5
parent: 2
- - uid: 14344
+ - uid: 10794
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: -15.5,-15.5
parent: 2
- - uid: 14345
+ - uid: 10795
components:
- type: Transform
- pos: 1.5,-9.5
+ pos: -14.5,-15.5
parent: 2
- - uid: 14346
+ - uid: 10796
components:
- type: Transform
- pos: 1.5,-10.5
+ pos: -13.5,-15.5
parent: 2
- - uid: 14347
+ - uid: 10797
components:
- type: Transform
- pos: 1.5,-11.5
+ pos: -12.5,-15.5
parent: 2
- - uid: 14348
+ - uid: 10798
components:
- type: Transform
- pos: 1.5,-12.5
+ pos: -11.5,-15.5
parent: 2
- - uid: 14349
+ - uid: 10799
components:
- type: Transform
- pos: 1.5,-13.5
+ pos: -10.5,-15.5
parent: 2
- - uid: 14350
+ - uid: 10800
components:
- type: Transform
- pos: 1.5,-14.5
+ pos: -9.5,-15.5
parent: 2
- - uid: 14351
+ - uid: 10801
components:
- type: Transform
- pos: 2.5,44.5
+ pos: -8.5,-15.5
parent: 2
- - uid: 14352
+ - uid: 10802
components:
- type: Transform
- pos: 3.5,44.5
+ pos: -7.5,-15.5
parent: 2
- - uid: 14353
+ - uid: 10803
components:
- type: Transform
- pos: 4.5,44.5
+ pos: -6.5,-15.5
parent: 2
- - uid: 14354
+ - uid: 10804
components:
- type: Transform
- pos: 5.5,44.5
+ pos: -5.5,-15.5
parent: 2
- - uid: 14355
+ - uid: 10805
components:
- type: Transform
- pos: 6.5,44.5
+ pos: -4.5,-15.5
parent: 2
- - uid: 14376
+ - uid: 10806
components:
- type: Transform
- pos: 1.5,38.5
+ pos: -3.5,-15.5
parent: 2
- - uid: 14509
+ - uid: 10807
components:
- type: Transform
- pos: 32.5,51.5
+ pos: -2.5,-15.5
parent: 2
- - uid: 14510
+ - uid: 10808
components:
- type: Transform
- pos: 31.5,51.5
+ pos: -1.5,-15.5
parent: 2
- - uid: 14511
+ - uid: 10809
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -0.5,-15.5
parent: 2
- - uid: 14512
+ - uid: 10810
components:
- type: Transform
- pos: 31.5,49.5
+ pos: 0.5,-15.5
parent: 2
- - uid: 14513
+ - uid: 10811
components:
- type: Transform
- pos: 31.5,48.5
+ pos: 1.5,-15.5
parent: 2
- - uid: 14514
+ - uid: 10812
components:
- type: Transform
- pos: 31.5,47.5
+ pos: 2.5,-15.5
parent: 2
- - uid: 14515
+ - uid: 10813
components:
- type: Transform
- pos: 31.5,46.5
+ pos: 3.5,-15.5
parent: 2
- - uid: 14516
+ - uid: 10814
components:
- type: Transform
- pos: 31.5,45.5
+ pos: 4.5,-15.5
parent: 2
- - uid: 14517
+ - uid: 10815
components:
- type: Transform
- pos: 31.5,44.5
+ pos: 5.5,-15.5
parent: 2
- - uid: 14518
+ - uid: 10816
components:
- type: Transform
- pos: 31.5,43.5
+ pos: 6.5,-15.5
parent: 2
- - uid: 14519
+ - uid: 10817
components:
- type: Transform
- pos: 32.5,43.5
+ pos: 7.5,-15.5
parent: 2
- - uid: 14520
+ - uid: 10818
components:
- type: Transform
- pos: 33.5,43.5
+ pos: 8.5,-15.5
parent: 2
- - uid: 14521
+ - uid: 10819
components:
- type: Transform
- pos: 34.5,43.5
+ pos: 9.5,-15.5
parent: 2
- - uid: 14522
+ - uid: 10820
components:
- type: Transform
- pos: 34.5,42.5
+ pos: 10.5,-15.5
parent: 2
- - uid: 14523
+ - uid: 10821
components:
- type: Transform
- pos: 34.5,41.5
+ pos: 11.5,-15.5
parent: 2
- - uid: 14524
+ - uid: 10822
components:
- type: Transform
- pos: 34.5,40.5
+ pos: 12.5,-15.5
parent: 2
- - uid: 14525
+ - uid: 10823
components:
- type: Transform
- pos: 34.5,39.5
+ pos: 13.5,-15.5
parent: 2
- - uid: 14526
+ - uid: 10824
components:
- type: Transform
- pos: 34.5,38.5
+ pos: 14.5,-15.5
parent: 2
- - uid: 14527
+ - uid: 10825
components:
- type: Transform
- pos: 34.5,37.5
+ pos: 15.5,-15.5
parent: 2
- - uid: 14528
+ - uid: 10826
components:
- type: Transform
- pos: 34.5,36.5
+ pos: 16.5,-15.5
parent: 2
- - uid: 14529
+ - uid: 10827
components:
- type: Transform
- pos: 34.5,35.5
+ pos: 17.5,-15.5
parent: 2
- - uid: 14530
+ - uid: 10828
components:
- type: Transform
- pos: 34.5,34.5
+ pos: 18.5,-15.5
parent: 2
- - uid: 14531
+ - uid: 10829
components:
- type: Transform
- pos: 34.5,33.5
+ pos: 19.5,-15.5
parent: 2
- - uid: 14532
+ - uid: 10830
components:
- type: Transform
- pos: 33.5,33.5
+ pos: 20.5,-15.5
parent: 2
- - uid: 14533
+ - uid: 10831
components:
- type: Transform
- pos: 32.5,33.5
+ pos: 21.5,-15.5
parent: 2
- - uid: 14534
+ - uid: 10832
components:
- type: Transform
- pos: 31.5,33.5
+ pos: 22.5,-15.5
parent: 2
- - uid: 14535
+ - uid: 10833
components:
- type: Transform
- pos: 30.5,33.5
+ pos: 23.5,-15.5
parent: 2
- - uid: 14536
+ - uid: 10834
components:
- type: Transform
- pos: 29.5,33.5
+ pos: 24.5,-15.5
parent: 2
- - uid: 14537
+ - uid: 10835
components:
- type: Transform
- pos: 28.5,33.5
+ pos: 25.5,-15.5
parent: 2
- - uid: 14538
+ - uid: 10836
components:
- type: Transform
- pos: 27.5,33.5
+ pos: 26.5,-15.5
parent: 2
- - uid: 14539
+ - uid: 10837
components:
- type: Transform
- pos: 26.5,33.5
+ pos: 27.5,-15.5
parent: 2
- - uid: 14540
+ - uid: 10838
components:
- type: Transform
- pos: 25.5,33.5
+ pos: 28.5,-15.5
parent: 2
- - uid: 14541
+ - uid: 10839
components:
- type: Transform
- pos: 24.5,33.5
+ pos: 29.5,-15.5
parent: 2
- - uid: 14542
+ - uid: 10840
components:
- type: Transform
- pos: 23.5,33.5
+ pos: 30.5,-15.5
parent: 2
- - uid: 14543
+ - uid: 10841
components:
- type: Transform
- pos: 22.5,33.5
+ pos: 31.5,-15.5
parent: 2
- - uid: 14544
+ - uid: 10842
components:
- type: Transform
- pos: 21.5,33.5
+ pos: 32.5,-15.5
parent: 2
- - uid: 14545
+ - uid: 10843
components:
- type: Transform
- pos: 20.5,33.5
+ pos: 33.5,-15.5
parent: 2
- - uid: 14546
+ - uid: 10844
components:
- type: Transform
- pos: 19.5,33.5
+ pos: 34.5,-15.5
parent: 2
- - uid: 14547
+ - uid: 10845
components:
- type: Transform
- pos: 18.5,33.5
+ pos: 35.5,-15.5
parent: 2
- - uid: 14548
+ - uid: 10846
components:
- type: Transform
- pos: 17.5,33.5
+ pos: 36.5,-15.5
parent: 2
- - uid: 14549
+ - uid: 10847
components:
- type: Transform
- pos: 16.5,33.5
+ pos: 37.5,-15.5
parent: 2
- - uid: 14550
+ - uid: 10848
components:
- type: Transform
- pos: 15.5,33.5
+ pos: 38.5,-15.5
parent: 2
- - uid: 14551
+ - uid: 10849
components:
- type: Transform
- pos: 14.5,33.5
+ pos: 38.5,-16.5
parent: 2
- - uid: 14552
+ - uid: 10850
components:
- type: Transform
- pos: 13.5,33.5
+ pos: 39.5,-16.5
parent: 2
- - uid: 14553
+ - uid: 10851
components:
- type: Transform
- pos: 12.5,33.5
+ pos: 39.5,-17.5
parent: 2
- - uid: 14554
+ - uid: 10852
components:
- type: Transform
- pos: 11.5,33.5
+ pos: 40.5,-17.5
parent: 2
- - uid: 14555
+ - uid: 10853
components:
- type: Transform
- pos: 10.5,33.5
+ pos: 41.5,-17.5
parent: 2
- - uid: 14556
+ - uid: 10854
components:
- type: Transform
- pos: 9.5,33.5
+ pos: 42.5,-17.5
parent: 2
- - uid: 14557
+ - uid: 10855
components:
- type: Transform
- pos: 8.5,33.5
+ pos: 43.5,-17.5
parent: 2
- - uid: 14558
+ - uid: 10856
components:
- type: Transform
- pos: 7.5,33.5
+ pos: 44.5,-17.5
parent: 2
- - uid: 14559
+ - uid: 10857
components:
- type: Transform
- pos: 6.5,33.5
+ pos: 45.5,-17.5
parent: 2
- - uid: 14560
+ - uid: 10858
components:
- type: Transform
- pos: 5.5,33.5
+ pos: 43.5,-26.5
parent: 2
- - uid: 14561
+ - uid: 10859
components:
- type: Transform
- pos: 4.5,33.5
+ pos: 46.5,-16.5
parent: 2
- - uid: 14562
+ - uid: 10860
components:
- type: Transform
- pos: 3.5,33.5
+ pos: 47.5,-16.5
parent: 2
- - uid: 14563
+ - uid: 10861
components:
- type: Transform
- pos: 2.5,33.5
+ pos: 47.5,-15.5
parent: 2
- - uid: 14934
+ - uid: 10862
components:
- type: Transform
- pos: 53.5,10.5
+ pos: 48.5,-15.5
parent: 2
- - uid: 14935
+ - uid: 10863
components:
- type: Transform
- pos: 53.5,11.5
+ pos: 48.5,-14.5
parent: 2
- - uid: 14936
+ - uid: 10864
components:
- type: Transform
- pos: 53.5,12.5
+ pos: 49.5,-14.5
parent: 2
- - uid: 14937
+ - uid: 10865
components:
- type: Transform
- pos: 53.5,13.5
+ pos: 49.5,-13.5
parent: 2
- - uid: 14938
+ - uid: 10866
components:
- type: Transform
- pos: 53.5,14.5
+ pos: 50.5,-13.5
parent: 2
- - uid: 14939
+ - uid: 10867
components:
- type: Transform
- pos: 53.5,15.5
+ pos: 50.5,-12.5
parent: 2
- - uid: 14940
+ - uid: 10868
components:
- type: Transform
- pos: 53.5,16.5
+ pos: 50.5,-11.5
parent: 2
- - uid: 14941
+ - uid: 10869
components:
- type: Transform
- pos: 53.5,17.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 14942
+ - uid: 10870
components:
- type: Transform
- pos: 52.5,17.5
+ pos: 50.5,-9.5
parent: 2
- - uid: 14943
+ - uid: 10871
components:
- type: Transform
- pos: 51.5,17.5
+ pos: 50.5,-8.5
parent: 2
- - uid: 14944
+ - uid: 10872
components:
- type: Transform
- pos: 50.5,17.5
+ pos: 50.5,-7.5
parent: 2
- - uid: 15077
+ - uid: 10873
components:
- type: Transform
- pos: 24.5,21.5
+ pos: 50.5,-6.5
parent: 2
- - uid: 15107
+ - uid: 10874
components:
- type: Transform
- pos: 24.5,20.5
+ pos: 50.5,-5.5
parent: 2
- - uid: 15130
+ - uid: 10875
components:
- type: Transform
- pos: 24.5,22.5
+ pos: 50.5,-4.5
parent: 2
- - uid: 15131
+ - uid: 10876
components:
- type: Transform
- pos: 24.5,23.5
+ pos: 50.5,-3.5
parent: 2
- - uid: 15132
+ - uid: 10877
components:
- type: Transform
- pos: 24.5,24.5
+ pos: 50.5,-2.5
parent: 2
- - uid: 15133
+ - uid: 10878
components:
- type: Transform
- pos: 24.5,25.5
+ pos: 50.5,-1.5
parent: 2
- - uid: 15134
+ - uid: 10879
components:
- type: Transform
- pos: 24.5,26.5
+ pos: 50.5,-0.5
parent: 2
- - uid: 15135
+ - uid: 10880
components:
- type: Transform
- pos: 24.5,27.5
+ pos: 50.5,0.5
parent: 2
- - uid: 15136
+ - uid: 10881
components:
- type: Transform
- pos: 24.5,28.5
+ pos: 50.5,1.5
parent: 2
- - uid: 15137
+ - uid: 10882
components:
- type: Transform
- pos: 24.5,29.5
+ pos: 50.5,2.5
parent: 2
- - uid: 15138
+ - uid: 10883
components:
- type: Transform
- pos: 24.5,30.5
+ pos: 50.5,3.5
parent: 2
- - uid: 15139
+ - uid: 10884
components:
- type: Transform
- pos: 24.5,31.5
+ pos: 49.5,3.5
parent: 2
- - uid: 15140
+ - uid: 10885
components:
- type: Transform
- pos: 24.5,32.5
+ pos: 49.5,4.5
parent: 2
- - uid: 15194
+ - uid: 10886
components:
- type: Transform
- pos: -46.5,66.5
+ pos: 49.5,5.5
parent: 2
- - uid: 15272
+ - uid: 10887
components:
- type: Transform
- pos: -44.5,69.5
+ pos: 49.5,6.5
parent: 2
- - uid: 15326
+ - uid: 10888
components:
- type: Transform
- pos: -18.5,35.5
+ pos: 49.5,7.5
parent: 2
- - uid: 15327
+ - uid: 10889
components:
- type: Transform
- pos: -16.5,35.5
+ pos: 49.5,8.5
parent: 2
- - uid: 15328
+ - uid: 10890
components:
- type: Transform
- pos: -21.5,35.5
+ pos: 49.5,9.5
parent: 2
- - uid: 15534
+ - uid: 10891
components:
- type: Transform
- pos: -33.5,52.5
+ pos: 49.5,10.5
parent: 2
- - uid: 15536
+ - uid: 10892
components:
- type: Transform
- pos: -26.5,23.5
+ pos: 49.5,11.5
parent: 2
- - uid: 15620
+ - uid: 10893
components:
- type: Transform
- pos: -49.5,52.5
+ pos: 49.5,12.5
parent: 2
- - uid: 15642
+ - uid: 10894
components:
- type: Transform
- pos: -31.5,23.5
+ pos: 49.5,13.5
parent: 2
- - uid: 15828
+ - uid: 10895
components:
- type: Transform
- pos: -23.5,25.5
+ pos: 49.5,14.5
parent: 2
- - uid: 15836
+ - uid: 10896
components:
- type: Transform
- pos: -48.5,52.5
+ pos: 49.5,15.5
parent: 2
- - uid: 16031
+ - uid: 10897
components:
- type: Transform
- pos: 0.5,44.5
+ pos: 49.5,16.5
parent: 2
- - uid: 16032
+ - uid: 10898
components:
- type: Transform
- pos: -0.5,44.5
+ pos: 49.5,17.5
parent: 2
- - uid: 16033
+ - uid: 10899
components:
- type: Transform
- pos: -1.5,44.5
+ pos: 48.5,17.5
parent: 2
- - uid: 16034
+ - uid: 10900
components:
- type: Transform
- pos: -2.5,44.5
+ pos: 48.5,18.5
parent: 2
- - uid: 16035
+ - uid: 10901
components:
- type: Transform
- pos: -2.5,45.5
+ pos: 48.5,19.5
parent: 2
- - uid: 16036
+ - uid: 10902
components:
- type: Transform
- pos: -3.5,45.5
+ pos: 47.5,19.5
parent: 2
- - uid: 16037
+ - uid: 10903
components:
- type: Transform
- pos: -4.5,45.5
+ pos: 46.5,19.5
parent: 2
- - uid: 16038
+ - uid: 10904
components:
- type: Transform
- pos: -5.5,45.5
+ pos: 45.5,19.5
parent: 2
- - uid: 16039
+ - uid: 10905
components:
- type: Transform
- pos: -6.5,45.5
+ pos: 44.5,19.5
parent: 2
- - uid: 16040
+ - uid: 10906
components:
- type: Transform
- pos: -2.5,43.5
+ pos: 43.5,19.5
parent: 2
- - uid: 16041
+ - uid: 10907
components:
- type: Transform
- pos: -2.5,42.5
+ pos: 42.5,19.5
parent: 2
- - uid: 16042
+ - uid: 10908
components:
- type: Transform
- pos: -2.5,41.5
+ pos: 41.5,19.5
parent: 2
- - uid: 16043
+ - uid: 10909
components:
- type: Transform
- pos: -2.5,40.5
+ pos: 40.5,19.5
parent: 2
- - uid: 16044
+ - uid: 10910
components:
- type: Transform
- pos: -2.5,39.5
+ pos: 39.5,19.5
parent: 2
- - uid: 16045
+ - uid: 10911
components:
- type: Transform
- pos: -2.5,38.5
+ pos: 38.5,19.5
parent: 2
- - uid: 16046
+ - uid: 10912
components:
- type: Transform
- pos: -2.5,37.5
+ pos: 37.5,19.5
parent: 2
- - uid: 16047
+ - uid: 10913
components:
- type: Transform
- pos: -2.5,36.5
+ pos: 36.5,19.5
parent: 2
- - uid: 16048
+ - uid: 10914
components:
- type: Transform
- pos: -2.5,35.5
+ pos: 35.5,19.5
parent: 2
- - uid: 16049
+ - uid: 10915
components:
- type: Transform
- pos: -2.5,34.5
+ pos: 34.5,19.5
parent: 2
- - uid: 16050
+ - uid: 10916
components:
- type: Transform
- pos: -2.5,33.5
+ pos: 33.5,19.5
parent: 2
- - uid: 16051
+ - uid: 10917
components:
- type: Transform
- pos: -2.5,32.5
+ pos: 32.5,19.5
parent: 2
- - uid: 16052
+ - uid: 10918
components:
- type: Transform
- pos: -2.5,31.5
+ pos: 31.5,19.5
parent: 2
- - uid: 16053
+ - uid: 10919
components:
- type: Transform
- pos: -2.5,30.5
+ pos: 30.5,19.5
parent: 2
- - uid: 16054
+ - uid: 10920
components:
- type: Transform
- pos: -2.5,29.5
+ pos: 29.5,19.5
parent: 2
- - uid: 16055
+ - uid: 10921
components:
- type: Transform
- pos: -2.5,28.5
+ pos: 28.5,19.5
parent: 2
- - uid: 16056
+ - uid: 10922
components:
- type: Transform
- pos: -1.5,28.5
+ pos: 27.5,19.5
parent: 2
- - uid: 16057
+ - uid: 10923
components:
- type: Transform
- pos: -0.5,28.5
+ pos: 26.5,19.5
parent: 2
- - uid: 16058
+ - uid: 10924
components:
- type: Transform
- pos: 0.5,28.5
+ pos: 25.5,19.5
parent: 2
- - uid: 16283
+ - uid: 10925
components:
- type: Transform
- pos: -30.5,51.5
+ pos: 24.5,19.5
parent: 2
- - uid: 16368
+ - uid: 10926
components:
- type: Transform
- pos: -41.5,70.5
+ pos: 23.5,19.5
parent: 2
- - uid: 16371
+ - uid: 10927
components:
- type: Transform
- pos: 1.5,63.5
+ pos: 22.5,19.5
parent: 2
- - uid: 16372
+ - uid: 10928
components:
- type: Transform
- pos: 1.5,62.5
+ pos: 21.5,19.5
parent: 2
- - uid: 16373
+ - uid: 10929
components:
- type: Transform
- pos: 1.5,61.5
+ pos: 20.5,19.5
parent: 2
- - uid: 16374
+ - uid: 10930
components:
- type: Transform
- pos: 1.5,60.5
+ pos: 19.5,19.5
parent: 2
- - uid: 16375
+ - uid: 10931
components:
- type: Transform
- pos: 1.5,59.5
+ pos: 18.5,19.5
parent: 2
- - uid: 16376
+ - uid: 10939
components:
- type: Transform
- pos: 1.5,58.5
+ pos: 10.5,19.5
parent: 2
- - uid: 16377
+ - uid: 10940
components:
- type: Transform
- pos: 1.5,57.5
+ pos: 9.5,19.5
parent: 2
- - uid: 16378
+ - uid: 10941
components:
- type: Transform
- pos: 1.5,56.5
+ pos: 8.5,19.5
parent: 2
- - uid: 16379
+ - uid: 10942
components:
- type: Transform
- pos: 1.5,55.5
+ pos: 7.5,19.5
parent: 2
- - uid: 16380
+ - uid: 10943
components:
- type: Transform
- pos: 1.5,54.5
+ pos: 6.5,19.5
parent: 2
- - uid: 16381
+ - uid: 10944
components:
- type: Transform
- pos: 1.5,53.5
+ pos: 5.5,19.5
parent: 2
- - uid: 16382
+ - uid: 10945
components:
- type: Transform
- pos: 1.5,52.5
+ pos: 4.5,19.5
parent: 2
- - uid: 16383
+ - uid: 10946
components:
- type: Transform
- pos: 1.5,51.5
+ pos: 3.5,19.5
parent: 2
- - uid: 16384
+ - uid: 10947
components:
- type: Transform
- pos: 1.5,50.5
+ pos: 2.5,19.5
parent: 2
- - uid: 16385
+ - uid: 10948
components:
- type: Transform
- pos: 1.5,49.5
+ pos: 1.5,19.5
parent: 2
- - uid: 16386
+ - uid: 10949
components:
- type: Transform
- pos: 1.5,48.5
+ pos: 0.5,19.5
parent: 2
- - uid: 16387
+ - uid: 10950
components:
- type: Transform
- pos: 1.5,47.5
+ pos: -0.5,19.5
parent: 2
- - uid: 16388
+ - uid: 10951
components:
- type: Transform
- pos: 1.5,46.5
+ pos: -1.5,19.5
parent: 2
- - uid: 16389
+ - uid: 10952
components:
- type: Transform
- pos: 1.5,45.5
+ pos: -2.5,19.5
parent: 2
- - uid: 16446
+ - uid: 10953
components:
- type: Transform
- pos: -28.5,23.5
+ pos: -3.5,19.5
parent: 2
- - uid: 16457
+ - uid: 10954
components:
- type: Transform
- pos: -19.5,64.5
+ pos: -4.5,19.5
parent: 2
- - uid: 16458
+ - uid: 10955
components:
- type: Transform
- pos: -11.5,64.5
+ pos: -5.5,19.5
parent: 2
- - uid: 16459
+ - uid: 10956
components:
- type: Transform
- pos: -16.5,64.5
+ pos: -6.5,19.5
parent: 2
- - uid: 16460
+ - uid: 10957
components:
- type: Transform
- pos: -17.5,64.5
+ pos: -6.5,20.5
parent: 2
- - uid: 16461
+ - uid: 10958
components:
- type: Transform
- pos: -13.5,64.5
+ pos: -7.5,20.5
parent: 2
- - uid: 16462
+ - uid: 10959
components:
- type: Transform
- pos: -22.5,64.5
+ pos: -8.5,20.5
parent: 2
- - uid: 16463
+ - uid: 10960
components:
- type: Transform
- pos: -20.5,64.5
+ pos: -9.5,20.5
parent: 2
- - uid: 16464
+ - uid: 10961
components:
- type: Transform
- pos: -18.5,64.5
+ pos: -10.5,20.5
parent: 2
- - uid: 16465
+ - uid: 10962
components:
- type: Transform
- pos: -21.5,64.5
+ pos: -11.5,20.5
parent: 2
- - uid: 16466
+ - uid: 10963
components:
- type: Transform
- pos: -14.5,64.5
+ pos: -12.5,20.5
parent: 2
- - uid: 16467
+ - uid: 10964
components:
- type: Transform
- pos: -9.5,64.5
+ pos: -13.5,20.5
parent: 2
- - uid: 16469
+ - uid: 10965
components:
- type: Transform
- pos: -15.5,64.5
+ pos: -14.5,20.5
parent: 2
- - uid: 16470
+ - uid: 10966
components:
- type: Transform
- pos: -4.5,64.5
+ pos: -15.5,20.5
parent: 2
- - uid: 16471
+ - uid: 10967
components:
- type: Transform
- pos: -6.5,64.5
+ pos: -16.5,20.5
parent: 2
- - uid: 16480
+ - uid: 10968
components:
- type: Transform
- pos: -19.5,52.5
+ pos: -17.5,20.5
parent: 2
- - uid: 17005
+ - uid: 10969
components:
- type: Transform
- pos: -8.5,64.5
+ pos: -18.5,20.5
parent: 2
- - uid: 17023
+ - uid: 10970
components:
- type: Transform
- pos: -10.5,64.5
+ pos: -19.5,20.5
parent: 2
- - uid: 17024
+ - uid: 10971
components:
- type: Transform
- pos: -25.5,64.5
+ pos: -20.5,20.5
parent: 2
- - uid: 17025
+ - uid: 10972
components:
- type: Transform
- pos: -24.5,64.5
+ pos: -21.5,20.5
parent: 2
- - uid: 17029
+ - uid: 10973
components:
- type: Transform
- pos: -26.5,55.5
+ pos: -22.5,20.5
parent: 2
- - uid: 17619
+ - uid: 10974
components:
- type: Transform
- pos: -46.5,65.5
+ pos: -23.5,20.5
parent: 2
- - uid: 17820
+ - uid: 10975
components:
- type: Transform
- pos: -24.5,26.5
+ pos: -24.5,20.5
parent: 2
- - uid: 17964
+ - uid: 10976
components:
- type: Transform
- pos: -46.5,69.5
+ pos: -25.5,20.5
parent: 2
- - uid: 17965
+ - uid: 10977
components:
- type: Transform
- pos: -45.5,69.5
+ pos: -26.5,20.5
parent: 2
- - uid: 17967
+ - uid: 10978
components:
- type: Transform
- pos: -46.5,67.5
+ pos: -27.5,20.5
parent: 2
- - uid: 17974
+ - uid: 10979
components:
- type: Transform
- pos: -24.5,23.5
+ pos: -28.5,20.5
parent: 2
- - uid: 17977
+ - uid: 10980
components:
- type: Transform
- pos: -23.5,23.5
+ pos: -29.5,20.5
parent: 2
- - uid: 18036
+ - uid: 10981
components:
- type: Transform
- pos: -23.5,24.5
+ pos: -30.5,20.5
parent: 2
- - uid: 18082
+ - uid: 10982
components:
- type: Transform
- pos: -23.5,26.5
+ pos: -31.5,20.5
parent: 2
- - uid: 18115
+ - uid: 10983
components:
- type: Transform
- pos: -7.5,68.5
+ pos: -32.5,20.5
parent: 2
- - uid: 18121
+ - uid: 10985
components:
- type: Transform
- pos: -26.5,26.5
+ pos: -33.5,19.5
parent: 2
- - uid: 18223
+ - uid: 10986
components:
- type: Transform
- pos: -7.5,70.5
+ pos: -34.5,19.5
parent: 2
- - uid: 18317
+ - uid: 10987
components:
- type: Transform
- pos: -46.5,58.5
+ pos: -35.5,19.5
parent: 2
- - uid: 18323
+ - uid: 10988
components:
- type: Transform
- pos: -3.5,70.5
+ pos: -36.5,19.5
parent: 2
- - uid: 18335
+ - uid: 10989
components:
- type: Transform
- pos: -8.5,68.5
+ pos: -36.5,18.5
parent: 2
- - uid: 18336
+ - uid: 10990
components:
- type: Transform
- pos: -1.5,70.5
+ pos: -37.5,18.5
parent: 2
- - uid: 18341
+ - uid: 10991
components:
- type: Transform
- pos: -0.5,70.5
+ pos: -37.5,17.5
parent: 2
- - uid: 18342
+ - uid: 10992
components:
- type: Transform
- pos: -2.5,70.5
+ pos: -38.5,17.5
parent: 2
- - uid: 18355
+ - uid: 10993
components:
- type: Transform
- pos: -40.5,72.5
+ pos: -39.5,17.5
parent: 2
- - uid: 18562
+ - uid: 10994
components:
- type: Transform
- pos: -90.5,51.5
+ pos: -39.5,16.5
parent: 2
- - uid: 18573
+ - uid: 10995
components:
- type: Transform
- pos: -95.5,64.5
+ pos: -41.5,16.5
parent: 2
- - uid: 18604
+ - uid: 10996
components:
- type: Transform
- pos: -89.5,-34.5
+ pos: -40.5,16.5
parent: 2
- - uid: 18605
+ - uid: 10997
components:
- type: Transform
- pos: -87.5,-34.5
+ pos: -42.5,16.5
parent: 2
- - uid: 18606
+ - uid: 10998
components:
- type: Transform
- pos: -88.5,-34.5
+ pos: -43.5,16.5
parent: 2
- - uid: 18607
+ - uid: 10999
components:
- type: Transform
- pos: -89.5,-37.5
+ pos: -44.5,16.5
parent: 2
- - uid: 18608
+ - uid: 11000
components:
- type: Transform
- pos: -89.5,-43.5
+ pos: -44.5,15.5
parent: 2
- - uid: 18609
+ - uid: 11001
components:
- type: Transform
- pos: -89.5,-46.5
+ pos: -44.5,14.5
parent: 2
- - uid: 18619
+ - uid: 11002
components:
- type: Transform
- pos: -89.5,-40.5
+ pos: -44.5,13.5
parent: 2
- - uid: 18620
+ - uid: 11003
components:
- type: Transform
- pos: -89.5,-42.5
+ pos: -44.5,12.5
parent: 2
- - uid: 18695
+ - uid: 11004
components:
- type: Transform
- pos: -89.5,-51.5
+ pos: -44.5,11.5
parent: 2
- - uid: 18700
+ - uid: 11005
components:
- type: Transform
- pos: -86.5,-38.5
+ pos: -44.5,10.5
parent: 2
- - uid: 18701
+ - uid: 11006
components:
- type: Transform
- pos: -89.5,-52.5
+ pos: -44.5,9.5
parent: 2
- - uid: 18702
+ - uid: 11007
components:
- type: Transform
- pos: -85.5,-65.5
+ pos: -44.5,8.5
parent: 2
- - uid: 18786
+ - uid: 11141
components:
- type: Transform
- pos: -80.5,62.5
+ pos: -27.5,45.5
parent: 2
- - uid: 18791
+ - uid: 11142
components:
- type: Transform
- pos: -96.5,64.5
+ pos: -7.5,40.5
parent: 2
- - uid: 18962
+ - uid: 11198
components:
- type: Transform
- pos: -91.5,51.5
+ pos: -46.5,-38.5
parent: 2
- - uid: 18963
+ - uid: 11201
components:
- type: Transform
- pos: -92.5,51.5
+ pos: -25.5,52.5
parent: 2
- - uid: 18964
+ - uid: 11211
components:
- type: Transform
- pos: -93.5,51.5
+ pos: -26.5,47.5
parent: 2
- - uid: 18965
+ - uid: 11215
components:
- type: Transform
- pos: -94.5,51.5
+ pos: -37.5,53.5
parent: 2
- - uid: 18966
+ - uid: 11216
components:
- type: Transform
- pos: -96.5,54.5
+ pos: -32.5,55.5
parent: 2
- - uid: 18967
+ - uid: 11219
components:
- type: Transform
- pos: -96.5,51.5
+ pos: -44.5,-38.5
parent: 2
- - uid: 18968
+ - uid: 11232
components:
- type: Transform
- pos: -97.5,51.5
+ pos: -26.5,52.5
parent: 2
- - uid: 18969
+ - uid: 11240
components:
- type: Transform
- pos: -98.5,51.5
+ pos: 27.5,-31.5
parent: 2
- - uid: 18970
+ - uid: 11243
components:
- type: Transform
- pos: -97.5,54.5
+ pos: 85.5,17.5
parent: 2
- - uid: 18971
+ - uid: 11252
components:
- type: Transform
- pos: -100.5,51.5
+ pos: 89.5,-6.5
parent: 2
- - uid: 18972
+ - uid: 11253
components:
- type: Transform
- pos: -100.5,52.5
+ pos: 89.5,-5.5
parent: 2
- - uid: 18973
+ - uid: 11255
components:
- type: Transform
- pos: -100.5,50.5
+ pos: 89.5,-4.5
parent: 2
- - uid: 18974
+ - uid: 11259
components:
- type: Transform
- pos: -100.5,53.5
+ pos: 90.5,-4.5
parent: 2
- - uid: 18975
+ - uid: 11263
components:
- type: Transform
- pos: -100.5,54.5
+ pos: -51.5,63.5
parent: 2
- - uid: 18977
+ - uid: 11268
components:
- type: Transform
- pos: -100.5,56.5
+ pos: 25.5,-16.5
parent: 2
- - uid: 18978
+ - uid: 11324
components:
- type: Transform
- pos: -101.5,56.5
+ pos: 29.5,-26.5
parent: 2
- - uid: 18979
+ - uid: 11332
components:
- type: Transform
- pos: -102.5,56.5
+ pos: 25.5,-17.5
parent: 2
- - uid: 18980
+ - uid: 11414
components:
- type: Transform
- pos: -103.5,56.5
+ pos: 1.5,-21.5
parent: 2
- - uid: 18981
+ - uid: 11605
components:
- type: Transform
- pos: -104.5,56.5
+ pos: 52.5,-59.5
parent: 2
- - uid: 18982
+ - uid: 11606
components:
- type: Transform
- pos: -105.5,56.5
+ pos: 63.5,-44.5
parent: 2
- - uid: 18983
+ - uid: 11608
components:
- type: Transform
- pos: -105.5,57.5
+ pos: 64.5,-44.5
parent: 2
- - uid: 18984
+ - uid: 11609
components:
- type: Transform
- pos: -105.5,58.5
+ pos: 53.5,-44.5
parent: 2
- - uid: 18985
+ - uid: 11610
components:
- type: Transform
- pos: -107.5,58.5
+ pos: 54.5,-45.5
parent: 2
- - uid: 18986
+ - uid: 11611
components:
- type: Transform
- pos: -108.5,58.5
+ pos: 56.5,-45.5
parent: 2
- - uid: 18987
+ - uid: 11612
components:
- type: Transform
- pos: -109.5,58.5
+ pos: 56.5,-46.5
parent: 2
- - uid: 18990
+ - uid: 11613
components:
- type: Transform
- pos: -112.5,58.5
+ pos: 55.5,-50.5
parent: 2
- - uid: 18991
+ - uid: 11614
components:
- type: Transform
- pos: -113.5,58.5
+ pos: 52.5,-44.5
parent: 2
- - uid: 18993
+ - uid: 11615
components:
- type: Transform
- pos: -115.5,58.5
+ pos: 53.5,-45.5
parent: 2
- - uid: 18994
+ - uid: 11616
components:
- type: Transform
- pos: -116.5,58.5
+ pos: 59.5,-44.5
parent: 2
- - uid: 18995
+ - uid: 11617
components:
- type: Transform
- pos: -117.5,58.5
+ pos: 60.5,-44.5
parent: 2
- - uid: 18996
+ - uid: 11639
components:
- type: Transform
- pos: -118.5,58.5
+ pos: -45.5,56.5
parent: 2
- - uid: 18997
+ - uid: 11650
components:
- type: Transform
- pos: -119.5,58.5
+ pos: 1.5,-22.5
parent: 2
- - uid: 18998
+ - uid: 11692
components:
- type: Transform
- pos: -119.5,57.5
+ pos: -33.5,-16.5
parent: 2
- - uid: 18999
+ - uid: 11693
components:
- type: Transform
- pos: -119.5,56.5
+ pos: -33.5,-17.5
parent: 2
- - uid: 19000
+ - uid: 11694
components:
- type: Transform
- pos: -119.5,55.5
+ pos: -33.5,-18.5
parent: 2
- - uid: 19001
+ - uid: 11695
components:
- type: Transform
- pos: -119.5,54.5
+ pos: -33.5,-19.5
parent: 2
- - uid: 19002
+ - uid: 11696
components:
- type: Transform
- pos: -119.5,53.5
+ pos: -33.5,-20.5
parent: 2
- - uid: 19003
+ - uid: 11697
components:
- type: Transform
- pos: -119.5,52.5
+ pos: -33.5,-21.5
parent: 2
- - uid: 19006
+ - uid: 11698
components:
- type: Transform
- pos: -119.5,49.5
+ pos: -33.5,-22.5
parent: 2
- - uid: 19007
+ - uid: 11699
components:
- type: Transform
- pos: -119.5,48.5
+ pos: -33.5,-23.5
parent: 2
- - uid: 19008
+ - uid: 11700
components:
- type: Transform
- pos: -119.5,47.5
+ pos: -33.5,-24.5
parent: 2
- - uid: 19009
+ - uid: 11701
components:
- type: Transform
- pos: -119.5,46.5
+ pos: -33.5,-25.5
parent: 2
- - uid: 19010
+ - uid: 11702
components:
- type: Transform
- pos: -119.5,45.5
+ pos: -33.5,-26.5
parent: 2
- - uid: 19011
+ - uid: 11703
components:
- type: Transform
- pos: -119.5,44.5
+ pos: -33.5,-27.5
parent: 2
- - uid: 19012
+ - uid: 11704
components:
- type: Transform
- pos: -118.5,44.5
+ pos: -32.5,-27.5
parent: 2
- - uid: 19013
+ - uid: 11705
components:
- type: Transform
- pos: -117.5,44.5
+ pos: -31.5,-27.5
parent: 2
- - uid: 19014
+ - uid: 11706
components:
- type: Transform
- pos: -116.5,44.5
+ pos: -30.5,-27.5
parent: 2
- - uid: 19015
+ - uid: 11707
components:
- type: Transform
- pos: -115.5,44.5
+ pos: -29.5,-27.5
parent: 2
- - uid: 19016
+ - uid: 11708
components:
- type: Transform
- pos: -114.5,44.5
+ pos: -28.5,-27.5
parent: 2
- - uid: 19017
+ - uid: 11709
components:
- type: Transform
- pos: -113.5,44.5
+ pos: -27.5,-27.5
parent: 2
- - uid: 19018
+ - uid: 11710
components:
- type: Transform
- pos: -112.5,44.5
+ pos: -26.5,-27.5
parent: 2
- - uid: 19019
+ - uid: 11711
components:
- type: Transform
- pos: -111.5,44.5
+ pos: -26.5,-28.5
parent: 2
- - uid: 19020
+ - uid: 11823
components:
- type: Transform
- pos: -110.5,44.5
+ pos: 25.5,-21.5
parent: 2
- - uid: 19021
+ - uid: 11826
components:
- type: Transform
- pos: -109.5,44.5
+ pos: 30.5,-26.5
parent: 2
- - uid: 19022
+ - uid: 11866
components:
- type: Transform
- pos: -108.5,44.5
+ pos: 28.5,-31.5
parent: 2
- - uid: 19023
+ - uid: 11868
components:
- type: Transform
- pos: -107.5,44.5
+ pos: -63.5,-21.5
parent: 2
- - uid: 19024
+ - uid: 11869
components:
- type: Transform
- pos: -106.5,44.5
+ pos: -62.5,-21.5
parent: 2
- - uid: 19025
+ - uid: 11870
components:
- type: Transform
- pos: -105.5,44.5
+ pos: 39.5,-26.5
parent: 2
- - uid: 19027
+ - uid: 11952
components:
- type: Transform
- pos: -105.5,46.5
+ pos: 79.5,-9.5
parent: 2
- - uid: 19028
+ - uid: 11978
components:
- type: Transform
- pos: -105.5,47.5
+ pos: 9.5,-28.5
parent: 2
- - uid: 19029
+ - uid: 11988
components:
- type: Transform
- pos: -105.5,48.5
+ pos: 10.5,-29.5
parent: 2
- - uid: 19030
+ - uid: 11989
components:
- type: Transform
- pos: -105.5,49.5
+ pos: 10.5,-30.5
parent: 2
- - uid: 19031
+ - uid: 11990
components:
- type: Transform
- pos: -105.5,50.5
+ pos: 10.5,-31.5
parent: 2
- - uid: 19032
+ - uid: 11991
components:
- type: Transform
- pos: -105.5,51.5
+ pos: 10.5,-32.5
parent: 2
- - uid: 19033
+ - uid: 11992
components:
- type: Transform
- pos: -105.5,52.5
+ pos: 10.5,-33.5
parent: 2
- - uid: 19034
+ - uid: 11993
components:
- type: Transform
- pos: -105.5,53.5
+ pos: 10.5,-34.5
parent: 2
- - uid: 19035
+ - uid: 11994
components:
- type: Transform
- pos: -105.5,54.5
+ pos: 10.5,-35.5
parent: 2
- - uid: 19036
+ - uid: 11995
components:
- type: Transform
- pos: -105.5,55.5
+ pos: 10.5,-36.5
parent: 2
- - uid: 19037
+ - uid: 11996
components:
- type: Transform
- pos: -100.5,49.5
+ pos: 10.5,-37.5
parent: 2
- - uid: 19038
+ - uid: 11997
components:
- type: Transform
- pos: -94.5,54.5
+ pos: 9.5,-37.5
parent: 2
- - uid: 19039
+ - uid: 11998
components:
- type: Transform
- pos: -93.5,54.5
+ pos: 8.5,-37.5
parent: 2
- - uid: 19040
+ - uid: 11999
components:
- type: Transform
- pos: -100.5,46.5
+ pos: 7.5,-37.5
parent: 2
- - uid: 19042
+ - uid: 12000
components:
- type: Transform
- pos: -102.5,46.5
+ pos: 6.5,-37.5
parent: 2
- - uid: 19043
+ - uid: 12001
components:
- type: Transform
- pos: -103.5,46.5
+ pos: 5.5,-37.5
parent: 2
- - uid: 19044
+ - uid: 12002
components:
- type: Transform
- pos: -104.5,46.5
+ pos: 4.5,-37.5
parent: 2
- - uid: 19093
+ - uid: 12005
components:
- type: Transform
- pos: -95.5,51.5
+ pos: 1.5,-37.5
parent: 2
- - uid: 19094
+ - uid: 12008
components:
- type: Transform
- pos: -93.5,52.5
+ pos: -1.5,-37.5
parent: 2
- - uid: 19096
+ - uid: 12009
components:
- type: Transform
- pos: -93.5,53.5
+ pos: -2.5,-37.5
parent: 2
- - uid: 19287
+ - uid: 12010
components:
- type: Transform
- pos: -61.5,32.5
+ pos: -3.5,-37.5
parent: 2
- - uid: 19315
+ - uid: 12011
components:
- type: Transform
- pos: -46.5,60.5
+ pos: -4.5,-37.5
parent: 2
- - uid: 19352
+ - uid: 12012
components:
- type: Transform
- pos: -61.5,-31.5
+ pos: -5.5,-37.5
parent: 2
- - uid: 19356
+ - uid: 12013
components:
- type: Transform
- pos: -60.5,-31.5
+ pos: -6.5,-37.5
parent: 2
- - uid: 19357
+ - uid: 12014
components:
- type: Transform
- pos: -59.5,-31.5
+ pos: -6.5,-36.5
parent: 2
- - uid: 19358
+ - uid: 12015
components:
- type: Transform
- pos: -58.5,-31.5
+ pos: -6.5,-35.5
parent: 2
- - uid: 19359
+ - uid: 12016
components:
- type: Transform
- pos: -57.5,-31.5
+ pos: -6.5,-34.5
parent: 2
- - uid: 19360
+ - uid: 12017
components:
- type: Transform
- pos: -56.5,-31.5
+ pos: -6.5,-33.5
parent: 2
- - uid: 19361
+ - uid: 12018
components:
- type: Transform
- pos: -55.5,-31.5
+ pos: -6.5,-32.5
parent: 2
- - uid: 19426
+ - uid: 12019
components:
- type: Transform
- pos: -30.5,23.5
+ pos: -6.5,-31.5
parent: 2
- - uid: 19432
+ - uid: 12020
components:
- type: Transform
- pos: -29.5,23.5
+ pos: -6.5,-30.5
parent: 2
- - uid: 19634
+ - uid: 12021
components:
- type: Transform
- pos: -46.5,58.5
+ pos: -6.5,-29.5
parent: 2
- - uid: 19694
+ - uid: 12022
components:
- type: Transform
- pos: 3.5,64.5
+ pos: -6.5,-28.5
parent: 2
- - uid: 19695
+ - uid: 12023
components:
- type: Transform
- pos: 2.5,64.5
+ pos: -5.5,-28.5
parent: 2
- - uid: 19696
+ - uid: 12024
components:
- type: Transform
- pos: 1.5,64.5
+ pos: -4.5,-28.5
parent: 2
- - uid: 19697
+ - uid: 12025
components:
- type: Transform
- pos: 29.5,57.5
+ pos: -3.5,-28.5
parent: 2
- - uid: 19698
+ - uid: 12026
components:
- type: Transform
- pos: 30.5,57.5
+ pos: -2.5,-28.5
parent: 2
- - uid: 19699
+ - uid: 12027
components:
- type: Transform
- pos: 30.5,56.5
+ pos: -1.5,-28.5
parent: 2
- - uid: 19700
+ - uid: 12028
components:
- type: Transform
- pos: 30.5,55.5
+ pos: -0.5,-28.5
parent: 2
- - uid: 19701
+ - uid: 12029
components:
- type: Transform
- pos: 30.5,54.5
+ pos: 0.5,-28.5
parent: 2
- - uid: 19702
+ - uid: 12030
components:
- type: Transform
- pos: 30.5,53.5
+ pos: 1.5,-28.5
parent: 2
- - uid: 19703
+ - uid: 12034
components:
- type: Transform
- pos: 30.5,52.5
+ pos: -1.5,-27.5
parent: 2
- - uid: 19704
+ - uid: 12035
components:
- type: Transform
- pos: 31.5,52.5
+ pos: -1.5,-26.5
parent: 2
- - uid: 19721
+ - uid: 12036
components:
- type: Transform
- pos: -89.5,-35.5
+ pos: -1.5,-25.5
parent: 2
- - uid: 19779
+ - uid: 12037
components:
- type: Transform
- pos: 1.5,65.5
+ pos: -1.5,-24.5
parent: 2
- - uid: 19780
+ - uid: 12038
components:
- type: Transform
- pos: 1.5,66.5
+ pos: -1.5,-23.5
parent: 2
- - uid: 19781
+ - uid: 12039
components:
- type: Transform
- pos: 1.5,67.5
+ pos: -1.5,-22.5
parent: 2
- - uid: 19782
+ - uid: 12040
components:
- type: Transform
- pos: 1.5,68.5
+ pos: -1.5,-21.5
parent: 2
- - uid: 19783
+ - uid: 12041
components:
- type: Transform
- pos: 1.5,69.5
+ pos: -1.5,-20.5
parent: 2
- - uid: 19784
+ - uid: 12042
components:
- type: Transform
- pos: 1.5,70.5
+ pos: -2.5,-20.5
parent: 2
- - uid: 19785
+ - uid: 12044
components:
- type: Transform
- pos: 1.5,71.5
+ pos: -3.5,-19.5
parent: 2
- - uid: 19786
+ - uid: 12045
components:
- type: Transform
- pos: 1.5,72.5
+ pos: -4.5,-19.5
parent: 2
- - uid: 19787
+ - uid: 12046
components:
- type: Transform
- pos: 1.5,73.5
+ pos: -4.5,-18.5
parent: 2
- - uid: 19788
+ - uid: 12047
components:
- type: Transform
- pos: 1.5,74.5
+ pos: -4.5,-17.5
parent: 2
- - uid: 19789
+ - uid: 12048
components:
- type: Transform
- pos: 1.5,75.5
+ pos: -4.5,-16.5
parent: 2
- - uid: 19790
+ - uid: 12067
components:
- type: Transform
- pos: 0.5,70.5
+ pos: 18.5,-26.5
parent: 2
- - uid: 19807
+ - uid: 12071
components:
- type: Transform
- pos: -40.5,69.5
+ pos: 31.5,-26.5
parent: 2
- - uid: 19847
+ - uid: 12078
components:
- type: Transform
- pos: -40.5,68.5
+ pos: -61.5,34.5
parent: 2
- - uid: 20035
+ - uid: 12104
components:
- type: Transform
- pos: 39.5,16.5
+ pos: 19.5,-26.5
parent: 2
- - uid: 20036
+ - uid: 12118
components:
- type: Transform
- pos: 39.5,15.5
+ pos: -6.5,-2.5
parent: 2
- - uid: 20037
+ - uid: 12333
components:
- type: Transform
- pos: 39.5,14.5
+ pos: -60.5,34.5
parent: 2
- - uid: 20038
+ - uid: 12336
components:
- type: Transform
- pos: 38.5,14.5
+ pos: -62.5,34.5
parent: 2
- - uid: 20039
+ - uid: 12339
components:
- type: Transform
- pos: 37.5,14.5
+ pos: -6.5,-0.5
parent: 2
- - uid: 20040
+ - uid: 12408
components:
- type: Transform
- pos: 37.5,15.5
+ pos: -6.5,-1.5
parent: 2
- - uid: 20041
+ - uid: 12419
components:
- type: Transform
- pos: 37.5,16.5
+ pos: -5.5,-2.5
parent: 2
- - uid: 20042
+ - uid: 12590
components:
- type: Transform
- pos: 37.5,17.5
+ pos: 80.5,-9.5
parent: 2
- - uid: 20043
+ - uid: 12625
components:
- type: Transform
- pos: 37.5,18.5
+ pos: 35.5,33.5
parent: 2
- - uid: 20044
+ - uid: 12646
components:
- type: Transform
- pos: 37.5,13.5
+ pos: 38.5,33.5
parent: 2
- - uid: 20045
+ - uid: 12680
components:
- type: Transform
- pos: 37.5,12.5
+ pos: 36.5,33.5
parent: 2
- - uid: 20046
+ - uid: 12788
components:
- type: Transform
- pos: 37.5,11.5
+ pos: 53.5,9.5
parent: 2
- - uid: 20047
+ - uid: 12789
components:
- type: Transform
- pos: 37.5,10.5
+ pos: 53.5,8.5
parent: 2
- - uid: 20048
+ - uid: 12790
components:
- type: Transform
- pos: 38.5,10.5
+ pos: 53.5,7.5
parent: 2
- - uid: 20049
+ - uid: 12791
components:
- type: Transform
- pos: 38.5,9.5
+ pos: 53.5,6.5
parent: 2
- - uid: 20050
+ - uid: 12792
components:
- type: Transform
- pos: 38.5,8.5
+ pos: 53.5,5.5
parent: 2
- - uid: 20051
+ - uid: 12793
components:
- type: Transform
- pos: 38.5,7.5
+ pos: 53.5,4.5
parent: 2
- - uid: 20052
+ - uid: 12794
components:
- type: Transform
- pos: 38.5,6.5
+ pos: 53.5,3.5
parent: 2
- - uid: 20053
+ - uid: 12795
components:
- type: Transform
- pos: 38.5,5.5
+ pos: 54.5,3.5
parent: 2
- - uid: 20054
+ - uid: 12796
components:
- type: Transform
- pos: 38.5,4.5
+ pos: 54.5,2.5
parent: 2
- - uid: 20055
+ - uid: 12797
components:
- type: Transform
- pos: 38.5,3.5
+ pos: 54.5,1.5
parent: 2
- - uid: 20056
+ - uid: 12798
components:
- type: Transform
- pos: 38.5,2.5
+ pos: 54.5,0.5
parent: 2
- - uid: 20057
+ - uid: 12799
components:
- type: Transform
- pos: 37.5,2.5
+ pos: 54.5,-0.5
parent: 2
- - uid: 20058
+ - uid: 12800
components:
- type: Transform
- pos: 36.5,2.5
+ pos: 54.5,-1.5
parent: 2
- - uid: 20059
+ - uid: 12801
components:
- type: Transform
- pos: 35.5,2.5
+ pos: 53.5,-1.5
parent: 2
- - uid: 20060
+ - uid: 12802
components:
- type: Transform
- pos: 34.5,2.5
+ pos: 52.5,-1.5
parent: 2
- - uid: 20061
+ - uid: 12803
components:
- type: Transform
- pos: 33.5,2.5
+ pos: 51.5,-1.5
parent: 2
- - uid: 20062
+ - uid: 12804
components:
- type: Transform
- pos: 32.5,2.5
+ pos: 79.5,-0.5
parent: 2
- - uid: 20063
+ - uid: 12805
components:
- type: Transform
- pos: 31.5,2.5
+ pos: 79.5,-1.5
parent: 2
- - uid: 20064
+ - uid: 12806
components:
- type: Transform
- pos: 31.5,3.5
+ pos: 79.5,-2.5
parent: 2
- - uid: 20065
+ - uid: 12807
components:
- type: Transform
- pos: 31.5,4.5
+ pos: 79.5,-3.5
parent: 2
- - uid: 20066
+ - uid: 12808
components:
- type: Transform
- pos: 31.5,5.5
+ pos: 78.5,-3.5
parent: 2
- - uid: 20067
+ - uid: 12809
components:
- type: Transform
- pos: 31.5,6.5
+ pos: 77.5,-3.5
parent: 2
- - uid: 20068
+ - uid: 12810
components:
- type: Transform
- pos: 30.5,6.5
+ pos: 76.5,-3.5
parent: 2
- - uid: 20069
+ - uid: 12811
components:
- type: Transform
- pos: 29.5,6.5
+ pos: 75.5,-3.5
parent: 2
- - uid: 20070
+ - uid: 12812
components:
- type: Transform
- pos: 28.5,6.5
+ pos: 74.5,-3.5
parent: 2
- - uid: 20071
+ - uid: 12813
components:
- type: Transform
- pos: 27.5,6.5
+ pos: 73.5,-3.5
parent: 2
- - uid: 20072
+ - uid: 12814
components:
- type: Transform
- pos: 26.5,6.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 20073
+ - uid: 12815
components:
- type: Transform
- pos: 25.5,6.5
+ pos: 71.5,-3.5
parent: 2
- - uid: 20074
+ - uid: 12816
components:
- type: Transform
- pos: 24.5,6.5
+ pos: 70.5,-3.5
parent: 2
- - uid: 20075
+ - uid: 12817
components:
- type: Transform
- pos: 23.5,6.5
+ pos: 69.5,-3.5
parent: 2
- - uid: 20076
+ - uid: 12818
components:
- type: Transform
- pos: 22.5,6.5
+ pos: 68.5,-3.5
parent: 2
- - uid: 20077
+ - uid: 12819
components:
- type: Transform
- pos: 21.5,6.5
+ pos: 67.5,-3.5
parent: 2
- - uid: 20078
+ - uid: 12820
components:
- type: Transform
- pos: 20.5,6.5
+ pos: 66.5,-3.5
parent: 2
- - uid: 20079
+ - uid: 12821
components:
- type: Transform
- pos: 19.5,6.5
+ pos: 65.5,-3.5
parent: 2
- - uid: 20080
+ - uid: 12822
components:
- type: Transform
- pos: 18.5,6.5
+ pos: 64.5,-3.5
parent: 2
- - uid: 20081
+ - uid: 12823
components:
- type: Transform
- pos: 17.5,6.5
+ pos: 63.5,-3.5
parent: 2
- - uid: 20082
+ - uid: 12824
components:
- type: Transform
- pos: 16.5,6.5
+ pos: 62.5,-3.5
parent: 2
- - uid: 20083
+ - uid: 12825
components:
- type: Transform
- pos: 15.5,6.5
+ pos: 61.5,-3.5
parent: 2
- - uid: 20084
+ - uid: 12826
components:
- type: Transform
- pos: 14.5,6.5
+ pos: 60.5,-3.5
parent: 2
- - uid: 20085
+ - uid: 12827
components:
- type: Transform
- pos: 13.5,6.5
+ pos: 59.5,-3.5
parent: 2
- - uid: 20086
+ - uid: 12828
components:
- type: Transform
- pos: 12.5,6.5
+ pos: 58.5,-3.5
parent: 2
- - uid: 20087
+ - uid: 12829
components:
- type: Transform
- pos: 11.5,6.5
+ pos: 57.5,-3.5
parent: 2
- - uid: 20088
+ - uid: 12830
components:
- type: Transform
- pos: 10.5,6.5
+ pos: 56.5,-3.5
parent: 2
- - uid: 20089
+ - uid: 12831
components:
- type: Transform
- pos: 9.5,6.5
+ pos: 55.5,-3.5
parent: 2
- - uid: 20090
+ - uid: 12832
components:
- type: Transform
- pos: 9.5,5.5
+ pos: 54.5,-3.5
parent: 2
- - uid: 20091
+ - uid: 12833
components:
- type: Transform
- pos: 9.5,4.5
+ pos: 54.5,-2.5
parent: 2
- - uid: 20092
+ - uid: 12834
components:
- type: Transform
- pos: 9.5,3.5
+ pos: 79.5,-4.5
parent: 2
- - uid: 20093
+ - uid: 12835
components:
- type: Transform
- pos: 8.5,3.5
+ pos: 79.5,-5.5
parent: 2
- - uid: 20094
+ - uid: 12836
components:
- type: Transform
- pos: 7.5,3.5
+ pos: 79.5,-6.5
parent: 2
- - uid: 20095
+ - uid: 12837
components:
- type: Transform
- pos: 6.5,3.5
+ pos: 78.5,-6.5
parent: 2
- - uid: 20096
+ - uid: 12838
components:
- type: Transform
- pos: 5.5,3.5
+ pos: 78.5,-7.5
parent: 2
- - uid: 20097
+ - uid: 12839
components:
- type: Transform
- pos: 4.5,3.5
+ pos: 78.5,-8.5
parent: 2
- - uid: 20098
+ - uid: 12840
components:
- type: Transform
- pos: 3.5,3.5
+ pos: 77.5,-8.5
parent: 2
- - uid: 20099
+ - uid: 12841
components:
- type: Transform
- pos: 2.5,3.5
+ pos: 77.5,-9.5
parent: 2
- - uid: 20100
+ - uid: 12842
components:
- type: Transform
- pos: 0.5,3.5
+ pos: 77.5,-10.5
parent: 2
- - uid: 20101
+ - uid: 12843
components:
- type: Transform
- pos: -0.5,3.5
+ pos: 76.5,-10.5
parent: 2
- - uid: 20102
+ - uid: 12844
components:
- type: Transform
- pos: -1.5,3.5
+ pos: 76.5,-11.5
parent: 2
- - uid: 20103
+ - uid: 12845
components:
- type: Transform
- pos: -2.5,3.5
+ pos: 76.5,-12.5
parent: 2
- - uid: 20104
+ - uid: 12846
components:
- type: Transform
- pos: -3.5,3.5
+ pos: 76.5,-13.5
parent: 2
- - uid: 20105
+ - uid: 12847
components:
- type: Transform
- pos: -4.5,3.5
+ pos: 76.5,-14.5
parent: 2
- - uid: 20106
+ - uid: 12848
components:
- type: Transform
- pos: -5.5,3.5
+ pos: 76.5,-15.5
parent: 2
- - uid: 20107
+ - uid: 12849
components:
- type: Transform
- pos: -6.5,3.5
+ pos: 76.5,-16.5
parent: 2
- - uid: 20108
+ - uid: 12850
components:
- type: Transform
- pos: -7.5,3.5
+ pos: 76.5,-17.5
parent: 2
- - uid: 20109
+ - uid: 12851
components:
- type: Transform
- pos: -8.5,3.5
+ pos: 76.5,-18.5
parent: 2
- - uid: 20110
+ - uid: 12852
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 76.5,-19.5
parent: 2
- - uid: 20111
+ - uid: 12853
components:
- type: Transform
- pos: -10.5,3.5
+ pos: 76.5,-20.5
parent: 2
- - uid: 20112
+ - uid: 12854
components:
- type: Transform
- pos: -11.5,3.5
+ pos: 75.5,-20.5
parent: 2
- - uid: 20113
+ - uid: 12855
components:
- type: Transform
- pos: -11.5,4.5
+ pos: 74.5,-20.5
parent: 2
- - uid: 20114
+ - uid: 12856
components:
- type: Transform
- pos: -11.5,5.5
+ pos: 73.5,-20.5
parent: 2
- - uid: 20115
+ - uid: 12857
components:
- type: Transform
- pos: -11.5,6.5
+ pos: 72.5,-20.5
parent: 2
- - uid: 20116
+ - uid: 12858
components:
- type: Transform
- pos: -11.5,7.5
+ pos: 71.5,-20.5
parent: 2
- - uid: 20117
+ - uid: 12859
components:
- type: Transform
- pos: -11.5,8.5
+ pos: 71.5,-21.5
parent: 2
- - uid: 20118
+ - uid: 12860
components:
- type: Transform
- pos: -11.5,9.5
+ pos: 70.5,-21.5
parent: 2
- - uid: 20119
+ - uid: 12861
components:
- type: Transform
- pos: -11.5,10.5
+ pos: 70.5,-22.5
parent: 2
- - uid: 20120
+ - uid: 12862
components:
- type: Transform
- pos: -11.5,11.5
+ pos: 70.5,-23.5
parent: 2
- - uid: 20121
+ - uid: 12863
components:
- type: Transform
- pos: -11.5,12.5
+ pos: 70.5,-24.5
parent: 2
- - uid: 20122
+ - uid: 12864
components:
- type: Transform
- pos: -11.5,13.5
+ pos: 69.5,-24.5
parent: 2
- - uid: 20123
+ - uid: 12865
components:
- type: Transform
- pos: -12.5,13.5
+ pos: 69.5,-25.5
parent: 2
- - uid: 20124
+ - uid: 12866
components:
- type: Transform
- pos: -13.5,13.5
+ pos: 69.5,-26.5
parent: 2
- - uid: 20125
+ - uid: 12867
components:
- type: Transform
- pos: -14.5,13.5
+ pos: 68.5,-26.5
parent: 2
- - uid: 20126
+ - uid: 12868
components:
- type: Transform
- pos: -15.5,13.5
+ pos: 68.5,-27.5
parent: 2
- - uid: 20127
+ - uid: 12869
components:
- type: Transform
- pos: -16.5,13.5
+ pos: 67.5,-27.5
parent: 2
- - uid: 20128
+ - uid: 12870
components:
- type: Transform
- pos: -17.5,13.5
+ pos: 66.5,-27.5
parent: 2
- - uid: 20129
+ - uid: 12871
components:
- type: Transform
- pos: -18.5,13.5
+ pos: 66.5,-28.5
parent: 2
- - uid: 20130
+ - uid: 12872
components:
- type: Transform
- pos: -19.5,13.5
+ pos: 65.5,-28.5
parent: 2
- - uid: 20131
+ - uid: 12873
components:
- type: Transform
- pos: -20.5,13.5
+ pos: 64.5,-28.5
parent: 2
- - uid: 20132
+ - uid: 12874
components:
- type: Transform
- pos: -21.5,13.5
+ pos: 63.5,-28.5
parent: 2
- - uid: 20133
+ - uid: 12875
components:
- type: Transform
- pos: -22.5,13.5
+ pos: 63.5,-29.5
parent: 2
- - uid: 20134
+ - uid: 12876
components:
- type: Transform
- pos: -23.5,13.5
+ pos: 62.5,-29.5
parent: 2
- - uid: 20135
+ - uid: 12877
components:
- type: Transform
- pos: -24.5,13.5
+ pos: 62.5,-30.5
parent: 2
- - uid: 20136
+ - uid: 12878
components:
- type: Transform
- pos: -25.5,13.5
+ pos: 61.5,-30.5
parent: 2
- - uid: 20137
+ - uid: 12879
components:
- type: Transform
- pos: -26.5,13.5
+ pos: 60.5,-30.5
parent: 2
- - uid: 20138
+ - uid: 12880
components:
- type: Transform
- pos: -27.5,13.5
+ pos: 59.5,-30.5
parent: 2
- - uid: 20139
+ - uid: 12881
components:
- type: Transform
- pos: -28.5,13.5
+ pos: 58.5,-30.5
parent: 2
- - uid: 20140
+ - uid: 12882
components:
- type: Transform
- pos: -29.5,13.5
+ pos: 57.5,-30.5
parent: 2
- - uid: 20141
+ - uid: 12883
components:
- type: Transform
- pos: -30.5,13.5
+ pos: 56.5,-30.5
parent: 2
- - uid: 20142
+ - uid: 12884
components:
- type: Transform
- pos: -31.5,13.5
+ pos: 55.5,-30.5
parent: 2
- - uid: 20143
+ - uid: 12885
components:
- type: Transform
- pos: -32.5,13.5
+ pos: 54.5,-30.5
parent: 2
- - uid: 20144
+ - uid: 12886
components:
- type: Transform
- pos: -32.5,14.5
+ pos: 53.5,-30.5
parent: 2
- - uid: 20145
+ - uid: 12887
components:
- type: Transform
- pos: -32.5,15.5
+ pos: 52.5,-30.5
parent: 2
- - uid: 20146
+ - uid: 12889
components:
- type: Transform
- pos: -32.5,16.5
+ pos: 60.5,-29.5
parent: 2
- - uid: 20147
+ - uid: 12892
components:
- type: Transform
- pos: -32.5,17.5
+ pos: 50.5,-33.5
parent: 2
- - uid: 20148
+ - uid: 12894
components:
- type: Transform
- pos: -32.5,18.5
+ pos: 49.5,-33.5
parent: 2
- - uid: 20149
+ - uid: 12895
components:
- type: Transform
- pos: -32.5,19.5
+ pos: 48.5,-33.5
parent: 2
- - uid: 20150
+ - uid: 12896
components:
- type: Transform
- pos: -33.5,13.5
+ pos: 47.5,-33.5
parent: 2
- - uid: 20151
+ - uid: 12897
components:
- type: Transform
- pos: -33.5,12.5
+ pos: 46.5,-33.5
parent: 2
- - uid: 20152
+ - uid: 12898
components:
- type: Transform
- pos: -33.5,11.5
+ pos: 45.5,-33.5
parent: 2
- - uid: 20153
+ - uid: 12899
components:
- type: Transform
- pos: -33.5,10.5
+ pos: 44.5,-33.5
parent: 2
- - uid: 20154
+ - uid: 12900
components:
- type: Transform
- pos: -33.5,9.5
+ pos: 44.5,-32.5
parent: 2
- - uid: 20155
+ - uid: 12901
components:
- type: Transform
- pos: -33.5,8.5
+ pos: 44.5,-31.5
parent: 2
- - uid: 20156
+ - uid: 12902
components:
- type: Transform
- pos: -33.5,7.5
+ pos: 44.5,-30.5
parent: 2
- - uid: 20157
+ - uid: 12903
components:
- type: Transform
- pos: -33.5,6.5
+ pos: 44.5,-29.5
parent: 2
- - uid: 20158
+ - uid: 12904
components:
- type: Transform
- pos: -33.5,5.5
+ pos: 44.5,-28.5
parent: 2
- - uid: 20159
+ - uid: 12905
components:
- type: Transform
- pos: -33.5,4.5
+ pos: 44.5,-27.5
parent: 2
- - uid: 20160
+ - uid: 12906
components:
- type: Transform
- pos: -33.5,3.5
+ pos: 44.5,-26.5
parent: 2
- - uid: 20161
+ - uid: 12907
components:
- type: Transform
- pos: -33.5,2.5
+ pos: 45.5,-26.5
parent: 2
- - uid: 20162
+ - uid: 12908
components:
- type: Transform
- pos: -33.5,1.5
+ pos: 46.5,-26.5
parent: 2
- - uid: 20163
+ - uid: 12909
components:
- type: Transform
- pos: -33.5,0.5
+ pos: 46.5,-25.5
parent: 2
- - uid: 20164
+ - uid: 12910
components:
- type: Transform
- pos: -33.5,-0.5
+ pos: 46.5,-24.5
parent: 2
- - uid: 20165
+ - uid: 12911
components:
- type: Transform
- pos: -33.5,-1.5
+ pos: 46.5,-23.5
parent: 2
- - uid: 20166
+ - uid: 12912
components:
- type: Transform
- pos: -33.5,-2.5
+ pos: 46.5,-22.5
parent: 2
- - uid: 20167
+ - uid: 12913
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: 46.5,-21.5
parent: 2
- - uid: 20168
+ - uid: 12914
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: 46.5,-20.5
parent: 2
- - uid: 20169
+ - uid: 12915
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: 46.5,-19.5
parent: 2
- - uid: 20174
+ - uid: 12916
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: 46.5,-18.5
parent: 2
- - uid: 20175
+ - uid: 12917
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: 46.5,-17.5
parent: 2
- - uid: 20176
+ - uid: 12918
components:
- type: Transform
- pos: -32.5,-9.5
+ pos: 42.5,-26.5
parent: 2
- - uid: 20177
+ - uid: 12919
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: 41.5,-26.5
parent: 2
- - uid: 20178
+ - uid: 12920
components:
- type: Transform
- pos: -32.5,-11.5
+ pos: 40.5,-26.5
parent: 2
- - uid: 20179
+ - uid: 13050
components:
- type: Transform
- pos: -32.5,-12.5
+ pos: 37.5,33.5
parent: 2
- - uid: 20180
+ - uid: 13193
components:
- type: Transform
- pos: -32.5,-13.5
+ pos: -61.5,25.5
parent: 2
- - uid: 20181
+ - uid: 13194
components:
- type: Transform
- pos: -32.5,-14.5
+ pos: -61.5,24.5
parent: 2
- - uid: 20182
+ - uid: 13195
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -61.5,23.5
parent: 2
- - uid: 20183
+ - uid: 13239
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: 47.5,-29.5
parent: 2
- - uid: 20205
+ - uid: 13290
components:
- type: Transform
- pos: -43.5,56.5
+ pos: 83.5,7.5
parent: 2
- - uid: 20418
+ - uid: 13291
components:
- type: Transform
- pos: 38.5,1.5
+ pos: 85.5,12.5
parent: 2
- - uid: 20419
+ - uid: 13292
components:
- type: Transform
- pos: 38.5,0.5
+ pos: 85.5,19.5
parent: 2
- - uid: 20420
+ - uid: 13293
components:
- type: Transform
- pos: 38.5,-0.5
+ pos: 85.5,18.5
parent: 2
- - uid: 20421
+ - uid: 13300
components:
- type: Transform
- pos: 38.5,-1.5
+ pos: 85.5,20.5
parent: 2
- - uid: 20422
+ - uid: 13356
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: 56.5,-39.5
parent: 2
- - uid: 20423
+ - uid: 13402
components:
- type: Transform
- pos: 38.5,-3.5
+ pos: 55.5,-34.5
parent: 2
- - uid: 20424
+ - uid: 13403
components:
- type: Transform
- pos: 38.5,-4.5
+ pos: 55.5,-33.5
parent: 2
- - uid: 20425
+ - uid: 13404
components:
- type: Transform
- pos: 38.5,-5.5
+ pos: 56.5,-33.5
parent: 2
- - uid: 20426
+ - uid: 13405
components:
- type: Transform
- pos: 38.5,-6.5
+ pos: 57.5,-33.5
parent: 2
- - uid: 20427
+ - uid: 13406
components:
- type: Transform
- pos: 38.5,-7.5
+ pos: 57.5,-34.5
parent: 2
- - uid: 20428
+ - uid: 13407
components:
- type: Transform
- pos: 38.5,-8.5
+ pos: 55.5,-32.5
parent: 2
- - uid: 20429
+ - uid: 13408
components:
- type: Transform
- pos: 38.5,-9.5
+ pos: 55.5,-31.5
parent: 2
- - uid: 20430
+ - uid: 13409
components:
- type: Transform
- pos: 38.5,-10.5
+ pos: 57.5,-31.5
parent: 2
- - uid: 20431
+ - uid: 13410
components:
- type: Transform
- pos: 38.5,-11.5
+ pos: 57.5,-32.5
parent: 2
- - uid: 20432
+ - uid: 13411
components:
- type: Transform
- pos: 38.5,-12.5
+ pos: 55.5,-35.5
parent: 2
- - uid: 20433
+ - uid: 13412
components:
- type: Transform
- pos: 38.5,-13.5
+ pos: 55.5,-36.5
parent: 2
- - uid: 20434
+ - uid: 13413
components:
- type: Transform
- pos: 38.5,-14.5
+ pos: 55.5,-37.5
parent: 2
- - uid: 20657
+ - uid: 13414
components:
- type: Transform
- pos: -44.5,56.5
+ pos: 55.5,-38.5
parent: 2
- - uid: 20867
+ - uid: 13415
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 56.5,-38.5
parent: 2
- - uid: 21046
+ - uid: 13416
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 57.5,-37.5
parent: 2
- - uid: 21199
+ - uid: 13417
components:
- type: Transform
- pos: 39.5,13.5
+ pos: 57.5,-38.5
parent: 2
- - uid: 21241
+ - uid: 13418
components:
- type: Transform
- pos: -44.5,17.5
+ pos: 57.5,-36.5
parent: 2
- - uid: 21242
+ - uid: 13419
components:
- type: Transform
- pos: -44.5,18.5
+ pos: 57.5,-35.5
parent: 2
- - uid: 21243
+ - uid: 13420
components:
- type: Transform
- pos: -44.5,19.5
+ pos: 56.5,-40.5
parent: 2
- - uid: 21244
+ - uid: 13421
components:
- type: Transform
- pos: -44.5,20.5
+ pos: 61.5,-44.5
parent: 2
- - uid: 21245
+ - uid: 13422
components:
- type: Transform
- pos: -44.5,21.5
+ pos: 62.5,-44.5
parent: 2
- - uid: 21246
+ - uid: 13423
components:
- type: Transform
- pos: -44.5,22.5
+ pos: 59.5,-46.5
parent: 2
- - uid: 21247
+ - uid: 13424
components:
- type: Transform
- pos: -44.5,23.5
+ pos: 61.5,-46.5
parent: 2
- - uid: 21248
+ - uid: 13425
components:
- type: Transform
- pos: -44.5,24.5
+ pos: 59.5,-50.5
parent: 2
- - uid: 21249
+ - uid: 13426
components:
- type: Transform
- pos: -44.5,25.5
+ pos: 58.5,-76.5
parent: 2
- - uid: 21250
+ - uid: 13427
components:
- type: Transform
- pos: -44.5,26.5
+ pos: 64.5,-70.5
parent: 2
- - uid: 21251
+ - uid: 13428
components:
- type: Transform
- pos: -43.5,26.5
+ pos: 49.5,-71.5
parent: 2
- - uid: 21252
+ - uid: 13429
components:
- type: Transform
- pos: -42.5,26.5
+ pos: 63.5,-46.5
parent: 2
- - uid: 21253
+ - uid: 13430
components:
- type: Transform
- pos: -41.5,26.5
+ pos: 64.5,-46.5
parent: 2
- - uid: 21254
+ - uid: 13431
components:
- type: Transform
- pos: -40.5,26.5
+ pos: 60.5,-46.5
parent: 2
- - uid: 21255
+ - uid: 13432
components:
- type: Transform
- pos: -39.5,26.5
+ pos: 62.5,-46.5
parent: 2
- - uid: 21256
+ - uid: 13433
components:
- type: Transform
- pos: -38.5,26.5
+ pos: -93.5,-35.5
parent: 2
- - uid: 21257
+ - uid: 13434
components:
- type: Transform
- pos: -38.5,27.5
+ pos: -81.5,-53.5
parent: 2
- - uid: 21258
+ - uid: 13435
components:
- type: Transform
- pos: -38.5,28.5
+ pos: -81.5,-59.5
parent: 2
- - uid: 21259
+ - uid: 13436
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -95.5,-53.5
parent: 2
- - uid: 21260
+ - uid: 13437
components:
- type: Transform
- pos: -38.5,30.5
+ pos: -94.5,-55.5
parent: 2
- - uid: 21261
+ - uid: 13438
components:
- type: Transform
- pos: -38.5,31.5
+ pos: -98.5,-49.5
parent: 2
- - uid: 21262
+ - uid: 13439
components:
- type: Transform
- pos: -38.5,32.5
+ pos: -94.5,-48.5
parent: 2
- - uid: 21263
+ - uid: 13440
components:
- type: Transform
- pos: -38.5,33.5
+ pos: -86.5,-55.5
parent: 2
- - uid: 21264
+ - uid: 13443
components:
- type: Transform
- pos: -38.5,34.5
+ pos: -83.5,-58.5
parent: 2
- - uid: 21265
+ - uid: 13444
components:
- type: Transform
- pos: -39.5,34.5
+ pos: -87.5,-54.5
parent: 2
- - uid: 21266
+ - uid: 13445
components:
- type: Transform
- pos: -39.5,35.5
+ pos: -86.5,-59.5
parent: 2
- - uid: 21267
+ - uid: 13446
components:
- type: Transform
- pos: -37.5,26.5
+ pos: -97.5,-49.5
parent: 2
- - uid: 21268
+ - uid: 13447
components:
- type: Transform
- pos: -36.5,26.5
+ pos: -93.5,-55.5
parent: 2
- - uid: 21269
+ - uid: 13448
components:
- type: Transform
- pos: -35.5,26.5
+ pos: -95.5,-55.5
parent: 2
- - uid: 21270
+ - uid: 13449
components:
- type: Transform
- pos: -34.5,26.5
+ pos: -85.5,-55.5
parent: 2
- - uid: 21271
+ - uid: 13450
components:
- type: Transform
- pos: -33.5,26.5
+ pos: -80.5,-59.5
parent: 2
- - uid: 21272
+ - uid: 13451
components:
- type: Transform
- pos: -32.5,26.5
+ pos: -96.5,-53.5
parent: 2
- - uid: 21273
+ - uid: 13452
components:
- type: Transform
- pos: -32.5,25.5
+ pos: -82.5,-58.5
parent: 2
- - uid: 21274
+ - uid: 13453
components:
- type: Transform
- pos: -32.5,24.5
+ pos: -90.5,-39.5
parent: 2
- - uid: 21275
+ - uid: 13457
components:
- type: Transform
- pos: -32.5,23.5
+ pos: -94.5,-38.5
parent: 2
- - uid: 21276
+ - uid: 13458
components:
- type: Transform
- pos: -32.5,22.5
+ pos: -93.5,-38.5
parent: 2
- - uid: 21277
+ - uid: 13462
components:
- type: Transform
- pos: -32.5,21.5
+ pos: -97.5,-39.5
parent: 2
- - uid: 21835
+ - uid: 13463
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: -96.5,-38.5
parent: 2
- - uid: 21836
+ - uid: 13464
components:
- type: Transform
- pos: 1.5,-24.5
+ pos: -97.5,-38.5
parent: 2
- - uid: 21837
+ - uid: 13465
components:
- type: Transform
- pos: 1.5,-26.5
+ pos: -92.5,-38.5
parent: 2
- - uid: 21980
+ - uid: 13473
components:
- type: Transform
- pos: -65.5,8.5
+ pos: 56.5,-69.5
parent: 2
- - uid: 21981
+ - uid: 13483
components:
- type: Transform
- pos: -66.5,8.5
+ pos: -68.5,-34.5
parent: 2
- - uid: 21982
+ - uid: 13493
components:
- type: Transform
- pos: -67.5,8.5
+ pos: -80.5,60.5
parent: 2
- - uid: 21983
+ - uid: 13494
components:
- type: Transform
- pos: -68.5,8.5
+ pos: 56.5,-41.5
parent: 2
- - uid: 21984
+ - uid: 13504
components:
- type: Transform
- pos: -69.5,8.5
+ pos: 56.5,-70.5
parent: 2
- - uid: 21985
+ - uid: 13505
components:
- type: Transform
- pos: -70.5,8.5
+ pos: 56.5,-76.5
parent: 2
- - uid: 21986
+ - uid: 13506
components:
- type: Transform
- pos: -71.5,8.5
+ pos: 56.5,-77.5
parent: 2
- - uid: 21987
+ - uid: 13507
components:
- type: Transform
- pos: -72.5,8.5
+ pos: 56.5,-78.5
parent: 2
- - uid: 21988
+ - uid: 13508
components:
- type: Transform
- pos: -73.5,8.5
+ pos: 57.5,-78.5
parent: 2
- - uid: 21989
+ - uid: 13509
components:
- type: Transform
- pos: -74.5,8.5
+ pos: 58.5,-80.5
parent: 2
- - uid: 21990
+ - uid: 13510
components:
- type: Transform
- pos: -75.5,8.5
+ pos: 58.5,-81.5
parent: 2
- - uid: 21991
+ - uid: 13511
components:
- type: Transform
- pos: -76.5,8.5
+ pos: 59.5,-82.5
parent: 2
- - uid: 21992
+ - uid: 13512
components:
- type: Transform
- pos: -77.5,8.5
+ pos: 59.5,-83.5
parent: 2
- - uid: 21993
+ - uid: 13513
components:
- type: Transform
- pos: -78.5,8.5
+ pos: 60.5,-83.5
parent: 2
- - uid: 21994
+ - uid: 13514
components:
- type: Transform
- pos: -79.5,8.5
+ pos: 62.5,-83.5
parent: 2
- - uid: 21995
+ - uid: 13515
components:
- type: Transform
- pos: -80.5,8.5
+ pos: 62.5,-84.5
parent: 2
- - uid: 21996
+ - uid: 13516
components:
- type: Transform
- pos: -81.5,8.5
+ pos: 63.5,-84.5
parent: 2
- - uid: 21997
+ - uid: 13518
components:
- type: Transform
- pos: -82.5,8.5
+ pos: -80.5,64.5
parent: 2
- - uid: 21998
+ - uid: 13536
components:
- type: Transform
- pos: -83.5,8.5
+ pos: -80.5,-44.5
parent: 2
- - uid: 21999
+ - uid: 13537
components:
- type: Transform
- pos: -84.5,8.5
+ pos: -82.5,-40.5
parent: 2
- - uid: 22000
+ - uid: 13538
components:
- type: Transform
- pos: -85.5,8.5
+ pos: -94.5,-40.5
parent: 2
- - uid: 22001
+ - uid: 13539
components:
- type: Transform
- pos: -86.5,8.5
+ pos: -93.5,-40.5
parent: 2
- - uid: 22002
+ - uid: 13540
components:
- type: Transform
- pos: -87.5,8.5
+ pos: -94.5,-45.5
parent: 2
- - uid: 22003
+ - uid: 13541
components:
- type: Transform
- pos: -88.5,8.5
+ pos: -92.5,-45.5
parent: 2
- - uid: 22004
+ - uid: 13542
components:
- type: Transform
- pos: -89.5,8.5
+ pos: -92.5,-44.5
parent: 2
- - uid: 22005
+ - uid: 13543
components:
- type: Transform
- pos: -90.5,8.5
+ pos: -92.5,-40.5
parent: 2
- - uid: 22006
+ - uid: 13545
components:
- type: Transform
- pos: -91.5,8.5
+ pos: -94.5,-43.5
parent: 2
- - uid: 22007
+ - uid: 13546
components:
- type: Transform
- pos: -92.5,8.5
+ pos: -92.5,-43.5
parent: 2
- - uid: 22008
+ - uid: 13547
components:
- type: Transform
- pos: -93.5,8.5
+ pos: -91.5,-44.5
parent: 2
- - uid: 22009
+ - uid: 13548
components:
- type: Transform
- pos: -94.5,8.5
+ pos: -93.5,-45.5
parent: 2
- - uid: 22010
+ - uid: 13549
components:
- type: Transform
- pos: -72.5,9.5
+ pos: -87.5,-39.5
parent: 2
- - uid: 22011
+ - uid: 13551
components:
- type: Transform
- pos: -72.5,10.5
+ pos: -81.5,-45.5
parent: 2
- - uid: 22012
+ - uid: 13552
components:
- type: Transform
- pos: -72.5,11.5
+ pos: -88.5,-39.5
parent: 2
- - uid: 22013
+ - uid: 13553
components:
- type: Transform
- pos: -72.5,12.5
+ pos: -85.5,-40.5
parent: 2
- - uid: 22014
+ - uid: 13554
components:
- type: Transform
- pos: -72.5,13.5
+ pos: -86.5,-40.5
parent: 2
- - uid: 22015
+ - uid: 13555
components:
- type: Transform
- pos: -72.5,14.5
+ pos: -86.5,-39.5
parent: 2
- - uid: 22016
+ - uid: 13556
components:
- type: Transform
- pos: -72.5,15.5
+ pos: -91.5,-34.5
parent: 2
- - uid: 22017
+ - uid: 13557
components:
- type: Transform
- pos: -72.5,16.5
+ pos: -92.5,-34.5
parent: 2
- - uid: 22018
+ - uid: 13562
components:
- type: Transform
- pos: -72.5,17.5
+ pos: -83.5,-40.5
parent: 2
- - uid: 22019
+ - uid: 13563
components:
- type: Transform
- pos: -72.5,18.5
+ pos: -84.5,-40.5
parent: 2
- - uid: 22020
+ - uid: 13564
components:
- type: Transform
- pos: -72.5,19.5
+ pos: -81.5,-40.5
parent: 2
- - uid: 22021
+ - uid: 13565
components:
- type: Transform
- pos: -72.5,20.5
+ pos: -86.5,-43.5
parent: 2
- - uid: 22022
+ - uid: 13566
components:
- type: Transform
- pos: -72.5,21.5
+ pos: -90.5,-44.5
parent: 2
- - uid: 22023
+ - uid: 13567
components:
- type: Transform
- pos: -72.5,22.5
+ pos: -86.5,-44.5
parent: 2
- - uid: 22024
+ - uid: 13568
components:
- type: Transform
- pos: -72.5,23.5
+ pos: -89.5,-44.5
parent: 2
- - uid: 22025
+ - uid: 13569
components:
- type: Transform
- pos: -72.5,24.5
+ pos: -87.5,-44.5
parent: 2
- - uid: 22178
+ - uid: 13570
components:
- type: Transform
- pos: -117.5,37.5
+ pos: -85.5,-43.5
parent: 2
- - uid: 22179
+ - uid: 13571
components:
- type: Transform
- pos: -118.5,37.5
+ pos: -88.5,-44.5
parent: 2
- - uid: 22180
+ - uid: 13572
components:
- type: Transform
- pos: -119.5,37.5
+ pos: -81.5,-44.5
parent: 2
- - uid: 22181
+ - uid: 13573
components:
- type: Transform
- pos: -120.5,37.5
+ pos: -97.5,-45.5
parent: 2
- - uid: 22182
+ - uid: 13574
components:
- type: Transform
- pos: -121.5,37.5
+ pos: -93.5,-43.5
parent: 2
- - uid: 22183
+ - uid: 13575
components:
- type: Transform
- pos: -122.5,37.5
+ pos: -96.5,-45.5
parent: 2
- - uid: 22184
+ - uid: 13576
components:
- type: Transform
- pos: -123.5,37.5
+ pos: -95.5,-45.5
parent: 2
- - uid: 22185
+ - uid: 13578
components:
- type: Transform
- pos: -124.5,37.5
+ pos: -98.5,-39.5
parent: 2
- - uid: 22186
+ - uid: 13592
components:
- type: Transform
- pos: -125.5,37.5
+ pos: -80.5,54.5
parent: 2
- - uid: 22187
+ - uid: 13611
components:
- type: Transform
- pos: -125.5,38.5
+ pos: -80.5,52.5
parent: 2
- - uid: 22188
+ - uid: 13616
components:
- type: Transform
- pos: -125.5,39.5
+ pos: 56.5,-66.5
parent: 2
- - uid: 22189
+ - uid: 13617
components:
- type: Transform
- pos: -125.5,40.5
+ pos: 56.5,-50.5
parent: 2
- - uid: 22190
+ - uid: 13618
components:
- type: Transform
- pos: -125.5,41.5
+ pos: 56.5,-51.5
parent: 2
- - uid: 22191
+ - uid: 13619
components:
- type: Transform
- pos: -125.5,42.5
+ pos: 56.5,-54.5
parent: 2
- - uid: 22192
+ - uid: 13620
components:
- type: Transform
- pos: -126.5,40.5
+ pos: 56.5,-59.5
parent: 2
- - uid: 22193
+ - uid: 13621
components:
- type: Transform
- pos: -126.5,41.5
+ pos: 56.5,-48.5
parent: 2
- - uid: 22194
+ - uid: 13622
components:
- type: Transform
- pos: -126.5,42.5
+ pos: 56.5,-55.5
parent: 2
- - uid: 22195
+ - uid: 13627
components:
- type: Transform
- pos: -126.5,43.5
+ pos: -74.5,51.5
parent: 2
- - uid: 22196
+ - uid: 13639
components:
- type: Transform
- pos: -126.5,44.5
+ pos: 56.5,-64.5
parent: 2
- - uid: 22197
+ - uid: 13640
components:
- type: Transform
- pos: -126.5,45.5
+ pos: 56.5,-62.5
parent: 2
- - uid: 22198
+ - uid: 13641
components:
- type: Transform
- pos: -125.5,45.5
+ pos: 56.5,-67.5
parent: 2
- - uid: 22199
+ - uid: 13642
components:
- type: Transform
- pos: -125.5,46.5
+ pos: 56.5,-60.5
parent: 2
- - uid: 22200
+ - uid: 13643
components:
- type: Transform
- pos: -125.5,47.5
+ pos: 56.5,-61.5
parent: 2
- - uid: 22201
+ - uid: 13644
components:
- type: Transform
- pos: -125.5,48.5
+ pos: 56.5,-52.5
parent: 2
- - uid: 22202
+ - uid: 13668
components:
- type: Transform
- pos: -125.5,49.5
+ pos: -96.5,-40.5
parent: 2
- - uid: 22203
+ - uid: 13669
components:
- type: Transform
- pos: -125.5,50.5
+ pos: -95.5,-40.5
parent: 2
- - uid: 22204
+ - uid: 13670
components:
- type: Transform
- pos: -126.5,50.5
+ pos: -94.5,-58.5
parent: 2
- - uid: 22205
+ - uid: 13671
components:
- type: Transform
- pos: -126.5,51.5
+ pos: -93.5,-53.5
parent: 2
- - uid: 22206
+ - uid: 13672
components:
- type: Transform
- pos: -126.5,52.5
+ pos: -86.5,-53.5
parent: 2
- - uid: 22207
+ - uid: 13676
components:
- type: Transform
- pos: -126.5,53.5
+ pos: -89.5,-39.5
parent: 2
- - uid: 22208
+ - uid: 13677
components:
- type: Transform
- pos: -126.5,54.5
+ pos: -90.5,-34.5
parent: 2
- - uid: 22209
+ - uid: 13681
components:
- type: Transform
- pos: -126.5,55.5
+ pos: -86.5,-65.5
parent: 2
- - uid: 22210
+ - uid: 13682
components:
- type: Transform
- pos: -126.5,56.5
+ pos: -84.5,-65.5
parent: 2
- - uid: 22211
+ - uid: 13683
components:
- type: Transform
- pos: -125.5,56.5
+ pos: -82.5,-65.5
parent: 2
- - uid: 22212
+ - uid: 13720
components:
- type: Transform
- pos: -125.5,57.5
+ pos: 83.5,5.5
parent: 2
- - uid: 22213
+ - uid: 13721
components:
- type: Transform
- pos: -125.5,58.5
+ pos: 85.5,22.5
parent: 2
- - uid: 22214
+ - uid: 13726
components:
- type: Transform
- pos: -125.5,59.5
+ pos: 85.5,21.5
parent: 2
- - uid: 22215
+ - uid: 13730
components:
- type: Transform
- pos: -125.5,60.5
+ pos: 82.5,5.5
parent: 2
- - uid: 22216
+ - uid: 13746
components:
- type: Transform
- pos: -125.5,61.5
+ pos: 80.5,5.5
parent: 2
- - uid: 22217
+ - uid: 13748
components:
- type: Transform
- pos: -125.5,62.5
+ pos: 80.5,4.5
parent: 2
- - uid: 22218
+ - uid: 13762
components:
- type: Transform
- pos: -125.5,63.5
+ pos: 85.5,23.5
parent: 2
- - uid: 22219
+ - uid: 13763
components:
- type: Transform
- pos: -125.5,64.5
+ pos: 85.5,24.5
parent: 2
- - uid: 22220
+ - uid: 13764
components:
- type: Transform
- pos: -124.5,64.5
+ pos: 85.5,25.5
parent: 2
- - uid: 22221
+ - uid: 13765
components:
- type: Transform
- pos: -123.5,64.5
+ pos: 85.5,26.5
parent: 2
- - uid: 22222
+ - uid: 13766
components:
- type: Transform
- pos: -122.5,64.5
+ pos: 83.5,26.5
parent: 2
- - uid: 22223
+ - uid: 13767
components:
- type: Transform
- pos: -121.5,64.5
+ pos: 82.5,26.5
parent: 2
- - uid: 22224
+ - uid: 13768
components:
- type: Transform
- pos: -120.5,64.5
+ pos: 81.5,26.5
parent: 2
- - uid: 22225
+ - uid: 13769
components:
- type: Transform
- pos: -119.5,64.5
+ pos: 80.5,26.5
parent: 2
- - uid: 22226
+ - uid: 13770
components:
- type: Transform
- pos: -119.5,65.5
+ pos: 79.5,26.5
parent: 2
- - uid: 22227
+ - uid: 13771
components:
- type: Transform
- pos: -118.5,64.5
+ pos: 78.5,26.5
parent: 2
- - uid: 22228
+ - uid: 13776
components:
- type: Transform
- pos: -117.5,64.5
+ pos: 77.5,26.5
parent: 2
- - uid: 22229
+ - uid: 13777
components:
- type: Transform
- pos: -116.5,64.5
+ pos: 76.5,26.5
parent: 2
- - uid: 22230
+ - uid: 13778
components:
- type: Transform
- pos: -115.5,64.5
+ pos: 75.5,26.5
parent: 2
- - uid: 22231
+ - uid: 13779
components:
- type: Transform
- pos: -114.5,64.5
+ pos: 74.5,26.5
parent: 2
- - uid: 22232
+ - uid: 13784
components:
- type: Transform
- pos: -113.5,64.5
+ pos: 73.5,26.5
parent: 2
- - uid: 22233
+ - uid: 13787
components:
- type: Transform
- pos: -113.5,65.5
+ pos: 73.5,27.5
parent: 2
- - uid: 22234
+ - uid: 13792
components:
- type: Transform
- pos: -112.5,65.5
+ pos: -32.5,68.5
parent: 2
- - uid: 22235
+ - uid: 13799
components:
- type: Transform
- pos: -111.5,65.5
+ pos: 73.5,28.5
parent: 2
- - uid: 22236
+ - uid: 13800
components:
- type: Transform
- pos: -111.5,64.5
+ pos: 73.5,29.5
parent: 2
- - uid: 22237
+ - uid: 13808
components:
- type: Transform
- pos: -110.5,64.5
+ pos: -40.5,71.5
parent: 2
- - uid: 22238
+ - uid: 13828
components:
- type: Transform
- pos: -109.5,64.5
+ pos: -46.5,68.5
parent: 2
- - uid: 22239
+ - uid: 13833
components:
- type: Transform
- pos: -108.5,64.5
+ pos: -50.5,-38.5
parent: 2
- - uid: 22240
+ - uid: 13834
components:
- type: Transform
- pos: -107.5,64.5
+ pos: 82.5,-9.5
parent: 2
- - uid: 22241
+ - uid: 14292
components:
- type: Transform
- pos: -106.5,64.5
+ pos: 1.5,44.5
parent: 2
- - uid: 22242
+ - uid: 14293
components:
- type: Transform
- pos: -105.5,64.5
+ pos: 1.5,43.5
parent: 2
- - uid: 22243
+ - uid: 14294
components:
- type: Transform
- pos: -104.5,64.5
+ pos: 1.5,42.5
parent: 2
- - uid: 22244
+ - uid: 14295
components:
- type: Transform
- pos: -103.5,64.5
+ pos: 1.5,41.5
parent: 2
- - uid: 22245
+ - uid: 14296
components:
- type: Transform
- pos: -102.5,64.5
+ pos: 1.5,40.5
parent: 2
- - uid: 22246
+ - uid: 14297
components:
- type: Transform
- pos: -101.5,64.5
+ pos: 1.5,39.5
parent: 2
- - uid: 22247
+ - uid: 14298
components:
- type: Transform
- pos: -101.5,65.5
+ pos: 1.5,33.5
parent: 2
- - uid: 22248
+ - uid: 14300
components:
- type: Transform
- pos: -100.5,65.5
+ pos: 1.5,36.5
parent: 2
- - uid: 22249
+ - uid: 14301
components:
- type: Transform
- pos: -101.5,63.5
+ pos: 1.5,35.5
parent: 2
- - uid: 22250
+ - uid: 14302
components:
- type: Transform
- pos: -100.5,63.5
+ pos: 1.5,34.5
parent: 2
- - uid: 22251
+ - uid: 14303
components:
- type: Transform
- pos: -99.5,63.5
+ pos: 1.5,37.5
parent: 2
- - uid: 22252
+ - uid: 14304
components:
- type: Transform
- pos: -99.5,62.5
+ pos: 1.5,32.5
parent: 2
- - uid: 22253
+ - uid: 14305
components:
- type: Transform
- pos: -99.5,61.5
+ pos: 1.5,31.5
parent: 2
- - uid: 22254
+ - uid: 14306
components:
- type: Transform
- pos: -99.5,60.5
+ pos: 1.5,30.5
parent: 2
- - uid: 22256
+ - uid: 14307
components:
- type: Transform
- pos: -98.5,60.5
+ pos: 1.5,29.5
parent: 2
- - uid: 23038
+ - uid: 14308
components:
- type: Transform
- pos: -61.5,44.5
+ pos: 1.5,28.5
parent: 2
- - uid: 23343
+ - uid: 14309
components:
- type: Transform
- pos: -17.5,35.5
+ pos: 1.5,27.5
parent: 2
- - uid: 23699
+ - uid: 14310
components:
- type: Transform
- pos: -27.5,55.5
+ pos: 1.5,26.5
parent: 2
- - uid: 23755
+ - uid: 14311
components:
- type: Transform
- pos: -2.5,64.5
+ pos: 1.5,25.5
parent: 2
- - uid: 23756
+ - uid: 14312
components:
- type: Transform
- pos: -1.5,64.5
+ pos: 1.5,24.5
parent: 2
- - uid: 23757
+ - uid: 14313
components:
- type: Transform
- pos: -0.5,64.5
+ pos: 1.5,23.5
parent: 2
- - uid: 23758
+ - uid: 14314
components:
- type: Transform
- pos: 0.5,64.5
+ pos: 1.5,22.5
parent: 2
- - uid: 23822
+ - uid: 14315
components:
- type: Transform
- pos: -20.5,35.5
+ pos: 1.5,21.5
parent: 2
- - uid: 25227
+ - uid: 14316
components:
- type: Transform
- pos: -22.5,35.5
+ pos: 1.5,20.5
parent: 2
- - uid: 26459
+ - uid: 14317
components:
- type: Transform
- pos: -51.5,62.5
+ pos: 1.5,18.5
parent: 2
- - uid: 27868
+ - uid: 14318
components:
- type: Transform
- pos: -71.5,24.5
+ pos: 1.5,17.5
parent: 2
- - uid: 29266
+ - uid: 14319
components:
- type: Transform
- pos: -15.5,43.5
+ pos: 1.5,16.5
parent: 2
- - uid: 29491
+ - uid: 14320
components:
- type: Transform
- pos: 51.5,32.5
+ pos: 1.5,15.5
parent: 2
- - uid: 29492
+ - uid: 14321
components:
- type: Transform
- pos: 52.5,32.5
+ pos: 1.5,14.5
parent: 2
- - uid: 29493
+ - uid: 14322
components:
- type: Transform
- pos: 50.5,32.5
+ pos: 1.5,13.5
parent: 2
- - uid: 29531
+ - uid: 14323
components:
- type: Transform
- pos: 49.5,32.5
+ pos: 1.5,12.5
parent: 2
- - uid: 29568
+ - uid: 14324
components:
- type: Transform
- pos: 44.5,32.5
+ pos: 1.5,11.5
parent: 2
- - uid: 29569
+ - uid: 14325
components:
- type: Transform
- pos: 47.5,32.5
+ pos: 1.5,10.5
parent: 2
- - uid: 29640
+ - uid: 14326
components:
- type: Transform
- pos: 43.5,32.5
+ pos: 1.5,9.5
parent: 2
- - uid: 29641
+ - uid: 14327
components:
- type: Transform
- pos: 41.5,32.5
+ pos: 1.5,8.5
parent: 2
- - uid: 29712
+ - uid: 14328
components:
- type: Transform
- pos: 39.5,32.5
+ pos: 1.5,7.5
parent: 2
- - uid: 29976
+ - uid: 14329
components:
- type: Transform
- pos: -65.5,-21.5
+ pos: 1.5,6.5
parent: 2
- - uid: 30094
+ - uid: 14330
components:
- type: Transform
- pos: -17.5,44.5
+ pos: 1.5,5.5
parent: 2
- - uid: 30320
+ - uid: 14331
components:
- type: Transform
- pos: 1.5,-25.5
+ pos: 1.5,4.5
parent: 2
- - uid: 30737
+ - uid: 14332
components:
- type: Transform
- pos: 39.5,33.5
+ pos: 1.5,3.5
parent: 2
- - uid: 30738
+ - uid: 14333
components:
- type: Transform
- pos: 40.5,32.5
+ pos: 1.5,2.5
parent: 2
- - uid: 30739
+ - uid: 14334
components:
- type: Transform
- pos: 42.5,32.5
+ pos: 1.5,1.5
parent: 2
- - uid: 30740
+ - uid: 14335
components:
- type: Transform
- pos: 46.5,32.5
+ pos: 1.5,0.5
parent: 2
- - uid: 30741
+ - uid: 14336
components:
- type: Transform
- pos: 45.5,32.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 30749
+ - uid: 14337
components:
- type: Transform
- pos: 48.5,32.5
+ pos: 1.5,-1.5
parent: 2
- - uid: 30800
+ - uid: 14338
components:
- type: Transform
- pos: -41.5,69.5
+ pos: 1.5,-2.5
parent: 2
- - uid: 30801
+ - uid: 14339
components:
- type: Transform
- pos: -42.5,69.5
+ pos: 1.5,-3.5
parent: 2
- - uid: 30804
+ - uid: 14340
components:
- type: Transform
- pos: 1.5,-23.5
+ pos: 1.5,-4.5
parent: 2
- - uid: 30810
+ - uid: 14341
components:
- type: Transform
- pos: -46.5,64.5
+ pos: 1.5,-5.5
parent: 2
- - uid: 30811
+ - uid: 14342
components:
- type: Transform
- pos: -46.5,63.5
+ pos: 1.5,-6.5
parent: 2
- - uid: 30812
+ - uid: 14343
components:
- type: Transform
- pos: -46.5,62.5
+ pos: 1.5,-7.5
parent: 2
- - uid: 30813
+ - uid: 14344
components:
- type: Transform
- pos: -46.5,61.5
+ pos: 1.5,-8.5
parent: 2
- - uid: 30814
+ - uid: 14345
components:
- type: Transform
- pos: -46.5,60.5
+ pos: 1.5,-9.5
parent: 2
- - uid: 30815
+ - uid: 14346
components:
- type: Transform
- pos: -46.5,59.5
+ pos: 1.5,-10.5
parent: 2
- - uid: 30824
+ - uid: 14347
components:
- type: Transform
- pos: -40.5,56.5
+ pos: 1.5,-11.5
parent: 2
- - uid: 30825
+ - uid: 14348
components:
- type: Transform
- pos: -39.5,56.5
+ pos: 1.5,-12.5
parent: 2
- - uid: 30826
+ - uid: 14349
components:
- type: Transform
- pos: -38.5,56.5
+ pos: 1.5,-13.5
parent: 2
- - uid: 30827
+ - uid: 14350
components:
- type: Transform
- pos: -37.5,56.5
+ pos: 1.5,-14.5
parent: 2
- - uid: 30828
+ - uid: 14353
components:
- type: Transform
- pos: -36.5,56.5
+ pos: 4.5,44.5
parent: 2
- - uid: 30829
+ - uid: 14354
components:
- type: Transform
- pos: -35.5,56.5
+ pos: 5.5,44.5
parent: 2
- - uid: 30830
+ - uid: 14376
components:
- type: Transform
- pos: -35.5,54.5
+ pos: 1.5,38.5
parent: 2
- - uid: 30831
+ - uid: 14509
components:
- type: Transform
- pos: -35.5,53.5
+ pos: 32.5,51.5
parent: 2
- - uid: 30832
+ - uid: 14510
components:
- type: Transform
- pos: -34.5,53.5
+ pos: 31.5,51.5
parent: 2
- - uid: 30833
+ - uid: 14511
components:
- type: Transform
- pos: -33.5,53.5
+ pos: 31.5,50.5
parent: 2
- - uid: 30834
+ - uid: 14512
components:
- type: Transform
- pos: -32.5,53.5
+ pos: 31.5,49.5
parent: 2
- - uid: 30835
+ - uid: 14513
components:
- type: Transform
- pos: -31.5,53.5
+ pos: 31.5,48.5
parent: 2
- - uid: 30836
+ - uid: 14514
components:
- type: Transform
- pos: -30.5,53.5
+ pos: 31.5,47.5
parent: 2
- - uid: 30837
+ - uid: 14515
components:
- type: Transform
- pos: -29.5,53.5
+ pos: 31.5,46.5
parent: 2
- - uid: 30838
+ - uid: 14516
components:
- type: Transform
- pos: -29.5,52.5
+ pos: 31.5,45.5
parent: 2
- - uid: 30839
+ - uid: 14517
components:
- type: Transform
- pos: -29.5,51.5
+ pos: 31.5,44.5
parent: 2
- - uid: 30840
+ - uid: 14518
components:
- type: Transform
- pos: -28.5,51.5
+ pos: 31.5,43.5
parent: 2
- - uid: 30841
+ - uid: 14519
components:
- type: Transform
- pos: -27.5,51.5
+ pos: 32.5,43.5
parent: 2
- - uid: 30842
+ - uid: 14520
components:
- type: Transform
- pos: -26.5,51.5
+ pos: 33.5,43.5
parent: 2
- - uid: 30843
+ - uid: 14521
components:
- type: Transform
- pos: -25.5,51.5
+ pos: 34.5,43.5
parent: 2
- - uid: 30844
+ - uid: 14522
components:
- type: Transform
- pos: -24.5,51.5
+ pos: 34.5,42.5
parent: 2
- - uid: 30845
+ - uid: 14523
components:
- type: Transform
- pos: -23.5,51.5
+ pos: 34.5,41.5
parent: 2
- - uid: 30846
+ - uid: 14524
components:
- type: Transform
- pos: -22.5,51.5
+ pos: 34.5,40.5
parent: 2
- - uid: 30847
+ - uid: 14525
components:
- type: Transform
- pos: -21.5,51.5
+ pos: 34.5,39.5
parent: 2
- - uid: 30848
+ - uid: 14526
components:
- type: Transform
- pos: -20.5,51.5
+ pos: 34.5,38.5
parent: 2
- - uid: 30849
+ - uid: 14527
components:
- type: Transform
- pos: -19.5,51.5
+ pos: 34.5,37.5
parent: 2
- - uid: 30850
+ - uid: 14528
components:
- type: Transform
- pos: -18.5,51.5
+ pos: 34.5,36.5
parent: 2
- - uid: 31033
+ - uid: 14529
components:
- type: Transform
- pos: 52.5,33.5
+ pos: 34.5,35.5
parent: 2
- - uid: 31034
+ - uid: 14530
components:
- type: Transform
- pos: 52.5,34.5
+ pos: 34.5,34.5
parent: 2
- - uid: 31035
+ - uid: 14531
components:
- type: Transform
- pos: 52.5,35.5
+ pos: 34.5,33.5
parent: 2
- - uid: 31036
+ - uid: 14532
components:
- type: Transform
- pos: 52.5,36.5
+ pos: 33.5,33.5
parent: 2
- - uid: 31037
+ - uid: 14533
components:
- type: Transform
- pos: 52.5,37.5
+ pos: 32.5,33.5
parent: 2
- - uid: 31038
+ - uid: 14534
components:
- type: Transform
- pos: 52.5,38.5
+ pos: 31.5,33.5
parent: 2
- - uid: 31039
+ - uid: 14535
components:
- type: Transform
- pos: 52.5,39.5
+ pos: 30.5,33.5
parent: 2
- - uid: 31041
+ - uid: 14536
components:
- type: Transform
- pos: 53.5,39.5
+ pos: 29.5,33.5
parent: 2
- - uid: 31042
+ - uid: 14537
components:
- type: Transform
- pos: 54.5,39.5
+ pos: 28.5,33.5
parent: 2
- - uid: 31043
+ - uid: 14538
components:
- type: Transform
- pos: 54.5,40.5
+ pos: 27.5,33.5
parent: 2
- - uid: 31049
+ - uid: 14539
components:
- type: Transform
- pos: 54.5,41.5
+ pos: 26.5,33.5
parent: 2
- - uid: 31050
+ - uid: 14540
components:
- type: Transform
- pos: 54.5,42.5
+ pos: 25.5,33.5
parent: 2
- - uid: 31051
+ - uid: 14541
components:
- type: Transform
- pos: 53.5,42.5
+ pos: 24.5,33.5
parent: 2
- - uid: 31052
+ - uid: 14542
components:
- type: Transform
- pos: 52.5,42.5
+ pos: 23.5,33.5
parent: 2
- - uid: 31053
+ - uid: 14543
components:
- type: Transform
- pos: 51.5,42.5
+ pos: 22.5,33.5
parent: 2
- - uid: 31056
+ - uid: 14544
components:
- type: Transform
- pos: 51.5,43.5
+ pos: 21.5,33.5
parent: 2
- - uid: 31067
+ - uid: 14545
components:
- type: Transform
- pos: 51.5,44.5
+ pos: 20.5,33.5
parent: 2
- - uid: 31092
+ - uid: 14546
components:
- type: Transform
- pos: -51.5,65.5
+ pos: 19.5,33.5
parent: 2
- - uid: 31228
+ - uid: 14547
components:
- type: Transform
- pos: -93.5,66.5
+ pos: 18.5,33.5
parent: 2
- - uid: 31229
+ - uid: 14548
components:
- type: Transform
- pos: -92.5,67.5
+ pos: 17.5,33.5
parent: 2
- - uid: 31242
+ - uid: 14549
components:
- type: Transform
- pos: -51.5,64.5
+ pos: 16.5,33.5
parent: 2
- - uid: 31243
+ - uid: 14550
components:
- type: Transform
- pos: -51.5,66.5
+ pos: 15.5,33.5
parent: 2
- - uid: 31244
+ - uid: 14551
components:
- type: Transform
- pos: -51.5,67.5
+ pos: 14.5,33.5
parent: 2
- - uid: 31245
+ - uid: 14552
components:
- type: Transform
- pos: -51.5,68.5
+ pos: 13.5,33.5
parent: 2
- - uid: 31246
+ - uid: 14553
components:
- type: Transform
- pos: -51.5,69.5
+ pos: 12.5,33.5
parent: 2
- - uid: 31247
+ - uid: 14554
components:
- type: Transform
- pos: -51.5,70.5
+ pos: 11.5,33.5
parent: 2
- - uid: 31248
+ - uid: 14555
components:
- type: Transform
- pos: -51.5,71.5
+ pos: 10.5,33.5
parent: 2
- - uid: 31249
+ - uid: 14556
components:
- type: Transform
- pos: -51.5,72.5
+ pos: 9.5,33.5
parent: 2
- - uid: 31250
+ - uid: 14557
components:
- type: Transform
- pos: -51.5,73.5
+ pos: 8.5,33.5
parent: 2
- - uid: 31252
+ - uid: 14558
components:
- type: Transform
- pos: -50.5,73.5
+ pos: 7.5,33.5
parent: 2
- - uid: 31253
+ - uid: 14559
components:
- type: Transform
- pos: -49.5,73.5
+ pos: 6.5,33.5
parent: 2
- - uid: 31254
+ - uid: 14560
components:
- type: Transform
- pos: -48.5,73.5
+ pos: 5.5,33.5
parent: 2
- - uid: 31255
+ - uid: 14561
components:
- type: Transform
- pos: -47.5,73.5
+ pos: 4.5,33.5
parent: 2
- - uid: 31256
+ - uid: 14562
components:
- type: Transform
- pos: -46.5,73.5
+ pos: 3.5,33.5
parent: 2
- - uid: 31257
+ - uid: 14563
components:
- type: Transform
- pos: -45.5,73.5
+ pos: 2.5,33.5
parent: 2
- - uid: 31258
+ - uid: 14564
components:
- type: Transform
- pos: -44.5,73.5
+ pos: 17.5,-26.5
parent: 2
- - uid: 31259
+ - uid: 14565
components:
- type: Transform
- pos: -43.5,73.5
+ pos: -34.5,68.5
parent: 2
- - uid: 31260
+ - uid: 14591
components:
- type: Transform
- pos: -42.5,73.5
+ pos: 16.5,-26.5
parent: 2
- - uid: 31261
+ - uid: 14632
components:
- type: Transform
- pos: -41.5,73.5
+ pos: -40.5,70.5
parent: 2
- - uid: 31262
+ - uid: 14887
components:
- type: Transform
- pos: -40.5,73.5
+ pos: -88.5,59.5
parent: 2
- - uid: 31263
+ - uid: 14888
components:
- type: Transform
- pos: -39.5,73.5
+ pos: -88.5,59.5
parent: 2
- - uid: 31264
+ - uid: 14889
components:
- type: Transform
- pos: -38.5,73.5
+ pos: -87.5,59.5
parent: 2
- - uid: 31285
+ - uid: 14925
components:
- type: Transform
- pos: -80.5,53.5
+ pos: 79.5,-16.5
parent: 2
- - uid: 31289
+ - uid: 14934
components:
- type: Transform
- pos: -59.5,44.5
+ pos: 53.5,10.5
parent: 2
- - uid: 31290
+ - uid: 14935
components:
- type: Transform
- pos: -58.5,44.5
+ pos: 53.5,11.5
parent: 2
- - uid: 31291
+ - uid: 14936
components:
- type: Transform
- pos: -57.5,44.5
+ pos: 53.5,12.5
parent: 2
- - uid: 31292
+ - uid: 14937
components:
- type: Transform
- pos: -56.5,44.5
+ pos: 53.5,13.5
parent: 2
- - uid: 31293
+ - uid: 14938
components:
- type: Transform
- pos: -55.5,44.5
+ pos: 53.5,14.5
parent: 2
- - uid: 31294
+ - uid: 14939
components:
- type: Transform
- pos: -54.5,44.5
+ pos: 53.5,15.5
parent: 2
- - uid: 31295
+ - uid: 14940
components:
- type: Transform
- pos: -54.5,43.5
+ pos: 53.5,16.5
parent: 2
- - uid: 31296
+ - uid: 14941
components:
- type: Transform
- pos: -54.5,42.5
+ pos: 53.5,17.5
parent: 2
- - uid: 31297
+ - uid: 14942
components:
- type: Transform
- pos: -54.5,41.5
+ pos: 52.5,17.5
parent: 2
- - uid: 31298
+ - uid: 14943
components:
- type: Transform
- pos: -54.5,40.5
+ pos: 51.5,17.5
parent: 2
- - uid: 31328
+ - uid: 14944
components:
- type: Transform
- pos: -92.5,66.5
+ pos: 50.5,17.5
parent: 2
- - uid: 31410
+ - uid: 15077
components:
- type: Transform
- pos: 4.5,-21.5
+ pos: 24.5,21.5
parent: 2
- - uid: 31697
+ - uid: 15107
components:
- type: Transform
- pos: -64.5,-21.5
+ pos: 24.5,20.5
parent: 2
- - uid: 31794
+ - uid: 15130
components:
- type: Transform
- pos: -16.5,43.5
+ pos: 24.5,22.5
parent: 2
- - uid: 31795
+ - uid: 15131
components:
- type: Transform
- pos: -68.5,-3.5
+ pos: 24.5,23.5
parent: 2
- - uid: 31796
+ - uid: 15132
components:
- type: Transform
- pos: -68.5,-2.5
+ pos: 24.5,24.5
parent: 2
- - uid: 31797
+ - uid: 15133
components:
- type: Transform
- pos: -67.5,-3.5
+ pos: 24.5,25.5
parent: 2
- - uid: 31798
+ - uid: 15134
components:
- type: Transform
- pos: -66.5,-3.5
+ pos: 24.5,26.5
parent: 2
- - uid: 31799
+ - uid: 15135
components:
- type: Transform
- pos: -65.5,-3.5
+ pos: 24.5,27.5
parent: 2
- - uid: 31843
+ - uid: 15136
components:
- type: Transform
- pos: -62.5,26.5
+ pos: 24.5,28.5
parent: 2
- - uid: 31845
+ - uid: 15137
components:
- type: Transform
- pos: -62.5,24.5
+ pos: 24.5,29.5
parent: 2
- - uid: 31846
+ - uid: 15138
components:
- type: Transform
- pos: -62.5,23.5
+ pos: 24.5,30.5
parent: 2
- - uid: 31847
+ - uid: 15139
components:
- type: Transform
- pos: -63.5,26.5
+ pos: 24.5,31.5
parent: 2
- - uid: 31848
+ - uid: 15140
components:
- type: Transform
- pos: -63.5,25.5
+ pos: 24.5,32.5
parent: 2
- - uid: 31849
+ - uid: 15153
components:
- type: Transform
- pos: -63.5,24.5
+ pos: 83.5,-18.5
parent: 2
- - uid: 31850
+ - uid: 15194
components:
- type: Transform
- pos: -63.5,23.5
+ pos: -46.5,66.5
parent: 2
- - uid: 31851
+ - uid: 15237
components:
- type: Transform
- pos: -64.5,26.5
+ pos: -37.5,48.5
parent: 2
- - uid: 31852
+ - uid: 15272
components:
- type: Transform
- pos: -64.5,25.5
+ pos: -44.5,69.5
parent: 2
- - uid: 31853
+ - uid: 15288
components:
- type: Transform
- pos: -64.5,24.5
+ pos: 79.5,-14.5
parent: 2
- - uid: 31854
+ - uid: 15326
components:
- type: Transform
- pos: -64.5,23.5
+ pos: -16.5,45.5
parent: 2
- - uid: 31855
+ - uid: 15327
components:
- type: Transform
- pos: -60.5,26.5
+ pos: -15.5,45.5
parent: 2
- - uid: 31856
+ - uid: 15328
components:
- type: Transform
- pos: -60.5,25.5
+ pos: -4.5,40.5
parent: 2
- - uid: 31857
+ - uid: 15459
components:
- type: Transform
- pos: -60.5,24.5
+ pos: -3.5,40.5
parent: 2
- - uid: 31858
+ - uid: 15460
components:
- type: Transform
- pos: -60.5,23.5
+ pos: -6.5,40.5
parent: 2
- - uid: 31859
+ - uid: 15461
components:
- type: Transform
- pos: -59.5,26.5
+ pos: -26.5,49.5
parent: 2
- - uid: 31860
+ - uid: 15465
components:
- type: Transform
- pos: -59.5,25.5
+ pos: -5.5,40.5
parent: 2
- - uid: 31861
+ - uid: 15466
components:
- type: Transform
- pos: -59.5,24.5
+ pos: -25.5,55.5
parent: 2
- - uid: 31862
+ - uid: 15467
components:
- type: Transform
- pos: -59.5,23.5
+ pos: -24.5,55.5
parent: 2
- - uid: 31863
+ - uid: 15471
components:
- type: Transform
- pos: -58.5,26.5
+ pos: -23.5,55.5
parent: 2
- - uid: 31864
+ - uid: 15490
components:
- type: Transform
- pos: -58.5,25.5
+ pos: -37.5,55.5
parent: 2
- - uid: 31865
+ - uid: 15516
components:
- type: Transform
- pos: -58.5,24.5
+ pos: -37.5,51.5
parent: 2
- - uid: 31866
+ - uid: 15534
components:
- type: Transform
- pos: -58.5,23.5
+ pos: -37.5,54.5
parent: 2
- - uid: 31891
+ - uid: 15536
components:
- type: Transform
- pos: -79.5,51.5
+ pos: -26.5,23.5
parent: 2
- - uid: 31899
+ - uid: 15543
components:
- type: Transform
- pos: 50.5,-79.5
+ pos: 79.5,-11.5
parent: 2
- - uid: 31900
+ - uid: 15620
components:
- type: Transform
- pos: 65.5,-75.5
+ pos: -49.5,52.5
parent: 2
- - uid: 31901
+ - uid: 15642
components:
- type: Transform
- pos: 53.5,-71.5
+ pos: -31.5,23.5
parent: 2
- - uid: 31902
+ - uid: 15695
components:
- type: Transform
- pos: 65.5,-76.5
+ pos: -8.5,40.5
parent: 2
- - uid: 31903
+ - uid: 15700
components:
- type: Transform
- pos: 52.5,-71.5
+ pos: -14.5,40.5
parent: 2
- - uid: 31907
+ - uid: 15702
components:
- type: Transform
- pos: -80.5,51.5
+ pos: -28.5,39.5
parent: 2
- - uid: 31922
+ - uid: 15709
components:
- type: Transform
- pos: -89.5,-54.5
+ pos: -14.5,45.5
parent: 2
- - uid: 31923
+ - uid: 15712
components:
- type: Transform
- pos: -89.5,-60.5
+ pos: -26.5,48.5
parent: 2
- - uid: 31924
+ - uid: 15795
components:
- type: Transform
- pos: -89.5,-59.5
+ pos: -34.5,55.5
parent: 2
- - uid: 31925
+ - uid: 15799
components:
- type: Transform
- pos: -89.5,-58.5
+ pos: -33.5,55.5
parent: 2
- - uid: 31960
+ - uid: 15828
components:
- type: Transform
- pos: -81.5,-39.5
+ pos: -23.5,25.5
parent: 2
- - uid: 31998
+ - uid: 15836
components:
- type: Transform
- pos: -80.5,-39.5
+ pos: -48.5,52.5
parent: 2
- - uid: 32006
+ - uid: 15908
components:
- type: Transform
- pos: -85.5,-38.5
+ pos: -26.5,45.5
parent: 2
- - uid: 32007
+ - uid: 15909
components:
- type: Transform
- pos: -89.5,-57.5
+ pos: -25.5,45.5
parent: 2
- - uid: 32008
+ - uid: 15910
components:
- type: Transform
- pos: -89.5,-38.5
+ pos: -26.5,46.5
parent: 2
- - uid: 32009
+ - uid: 15911
components:
- type: Transform
- pos: -89.5,-47.5
+ pos: -12.5,44.5
parent: 2
- - uid: 32162
+ - uid: 15912
components:
- type: Transform
- pos: -93.5,50.5
+ pos: -31.5,55.5
parent: 2
- - uid: 32163
+ - uid: 15915
components:
- type: Transform
- pos: -93.5,49.5
+ pos: -13.5,45.5
parent: 2
- - uid: 32164
+ - uid: 16026
components:
- type: Transform
- pos: -93.5,48.5
+ pos: -1.5,30.5
parent: 2
- - uid: 32165
+ - uid: 16027
components:
- type: Transform
- pos: -94.5,48.5
+ pos: -0.5,30.5
parent: 2
- - uid: 32166
+ - uid: 16032
components:
- type: Transform
- pos: -95.5,48.5
+ pos: 0.5,26.5
parent: 2
- - uid: 32167
+ - uid: 16043
components:
- type: Transform
- pos: -96.5,48.5
+ pos: -2.5,40.5
parent: 2
- - uid: 32168
+ - uid: 16044
components:
- type: Transform
- pos: -97.5,48.5
+ pos: -2.5,39.5
parent: 2
- - uid: 32169
+ - uid: 16045
components:
- type: Transform
- pos: -98.5,48.5
+ pos: -2.5,38.5
parent: 2
- - uid: 32170
+ - uid: 16046
components:
- type: Transform
- pos: -99.5,48.5
+ pos: -2.5,37.5
parent: 2
- - uid: 32171
+ - uid: 16047
components:
- type: Transform
- pos: -100.5,48.5
+ pos: -2.5,36.5
parent: 2
- - uid: 32172
+ - uid: 16048
components:
- type: Transform
- pos: -100.5,47.5
+ pos: -2.5,35.5
parent: 2
- - uid: 32173
+ - uid: 16049
components:
- type: Transform
- pos: -100.5,46.5
+ pos: -2.5,34.5
parent: 2
- - uid: 32224
+ - uid: 16050
components:
- type: Transform
- pos: -99.5,52.5
+ pos: -2.5,33.5
parent: 2
- - uid: 32225
+ - uid: 16051
components:
- type: Transform
- pos: -98.5,52.5
+ pos: -2.5,32.5
parent: 2
- - uid: 32226
+ - uid: 16052
components:
- type: Transform
- pos: -97.5,52.5
+ pos: -2.5,31.5
parent: 2
- - uid: 32227
+ - uid: 16053
components:
- type: Transform
- pos: -99.5,50.5
+ pos: -2.5,30.5
parent: 2
- - uid: 32228
+ - uid: 16056
components:
- type: Transform
- pos: -98.5,50.5
+ pos: 0.5,30.5
parent: 2
- - uid: 32229
+ - uid: 16298
components:
- type: Transform
- pos: -97.5,50.5
+ pos: 44.5,13.5
parent: 2
- - uid: 32294
+ - uid: 16371
components:
- type: Transform
- pos: -99.5,64.5
+ pos: 1.5,63.5
parent: 2
- - uid: 32295
+ - uid: 16372
components:
- type: Transform
- pos: -98.5,64.5
+ pos: 1.5,62.5
parent: 2
- - uid: 32296
+ - uid: 16373
components:
- type: Transform
- pos: -97.5,64.5
+ pos: 1.5,61.5
parent: 2
- - uid: 32297
+ - uid: 16374
components:
- type: Transform
- pos: -94.5,66.5
+ pos: 1.5,60.5
parent: 2
- - uid: 32298
+ - uid: 16375
components:
- type: Transform
- pos: -94.5,65.5
+ pos: 1.5,59.5
parent: 2
- - uid: 32299
+ - uid: 16376
components:
- type: Transform
- pos: -95.5,65.5
+ pos: 1.5,58.5
parent: 2
- - uid: 32312
+ - uid: 16377
components:
- type: Transform
- pos: -86.5,-34.5
+ pos: 1.5,57.5
parent: 2
- - uid: 33710
+ - uid: 16378
components:
- type: Transform
- pos: -15.5,41.5
+ pos: 1.5,56.5
parent: 2
- - uid: 34050
+ - uid: 16379
components:
- type: Transform
- pos: -0.5,-37.5
+ pos: 1.5,55.5
parent: 2
- - uid: 34051
+ - uid: 16380
components:
- type: Transform
- pos: 0.5,-37.5
+ pos: 1.5,54.5
parent: 2
- - uid: 34052
+ - uid: 16381
components:
- type: Transform
- pos: 1.5,-37.5
+ pos: 1.5,53.5
parent: 2
- - uid: 34053
+ - uid: 16382
components:
- type: Transform
- pos: 2.5,-37.5
+ pos: 1.5,52.5
parent: 2
- - uid: 34054
+ - uid: 16383
components:
- type: Transform
- pos: 3.5,-37.5
+ pos: 1.5,51.5
parent: 2
- - uid: 34760
+ - uid: 16384
components:
- type: Transform
- pos: -17.5,50.5
+ pos: 1.5,50.5
parent: 2
- - uid: 34814
+ - uid: 16385
components:
- type: Transform
- pos: -54.5,52.5
+ pos: 1.5,49.5
parent: 2
- - uid: 34817
+ - uid: 16386
components:
- type: Transform
- pos: -51.5,52.5
+ pos: 1.5,48.5
parent: 2
- - uid: 34818
+ - uid: 16387
components:
- type: Transform
- pos: -52.5,52.5
+ pos: 1.5,47.5
parent: 2
- - uid: 34819
+ - uid: 16388
components:
- type: Transform
- pos: -53.5,52.5
+ pos: 1.5,46.5
parent: 2
- - uid: 34820
+ - uid: 16389
components:
- type: Transform
- pos: -54.5,51.5
+ pos: 1.5,45.5
parent: 2
- - uid: 34821
+ - uid: 16416
components:
- type: Transform
- pos: -54.5,50.5
+ pos: -29.5,55.5
parent: 2
- - uid: 34822
+ - uid: 16443
components:
- type: Transform
- pos: -54.5,49.5
+ pos: -37.5,49.5
parent: 2
- - uid: 34823
+ - uid: 16446
components:
- type: Transform
- pos: -54.5,48.5
+ pos: -28.5,23.5
parent: 2
- - uid: 34824
+ - uid: 16457
components:
- type: Transform
- pos: -54.5,47.5
+ pos: -19.5,64.5
parent: 2
- - uid: 34825
+ - uid: 16458
components:
- type: Transform
- pos: -54.5,46.5
+ pos: -11.5,64.5
parent: 2
- - uid: 34826
+ - uid: 16459
components:
- type: Transform
- pos: -54.5,45.5
+ pos: -16.5,64.5
parent: 2
- - uid: 35086
+ - uid: 16460
components:
- type: Transform
- pos: -80.5,61.5
+ pos: -17.5,64.5
parent: 2
- - uid: 35087
+ - uid: 16461
components:
- type: Transform
- pos: -80.5,65.5
+ pos: -13.5,64.5
parent: 2
- - uid: 35088
+ - uid: 16462
components:
- type: Transform
- pos: -80.5,66.5
+ pos: -22.5,64.5
parent: 2
- - uid: 35089
+ - uid: 16463
components:
- type: Transform
- pos: -80.5,67.5
+ pos: -20.5,64.5
parent: 2
- - uid: 35090
+ - uid: 16464
components:
- type: Transform
- pos: -80.5,68.5
+ pos: -18.5,64.5
parent: 2
- - uid: 35091
+ - uid: 16465
components:
- type: Transform
- pos: -80.5,70.5
+ pos: -21.5,64.5
parent: 2
- - uid: 35092
+ - uid: 16466
components:
- type: Transform
- pos: -80.5,72.5
+ pos: -14.5,64.5
parent: 2
- - uid: 35093
+ - uid: 16467
components:
- type: Transform
- pos: -80.5,73.5
+ pos: -9.5,64.5
parent: 2
- - uid: 35094
+ - uid: 16469
components:
- type: Transform
- pos: -80.5,75.5
+ pos: -15.5,64.5
parent: 2
- - uid: 35095
+ - uid: 16470
components:
- type: Transform
- pos: -80.5,76.5
+ pos: -4.5,64.5
parent: 2
- - uid: 35096
+ - uid: 16471
components:
- type: Transform
- pos: -80.5,77.5
+ pos: -6.5,64.5
parent: 2
- - uid: 35097
+ - uid: 16514
components:
- type: Transform
- pos: -80.5,78.5
+ pos: -48.5,-38.5
parent: 2
- - uid: 35098
+ - uid: 16516
components:
- type: Transform
- pos: -80.5,79.5
+ pos: -39.5,-38.5
parent: 2
- - uid: 35099
+ - uid: 16526
components:
- type: Transform
- pos: -80.5,82.5
+ pos: 43.5,13.5
parent: 2
- - uid: 35100
+ - uid: 16546
components:
- type: Transform
- pos: -80.5,83.5
+ pos: -12.5,45.5
parent: 2
- - uid: 35101
+ - uid: 16635
components:
- type: Transform
- pos: -80.5,84.5
+ pos: 79.5,-17.5
parent: 2
- - uid: 35102
+ - uid: 16642
components:
- type: Transform
- pos: -80.5,86.5
+ pos: 87.5,-20.5
parent: 2
- - uid: 35103
+ - uid: 16643
components:
- type: Transform
- pos: -80.5,87.5
+ pos: 86.5,-20.5
parent: 2
- - uid: 35104
+ - uid: 16646
components:
- type: Transform
- pos: -80.5,88.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 35105
+ - uid: 16659
components:
- type: Transform
- pos: -80.5,93.5
+ pos: 79.5,-13.5
parent: 2
- - uid: 35106
+ - uid: 16669
components:
- type: Transform
- pos: -80.5,92.5
+ pos: 85.5,-20.5
parent: 2
- - uid: 35107
+ - uid: 16687
components:
- type: Transform
- pos: -80.5,98.5
+ pos: 81.5,-16.5
parent: 2
- - uid: 35108
+ - uid: 16699
components:
- type: Transform
- pos: -80.5,100.5
+ pos: 101.5,-9.5
parent: 2
- - uid: 35109
+ - uid: 16701
components:
- type: Transform
- pos: -80.5,101.5
+ pos: 83.5,-16.5
parent: 2
- - uid: 35110
+ - uid: 16704
components:
- type: Transform
- pos: -80.5,102.5
+ pos: 82.5,-18.5
parent: 2
- - uid: 35111
+ - uid: 16706
components:
- type: Transform
- pos: -81.5,102.5
+ pos: 82.5,-13.5
parent: 2
- - uid: 35112
+ - uid: 17005
components:
- type: Transform
- pos: -81.5,103.5
+ pos: -8.5,64.5
parent: 2
- - uid: 35113
+ - uid: 17012
components:
- type: Transform
- pos: -80.5,90.5
+ pos: -37.5,50.5
parent: 2
- - uid: 35114
+ - uid: 17023
components:
- type: Transform
- pos: -77.5,96.5
+ pos: -10.5,64.5
parent: 2
- - uid: 35115
+ - uid: 17024
components:
- type: Transform
- pos: -76.5,96.5
+ pos: -25.5,64.5
parent: 2
- - uid: 35116
+ - uid: 17025
components:
- type: Transform
- pos: -75.5,96.5
+ pos: -24.5,64.5
parent: 2
- - uid: 35117
+ - uid: 17026
components:
- type: Transform
- pos: -74.5,96.5
+ pos: -24.5,45.5
parent: 2
- - uid: 35118
+ - uid: 17029
components:
- type: Transform
- pos: -72.5,95.5
+ pos: -26.5,55.5
parent: 2
- - uid: 35119
+ - uid: 17376
components:
- type: Transform
- pos: -72.5,94.5
+ pos: -1.5,1.5
parent: 2
- - uid: 35120
+ - uid: 17380
components:
- type: Transform
- pos: -73.5,94.5
+ pos: -0.5,1.5
parent: 2
- - uid: 35121
+ - uid: 17382
components:
- type: Transform
- pos: -71.5,90.5
+ pos: 0.5,1.5
parent: 2
- - uid: 35122
+ - uid: 17619
components:
- type: Transform
- pos: -72.5,90.5
+ pos: -46.5,65.5
parent: 2
- - uid: 35123
+ - uid: 17765
components:
- type: Transform
- pos: -72.5,91.5
+ pos: -51.5,-36.5
parent: 2
- - uid: 35124
+ - uid: 17820
components:
- type: Transform
- pos: -73.5,91.5
+ pos: -24.5,26.5
parent: 2
- - uid: 35125
+ - uid: 17876
components:
- type: Transform
- pos: -74.5,91.5
+ pos: 4.5,43.5
parent: 2
- - uid: 35126
+ - uid: 17964
components:
- type: Transform
- pos: -76.5,91.5
+ pos: -46.5,69.5
parent: 2
- - uid: 35127
+ - uid: 17965
components:
- type: Transform
- pos: -77.5,91.5
+ pos: -45.5,69.5
parent: 2
- - uid: 35128
+ - uid: 17967
components:
- type: Transform
- pos: -77.5,90.5
+ pos: -46.5,67.5
parent: 2
- - uid: 35129
+ - uid: 17974
components:
- type: Transform
- pos: -78.5,90.5
+ pos: -24.5,23.5
parent: 2
- - uid: 35130
+ - uid: 17977
components:
- type: Transform
- pos: -79.5,90.5
+ pos: -23.5,23.5
parent: 2
- - uid: 35131
+ - uid: 18002
components:
- type: Transform
- pos: -81.5,90.5
+ pos: 82.5,-12.5
parent: 2
- - uid: 35132
+ - uid: 18036
components:
- type: Transform
- pos: -80.5,91.5
+ pos: -23.5,24.5
parent: 2
- - uid: 35133
+ - uid: 18082
components:
- type: Transform
- pos: -72.5,86.5
+ pos: -23.5,26.5
parent: 2
- - uid: 35134
+ - uid: 18115
components:
- type: Transform
- pos: -82.5,90.5
+ pos: -7.5,68.5
parent: 2
- - uid: 35135
+ - uid: 18121
components:
- type: Transform
- pos: -83.5,89.5
+ pos: -26.5,26.5
parent: 2
- - uid: 35136
+ - uid: 18223
components:
- type: Transform
- pos: -84.5,89.5
+ pos: -7.5,70.5
parent: 2
- - uid: 35137
+ - uid: 18317
components:
- type: Transform
- pos: -83.5,90.5
+ pos: -46.5,58.5
parent: 2
- - uid: 35138
+ - uid: 18323
components:
- type: Transform
- pos: -85.5,86.5
+ pos: -3.5,70.5
parent: 2
- - uid: 35139
+ - uid: 18335
components:
- type: Transform
- pos: -88.5,84.5
+ pos: -8.5,68.5
parent: 2
- - uid: 35140
+ - uid: 18336
components:
- type: Transform
- pos: -87.5,84.5
+ pos: -1.5,70.5
parent: 2
- - uid: 35141
+ - uid: 18341
components:
- type: Transform
- pos: -86.5,84.5
+ pos: -0.5,70.5
parent: 2
- - uid: 35142
+ - uid: 18342
components:
- type: Transform
- pos: -77.5,86.5
+ pos: -2.5,70.5
parent: 2
- - uid: 35143
+ - uid: 18355
components:
- type: Transform
- pos: -76.5,86.5
+ pos: -40.5,72.5
parent: 2
- - uid: 35144
+ - uid: 18359
components:
- type: Transform
- pos: -75.5,86.5
+ pos: -37.5,-38.5
parent: 2
- - uid: 35145
+ - uid: 18511
components:
- type: Transform
- pos: -77.5,85.5
+ pos: 87.5,-13.5
parent: 2
- - uid: 35146
+ - uid: 18523
components:
- type: Transform
- pos: -78.5,85.5
+ pos: 89.5,-27.5
parent: 2
- - uid: 35147
+ - uid: 18528
components:
- type: Transform
- pos: -80.5,89.5
+ pos: 87.5,-23.5
parent: 2
- - uid: 35148
+ - uid: 18540
components:
- type: Transform
- pos: -71.5,85.5
+ pos: 86.5,-9.5
parent: 2
- - uid: 35149
+ - uid: 18559
components:
- type: Transform
- pos: -72.5,85.5
+ pos: 84.5,-23.5
parent: 2
- - uid: 35150
+ - uid: 18563
components:
- type: Transform
- pos: -72.5,84.5
+ pos: 83.5,-9.5
parent: 2
- - uid: 35151
+ - uid: 18585
components:
- type: Transform
- pos: -73.5,84.5
+ pos: 106.5,-28.5
parent: 2
- - uid: 35152
+ - uid: 18586
components:
- type: Transform
- pos: -72.5,79.5
+ pos: 111.5,-4.5
parent: 2
- - uid: 35153
+ - uid: 18587
components:
- type: Transform
- pos: -73.5,79.5
+ pos: 108.5,-28.5
parent: 2
- - uid: 35154
+ - uid: 18588
components:
- type: Transform
- pos: -74.5,79.5
+ pos: 113.5,-6.5
parent: 2
- - uid: 35155
+ - uid: 18589
components:
- type: Transform
- pos: -72.5,80.5
+ pos: 112.5,-4.5
parent: 2
- - uid: 35156
+ - uid: 18590
components:
- type: Transform
- pos: -71.5,80.5
+ pos: 110.5,-4.5
parent: 2
- - uid: 35157
+ - uid: 18591
components:
- type: Transform
- pos: -76.5,81.5
+ pos: 113.5,-4.5
parent: 2
- - uid: 35158
+ - uid: 18592
components:
- type: Transform
- pos: -77.5,81.5
+ pos: 103.5,-28.5
parent: 2
- - uid: 35159
+ - uid: 18593
components:
- type: Transform
- pos: -73.5,81.5
+ pos: 102.5,-28.5
parent: 2
- - uid: 35160
+ - uid: 18594
components:
- type: Transform
- pos: -72.5,81.5
+ pos: 101.5,-28.5
parent: 2
- - uid: 35161
+ - uid: 18595
components:
- type: Transform
- pos: -73.5,76.5
+ pos: 100.5,-28.5
parent: 2
- - uid: 35162
+ - uid: 18596
components:
- type: Transform
- pos: -74.5,76.5
+ pos: 113.5,-23.5
parent: 2
- - uid: 35163
+ - uid: 18597
components:
- type: Transform
- pos: -75.5,76.5
+ pos: 113.5,-20.5
parent: 2
- - uid: 35164
+ - uid: 18604
components:
- type: Transform
- pos: -76.5,76.5
+ pos: -89.5,-34.5
parent: 2
- - uid: 35165
+ - uid: 18605
components:
- type: Transform
- pos: -77.5,76.5
+ pos: -87.5,-34.5
parent: 2
- - uid: 35166
+ - uid: 18606
components:
- type: Transform
- pos: -71.5,55.5
+ pos: -88.5,-34.5
parent: 2
- - uid: 35167
+ - uid: 18607
components:
- type: Transform
- pos: -72.5,55.5
+ pos: -89.5,-37.5
parent: 2
- - uid: 35168
+ - uid: 18608
components:
- type: Transform
- pos: -72.5,54.5
+ pos: -89.5,-43.5
parent: 2
- - uid: 35169
+ - uid: 18609
components:
- type: Transform
- pos: -73.5,54.5
+ pos: -89.5,-46.5
parent: 2
- - uid: 35170
+ - uid: 18610
components:
- type: Transform
- pos: -74.5,54.5
+ pos: 99.5,-28.5
parent: 2
- - uid: 35171
+ - uid: 18611
components:
- type: Transform
- pos: -75.5,54.5
+ pos: 91.5,-4.5
parent: 2
- - uid: 35172
+ - uid: 18612
components:
- type: Transform
- pos: -76.5,54.5
+ pos: 92.5,-4.5
parent: 2
- - uid: 35173
+ - uid: 18613
components:
- type: Transform
- pos: -77.5,54.5
+ pos: 93.5,-4.5
parent: 2
- - uid: 35174
+ - uid: 18614
components:
- type: Transform
- pos: -77.5,55.5
+ pos: 94.5,-4.5
parent: 2
- - uid: 35175
+ - uid: 18615
components:
- type: Transform
- pos: -78.5,55.5
+ pos: 95.5,-4.5
parent: 2
- - uid: 35176
+ - uid: 18617
components:
- type: Transform
- pos: -79.5,55.5
+ pos: 96.5,-4.5
parent: 2
- - uid: 35177
+ - uid: 18619
components:
- type: Transform
- pos: -77.5,56.5
+ pos: -89.5,-40.5
parent: 2
- - uid: 35178
+ - uid: 18620
components:
- type: Transform
- pos: -76.5,56.5
+ pos: -89.5,-42.5
parent: 2
- - uid: 35179
+ - uid: 18621
components:
- type: Transform
- pos: -74.5,56.5
+ pos: 97.5,-4.5
parent: 2
- - uid: 35180
+ - uid: 18622
components:
- type: Transform
- pos: -73.5,56.5
+ pos: 98.5,-4.5
parent: 2
- - uid: 35181
+ - uid: 18623
components:
- type: Transform
- pos: -72.5,56.5
+ pos: 113.5,-14.5
parent: 2
- - uid: 35182
+ - uid: 18624
components:
- type: Transform
- pos: -81.5,55.5
+ pos: 113.5,-16.5
parent: 2
- - uid: 35183
+ - uid: 18625
components:
- type: Transform
- pos: -82.5,55.5
+ pos: 113.5,-17.5
parent: 2
- - uid: 35184
+ - uid: 18626
components:
- type: Transform
- pos: -83.5,55.5
+ pos: 111.5,-28.5
parent: 2
- - uid: 35185
+ - uid: 18627
components:
- type: Transform
- pos: -83.5,56.5
+ pos: 110.5,-28.5
parent: 2
- - uid: 35186
+ - uid: 18628
components:
- type: Transform
- pos: -84.5,56.5
+ pos: 109.5,-28.5
parent: 2
- - uid: 35187
+ - uid: 18629
components:
- type: Transform
- pos: -85.5,56.5
+ pos: 89.5,-24.5
parent: 2
- - uid: 35188
+ - uid: 18630
components:
- type: Transform
- pos: -86.5,56.5
+ pos: 89.5,-23.5
parent: 2
- - uid: 35189
+ - uid: 18631
components:
- type: Transform
- pos: -87.5,56.5
+ pos: 86.5,-23.5
parent: 2
- - uid: 35190
+ - uid: 18636
components:
- type: Transform
- pos: -88.5,56.5
+ pos: 103.5,-4.5
parent: 2
- - uid: 35191
+ - uid: 18637
components:
- type: Transform
- pos: -88.5,55.5
+ pos: 99.5,-4.5
parent: 2
- - uid: 35192
+ - uid: 18638
components:
- type: Transform
- pos: -89.5,55.5
+ pos: 101.5,-4.5
parent: 2
- - uid: 35193
+ - uid: 18695
components:
- type: Transform
- pos: -88.5,54.5
+ pos: -89.5,-51.5
parent: 2
- - uid: 35194
+ - uid: 18700
components:
- type: Transform
- pos: -87.5,54.5
+ pos: -86.5,-38.5
parent: 2
- - uid: 35195
+ - uid: 18701
components:
- type: Transform
- pos: -86.5,54.5
+ pos: -89.5,-52.5
parent: 2
- - uid: 35197
+ - uid: 18702
components:
- type: Transform
- pos: -79.5,60.5
+ pos: -85.5,-65.5
parent: 2
- - uid: 35198
+ - uid: 18750
components:
- type: Transform
- pos: -78.5,60.5
+ pos: 89.5,-26.5
parent: 2
- - uid: 35199
+ - uid: 18757
components:
- type: Transform
- pos: -77.5,60.5
+ pos: 83.5,-23.5
parent: 2
- - uid: 35200
+ - uid: 18763
components:
- type: Transform
- pos: -77.5,61.5
+ pos: 88.5,-23.5
parent: 2
- - uid: 35201
+ - uid: 18766
components:
- type: Transform
- pos: -76.5,61.5
+ pos: 87.5,-9.5
parent: 2
- - uid: 35202
+ - uid: 18786
components:
- type: Transform
- pos: -75.5,61.5
+ pos: -80.5,62.5
parent: 2
- - uid: 35203
+ - uid: 18799
components:
- type: Transform
- pos: -74.5,61.5
+ pos: 105.5,-28.5
parent: 2
- - uid: 35204
+ - uid: 18802
components:
- type: Transform
- pos: -76.5,59.5
+ pos: 107.5,-28.5
parent: 2
- - uid: 35205
+ - uid: 18825
components:
- type: Transform
- pos: -75.5,59.5
+ pos: 113.5,-18.5
parent: 2
- - uid: 35206
+ - uid: 18826
components:
- type: Transform
- pos: -74.5,59.5
+ pos: 113.5,-19.5
parent: 2
- - uid: 35207
+ - uid: 18850
components:
- type: Transform
- pos: -73.5,59.5
+ pos: 113.5,-7.5
parent: 2
- - uid: 35208
+ - uid: 18851
components:
- type: Transform
- pos: -72.5,60.5
+ pos: 113.5,-22.5
parent: 2
- - uid: 35209
+ - uid: 18852
components:
- type: Transform
- pos: -72.5,61.5
+ pos: 113.5,-25.5
parent: 2
- - uid: 35210
+ - uid: 18853
components:
- type: Transform
- pos: -71.5,60.5
+ pos: 113.5,-24.5
parent: 2
- - uid: 35211
+ - uid: 18854
components:
- type: Transform
- pos: -83.5,61.5
+ pos: 113.5,-21.5
parent: 2
- - uid: 35212
+ - uid: 18857
components:
- type: Transform
- pos: -84.5,61.5
+ pos: 113.5,-5.5
parent: 2
- - uid: 35213
+ - uid: 18858
components:
- type: Transform
- pos: -85.5,61.5
+ pos: 113.5,-8.5
parent: 2
- - uid: 35214
+ - uid: 18859
components:
- type: Transform
- pos: -86.5,61.5
+ pos: 113.5,-9.5
parent: 2
- - uid: 35215
+ - uid: 18884
components:
- type: Transform
- pos: -88.5,61.5
+ pos: 113.5,-10.5
parent: 2
- - uid: 35216
+ - uid: 18890
components:
- type: Transform
- pos: -88.5,60.5
+ pos: 113.5,-11.5
parent: 2
- - uid: 35217
+ - uid: 18891
components:
- type: Transform
- pos: -89.5,60.5
+ pos: 113.5,-12.5
parent: 2
- - uid: 35218
+ - uid: 18893
components:
- type: Transform
- pos: -87.5,59.5
+ pos: 113.5,-13.5
parent: 2
- - uid: 35219
+ - uid: 18908
components:
- type: Transform
- pos: -86.5,59.5
+ pos: 113.5,-15.5
parent: 2
- - uid: 35220
+ - uid: 18911
components:
- type: Transform
- pos: -85.5,59.5
+ pos: 102.5,-4.5
parent: 2
- - uid: 35221
+ - uid: 18912
components:
- type: Transform
- pos: -84.5,59.5
+ pos: 100.5,-4.5
parent: 2
- - uid: 35222
+ - uid: 18914
components:
- type: Transform
- pos: -83.5,59.5
+ pos: 104.5,-4.5
parent: 2
- - uid: 35223
+ - uid: 18915
components:
- type: Transform
- pos: -83.5,60.5
+ pos: 105.5,-4.5
parent: 2
- - uid: 35224
+ - uid: 18977
components:
- type: Transform
- pos: -82.5,60.5
+ pos: 84.5,-19.5
parent: 2
- - uid: 35225
+ - uid: 18985
components:
- type: Transform
- pos: -82.5,65.5
+ pos: 84.5,-18.5
parent: 2
- - uid: 35226
+ - uid: 18986
components:
- type: Transform
- pos: -83.5,65.5
+ pos: 78.5,-17.5
parent: 2
- - uid: 35227
+ - uid: 19000
components:
- type: Transform
- pos: -83.5,66.5
+ pos: 77.5,-15.5
parent: 2
- - uid: 35228
+ - uid: 19020
components:
- type: Transform
- pos: -84.5,66.5
+ pos: 86.5,-12.5
parent: 2
- - uid: 35229
+ - uid: 19021
components:
- type: Transform
- pos: -86.5,66.5
+ pos: 85.5,-12.5
parent: 2
- - uid: 35230
+ - uid: 19030
components:
- type: Transform
- pos: -87.5,66.5
+ pos: 84.5,-12.5
parent: 2
- - uid: 35231
+ - uid: 19031
components:
- type: Transform
- pos: -88.5,66.5
+ pos: 83.5,-19.5
parent: 2
- - uid: 35232
+ - uid: 19101
components:
- type: Transform
- pos: -88.5,65.5
+ pos: 73.5,30.5
parent: 2
- - uid: 35233
+ - uid: 19136
components:
- type: Transform
- pos: -89.5,65.5
+ pos: -32.5,12.5
parent: 2
- - uid: 35234
+ - uid: 19144
components:
- type: Transform
- pos: -87.5,64.5
+ pos: -32.5,11.5
parent: 2
- - uid: 35235
+ - uid: 19145
components:
- type: Transform
- pos: -86.5,64.5
+ pos: -32.5,10.5
parent: 2
- - uid: 35236
+ - uid: 19147
components:
- type: Transform
- pos: -78.5,65.5
+ pos: -32.5,8.5
parent: 2
- - uid: 35237
+ - uid: 19148
components:
- type: Transform
- pos: -77.5,65.5
+ pos: -32.5,7.5
parent: 2
- - uid: 35238
+ - uid: 19156
components:
- type: Transform
- pos: -74.5,66.5
+ pos: -32.5,9.5
parent: 2
- - uid: 35239
+ - uid: 19202
components:
- type: Transform
- pos: -73.5,66.5
+ pos: 100.5,-23.5
parent: 2
- - uid: 35240
+ - uid: 19208
components:
- type: Transform
- pos: -71.5,65.5
+ pos: 79.5,-15.5
parent: 2
- - uid: 35241
+ - uid: 19287
components:
- type: Transform
- pos: -72.5,65.5
+ pos: -61.5,32.5
parent: 2
- - uid: 35242
+ - uid: 19315
components:
- type: Transform
- pos: -74.5,64.5
+ pos: -46.5,60.5
parent: 2
- - uid: 35243
+ - uid: 19352
components:
- type: Transform
- pos: -75.5,64.5
+ pos: -61.5,-31.5
parent: 2
- - uid: 35244
+ - uid: 19356
components:
- type: Transform
- pos: -76.5,64.5
+ pos: -60.5,-31.5
parent: 2
- - uid: 35245
+ - uid: 19357
components:
- type: Transform
- pos: -77.5,64.5
+ pos: -59.5,-31.5
parent: 2
- - uid: 35246
+ - uid: 19358
components:
- type: Transform
- pos: -76.5,69.5
+ pos: -58.5,-31.5
parent: 2
- - uid: 35247
+ - uid: 19359
components:
- type: Transform
- pos: -75.5,69.5
+ pos: -57.5,-31.5
parent: 2
- - uid: 35248
+ - uid: 19360
components:
- type: Transform
- pos: -74.5,69.5
+ pos: -56.5,-31.5
parent: 2
- - uid: 35249
+ - uid: 19361
components:
- type: Transform
- pos: -73.5,69.5
+ pos: -55.5,-31.5
parent: 2
- - uid: 35250
+ - uid: 19420
components:
- type: Transform
- pos: -72.5,69.5
+ pos: -38.5,-38.5
parent: 2
- - uid: 35251
+ - uid: 19422
components:
- type: Transform
- pos: -72.5,70.5
+ pos: -36.5,-38.5
parent: 2
- - uid: 35252
+ - uid: 19426
components:
- type: Transform
- pos: -72.5,71.5
+ pos: -30.5,23.5
parent: 2
- - uid: 35253
+ - uid: 19432
components:
- type: Transform
- pos: -73.5,71.5
+ pos: -29.5,23.5
parent: 2
- - uid: 35254
+ - uid: 19634
components:
- type: Transform
- pos: -76.5,71.5
+ pos: -46.5,58.5
parent: 2
- - uid: 35255
+ - uid: 19660
components:
- type: Transform
- pos: -78.5,70.5
+ pos: 42.5,13.5
parent: 2
- - uid: 35256
+ - uid: 19694
components:
- type: Transform
- pos: -83.5,70.5
+ pos: 3.5,64.5
parent: 2
- - uid: 35257
+ - uid: 19695
components:
- type: Transform
- pos: -83.5,69.5
+ pos: 2.5,64.5
parent: 2
- - uid: 35258
+ - uid: 19696
components:
- type: Transform
- pos: -86.5,69.5
+ pos: 1.5,64.5
parent: 2
- - uid: 35259
+ - uid: 19697
components:
- type: Transform
- pos: -87.5,69.5
+ pos: 29.5,57.5
parent: 2
- - uid: 35260
+ - uid: 19698
components:
- type: Transform
- pos: -88.5,69.5
+ pos: 30.5,57.5
parent: 2
- - uid: 35261
+ - uid: 19699
components:
- type: Transform
- pos: -85.5,71.5
+ pos: 30.5,56.5
parent: 2
- - uid: 35262
+ - uid: 19700
components:
- type: Transform
- pos: -86.5,71.5
+ pos: 30.5,55.5
parent: 2
- - uid: 35263
+ - uid: 19701
components:
- type: Transform
- pos: -88.5,76.5
+ pos: 30.5,54.5
parent: 2
- - uid: 35264
+ - uid: 19702
components:
- type: Transform
- pos: -87.5,76.5
+ pos: 30.5,53.5
parent: 2
- - uid: 35265
+ - uid: 19703
components:
- type: Transform
- pos: -86.5,76.5
+ pos: 30.5,52.5
parent: 2
- - uid: 35266
+ - uid: 19721
components:
- type: Transform
- pos: -85.5,76.5
+ pos: -89.5,-35.5
parent: 2
- - uid: 35267
+ - uid: 19779
components:
- type: Transform
- pos: -84.5,76.5
+ pos: 1.5,65.5
parent: 2
- - uid: 35268
+ - uid: 19780
components:
- type: Transform
- pos: -83.5,76.5
+ pos: 1.5,66.5
parent: 2
- - uid: 35269
+ - uid: 19781
components:
- type: Transform
- pos: -83.5,75.5
+ pos: 1.5,67.5
parent: 2
- - uid: 35270
+ - uid: 19782
components:
- type: Transform
- pos: -82.5,75.5
+ pos: 1.5,68.5
parent: 2
- - uid: 35271
+ - uid: 19783
components:
- type: Transform
- pos: -81.5,75.5
+ pos: 1.5,69.5
parent: 2
- - uid: 35272
+ - uid: 19784
components:
- type: Transform
- pos: -83.5,74.5
+ pos: 1.5,70.5
parent: 2
- - uid: 35273
+ - uid: 19785
components:
- type: Transform
- pos: -84.5,74.5
+ pos: 1.5,71.5
parent: 2
- - uid: 35274
+ - uid: 19786
components:
- type: Transform
- pos: -85.5,74.5
+ pos: 1.5,72.5
parent: 2
- - uid: 35275
+ - uid: 19787
components:
- type: Transform
- pos: -86.5,74.5
+ pos: 1.5,73.5
parent: 2
- - uid: 35276
+ - uid: 19788
components:
- type: Transform
- pos: -87.5,74.5
+ pos: 1.5,74.5
parent: 2
- - uid: 35277
+ - uid: 19789
components:
- type: Transform
- pos: -88.5,74.5
+ pos: 1.5,75.5
parent: 2
- - uid: 35278
+ - uid: 19790
components:
- type: Transform
- pos: -88.5,75.5
+ pos: 0.5,70.5
parent: 2
- - uid: 35279
+ - uid: 19821
components:
- type: Transform
- pos: -89.5,75.5
+ pos: -41.5,-38.5
parent: 2
- - uid: 35280
+ - uid: 19893
components:
- type: Transform
- pos: -81.5,80.5
+ pos: 73.5,31.5
parent: 2
- - uid: 35281
+ - uid: 19930
components:
- type: Transform
- pos: -82.5,80.5
+ pos: -40.5,-38.5
parent: 2
- - uid: 35282
+ - uid: 19973
components:
- type: Transform
- pos: -83.5,80.5
+ pos: 78.5,53.5
parent: 2
- - uid: 35283
+ - uid: 19981
components:
- type: Transform
- pos: -84.5,81.5
+ pos: 71.5,41.5
parent: 2
- - uid: 35284
+ - uid: 19982
components:
- type: Transform
- pos: -83.5,81.5
+ pos: 69.5,43.5
parent: 2
- - uid: 35285
+ - uid: 19983
components:
- type: Transform
- pos: -88.5,80.5
+ pos: 70.5,38.5
parent: 2
- - uid: 35286
+ - uid: 20029
components:
- type: Transform
- pos: -88.5,79.5
+ pos: 79.5,-20.5
parent: 2
- - uid: 35287
+ - uid: 20036
components:
- type: Transform
- pos: -87.5,79.5
+ pos: 40.5,13.5
parent: 2
- - uid: 35288
+ - uid: 20037
components:
- type: Transform
- pos: -89.5,80.5
+ pos: 39.5,14.5
parent: 2
- - uid: 35289
+ - uid: 20038
components:
- type: Transform
- pos: -86.5,79.5
+ pos: 38.5,14.5
parent: 2
- - uid: 35290
+ - uid: 20039
components:
- type: Transform
- pos: -88.5,81.5
+ pos: 37.5,14.5
parent: 2
- - uid: 35291
+ - uid: 20040
components:
- type: Transform
- pos: -85.5,79.5
+ pos: 37.5,15.5
parent: 2
- - uid: 35292
+ - uid: 20041
components:
- type: Transform
- pos: -84.5,79.5
+ pos: 37.5,16.5
parent: 2
- - uid: 35293
+ - uid: 20042
components:
- type: Transform
- pos: -85.5,94.5
+ pos: 37.5,17.5
parent: 2
- - uid: 35294
+ - uid: 20043
components:
- type: Transform
- pos: -86.5,94.5
+ pos: 37.5,18.5
parent: 2
- - uid: 35523
+ - uid: 20044
components:
- type: Transform
- pos: -18.5,43.5
+ pos: 37.5,13.5
parent: 2
- - uid: 35812
+ - uid: 20045
components:
- type: Transform
- pos: -17.5,43.5
+ pos: 37.5,12.5
parent: 2
- - uid: 35816
+ - uid: 20046
components:
- type: Transform
- pos: -15.5,42.5
+ pos: 37.5,11.5
parent: 2
- - uid: 35817
+ - uid: 20047
components:
- type: Transform
- pos: -15.5,40.5
+ pos: 37.5,10.5
parent: 2
- - uid: 35818
+ - uid: 20048
components:
- type: Transform
- pos: -50.5,52.5
+ pos: 38.5,10.5
parent: 2
- - uid: 35826
+ - uid: 20049
components:
- type: Transform
- pos: -26.5,27.5
+ pos: 38.5,9.5
parent: 2
- - uid: 35827
+ - uid: 20050
components:
- type: Transform
- pos: -27.5,26.5
+ pos: 38.5,8.5
parent: 2
- - uid: 35926
+ - uid: 20051
components:
- type: Transform
- pos: -28.5,26.5
+ pos: 38.5,7.5
parent: 2
- - uid: 35927
+ - uid: 20052
components:
- type: Transform
- pos: -28.5,27.5
+ pos: 38.5,6.5
parent: 2
- - uid: 35928
+ - uid: 20053
components:
- type: Transform
- pos: -29.5,26.5
+ pos: 38.5,5.5
parent: 2
- - uid: 35929
+ - uid: 20054
components:
- type: Transform
- pos: -30.5,26.5
+ pos: 38.5,4.5
parent: 2
- - uid: 35930
+ - uid: 20055
components:
- type: Transform
- pos: -30.5,27.5
+ pos: 38.5,3.5
parent: 2
- - uid: 35931
+ - uid: 20056
components:
- type: Transform
- pos: -30.5,28.5
+ pos: 38.5,2.5
parent: 2
- - uid: 35932
+ - uid: 20057
components:
- type: Transform
- pos: -30.5,29.5
+ pos: 37.5,2.5
parent: 2
- - uid: 35933
+ - uid: 20058
components:
- type: Transform
- pos: -30.5,30.5
+ pos: 36.5,2.5
parent: 2
- - uid: 35934
+ - uid: 20059
components:
- type: Transform
- pos: -30.5,31.5
+ pos: 35.5,2.5
parent: 2
- - uid: 35935
+ - uid: 20060
components:
- type: Transform
- pos: -30.5,32.5
+ pos: 34.5,2.5
parent: 2
- - uid: 35936
+ - uid: 20061
components:
- type: Transform
- pos: -29.5,32.5
+ pos: 33.5,2.5
parent: 2
- - uid: 35937
+ - uid: 20062
components:
- type: Transform
- pos: -28.5,32.5
+ pos: 32.5,2.5
parent: 2
- - uid: 35938
+ - uid: 20063
components:
- type: Transform
- pos: -28.5,31.5
+ pos: 31.5,2.5
parent: 2
- - uid: 35939
+ - uid: 20064
components:
- type: Transform
- pos: -27.5,32.5
+ pos: 31.5,3.5
parent: 2
- - uid: 36083
+ - uid: 20065
components:
- type: Transform
- pos: -26.5,32.5
+ pos: 31.5,4.5
parent: 2
- - uid: 36084
+ - uid: 20066
components:
- type: Transform
- pos: -26.5,31.5
+ pos: 31.5,5.5
parent: 2
- - uid: 36085
+ - uid: 20067
components:
- type: Transform
- pos: -25.5,32.5
+ pos: 31.5,6.5
parent: 2
- - uid: 36086
+ - uid: 20068
components:
- type: Transform
- pos: -24.5,32.5
+ pos: 30.5,6.5
parent: 2
- - uid: 36087
+ - uid: 20069
components:
- type: Transform
- pos: -24.5,31.5
+ pos: 29.5,6.5
parent: 2
- - uid: 36088
+ - uid: 20070
components:
- type: Transform
- pos: -24.5,33.5
+ pos: 28.5,6.5
parent: 2
- - uid: 36089
+ - uid: 20071
components:
- type: Transform
- pos: -24.5,34.5
+ pos: 27.5,6.5
parent: 2
- - uid: 36090
+ - uid: 20072
components:
- type: Transform
- pos: -24.5,35.5
+ pos: 26.5,6.5
parent: 2
- - uid: 36091
+ - uid: 20073
components:
- type: Transform
- pos: -30.5,35.5
+ pos: 25.5,6.5
parent: 2
- - uid: 36092
+ - uid: 20074
components:
- type: Transform
- pos: -29.5,35.5
+ pos: 24.5,6.5
parent: 2
- - uid: 36093
+ - uid: 20078
components:
- type: Transform
- pos: -28.5,35.5
+ pos: 20.5,6.5
parent: 2
- - uid: 36094
+ - uid: 20079
components:
- type: Transform
- pos: -27.5,35.5
+ pos: 19.5,6.5
parent: 2
- - uid: 36095
+ - uid: 20080
components:
- type: Transform
- pos: -26.5,35.5
+ pos: 18.5,6.5
parent: 2
- - uid: 36096
+ - uid: 20081
components:
- type: Transform
- pos: -25.5,35.5
+ pos: 17.5,6.5
parent: 2
- - uid: 36097
+ - uid: 20082
components:
- type: Transform
- pos: -23.5,35.5
+ pos: 16.5,6.5
parent: 2
- - uid: 36101
+ - uid: 20083
components:
- type: Transform
- pos: -19.5,35.5
+ pos: 15.5,6.5
parent: 2
- - uid: 36125
+ - uid: 20084
components:
- type: Transform
- pos: -45.5,64.5
+ pos: 14.5,6.5
parent: 2
- - uid: 36126
+ - uid: 20085
components:
- type: Transform
- pos: -45.5,65.5
+ pos: 13.5,6.5
parent: 2
- - uid: 36127
+ - uid: 20086
components:
- type: Transform
- pos: -45.5,66.5
+ pos: 12.5,6.5
parent: 2
- - uid: 36128
+ - uid: 20087
components:
- type: Transform
- pos: -45.5,67.5
+ pos: 11.5,6.5
parent: 2
- - uid: 36129
+ - uid: 20088
components:
- type: Transform
- pos: -39.5,68.5
+ pos: 10.5,6.5
parent: 2
- - uid: 36130
+ - uid: 20089
components:
- type: Transform
- pos: -38.5,68.5
+ pos: 9.5,6.5
parent: 2
- - uid: 36131
+ - uid: 20090
components:
- type: Transform
- pos: -37.5,68.5
+ pos: 9.5,5.5
parent: 2
- - uid: 36132
+ - uid: 20091
components:
- type: Transform
- pos: -36.5,68.5
+ pos: 9.5,4.5
parent: 2
- - uid: 36133
+ - uid: 20092
components:
- type: Transform
- pos: -35.5,68.5
+ pos: 9.5,3.5
parent: 2
- - uid: 36141
+ - uid: 20093
components:
- type: Transform
- pos: -0.5,63.5
+ pos: 8.5,3.5
parent: 2
- - uid: 36142
+ - uid: 20094
components:
- type: Transform
- pos: -17.5,59.5
+ pos: 7.5,3.5
parent: 2
- - uid: 36143
+ - uid: 20095
components:
- type: Transform
- pos: -17.5,58.5
+ pos: 6.5,3.5
parent: 2
- - uid: 36144
+ - uid: 20096
components:
- type: Transform
- pos: -17.5,57.5
+ pos: 5.5,3.5
parent: 2
- - uid: 36145
+ - uid: 20097
components:
- type: Transform
- pos: -17.5,56.5
+ pos: 4.5,3.5
parent: 2
- - uid: 36146
+ - uid: 20098
components:
- type: Transform
- pos: -17.5,55.5
+ pos: 3.5,3.5
parent: 2
- - uid: 36147
+ - uid: 20099
components:
- type: Transform
- pos: -17.5,54.5
+ pos: 2.5,3.5
parent: 2
- - uid: 36148
+ - uid: 20100
components:
- type: Transform
- pos: -17.5,53.5
+ pos: 0.5,3.5
parent: 2
- - uid: 36149
+ - uid: 20101
components:
- type: Transform
- pos: -17.5,52.5
+ pos: -0.5,3.5
parent: 2
- - uid: 36150
+ - uid: 20102
components:
- type: Transform
- pos: -17.5,51.5
+ pos: -1.5,3.5
parent: 2
- - uid: 36166
+ - uid: 20103
components:
- type: Transform
- pos: -26.5,43.5
+ pos: -2.5,3.5
parent: 2
- - uid: 36167
+ - uid: 20104
components:
- type: Transform
- pos: -25.5,43.5
+ pos: -3.5,3.5
parent: 2
- - uid: 36168
+ - uid: 20105
components:
- type: Transform
- pos: -24.5,43.5
+ pos: -4.5,3.5
parent: 2
- - uid: 36169
+ - uid: 20106
components:
- type: Transform
- pos: -23.5,43.5
+ pos: -5.5,3.5
parent: 2
- - uid: 36170
+ - uid: 20107
components:
- type: Transform
- pos: -22.5,43.5
+ pos: -6.5,3.5
parent: 2
- - uid: 36171
+ - uid: 20108
components:
- type: Transform
- pos: -21.5,43.5
+ pos: -7.5,3.5
parent: 2
- - uid: 36172
+ - uid: 20109
components:
- type: Transform
- pos: -21.5,44.5
+ pos: -8.5,3.5
parent: 2
- - uid: 36173
+ - uid: 20110
components:
- type: Transform
- pos: -21.5,45.5
+ pos: -9.5,3.5
parent: 2
- - uid: 36174
+ - uid: 20111
components:
- type: Transform
- pos: -21.5,46.5
+ pos: -10.5,3.5
parent: 2
- - uid: 36175
+ - uid: 20112
components:
- type: Transform
- pos: -20.5,46.5
+ pos: -11.5,3.5
parent: 2
- - uid: 36176
+ - uid: 20113
components:
- type: Transform
- pos: -19.5,46.5
+ pos: -11.5,4.5
parent: 2
- - uid: 36178
+ - uid: 20114
components:
- type: Transform
- pos: -17.5,45.5
+ pos: -11.5,5.5
parent: 2
- - uid: 36179
+ - uid: 20115
components:
- type: Transform
- pos: -17.5,46.5
+ pos: -11.5,6.5
parent: 2
- - uid: 36180
+ - uid: 20116
components:
- type: Transform
- pos: -17.5,47.5
+ pos: -11.5,7.5
parent: 2
- - uid: 36181
+ - uid: 20117
components:
- type: Transform
- pos: -17.5,48.5
+ pos: -11.5,8.5
parent: 2
- - uid: 36182
+ - uid: 20118
components:
- type: Transform
- pos: -17.5,49.5
+ pos: -11.5,9.5
parent: 2
- - uid: 36185
+ - uid: 20119
components:
- type: Transform
- pos: -47.5,52.5
+ pos: -11.5,10.5
parent: 2
- - uid: 36186
+ - uid: 20120
components:
- type: Transform
- pos: -46.5,52.5
+ pos: -11.5,11.5
parent: 2
- - uid: 36187
+ - uid: 20121
components:
- type: Transform
- pos: -45.5,52.5
+ pos: -11.5,12.5
parent: 2
- - uid: 36188
+ - uid: 20122
components:
- type: Transform
- pos: -44.5,52.5
+ pos: -11.5,13.5
parent: 2
- - uid: 36189
+ - uid: 20123
components:
- type: Transform
- pos: -43.5,52.5
+ pos: -12.5,13.5
parent: 2
- - uid: 36190
+ - uid: 20124
components:
- type: Transform
- pos: -42.5,52.5
+ pos: -13.5,13.5
parent: 2
- - uid: 36191
+ - uid: 20125
components:
- type: Transform
- pos: -41.5,52.5
+ pos: -14.5,13.5
parent: 2
- - uid: 36192
+ - uid: 20126
components:
- type: Transform
- pos: -40.5,52.5
+ pos: -15.5,13.5
parent: 2
- - uid: 36193
+ - uid: 20127
components:
- type: Transform
- pos: -39.5,52.5
+ pos: -16.5,13.5
parent: 2
- - uid: 36194
+ - uid: 20128
components:
- type: Transform
- pos: -38.5,52.5
+ pos: -17.5,13.5
parent: 2
- - uid: 36195
+ - uid: 20129
components:
- type: Transform
- pos: -37.5,52.5
+ pos: -18.5,13.5
parent: 2
- - uid: 36196
+ - uid: 20130
components:
- type: Transform
- pos: -50.5,51.5
+ pos: -19.5,13.5
parent: 2
- - uid: 36197
+ - uid: 20131
components:
- type: Transform
- pos: -50.5,50.5
+ pos: -20.5,13.5
parent: 2
- - uid: 36198
+ - uid: 20132
components:
- type: Transform
- pos: -50.5,49.5
+ pos: -21.5,13.5
parent: 2
- - uid: 36199
+ - uid: 20133
components:
- type: Transform
- pos: -50.5,48.5
+ pos: -22.5,13.5
parent: 2
- - uid: 36200
+ - uid: 20134
components:
- type: Transform
- pos: -50.5,47.5
+ pos: -23.5,13.5
parent: 2
- - uid: 36201
+ - uid: 20135
components:
- type: Transform
- pos: -49.5,47.5
+ pos: -24.5,13.5
parent: 2
- - uid: 36202
+ - uid: 20136
components:
- type: Transform
- pos: -48.5,47.5
+ pos: -25.5,13.5
parent: 2
- - uid: 36203
+ - uid: 20137
components:
- type: Transform
- pos: -47.5,47.5
+ pos: -26.5,13.5
parent: 2
- - uid: 36204
+ - uid: 20138
components:
- type: Transform
- pos: -46.5,47.5
+ pos: -27.5,13.5
parent: 2
- - uid: 36205
+ - uid: 20139
components:
- type: Transform
- pos: -45.5,47.5
+ pos: -28.5,13.5
parent: 2
- - uid: 36206
+ - uid: 20140
components:
- type: Transform
- pos: -44.5,47.5
+ pos: -29.5,13.5
parent: 2
- - uid: 36207
+ - uid: 20141
components:
- type: Transform
- pos: -43.5,47.5
+ pos: -30.5,13.5
parent: 2
- - uid: 36208
+ - uid: 20142
components:
- type: Transform
- pos: -42.5,47.5
+ pos: -31.5,13.5
parent: 2
- - uid: 36209
+ - uid: 20143
components:
- type: Transform
- pos: -41.5,47.5
+ pos: -32.5,13.5
parent: 2
- - uid: 36210
+ - uid: 20144
components:
- type: Transform
- pos: -40.5,47.5
+ pos: -32.5,14.5
parent: 2
- - uid: 36211
+ - uid: 20145
components:
- type: Transform
- pos: -39.5,47.5
+ pos: -32.5,15.5
parent: 2
- - uid: 36212
+ - uid: 20146
components:
- type: Transform
- pos: -38.5,47.5
+ pos: -32.5,16.5
parent: 2
- - uid: 36213
+ - uid: 20147
components:
- type: Transform
- pos: -37.5,47.5
+ pos: -32.5,17.5
parent: 2
- - uid: 36214
+ - uid: 20148
components:
- type: Transform
- pos: -36.5,47.5
+ pos: -32.5,18.5
parent: 2
- - uid: 36215
+ - uid: 20149
components:
- type: Transform
- pos: -35.5,47.5
+ pos: -32.5,19.5
parent: 2
- - uid: 36216
+ - uid: 20150
components:
- type: Transform
- pos: -34.5,47.5
+ pos: 79.5,-18.5
parent: 2
- - uid: 36245
+ - uid: 20151
components:
- type: Transform
- pos: -49.5,61.5
+ pos: 79.5,-19.5
parent: 2
- - uid: 36246
+ - uid: 20157
components:
- type: Transform
- pos: -48.5,61.5
+ pos: -33.5,6.5
parent: 2
- - uid: 36247
+ - uid: 20158
components:
- type: Transform
- pos: -47.5,61.5
+ pos: -33.5,5.5
parent: 2
- - uid: 36248
+ - uid: 20159
components:
- type: Transform
- pos: -47.5,63.5
+ pos: -33.5,4.5
parent: 2
- - uid: 36249
+ - uid: 20165
components:
- type: Transform
- pos: -47.5,64.5
+ pos: -33.5,-1.5
parent: 2
- - uid: 36250
+ - uid: 20166
components:
- type: Transform
- pos: -47.5,65.5
+ pos: -33.5,-2.5
parent: 2
- - uid: 36251
+ - uid: 20167
components:
- type: Transform
- pos: -47.5,66.5
+ pos: -33.5,-3.5
parent: 2
- - uid: 36252
+ - uid: 20168
components:
- type: Transform
- pos: -47.5,67.5
+ pos: -33.5,-4.5
parent: 2
- - uid: 36259
+ - uid: 20169
components:
- type: Transform
- pos: -55.5,51.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 36260
+ - uid: 20174
components:
- type: Transform
- pos: -55.5,50.5
+ pos: -32.5,-7.5
parent: 2
- - uid: 36261
+ - uid: 20175
components:
- type: Transform
- pos: -55.5,49.5
+ pos: -32.5,-8.5
parent: 2
- - uid: 36262
+ - uid: 20176
components:
- type: Transform
- pos: -55.5,48.5
+ pos: -32.5,-9.5
parent: 2
- - uid: 36263
+ - uid: 20177
components:
- type: Transform
- pos: -56.5,47.5
+ pos: -32.5,-10.5
parent: 2
- - uid: 36264
+ - uid: 20178
components:
- type: Transform
- pos: -57.5,47.5
+ pos: -32.5,-11.5
parent: 2
- - uid: 36265
+ - uid: 20179
components:
- type: Transform
- pos: -58.5,47.5
+ pos: -32.5,-12.5
parent: 2
- - uid: 36266
+ - uid: 20180
components:
- type: Transform
- pos: -59.5,47.5
+ pos: -32.5,-13.5
parent: 2
- - uid: 36267
+ - uid: 20181
components:
- type: Transform
- pos: -60.5,47.5
+ pos: -32.5,-14.5
parent: 2
- - uid: 36268
+ - uid: 20201
components:
- type: Transform
- pos: -61.5,47.5
+ pos: 50.5,43.5
parent: 2
- - uid: 36269
+ - uid: 20205
components:
- type: Transform
- pos: -61.5,46.5
+ pos: -43.5,56.5
parent: 2
- - uid: 36270
+ - uid: 20314
components:
- type: Transform
- pos: -61.5,45.5
+ pos: 69.5,37.5
parent: 2
- - uid: 36271
+ - uid: 20418
components:
- type: Transform
- pos: -61.5,48.5
+ pos: 38.5,1.5
parent: 2
- - uid: 36272
+ - uid: 20419
components:
- type: Transform
- pos: -61.5,49.5
+ pos: 38.5,0.5
parent: 2
- - uid: 36280
+ - uid: 20420
components:
- type: Transform
- pos: -61.5,52.5
+ pos: 38.5,-0.5
parent: 2
- - uid: 36281
+ - uid: 20421
components:
- type: Transform
- pos: -61.5,51.5
+ pos: 38.5,-1.5
parent: 2
- - uid: 36282
+ - uid: 20422
components:
- type: Transform
- pos: -61.5,50.5
+ pos: 38.5,-2.5
parent: 2
- - uid: 36289
+ - uid: 20423
components:
- type: Transform
- pos: -55.5,42.5
+ pos: 38.5,-3.5
parent: 2
- - uid: 36290
+ - uid: 20424
components:
- type: Transform
- pos: -53.5,42.5
+ pos: 38.5,-4.5
parent: 2
- - uid: 36306
+ - uid: 20425
components:
- type: Transform
- pos: -55.5,18.5
+ pos: 38.5,-5.5
parent: 2
- - uid: 36307
+ - uid: 20426
components:
- type: Transform
- pos: -56.5,18.5
+ pos: 38.5,-6.5
parent: 2
- - uid: 36308
+ - uid: 20427
components:
- type: Transform
- pos: -56.5,19.5
+ pos: 38.5,-7.5
parent: 2
- - uid: 36309
+ - uid: 20428
components:
- type: Transform
- pos: -56.5,17.5
+ pos: 38.5,-8.5
parent: 2
- - uid: 36310
+ - uid: 20429
components:
- type: Transform
- pos: -56.5,20.5
+ pos: 38.5,-9.5
parent: 2
- - uid: 36311
+ - uid: 20430
components:
- type: Transform
- pos: -56.5,21.5
+ pos: 38.5,-10.5
parent: 2
- - uid: 36312
+ - uid: 20431
components:
- type: Transform
- pos: -57.5,21.5
+ pos: 38.5,-11.5
parent: 2
- - uid: 36313
+ - uid: 20432
components:
- type: Transform
- pos: -58.5,21.5
+ pos: 38.5,-12.5
parent: 2
- - uid: 36314
+ - uid: 20433
components:
- type: Transform
- pos: -59.5,21.5
+ pos: 38.5,-13.5
parent: 2
- - uid: 36315
+ - uid: 20434
components:
- type: Transform
- pos: -60.5,21.5
+ pos: 38.5,-14.5
parent: 2
- - uid: 36316
+ - uid: 20512
components:
- type: Transform
- pos: -61.5,21.5
+ pos: 51.5,-33.5
parent: 2
- - uid: 36317
+ - uid: 20628
components:
- type: Transform
- pos: -62.5,21.5
+ pos: 48.5,43.5
parent: 2
- - uid: 36318
+ - uid: 20647
components:
- type: Transform
- pos: -54.5,33.5
+ pos: 49.5,43.5
parent: 2
- - uid: 36319
+ - uid: 20657
components:
- type: Transform
- pos: -54.5,32.5
+ pos: -44.5,56.5
parent: 2
- - uid: 36320
+ - uid: 20700
components:
- type: Transform
- pos: -54.5,31.5
+ pos: 17.5,20.5
parent: 2
- - uid: 36321
+ - uid: 20776
components:
- type: Transform
- pos: -54.5,30.5
+ pos: 85.5,-9.5
parent: 2
- - uid: 36322
+ - uid: 20782
components:
- type: Transform
- pos: -54.5,29.5
+ pos: 47.5,43.5
parent: 2
- - uid: 36323
+ - uid: 20783
components:
- type: Transform
- pos: -54.5,28.5
+ pos: 46.5,43.5
parent: 2
- - uid: 36324
+ - uid: 20784
components:
- type: Transform
- pos: -54.5,27.5
+ pos: 45.5,43.5
parent: 2
- - uid: 36325
+ - uid: 20785
components:
- type: Transform
- pos: -54.5,26.5
+ pos: 44.5,43.5
parent: 2
- - uid: 36326
+ - uid: 20786
components:
- type: Transform
- pos: -54.5,25.5
+ pos: 43.5,43.5
parent: 2
- - uid: 36327
+ - uid: 20856
components:
- type: Transform
- pos: -54.5,24.5
+ pos: 42.5,43.5
parent: 2
- - uid: 36328
+ - uid: 20857
components:
- type: Transform
- pos: -54.5,23.5
+ pos: 41.5,43.5
parent: 2
- - uid: 36329
+ - uid: 20858
components:
- type: Transform
- pos: -54.5,22.5
+ pos: 40.5,43.5
parent: 2
- - uid: 36330
+ - uid: 20860
components:
- type: Transform
- pos: -54.5,21.5
+ pos: 39.5,34.5
parent: 2
- - uid: 36331
+ - uid: 20936
components:
- type: Transform
- pos: -54.5,20.5
+ pos: 39.5,35.5
parent: 2
- - uid: 36332
+ - uid: 20939
components:
- type: Transform
- pos: -54.5,19.5
+ pos: 39.5,36.5
parent: 2
- - uid: 36333
+ - uid: 20940
components:
- type: Transform
- pos: -54.5,18.5
+ pos: 39.5,37.5
parent: 2
- - uid: 36334
+ - uid: 20943
components:
- type: Transform
- pos: -54.5,17.5
+ pos: 39.5,38.5
parent: 2
- - uid: 36335
+ - uid: 21020
components:
- type: Transform
- pos: -54.5,16.5
+ pos: 113.5,-27.5
parent: 2
- - uid: 36336
+ - uid: 21078
components:
- type: Transform
- pos: -54.5,15.5
+ pos: 39.5,39.5
parent: 2
- - uid: 36337
+ - uid: 21082
components:
- type: Transform
- pos: -54.5,14.5
+ pos: 6.5,-28.5
parent: 2
- - uid: 36338
+ - uid: 21192
components:
- type: Transform
- pos: -54.5,13.5
+ pos: 51.5,-29.5
parent: 2
- - uid: 36339
+ - uid: 21193
components:
- type: Transform
- pos: -54.5,12.5
+ pos: 50.5,-29.5
parent: 2
- - uid: 36340
+ - uid: 21195
components:
- type: Transform
- pos: -54.5,11.5
+ pos: 46.5,-29.5
parent: 2
- - uid: 36341
+ - uid: 21198
components:
- type: Transform
- pos: -54.5,10.5
+ pos: 45.5,-29.5
parent: 2
- - uid: 36342
+ - uid: 21199
components:
- type: Transform
- pos: -54.5,9.5
+ pos: 48.5,-29.5
parent: 2
-- proto: CableHVStack
- entities:
- - uid: 18854
+ - uid: 21241
components:
- type: Transform
- pos: -101.14525,45.571644
+ pos: -44.5,17.5
parent: 2
-- proto: CableHVStack1
- entities:
- - uid: 9835
+ - uid: 21242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.734528,-59.398197
+ pos: -44.5,18.5
parent: 2
- - uid: 9846
+ - uid: 21243
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.953278,-59.648197
+ pos: -44.5,19.5
parent: 2
- - uid: 10429
+ - uid: 21244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.328278,-48.132572
+ pos: -44.5,20.5
parent: 2
- - uid: 11300
+ - uid: 21245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.81574,-24.348814
+ pos: -44.5,21.5
parent: 2
- - uid: 13699
+ - uid: 21246
components:
- type: Transform
- pos: 57.4527,-39.224056
+ pos: -44.5,22.5
parent: 2
- - uid: 13700
+ - uid: 21247
components:
- type: Transform
- pos: 57.6402,-39.58343
+ pos: -44.5,23.5
parent: 2
- - uid: 13702
+ - uid: 21248
components:
- type: Transform
- pos: 57.381878,-39.817806
+ pos: -44.5,24.5
parent: 2
- - uid: 13703
+ - uid: 21249
components:
- type: Transform
- pos: -32.34689,-37.163803
+ pos: -44.5,25.5
parent: 2
- - uid: 13707
+ - uid: 21250
components:
- type: Transform
- pos: -66.18941,-29.585678
+ pos: -44.5,26.5
parent: 2
- - uid: 13715
+ - uid: 21251
components:
- type: Transform
- pos: -67.21491,-36.21068
+ pos: -43.5,26.5
parent: 2
- - uid: 18698
+ - uid: 21252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.281403,-77.81058
+ pos: -42.5,26.5
parent: 2
- - uid: 26682
+ - uid: 21253
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.52277,-24.219908
+ pos: -41.5,26.5
parent: 2
- - uid: 32004
+ - uid: 21254
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.140778,-66.43997
+ pos: -40.5,26.5
parent: 2
- - uid: 32005
+ - uid: 21255
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.093903,-72.6568
+ pos: -39.5,26.5
parent: 2
- - uid: 32174
+ - uid: 21256
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.12911,46.418556
+ pos: -38.5,26.5
parent: 2
- - uid: 32175
+ - uid: 21257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.48849,46.793556
+ pos: -38.5,27.5
parent: 2
- - uid: 32176
+ - uid: 21258
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.66036,55.293556
+ pos: -38.5,28.5
parent: 2
- - uid: 32177
+ - uid: 21259
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.41036,55.106056
+ pos: -38.5,29.5
parent: 2
- - uid: 32178
+ - uid: 21260
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.42599,56.55918
+ pos: -38.5,30.5
parent: 2
- - uid: 32179
+ - uid: 21261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.22286,58.46543
+ pos: -38.5,31.5
parent: 2
- - uid: 32180
+ - uid: 21262
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -119.95724,54.387306
+ pos: -38.5,32.5
parent: 2
- - uid: 35632
+ - uid: 21263
components:
- type: Transform
- pos: -90.2432,-41.70928
+ pos: -38.5,33.5
parent: 2
- - uid: 35633
+ - uid: 21264
components:
- type: Transform
- pos: -78.48436,-34.82031
+ pos: -38.5,34.5
parent: 2
- - uid: 35634
+ - uid: 21267
components:
- type: Transform
- pos: -88.59237,-35.41406
+ pos: -37.5,26.5
parent: 2
- - uid: 35635
+ - uid: 21268
components:
- type: Transform
- pos: -90.0557,-42.05303
+ pos: -36.5,26.5
parent: 2
- - uid: 35636
+ - uid: 21269
components:
- type: Transform
- pos: -90.02445,-57.512814
+ pos: -35.5,26.5
parent: 2
- - uid: 35637
+ - uid: 21270
components:
- type: Transform
- pos: -88.50883,-51.28014
+ pos: -34.5,26.5
parent: 2
- - uid: 35638
+ - uid: 21271
components:
- type: Transform
- pos: -80.77633,57.882023
+ pos: -33.5,26.5
parent: 2
- - uid: 35639
+ - uid: 21272
components:
- type: Transform
- pos: -81.279465,95.05411
+ pos: -32.5,26.5
parent: 2
- - uid: 35640
+ - uid: 21273
components:
- type: Transform
- pos: -81.104454,64.1161
+ pos: -32.5,25.5
parent: 2
- - uid: 35641
+ - uid: 21274
components:
- type: Transform
- pos: -80.87008,64.60048
+ pos: -32.5,24.5
parent: 2
- - uid: 35642
+ - uid: 21275
components:
- type: Transform
- pos: -79.71383,64.803604
+ pos: -32.5,23.5
parent: 2
- - uid: 35643
+ - uid: 21276
components:
- type: Transform
- pos: -79.948204,70.21912
+ pos: -32.5,22.5
parent: 2
- - uid: 35644
+ - uid: 21277
components:
- type: Transform
- pos: -80.83883,79.83925
+ pos: -32.5,21.5
parent: 2
- - uid: 35645
+ - uid: 21801
components:
- type: Transform
- pos: -81.02633,81.41737
+ pos: -0.5,26.5
parent: 2
- - uid: 35646
+ - uid: 21808
components:
- type: Transform
- pos: -79.80758,86.09206
+ pos: -12.5,41.5
parent: 2
-- proto: CableMV
- entities:
- - uid: 381
+ - uid: 21814
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: 5.5,-28.5
parent: 2
- - uid: 448
+ - uid: 21835
components:
- type: Transform
- pos: -54.5,-30.5
+ pos: 1.5,-27.5
parent: 2
- - uid: 729
+ - uid: 21836
components:
- type: Transform
- pos: -41.5,68.5
+ pos: 1.5,-24.5
parent: 2
- - uid: 815
+ - uid: 21837
components:
- type: Transform
- pos: -18.5,-30.5
+ pos: 1.5,-26.5
parent: 2
- - uid: 989
+ - uid: 21880
components:
- type: Transform
- pos: 9.5,-12.5
+ pos: 39.5,40.5
parent: 2
- - uid: 994
+ - uid: 21881
components:
- type: Transform
- pos: 9.5,-11.5
+ pos: 39.5,41.5
parent: 2
- - uid: 1001
+ - uid: 21939
components:
- type: Transform
- pos: 9.5,-10.5
+ pos: -49.5,-38.5
parent: 2
- - uid: 1011
+ - uid: 21980
components:
- type: Transform
- pos: -72.5,2.5
+ pos: -65.5,8.5
parent: 2
- - uid: 1014
+ - uid: 21981
components:
- type: Transform
- pos: 22.5,7.5
+ pos: -66.5,8.5
parent: 2
- - uid: 1086
+ - uid: 21982
components:
- type: Transform
- pos: 9.5,-9.5
+ pos: -67.5,8.5
parent: 2
- - uid: 1126
+ - uid: 21983
components:
- type: Transform
- pos: 9.5,-8.5
+ pos: -68.5,8.5
parent: 2
- - uid: 1135
+ - uid: 21984
components:
- type: Transform
- pos: 9.5,-7.5
+ pos: -69.5,8.5
parent: 2
- - uid: 1159
+ - uid: 21985
components:
- type: Transform
- pos: 9.5,-6.5
+ pos: -70.5,8.5
parent: 2
- - uid: 1184
+ - uid: 21986
components:
- type: Transform
- pos: 9.5,-5.5
+ pos: -71.5,8.5
parent: 2
- - uid: 1199
+ - uid: 21987
components:
- type: Transform
- pos: 9.5,-4.5
+ pos: -72.5,8.5
parent: 2
- - uid: 1201
+ - uid: 21988
components:
- type: Transform
- pos: 9.5,-3.5
+ pos: -73.5,8.5
parent: 2
- - uid: 1961
+ - uid: 21989
components:
- type: Transform
- pos: 22.5,25.5
+ pos: -74.5,8.5
parent: 2
- - uid: 2062
+ - uid: 21990
components:
- type: Transform
- pos: -18.5,-31.5
+ pos: -75.5,8.5
parent: 2
- - uid: 2337
+ - uid: 21991
components:
- type: Transform
- pos: 7.5,49.5
+ pos: -76.5,8.5
parent: 2
- - uid: 2360
+ - uid: 21992
components:
- type: Transform
- pos: -26.5,-28.5
+ pos: -77.5,8.5
parent: 2
- - uid: 2436
+ - uid: 21993
components:
- type: Transform
- pos: -26.5,-27.5
+ pos: -78.5,8.5
parent: 2
- - uid: 2604
+ - uid: 21994
components:
- type: Transform
- pos: -43.5,38.5
+ pos: -79.5,8.5
parent: 2
- - uid: 3817
+ - uid: 21995
components:
- type: Transform
- pos: -61.5,-31.5
+ pos: -80.5,8.5
parent: 2
- - uid: 4078
+ - uid: 21996
components:
- type: Transform
- pos: -33.5,7.5
+ pos: -81.5,8.5
parent: 2
- - uid: 4945
+ - uid: 21997
components:
- type: Transform
- pos: 34.5,33.5
+ pos: -82.5,8.5
parent: 2
- - uid: 5215
+ - uid: 21998
components:
- type: Transform
- pos: 34.5,31.5
+ pos: -83.5,8.5
parent: 2
- - uid: 5259
+ - uid: 21999
components:
- type: Transform
- pos: 34.5,32.5
+ pos: -84.5,8.5
parent: 2
- - uid: 6311
+ - uid: 22000
components:
- type: Transform
- pos: 34.5,36.5
+ pos: -85.5,8.5
parent: 2
- - uid: 6373
+ - uid: 22001
components:
- type: Transform
- pos: 34.5,34.5
+ pos: -86.5,8.5
parent: 2
- - uid: 6385
+ - uid: 22002
components:
- type: Transform
- pos: 34.5,35.5
+ pos: -87.5,8.5
parent: 2
- - uid: 6662
+ - uid: 22003
components:
- type: Transform
- pos: -62.5,-21.5
+ pos: -88.5,8.5
parent: 2
- - uid: 6663
+ - uid: 22004
components:
- type: Transform
- pos: -61.5,-21.5
+ pos: -89.5,8.5
parent: 2
- - uid: 6680
+ - uid: 22005
components:
- type: Transform
- pos: -19.5,-29.5
+ pos: -90.5,8.5
parent: 2
- - uid: 6764
+ - uid: 22006
components:
- type: Transform
- pos: -65.5,-21.5
+ pos: -91.5,8.5
parent: 2
- - uid: 6916
+ - uid: 22007
components:
- type: Transform
- pos: -18.5,-29.5
+ pos: -92.5,8.5
parent: 2
- - uid: 6917
+ - uid: 22008
components:
- type: Transform
- pos: 8.5,27.5
+ pos: -93.5,8.5
parent: 2
- - uid: 7691
+ - uid: 22009
components:
- type: Transform
- pos: -22.5,36.5
+ pos: -94.5,8.5
parent: 2
- - uid: 7731
+ - uid: 22010
components:
- type: Transform
- pos: 8.5,29.5
+ pos: -72.5,9.5
parent: 2
- - uid: 7789
+ - uid: 22011
components:
- type: Transform
- pos: 8.5,30.5
+ pos: -72.5,10.5
parent: 2
- - uid: 7938
+ - uid: 22012
components:
- type: Transform
- pos: 32.5,35.5
+ pos: -72.5,11.5
parent: 2
- - uid: 7939
+ - uid: 22013
components:
- type: Transform
- pos: 33.5,36.5
+ pos: -72.5,12.5
parent: 2
- - uid: 7962
+ - uid: 22014
components:
- type: Transform
- pos: 32.5,36.5
+ pos: -72.5,13.5
parent: 2
- - uid: 8016
+ - uid: 22015
components:
- type: Transform
- pos: 8.5,33.5
+ pos: -72.5,14.5
parent: 2
- - uid: 8442
+ - uid: 22016
components:
- type: Transform
- pos: -53.5,19.5
+ pos: -72.5,15.5
parent: 2
- - uid: 8443
+ - uid: 22017
components:
- type: Transform
- pos: -52.5,19.5
+ pos: -72.5,16.5
parent: 2
- - uid: 8446
+ - uid: 22018
components:
- type: Transform
- pos: -15.5,36.5
+ pos: -72.5,17.5
parent: 2
- - uid: 8449
+ - uid: 22019
components:
- type: Transform
- pos: -13.5,36.5
+ pos: -72.5,18.5
parent: 2
- - uid: 8450
+ - uid: 22020
components:
- type: Transform
- pos: -14.5,36.5
+ pos: -72.5,19.5
parent: 2
- - uid: 9243
+ - uid: 22021
components:
- type: Transform
- pos: 10.5,27.5
+ pos: -72.5,20.5
parent: 2
- - uid: 9533
+ - uid: 22022
components:
- type: Transform
- pos: -22.5,-23.5
+ pos: -72.5,21.5
parent: 2
- - uid: 10013
+ - uid: 22023
components:
- type: Transform
- pos: -73.5,8.5
+ pos: -72.5,22.5
parent: 2
- - uid: 10072
+ - uid: 22024
components:
- type: Transform
- pos: -65.5,36.5
+ pos: -72.5,23.5
parent: 2
- - uid: 10073
+ - uid: 22025
components:
- type: Transform
- pos: -66.5,36.5
+ pos: -72.5,24.5
parent: 2
- - uid: 10074
+ - uid: 22058
components:
- type: Transform
- pos: -67.5,36.5
+ pos: 4.5,-28.5
parent: 2
- - uid: 10075
+ - uid: 22086
components:
- type: Transform
- pos: -67.5,35.5
+ pos: 39.5,42.5
parent: 2
- - uid: 10076
+ - uid: 22104
components:
- type: Transform
- pos: -67.5,34.5
+ pos: -26.5,43.5
parent: 2
- - uid: 10077
+ - uid: 22151
components:
- type: Transform
- pos: -66.5,34.5
+ pos: -27.5,43.5
parent: 2
- - uid: 10078
+ - uid: 22166
components:
- type: Transform
- pos: -65.5,34.5
+ pos: 39.5,43.5
parent: 2
- - uid: 10079
+ - uid: 22398
components:
- type: Transform
- pos: -64.5,34.5
+ pos: 52.5,-29.5
parent: 2
- - uid: 10080
+ - uid: 22541
components:
- type: Transform
- pos: -64.5,35.5
+ pos: -31.5,68.5
parent: 2
- - uid: 10162
+ - uid: 22574
components:
- type: Transform
- pos: -74.5,8.5
+ pos: -30.5,68.5
parent: 2
- - uid: 10227
+ - uid: 22587
components:
- type: Transform
- pos: -54.5,-31.5
+ pos: -29.5,68.5
parent: 2
- - uid: 10260
+ - uid: 22594
components:
- type: Transform
- pos: -27.5,38.5
+ pos: -28.5,68.5
parent: 2
- - uid: 10273
+ - uid: 22654
components:
- type: Transform
- pos: -17.5,36.5
+ pos: -12.5,43.5
parent: 2
- - uid: 10274
+ - uid: 22692
components:
- type: Transform
- pos: -18.5,36.5
+ pos: -4.5,1.5
parent: 2
- - uid: 11015
+ - uid: 22737
components:
- type: Transform
- pos: -61.5,-15.5
+ pos: -27.5,68.5
parent: 2
- - uid: 11016
+ - uid: 22779
components:
- type: Transform
- pos: -60.5,-15.5
+ pos: 77.5,-17.5
parent: 2
- - uid: 11017
+ - uid: 22812
components:
- type: Transform
- pos: -59.5,-15.5
+ pos: -6.5,0.5
parent: 2
- - uid: 11018
+ - uid: 22872
components:
- type: Transform
- pos: -58.5,-14.5
+ pos: -26.5,68.5
parent: 2
- - uid: 11019
+ - uid: 22882
components:
- type: Transform
- pos: -61.5,-18.5
+ pos: -25.5,68.5
parent: 2
- - uid: 11020
+ - uid: 22913
components:
- type: Transform
- pos: -61.5,-17.5
+ pos: -24.5,68.5
parent: 2
- - uid: 11021
+ - uid: 22928
components:
- type: Transform
- pos: -61.5,-16.5
+ pos: 78.5,-15.5
parent: 2
- - uid: 11059
+ - uid: 22942
components:
- type: Transform
- pos: -58.5,-13.5
+ pos: -23.5,68.5
parent: 2
- - uid: 11070
+ - uid: 22950
components:
- type: Transform
- pos: -59.5,-11.5
+ pos: -22.5,68.5
parent: 2
- - uid: 11110
+ - uid: 22965
components:
- type: Transform
- pos: -19.5,36.5
+ pos: -21.5,68.5
parent: 2
- - uid: 11111
+ - uid: 22991
components:
- type: Transform
- pos: -68.5,-2.5
+ pos: -20.5,68.5
parent: 2
- - uid: 11112
+ - uid: 22992
components:
- type: Transform
- pos: -68.5,-3.5
+ pos: -19.5,68.5
parent: 2
- - uid: 11113
+ - uid: 22993
components:
- type: Transform
- pos: -67.5,-3.5
+ pos: 3.5,-28.5
parent: 2
- - uid: 11114
+ - uid: 22994
components:
- type: Transform
- pos: -66.5,-3.5
+ pos: -18.5,68.5
parent: 2
- - uid: 11115
+ - uid: 22995
components:
- type: Transform
- pos: -65.5,-3.5
+ pos: -17.5,68.5
parent: 2
- - uid: 11116
+ - uid: 22996
components:
- type: Transform
- pos: -64.5,-3.5
+ pos: -16.5,68.5
parent: 2
- - uid: 11117
+ - uid: 22998
components:
- type: Transform
- pos: -64.5,-2.5
+ pos: -15.5,68.5
parent: 2
- - uid: 11118
+ - uid: 22999
components:
- type: Transform
- pos: -64.5,-1.5
+ pos: -14.5,68.5
parent: 2
- - uid: 11119
+ - uid: 23014
components:
- type: Transform
- pos: -64.5,-0.5
+ pos: -13.5,68.5
parent: 2
- - uid: 11120
+ - uid: 23038
components:
- type: Transform
- pos: -64.5,0.5
+ pos: -61.5,44.5
parent: 2
- - uid: 11121
+ - uid: 23056
components:
- type: Transform
- pos: -64.5,1.5
+ pos: -12.5,68.5
parent: 2
- - uid: 11122
+ - uid: 23062
components:
- type: Transform
- pos: -64.5,2.5
+ pos: 4.5,64.5
parent: 2
- - uid: 11123
+ - uid: 23065
components:
- type: Transform
- pos: -64.5,3.5
+ pos: 5.5,64.5
parent: 2
- - uid: 11124
+ - uid: 23066
components:
- type: Transform
- pos: -64.5,4.5
+ pos: 6.5,64.5
parent: 2
- - uid: 11125
+ - uid: 23067
components:
- type: Transform
- pos: -64.5,5.5
+ pos: 2.5,-28.5
parent: 2
- - uid: 11126
+ - uid: 23068
components:
- type: Transform
- pos: -64.5,6.5
+ pos: 6.5,65.5
parent: 2
- - uid: 11127
+ - uid: 23070
components:
- type: Transform
- pos: -64.5,7.5
+ pos: 6.5,66.5
parent: 2
- - uid: 11128
+ - uid: 23075
components:
- type: Transform
- pos: -64.5,8.5
+ pos: 6.5,67.5
parent: 2
- - uid: 11129
+ - uid: 23077
components:
- type: Transform
- pos: -65.5,8.5
+ pos: 6.5,68.5
parent: 2
- - uid: 11130
+ - uid: 23078
components:
- type: Transform
- pos: -66.5,8.5
+ pos: 6.5,69.5
parent: 2
- - uid: 11131
+ - uid: 23079
components:
- type: Transform
- pos: -67.5,8.5
+ pos: 7.5,69.5
parent: 2
- - uid: 11132
+ - uid: 23081
components:
- type: Transform
- pos: -68.5,8.5
+ pos: 8.5,69.5
parent: 2
- - uid: 11133
+ - uid: 23082
components:
- type: Transform
- pos: -69.5,8.5
+ pos: 9.5,69.5
parent: 2
- - uid: 11134
+ - uid: 23086
components:
- type: Transform
- pos: -70.5,8.5
+ pos: 10.5,69.5
parent: 2
- - uid: 11135
+ - uid: 23096
components:
- type: Transform
- pos: -71.5,8.5
+ pos: 11.5,69.5
parent: 2
- - uid: 11136
+ - uid: 23199
components:
- type: Transform
- pos: -72.5,8.5
+ pos: 12.5,69.5
parent: 2
- - uid: 11137
+ - uid: 23265
components:
- type: Transform
- pos: -72.5,7.5
+ pos: -22.5,52.5
parent: 2
- - uid: 11138
+ - uid: 23289
components:
- type: Transform
- pos: -72.5,6.5
+ pos: -42.5,20.5
parent: 2
- - uid: 11139
+ - uid: 23328
components:
- type: Transform
- pos: -72.5,5.5
+ pos: 12.5,68.5
parent: 2
- - uid: 11140
+ - uid: 23362
components:
- type: Transform
- pos: -20.5,36.5
+ pos: 12.5,67.5
parent: 2
- - uid: 11142
+ - uid: 23363
components:
- type: Transform
- pos: -12.5,36.5
+ pos: 13.5,67.5
parent: 2
- - uid: 11143
+ - uid: 23372
components:
- type: Transform
- pos: -76.5,8.5
+ pos: 14.5,67.5
parent: 2
- - uid: 11148
+ - uid: 23383
components:
- type: Transform
- pos: -75.5,8.5
+ pos: 15.5,67.5
parent: 2
- - uid: 11154
+ - uid: 23384
components:
- type: Transform
- pos: -78.5,8.5
+ pos: 15.5,66.5
parent: 2
- - uid: 11155
+ - uid: 23402
components:
- type: Transform
- pos: -77.5,8.5
+ pos: 15.5,65.5
parent: 2
- - uid: 11193
+ - uid: 23404
components:
- type: Transform
- pos: -16.5,36.5
+ pos: 15.5,64.5
parent: 2
- - uid: 11194
+ - uid: 23459
components:
- type: Transform
- pos: -21.5,36.5
+ pos: 15.5,63.5
parent: 2
- - uid: 11393
+ - uid: 23537
components:
- type: Transform
- pos: -4.5,-31.5
+ pos: 52.5,-31.5
parent: 2
- - uid: 11413
+ - uid: 23655
components:
- type: Transform
- pos: 17.5,-31.5
+ pos: 33.5,55.5
parent: 2
- - uid: 11439
+ - uid: 23658
components:
- type: Transform
- pos: -27.5,37.5
+ pos: -5.5,1.5
parent: 2
- - uid: 11712
+ - uid: 23659
components:
- type: Transform
- pos: 16.5,-31.5
+ pos: -2.5,1.5
parent: 2
- - uid: 11713
+ - uid: 23691
components:
- type: Transform
- pos: -27.5,-27.5
+ pos: -3.5,1.5
parent: 2
- - uid: 11714
+ - uid: 23699
components:
- type: Transform
- pos: -28.5,-27.5
+ pos: -27.5,55.5
parent: 2
- - uid: 11715
+ - uid: 23709
components:
- type: Transform
- pos: -29.5,-27.5
+ pos: -6.5,1.5
parent: 2
- - uid: 11716
+ - uid: 23755
components:
- type: Transform
- pos: -30.5,-27.5
+ pos: -2.5,64.5
parent: 2
- - uid: 11717
+ - uid: 23756
components:
- type: Transform
- pos: -31.5,-27.5
+ pos: -1.5,64.5
parent: 2
- - uid: 11718
+ - uid: 23757
components:
- type: Transform
- pos: -32.5,-27.5
+ pos: -0.5,64.5
parent: 2
- - uid: 11719
+ - uid: 23758
components:
- type: Transform
- pos: -33.5,-27.5
+ pos: 0.5,64.5
parent: 2
- - uid: 11720
+ - uid: 23827
components:
- type: Transform
- pos: -33.5,-26.5
+ pos: 33.5,54.5
parent: 2
- - uid: 11721
+ - uid: 24081
components:
- type: Transform
- pos: -33.5,-25.5
+ pos: 33.5,53.5
parent: 2
- - uid: 11722
+ - uid: 24811
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: -1.5,26.5
parent: 2
- - uid: 11723
+ - uid: 24937
components:
- type: Transform
- pos: -33.5,-23.5
+ pos: 33.5,52.5
parent: 2
- - uid: 11724
+ - uid: 25076
components:
- type: Transform
- pos: -33.5,-22.5
+ pos: 10.5,20.5
parent: 2
- - uid: 11725
+ - uid: 25120
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: 80.5,-22.5
parent: 2
- - uid: 11726
+ - uid: 25226
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: -28.5,-1.5
parent: 2
- - uid: 11727
+ - uid: 25296
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: 49.5,-29.5
parent: 2
- - uid: 11728
+ - uid: 25944
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -47.5,15.5
parent: 2
- - uid: 11729
+ - uid: 26039
components:
- type: Transform
- pos: -33.5,-17.5
+ pos: -18.5,55.5
parent: 2
- - uid: 11730
+ - uid: 26241
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: 103.5,-9.5
parent: 2
- - uid: 11731
+ - uid: 26359
components:
- type: Transform
- pos: -33.5,-15.5
+ pos: -12.5,42.5
parent: 2
- - uid: 11732
+ - uid: 26360
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: 79.5,-12.5
parent: 2
- - uid: 11733
+ - uid: 26459
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: -51.5,62.5
parent: 2
- - uid: 11734
+ - uid: 26497
components:
- type: Transform
- pos: -30.5,-15.5
+ pos: -20.5,52.5
parent: 2
- - uid: 11735
+ - uid: 26532
components:
- type: Transform
- pos: -29.5,-15.5
+ pos: -27.5,52.5
parent: 2
- - uid: 11736
+ - uid: 26612
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: 71.5,40.5
parent: 2
- - uid: 11737
+ - uid: 26846
components:
- type: Transform
- pos: -27.5,-15.5
+ pos: -24.5,54.5
parent: 2
- - uid: 11738
+ - uid: 27044
components:
- type: Transform
- pos: -26.5,-15.5
+ pos: 38.5,-26.5
parent: 2
- - uid: 11739
+ - uid: 27113
components:
- type: Transform
- pos: -25.5,-15.5
+ pos: 26.5,-31.5
parent: 2
- - uid: 11740
+ - uid: 27114
components:
- type: Transform
- pos: -24.5,-15.5
+ pos: 37.5,-26.5
parent: 2
- - uid: 11741
+ - uid: 27115
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: 35.5,-26.5
parent: 2
- - uid: 11742
+ - uid: 27116
components:
- type: Transform
- pos: -22.5,-15.5
+ pos: 32.5,-26.5
parent: 2
- - uid: 11743
+ - uid: 27117
components:
- type: Transform
- pos: -21.5,-15.5
+ pos: 33.5,-26.5
parent: 2
- - uid: 11744
+ - uid: 27560
components:
- type: Transform
- pos: -20.5,-15.5
+ pos: 41.5,13.5
parent: 2
- - uid: 11745
+ - uid: 27583
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: 52.5,-32.5
parent: 2
- - uid: 11746
+ - uid: 27717
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: -24.5,52.5
parent: 2
- - uid: 11747
+ - uid: 27788
components:
- type: Transform
- pos: -17.5,-15.5
+ pos: -11.5,40.5
parent: 2
- - uid: 11748
+ - uid: 27834
components:
- type: Transform
- pos: -16.5,-15.5
+ pos: -10.5,40.5
parent: 2
- - uid: 11749
+ - uid: 27868
components:
- type: Transform
- pos: -15.5,-15.5
+ pos: -71.5,24.5
parent: 2
- - uid: 11750
+ - uid: 27913
components:
- type: Transform
- pos: -14.5,-15.5
+ pos: 53.5,43.5
parent: 2
- - uid: 11751
+ - uid: 27915
components:
- type: Transform
- pos: -13.5,-15.5
+ pos: 54.5,43.5
parent: 2
- - uid: 11752
+ - uid: 27916
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 55.5,43.5
parent: 2
- - uid: 11753
+ - uid: 27917
components:
- type: Transform
- pos: -11.5,-15.5
+ pos: 56.5,43.5
parent: 2
- - uid: 11754
+ - uid: 27918
components:
- type: Transform
- pos: -11.5,-16.5
+ pos: 57.5,43.5
parent: 2
- - uid: 11755
+ - uid: 27919
components:
- type: Transform
- pos: -11.5,-17.5
+ pos: 58.5,43.5
parent: 2
- - uid: 11756
+ - uid: 27920
components:
- type: Transform
- pos: -11.5,-18.5
+ pos: 59.5,43.5
parent: 2
- - uid: 11757
+ - uid: 27921
components:
- type: Transform
- pos: -11.5,-19.5
+ pos: 58.5,44.5
parent: 2
- - uid: 11758
+ - uid: 27922
components:
- type: Transform
- pos: -11.5,-20.5
+ pos: 58.5,45.5
parent: 2
- - uid: 11759
+ - uid: 27923
components:
- type: Transform
- pos: -12.5,-20.5
+ pos: 58.5,46.5
parent: 2
- - uid: 11760
+ - uid: 27924
components:
- type: Transform
- pos: -13.5,-20.5
+ pos: 58.5,47.5
parent: 2
- - uid: 11761
+ - uid: 27925
components:
- type: Transform
- pos: -14.5,-20.5
+ pos: 59.5,47.5
parent: 2
- - uid: 11762
+ - uid: 27926
components:
- type: Transform
- pos: -15.5,-20.5
+ pos: 60.5,47.5
parent: 2
- - uid: 11763
+ - uid: 27927
components:
- type: Transform
- pos: -16.5,-20.5
+ pos: 61.5,47.5
parent: 2
- - uid: 11764
+ - uid: 27928
components:
- type: Transform
- pos: -17.5,-20.5
+ pos: 62.5,47.5
parent: 2
- - uid: 11765
+ - uid: 27929
components:
- type: Transform
- pos: -18.5,-20.5
+ pos: 63.5,47.5
parent: 2
- - uid: 11766
+ - uid: 27930
components:
- type: Transform
- pos: -19.5,-20.5
+ pos: 64.5,47.5
parent: 2
- - uid: 11767
+ - uid: 27931
components:
- type: Transform
- pos: -20.5,-20.5
+ pos: 65.5,47.5
parent: 2
- - uid: 11768
+ - uid: 27932
components:
- type: Transform
- pos: -21.5,-20.5
+ pos: 66.5,47.5
parent: 2
- - uid: 11769
+ - uid: 27934
components:
- type: Transform
- pos: -22.5,-20.5
+ pos: 67.5,47.5
parent: 2
- - uid: 11770
+ - uid: 27935
components:
- type: Transform
- pos: -22.5,-21.5
+ pos: 68.5,47.5
parent: 2
- - uid: 11771
+ - uid: 27936
components:
- type: Transform
- pos: -22.5,-22.5
+ pos: 68.5,46.5
parent: 2
- - uid: 11772
+ - uid: 27937
components:
- type: Transform
- pos: -23.5,-22.5
+ pos: 68.5,45.5
parent: 2
- - uid: 11809
+ - uid: 27938
components:
- type: Transform
- pos: -22.5,-24.5
+ pos: 68.5,44.5
parent: 2
- - uid: 11823
+ - uid: 27939
components:
- type: Transform
- pos: 15.5,-31.5
+ pos: 68.5,43.5
parent: 2
- - uid: 11824
+ - uid: 27947
components:
- type: Transform
- pos: 14.5,-31.5
+ pos: 68.5,37.5
parent: 2
- - uid: 11825
+ - uid: 27976
components:
- type: Transform
- pos: 14.5,-29.5
+ pos: 67.5,37.5
parent: 2
- - uid: 11826
+ - uid: 27977
components:
- type: Transform
- pos: 14.5,-30.5
+ pos: 66.5,37.5
parent: 2
- - uid: 11827
+ - uid: 27978
components:
- type: Transform
- pos: 44.5,-26.5
+ pos: 65.5,37.5
parent: 2
- - uid: 11842
+ - uid: 27979
components:
- type: Transform
- pos: -61.5,-27.5
+ pos: 64.5,37.5
parent: 2
- - uid: 11852
+ - uid: 27980
components:
- type: Transform
- pos: -64.5,-21.5
+ pos: 63.5,37.5
parent: 2
- - uid: 11866
+ - uid: 27981
components:
- type: Transform
- pos: -57.5,-31.5
+ pos: 62.5,37.5
parent: 2
- - uid: 11867
+ - uid: 27982
components:
- type: Transform
- pos: -56.5,-31.5
+ pos: 61.5,37.5
parent: 2
- - uid: 11870
+ - uid: 27983
components:
- type: Transform
- pos: -55.5,-31.5
+ pos: 60.5,37.5
parent: 2
- - uid: 11871
+ - uid: 27984
components:
- type: Transform
- pos: -4.5,-28.5
+ pos: 59.5,37.5
parent: 2
- - uid: 11950
+ - uid: 27986
components:
- type: Transform
- pos: -20.5,-26.5
+ pos: 58.5,37.5
parent: 2
- - uid: 11951
+ - uid: 27987
components:
- type: Transform
- pos: -20.5,-27.5
+ pos: 58.5,38.5
parent: 2
- - uid: 12033
+ - uid: 27988
components:
- type: Transform
- pos: -4.5,-29.5
+ pos: 58.5,39.5
parent: 2
- - uid: 12049
+ - uid: 27989
components:
- type: Transform
- pos: 11.5,-18.5
+ pos: 58.5,40.5
parent: 2
- - uid: 12050
+ - uid: 27990
components:
- type: Transform
- pos: 10.5,-18.5
+ pos: 58.5,41.5
parent: 2
- - uid: 12051
+ - uid: 27991
components:
- type: Transform
- pos: 9.5,-18.5
+ pos: 58.5,42.5
parent: 2
- - uid: 12052
+ - uid: 27992
components:
- type: Transform
- pos: 8.5,-18.5
+ pos: 57.5,41.5
parent: 2
- - uid: 12053
+ - uid: 27993
components:
- type: Transform
- pos: 7.5,-18.5
+ pos: 56.5,41.5
parent: 2
- - uid: 12054
+ - uid: 27994
components:
- type: Transform
- pos: 6.5,-18.5
+ pos: 59.5,41.5
parent: 2
- - uid: 12055
+ - uid: 27995
components:
- type: Transform
- pos: 6.5,-19.5
+ pos: 60.5,43.5
parent: 2
- - uid: 12057
+ - uid: 27996
components:
- type: Transform
- pos: 5.5,-20.5
+ pos: 60.5,44.5
parent: 2
- - uid: 12058
+ - uid: 27999
components:
- type: Transform
- pos: 5.5,-21.5
+ pos: 60.5,45.5
parent: 2
- - uid: 12059
+ - uid: 28005
components:
- type: Transform
- pos: 5.5,-22.5
+ pos: 61.5,45.5
parent: 2
- - uid: 12060
+ - uid: 28006
components:
- type: Transform
- pos: 5.5,-23.5
+ pos: 62.5,45.5
parent: 2
- - uid: 12061
+ - uid: 28007
components:
- type: Transform
- pos: 5.5,-24.5
+ pos: 63.5,45.5
parent: 2
- - uid: 12062
+ - uid: 28009
components:
- type: Transform
- pos: 5.5,-25.5
+ pos: 64.5,45.5
parent: 2
- - uid: 12063
+ - uid: 28010
components:
- type: Transform
- pos: 5.5,-26.5
+ pos: 65.5,45.5
parent: 2
- - uid: 12064
+ - uid: 28011
components:
- type: Transform
- pos: 5.5,-27.5
+ pos: 66.5,45.5
parent: 2
- - uid: 12065
+ - uid: 28012
components:
- type: Transform
- pos: 5.5,-28.5
+ pos: 66.5,44.5
parent: 2
- - uid: 12066
+ - uid: 28019
components:
- type: Transform
- pos: 6.5,-28.5
+ pos: 64.5,39.5
parent: 2
- - uid: 12067
+ - uid: 28020
components:
- type: Transform
- pos: 7.5,-28.5
+ pos: 63.5,39.5
parent: 2
- - uid: 12068
+ - uid: 28021
components:
- type: Transform
- pos: 8.5,-28.5
+ pos: 62.5,39.5
parent: 2
- - uid: 12069
+ - uid: 28022
components:
- type: Transform
- pos: 9.5,-28.5
+ pos: 61.5,39.5
parent: 2
- - uid: 12070
+ - uid: 28023
components:
- type: Transform
- pos: 10.5,-28.5
+ pos: 60.5,39.5
parent: 2
- - uid: 12071
+ - uid: 28024
components:
- type: Transform
- pos: 11.5,-28.5
+ pos: 60.5,40.5
parent: 2
- - uid: 12072
+ - uid: 28025
components:
- type: Transform
- pos: 12.5,-28.5
+ pos: 60.5,41.5
parent: 2
- - uid: 12073
+ - uid: 28026
components:
- type: Transform
- pos: 13.5,-28.5
+ pos: 60.5,42.5
parent: 2
- - uid: 12074
+ - uid: 28385
components:
- type: Transform
- pos: 14.5,-28.5
+ pos: -9.5,40.5
parent: 2
- - uid: 12075
+ - uid: 28406
components:
- type: Transform
- pos: 14.5,-27.5
+ pos: 22.5,6.5
parent: 2
- - uid: 12076
+ - uid: 28692
components:
- type: Transform
- pos: 14.5,-26.5
+ pos: -23.5,52.5
parent: 2
- - uid: 12077
+ - uid: 28886
components:
- type: Transform
- pos: 14.5,-25.5
+ pos: -22.5,55.5
parent: 2
- - uid: 12078
+ - uid: 28907
components:
- type: Transform
- pos: 14.5,-24.5
+ pos: -21.5,55.5
parent: 2
- - uid: 12079
+ - uid: 28945
components:
- type: Transform
- pos: 14.5,-23.5
+ pos: -21.5,52.5
parent: 2
- - uid: 12080
+ - uid: 28947
components:
- type: Transform
- pos: 13.5,-23.5
+ pos: 23.5,6.5
parent: 2
- - uid: 12081
+ - uid: 28951
components:
- type: Transform
- pos: 12.5,-23.5
+ pos: -24.5,53.5
parent: 2
- - uid: 12088
+ - uid: 28953
components:
- type: Transform
- pos: -1.5,-28.5
+ pos: -20.5,55.5
parent: 2
- - uid: 12096
+ - uid: 28957
components:
- type: Transform
- pos: -3.5,-28.5
+ pos: -31.5,-1.5
parent: 2
- - uid: 12225
+ - uid: 28964
components:
- type: Transform
- pos: -57.5,-12.5
+ pos: -32.5,-1.5
parent: 2
- - uid: 12328
+ - uid: 28995
components:
- type: Transform
- pos: 7.5,52.5
+ pos: 21.5,6.5
parent: 2
- - uid: 12347
+ - uid: 29126
components:
- type: Transform
- pos: 7.5,53.5
+ pos: -19.5,55.5
parent: 2
- - uid: 12348
+ - uid: 29165
components:
- type: Transform
- pos: 6.5,60.5
+ pos: 52.5,-33.5
parent: 2
- - uid: 12453
+ - uid: 29261
components:
- type: Transform
- pos: 7.5,60.5
+ pos: 87.5,-12.5
parent: 2
- - uid: 12464
+ - uid: 29266
components:
- type: Transform
- pos: 7.5,51.5
+ pos: -15.5,43.5
parent: 2
- - uid: 12505
+ - uid: 29286
components:
- type: Transform
- pos: 7.5,50.5
+ pos: 108.5,-4.5
parent: 2
- - uid: 12645
+ - uid: 29291
components:
- type: Transform
- pos: -50.5,40.5
+ pos: 93.5,-28.5
parent: 2
- - uid: 13872
+ - uid: 29299
components:
- type: Transform
- pos: 52.5,44.5
+ pos: 98.5,-28.5
parent: 2
- - uid: 13909
+ - uid: 29300
components:
- type: Transform
- pos: 42.5,32.5
+ pos: 97.5,-28.5
parent: 2
- - uid: 14289
+ - uid: 29301
components:
- type: Transform
- pos: 41.5,32.5
+ pos: 106.5,-4.5
parent: 2
- - uid: 14290
+ - uid: 29302
components:
- type: Transform
- pos: 40.5,32.5
+ pos: 107.5,-4.5
parent: 2
- - uid: 14360
+ - uid: 29303
components:
- type: Transform
- pos: 6.5,44.5
+ pos: 109.5,-4.5
parent: 2
- - uid: 14368
+ - uid: 29305
components:
- type: Transform
- pos: -33.5,23.5
+ pos: 95.5,-28.5
parent: 2
- - uid: 14372
+ - uid: 29308
components:
- type: Transform
- pos: 0.5,-28.5
+ pos: 96.5,-28.5
parent: 2
- - uid: 14373
+ - uid: 29309
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: 94.5,-28.5
parent: 2
- - uid: 14375
+ - uid: 29310
components:
- type: Transform
- pos: -2.5,-28.5
+ pos: 92.5,-28.5
parent: 2
- - uid: 14377
+ - uid: 29316
components:
- type: Transform
- pos: -30.5,-14.5
+ pos: 91.5,-28.5
parent: 2
- - uid: 14380
+ - uid: 29319
components:
- type: Transform
- pos: -5.5,-31.5
+ pos: 113.5,-28.5
parent: 2
- - uid: 14387
+ - uid: 29320
components:
- type: Transform
- pos: 18.5,39.5
+ pos: 90.5,-28.5
parent: 2
- - uid: 14388
+ - uid: 29324
components:
- type: Transform
- pos: 18.5,40.5
+ pos: 113.5,-26.5
parent: 2
- - uid: 14389
+ - uid: 29325
components:
- type: Transform
- pos: 18.5,41.5
+ pos: 112.5,-28.5
parent: 2
- - uid: 14390
+ - uid: 29326
components:
- type: Transform
- pos: 18.5,42.5
+ pos: 104.5,-28.5
parent: 2
- - uid: 14391
+ - uid: 29327
components:
- type: Transform
- pos: 18.5,43.5
+ pos: 89.5,-28.5
parent: 2
- - uid: 14392
+ - uid: 29329
components:
- type: Transform
- pos: 18.5,44.5
+ pos: 89.5,-25.5
parent: 2
- - uid: 14393
+ - uid: 29341
components:
- type: Transform
- pos: 18.5,45.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 14394
+ - uid: 29491
components:
- type: Transform
- pos: 17.5,45.5
+ pos: 51.5,32.5
parent: 2
- - uid: 14395
+ - uid: 29492
components:
- type: Transform
- pos: 16.5,45.5
+ pos: 52.5,32.5
parent: 2
- - uid: 14403
+ - uid: 29493
components:
- type: Transform
- pos: 12.5,7.5
+ pos: 50.5,32.5
parent: 2
- - uid: 14404
+ - uid: 29531
components:
- type: Transform
- pos: 13.5,7.5
+ pos: 49.5,32.5
parent: 2
- - uid: 14405
+ - uid: 29540
components:
- type: Transform
- pos: 15.5,7.5
+ pos: -18.5,52.5
parent: 2
- - uid: 14406
+ - uid: 29542
components:
- type: Transform
- pos: 14.5,7.5
+ pos: -19.5,52.5
parent: 2
- - uid: 14420
+ - uid: 29545
components:
- type: Transform
- pos: 18.5,7.5
+ pos: -26.5,44.5
parent: 2
- - uid: 14422
+ - uid: 29568
components:
- type: Transform
- pos: 24.5,4.5
+ pos: 44.5,32.5
parent: 2
- - uid: 14491
+ - uid: 29569
components:
- type: Transform
- pos: 17.5,7.5
+ pos: 47.5,32.5
parent: 2
- - uid: 14492
+ - uid: 29640
components:
- type: Transform
- pos: 16.5,7.5
+ pos: 43.5,32.5
parent: 2
- - uid: 14591
+ - uid: 29641
components:
- type: Transform
- pos: -33.5,3.5
+ pos: 41.5,32.5
parent: 2
- - uid: 14592
+ - uid: 29712
components:
- type: Transform
- pos: -33.5,4.5
+ pos: 39.5,32.5
parent: 2
- - uid: 14593
+ - uid: 29976
components:
- type: Transform
- pos: -33.5,5.5
+ pos: -65.5,-21.5
parent: 2
- - uid: 14598
+ - uid: 30115
components:
- type: Transform
- pos: -33.5,6.5
+ pos: 99.5,76.5
parent: 2
- - uid: 14599
+ - uid: 30116
components:
- type: Transform
- pos: -15.5,13.5
+ pos: 99.5,77.5
parent: 2
- - uid: 14600
+ - uid: 30320
components:
- type: Transform
- pos: -15.5,14.5
+ pos: 1.5,-25.5
parent: 2
- - uid: 14603
+ - uid: 30737
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: 39.5,33.5
parent: 2
- - uid: 14605
+ - uid: 30738
components:
- type: Transform
- pos: -33.5,9.5
+ pos: 40.5,32.5
parent: 2
- - uid: 14606
+ - uid: 30739
components:
- type: Transform
- pos: -33.5,8.5
+ pos: 42.5,32.5
parent: 2
- - uid: 14607
+ - uid: 30740
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: 46.5,32.5
parent: 2
- - uid: 14608
+ - uid: 30741
components:
- type: Transform
- pos: -34.5,10.5
+ pos: 45.5,32.5
parent: 2
- - uid: 14617
+ - uid: 30749
components:
- type: Transform
- pos: 32.5,51.5
+ pos: 48.5,32.5
parent: 2
- - uid: 14618
+ - uid: 30800
components:
- type: Transform
- pos: 31.5,51.5
+ pos: -41.5,69.5
parent: 2
- - uid: 14619
+ - uid: 30801
components:
- type: Transform
- pos: 31.5,50.5
+ pos: -42.5,69.5
parent: 2
- - uid: 14620
+ - uid: 30804
components:
- type: Transform
- pos: 31.5,49.5
+ pos: 1.5,-23.5
parent: 2
- - uid: 14621
+ - uid: 30810
components:
- type: Transform
- pos: 32.5,49.5
+ pos: -46.5,64.5
parent: 2
- - uid: 14622
+ - uid: 30811
components:
- type: Transform
- pos: 33.5,49.5
+ pos: -46.5,63.5
parent: 2
- - uid: 14623
+ - uid: 30812
components:
- type: Transform
- pos: 34.5,49.5
+ pos: -46.5,62.5
parent: 2
- - uid: 14624
+ - uid: 30813
components:
- type: Transform
- pos: 35.5,49.5
+ pos: -46.5,61.5
parent: 2
- - uid: 14625
+ - uid: 30814
components:
- type: Transform
- pos: 36.5,49.5
+ pos: -46.5,60.5
parent: 2
- - uid: 14626
+ - uid: 30815
components:
- type: Transform
- pos: 37.5,49.5
+ pos: -46.5,59.5
parent: 2
- - uid: 14627
+ - uid: 30824
components:
- type: Transform
- pos: 38.5,49.5
+ pos: -40.5,56.5
parent: 2
- - uid: 14628
+ - uid: 30825
components:
- type: Transform
- pos: 39.5,49.5
+ pos: -39.5,56.5
parent: 2
- - uid: 14629
+ - uid: 30826
components:
- type: Transform
- pos: 40.5,49.5
+ pos: -38.5,56.5
parent: 2
- - uid: 14630
+ - uid: 30827
components:
- type: Transform
- pos: 41.5,49.5
+ pos: -37.5,56.5
parent: 2
- - uid: 14631
+ - uid: 30828
components:
- type: Transform
- pos: 42.5,49.5
+ pos: -36.5,56.5
parent: 2
- - uid: 14632
+ - uid: 30829
components:
- type: Transform
- pos: 42.5,48.5
+ pos: -35.5,56.5
parent: 2
- - uid: 14633
+ - uid: 31033
components:
- type: Transform
- pos: 42.5,47.5
+ pos: 52.5,33.5
parent: 2
- - uid: 14634
+ - uid: 31034
components:
- type: Transform
- pos: 42.5,46.5
+ pos: 52.5,34.5
parent: 2
- - uid: 14635
+ - uid: 31035
components:
- type: Transform
- pos: 42.5,45.5
+ pos: 52.5,35.5
parent: 2
- - uid: 14659
+ - uid: 31036
components:
- type: Transform
- pos: -33.5,10.5
+ pos: 52.5,36.5
parent: 2
- - uid: 14805
+ - uid: 31037
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: 52.5,37.5
parent: 2
- - uid: 14850
+ - uid: 31038
components:
- type: Transform
- pos: -30.5,-5.5
+ pos: 52.5,38.5
parent: 2
- - uid: 14851
+ - uid: 31039
components:
- type: Transform
- pos: -33.5,1.5
+ pos: 52.5,39.5
parent: 2
- - uid: 14924
+ - uid: 31052
components:
- type: Transform
- pos: -33.5,2.5
+ pos: 52.5,42.5
parent: 2
- - uid: 14925
+ - uid: 31056
components:
- type: Transform
- pos: -33.5,0.5
+ pos: 51.5,43.5
parent: 2
- - uid: 14926
+ - uid: 31092
components:
- type: Transform
- pos: -33.5,-0.5
+ pos: -51.5,65.5
parent: 2
- - uid: 14946
+ - uid: 31242
components:
- type: Transform
- pos: -33.5,-1.5
+ pos: -51.5,64.5
parent: 2
- - uid: 14947
+ - uid: 31243
components:
- type: Transform
- pos: -33.5,-2.5
+ pos: -51.5,66.5
parent: 2
- - uid: 14948
+ - uid: 31244
components:
- type: Transform
- pos: -32.5,-5.5
+ pos: -51.5,67.5
parent: 2
- - uid: 15392
+ - uid: 31245
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: -51.5,68.5
parent: 2
- - uid: 15416
+ - uid: 31246
components:
- type: Transform
- pos: -33.5,-4.5
+ pos: -51.5,69.5
parent: 2
- - uid: 15531
+ - uid: 31247
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: -51.5,70.5
parent: 2
- - uid: 15748
+ - uid: 31248
components:
- type: Transform
- pos: -59.5,-12.5
+ pos: -51.5,71.5
parent: 2
- - uid: 15788
+ - uid: 31249
components:
- type: Transform
- pos: -11.5,40.5
+ pos: -51.5,72.5
parent: 2
- - uid: 15918
+ - uid: 31250
components:
- type: Transform
- pos: -41.5,70.5
+ pos: -51.5,73.5
parent: 2
- - uid: 16059
+ - uid: 31252
components:
- type: Transform
- pos: -6.5,45.5
+ pos: -50.5,73.5
parent: 2
- - uid: 16060
+ - uid: 31253
components:
- type: Transform
- pos: -5.5,45.5
+ pos: -49.5,73.5
parent: 2
- - uid: 16061
+ - uid: 31254
components:
- type: Transform
- pos: -4.5,45.5
+ pos: -48.5,73.5
parent: 2
- - uid: 16062
+ - uid: 31255
components:
- type: Transform
- pos: -3.5,45.5
+ pos: -47.5,73.5
parent: 2
- - uid: 16063
+ - uid: 31256
components:
- type: Transform
- pos: -2.5,45.5
+ pos: -46.5,73.5
parent: 2
- - uid: 16064
+ - uid: 31257
components:
- type: Transform
- pos: -2.5,44.5
+ pos: -45.5,73.5
parent: 2
- - uid: 16065
+ - uid: 31258
components:
- type: Transform
- pos: -2.5,43.5
+ pos: -44.5,73.5
parent: 2
- - uid: 16066
+ - uid: 31259
components:
- type: Transform
- pos: -2.5,42.5
+ pos: -43.5,73.5
parent: 2
- - uid: 16067
+ - uid: 31260
components:
- type: Transform
- pos: -2.5,41.5
+ pos: -42.5,73.5
parent: 2
- - uid: 16068
+ - uid: 31261
components:
- type: Transform
- pos: -2.5,40.5
+ pos: -41.5,73.5
parent: 2
- - uid: 16069
+ - uid: 31262
components:
- type: Transform
- pos: -3.5,40.5
+ pos: -40.5,73.5
parent: 2
- - uid: 16070
+ - uid: 31285
components:
- type: Transform
- pos: -4.5,40.5
+ pos: -80.5,53.5
parent: 2
- - uid: 16071
+ - uid: 31289
components:
- type: Transform
- pos: -5.5,40.5
+ pos: -59.5,44.5
parent: 2
- - uid: 16072
+ - uid: 31290
components:
- type: Transform
- pos: -6.5,40.5
+ pos: -58.5,44.5
parent: 2
- - uid: 16073
+ - uid: 31291
components:
- type: Transform
- pos: -7.5,40.5
+ pos: -57.5,44.5
parent: 2
- - uid: 16074
+ - uid: 31292
components:
- type: Transform
- pos: -8.5,40.5
+ pos: -56.5,44.5
parent: 2
- - uid: 16075
+ - uid: 31293
components:
- type: Transform
- pos: -9.5,40.5
+ pos: -55.5,44.5
parent: 2
- - uid: 16076
+ - uid: 31294
components:
- type: Transform
- pos: -10.5,40.5
+ pos: -54.5,44.5
parent: 2
- - uid: 16077
+ - uid: 31295
components:
- type: Transform
- pos: -10.5,36.5
+ pos: -54.5,43.5
parent: 2
- - uid: 16078
+ - uid: 31296
components:
- type: Transform
- pos: -11.5,37.5
+ pos: -54.5,42.5
parent: 2
- - uid: 16081
+ - uid: 31297
components:
- type: Transform
- pos: -12.5,40.5
+ pos: -54.5,41.5
parent: 2
- - uid: 16083
+ - uid: 31298
components:
- type: Transform
- pos: -9.5,35.5
+ pos: -54.5,40.5
parent: 2
- - uid: 16087
+ - uid: 31697
components:
- type: Transform
- pos: -12.5,39.5
+ pos: -64.5,-21.5
parent: 2
- - uid: 16088
+ - uid: 31794
components:
- type: Transform
- pos: -12.5,38.5
+ pos: -16.5,43.5
parent: 2
- - uid: 16089
+ - uid: 31795
components:
- type: Transform
- pos: -12.5,37.5
+ pos: -68.5,-3.5
parent: 2
- - uid: 16090
+ - uid: 31796
components:
- type: Transform
- pos: -10.5,35.5
+ pos: -68.5,-2.5
parent: 2
- - uid: 16143
+ - uid: 31797
components:
- type: Transform
- pos: -9.5,35.5
+ pos: -67.5,-3.5
parent: 2
- - uid: 16332
+ - uid: 31798
components:
- type: Transform
- pos: -10.5,37.5
+ pos: -66.5,-3.5
parent: 2
- - uid: 16565
+ - uid: 31799
components:
- type: Transform
- pos: 37.5,15.5
+ pos: -65.5,-3.5
parent: 2
- - uid: 16566
+ - uid: 31843
components:
- type: Transform
- pos: -34.5,26.5
+ pos: -62.5,26.5
parent: 2
- - uid: 16567
+ - uid: 31845
components:
- type: Transform
- pos: -36.5,26.5
+ pos: -62.5,24.5
parent: 2
- - uid: 16575
+ - uid: 31846
components:
- type: Transform
- pos: -35.5,26.5
+ pos: -62.5,23.5
parent: 2
- - uid: 17118
+ - uid: 31847
components:
- type: Transform
- pos: -27.5,36.5
+ pos: -63.5,26.5
parent: 2
- - uid: 17119
+ - uid: 31848
components:
- type: Transform
- pos: -26.5,36.5
+ pos: -63.5,25.5
parent: 2
- - uid: 17951
+ - uid: 31849
components:
- type: Transform
- pos: 27.5,7.5
+ pos: -63.5,24.5
parent: 2
- - uid: 18258
+ - uid: 31850
components:
- type: Transform
- pos: -20.5,-29.5
+ pos: -63.5,23.5
parent: 2
- - uid: 18259
+ - uid: 31851
components:
- type: Transform
- pos: -20.5,-28.5
+ pos: -64.5,26.5
parent: 2
- - uid: 18260
+ - uid: 31852
components:
- type: Transform
- pos: 8.5,31.5
+ pos: -64.5,25.5
parent: 2
- - uid: 18308
+ - uid: 31853
components:
- type: Transform
- pos: -33.5,24.5
+ pos: -64.5,24.5
parent: 2
- - uid: 18916
+ - uid: 31854
components:
- type: Transform
- pos: -98.5,54.5
+ pos: -64.5,23.5
parent: 2
- - uid: 18976
+ - uid: 31855
components:
- type: Transform
- pos: -97.5,54.5
+ pos: -60.5,26.5
parent: 2
- - uid: 18988
+ - uid: 31856
components:
- type: Transform
- pos: -100.5,55.5
+ pos: -60.5,25.5
parent: 2
- - uid: 18989
+ - uid: 31857
components:
- type: Transform
- pos: -100.5,54.5
+ pos: -60.5,24.5
parent: 2
- - uid: 18992
+ - uid: 31858
components:
- type: Transform
- pos: -99.5,54.5
+ pos: -60.5,23.5
parent: 2
- - uid: 19004
+ - uid: 31859
components:
- type: Transform
- pos: -101.5,56.5
+ pos: -59.5,26.5
parent: 2
- - uid: 19005
+ - uid: 31860
components:
- type: Transform
- pos: -100.5,56.5
+ pos: -59.5,25.5
parent: 2
- - uid: 19045
+ - uid: 31861
components:
- type: Transform
- pos: -102.5,56.5
+ pos: -59.5,24.5
parent: 2
- - uid: 19046
+ - uid: 31862
components:
- type: Transform
- pos: -103.5,56.5
+ pos: -59.5,23.5
parent: 2
- - uid: 19047
+ - uid: 31863
components:
- type: Transform
- pos: -104.5,56.5
+ pos: -58.5,26.5
parent: 2
- - uid: 19048
+ - uid: 31864
components:
- type: Transform
- pos: -105.5,56.5
+ pos: -58.5,25.5
parent: 2
- - uid: 19049
+ - uid: 31865
components:
- type: Transform
- pos: -105.5,57.5
+ pos: -58.5,24.5
parent: 2
- - uid: 19050
+ - uid: 31866
components:
- type: Transform
- pos: -105.5,58.5
+ pos: -58.5,23.5
parent: 2
- - uid: 19051
+ - uid: 31891
components:
- type: Transform
- pos: -106.5,58.5
+ pos: -79.5,51.5
parent: 2
- - uid: 19052
+ - uid: 31899
components:
- type: Transform
- pos: -107.5,58.5
+ pos: 50.5,-79.5
parent: 2
- - uid: 19053
+ - uid: 31900
components:
- type: Transform
- pos: -108.5,58.5
+ pos: 65.5,-75.5
parent: 2
- - uid: 19054
+ - uid: 31901
components:
- type: Transform
- pos: -110.5,58.5
+ pos: 53.5,-71.5
parent: 2
- - uid: 19055
+ - uid: 31902
components:
- type: Transform
- pos: -111.5,58.5
+ pos: 65.5,-76.5
parent: 2
- - uid: 19056
+ - uid: 31903
components:
- type: Transform
- pos: -112.5,58.5
+ pos: 52.5,-71.5
parent: 2
- - uid: 19057
+ - uid: 31907
components:
- type: Transform
- pos: -113.5,58.5
+ pos: -80.5,51.5
parent: 2
- - uid: 19058
+ - uid: 31922
components:
- type: Transform
- pos: -114.5,58.5
+ pos: -89.5,-54.5
parent: 2
- - uid: 19059
+ - uid: 31923
components:
- type: Transform
- pos: -119.5,55.5
+ pos: -89.5,-60.5
parent: 2
- - uid: 19060
+ - uid: 31924
components:
- type: Transform
- pos: -119.5,54.5
+ pos: -89.5,-59.5
parent: 2
- - uid: 19061
+ - uid: 31925
components:
- type: Transform
- pos: -119.5,53.5
+ pos: -89.5,-58.5
parent: 2
- - uid: 19062
+ - uid: 31960
components:
- type: Transform
- pos: -119.5,52.5
+ pos: -81.5,-39.5
parent: 2
- - uid: 19063
+ - uid: 31998
components:
- type: Transform
- pos: -119.5,51.5
+ pos: -80.5,-39.5
parent: 2
- - uid: 19064
+ - uid: 32006
components:
- type: Transform
- pos: -119.5,48.5
+ pos: -85.5,-38.5
parent: 2
- - uid: 19065
+ - uid: 32007
components:
- type: Transform
- pos: -119.5,47.5
+ pos: -89.5,-57.5
parent: 2
- - uid: 19066
+ - uid: 32008
components:
- type: Transform
- pos: -119.5,46.5
+ pos: -89.5,-38.5
parent: 2
- - uid: 19067
+ - uid: 32009
components:
- type: Transform
- pos: -116.5,44.5
+ pos: -89.5,-47.5
parent: 2
- - uid: 19068
+ - uid: 32312
components:
- type: Transform
- pos: -115.5,44.5
+ pos: -86.5,-34.5
parent: 2
- - uid: 19069
+ - uid: 32636
components:
- type: Transform
- pos: -114.5,44.5
+ pos: 78.5,50.5
parent: 2
- - uid: 19070
+ - uid: 32785
components:
- type: Transform
- pos: -113.5,44.5
+ pos: 78.5,52.5
parent: 2
- - uid: 19071
+ - uid: 33288
components:
- type: Transform
- pos: -112.5,44.5
+ pos: 78.5,58.5
parent: 2
- - uid: 19072
+ - uid: 33296
components:
- type: Transform
- pos: -110.5,44.5
+ pos: 78.5,57.5
parent: 2
- - uid: 19073
+ - uid: 33297
components:
- type: Transform
- pos: -109.5,44.5
+ pos: 78.5,56.5
parent: 2
- - uid: 19074
+ - uid: 33298
components:
- type: Transform
- pos: -108.5,44.5
+ pos: 78.5,55.5
parent: 2
- - uid: 19075
+ - uid: 33300
components:
- type: Transform
- pos: -107.5,44.5
+ pos: 78.5,54.5
parent: 2
- - uid: 19076
+ - uid: 33301
components:
- type: Transform
- pos: -106.5,44.5
+ pos: 78.5,51.5
parent: 2
- - uid: 19077
+ - uid: 33302
components:
- type: Transform
- pos: -105.5,45.5
+ pos: 77.5,50.5
parent: 2
- - uid: 19078
+ - uid: 33303
components:
- type: Transform
- pos: -105.5,46.5
+ pos: 77.5,49.5
parent: 2
- - uid: 19079
+ - uid: 33304
components:
- type: Transform
- pos: -104.5,46.5
+ pos: 77.5,48.5
parent: 2
- - uid: 19080
+ - uid: 33305
components:
- type: Transform
- pos: -103.5,46.5
+ pos: 77.5,47.5
parent: 2
- - uid: 19081
+ - uid: 33306
components:
- type: Transform
- pos: -102.5,46.5
+ pos: 77.5,46.5
parent: 2
- - uid: 19082
+ - uid: 33307
components:
- type: Transform
- pos: -101.5,46.5
+ pos: 77.5,45.5
parent: 2
- - uid: 19083
+ - uid: 33308
components:
- type: Transform
- pos: -100.5,46.5
+ pos: 77.5,44.5
parent: 2
- - uid: 19084
+ - uid: 33309
components:
- type: Transform
- pos: -100.5,47.5
+ pos: 77.5,43.5
parent: 2
- - uid: 19178
+ - uid: 33310
components:
- type: Transform
- pos: -98.5,55.5
+ pos: 77.5,42.5
parent: 2
- - uid: 19306
+ - uid: 33311
components:
- type: Transform
- pos: -33.5,25.5
+ pos: 77.5,41.5
parent: 2
- - uid: 19518
+ - uid: 33312
components:
- type: Transform
- pos: -33.5,26.5
+ pos: 77.5,40.5
parent: 2
- - uid: 19735
+ - uid: 33313
components:
- type: Transform
- pos: -41.5,69.5
+ pos: 77.5,39.5
parent: 2
- - uid: 19740
+ - uid: 33314
components:
- type: Transform
- pos: -41.5,69.5
+ pos: 76.5,39.5
parent: 2
- - uid: 20206
+ - uid: 33315
components:
- type: Transform
- pos: -27.5,-5.5
+ pos: 75.5,39.5
parent: 2
- - uid: 20207
+ - uid: 33316
components:
- type: Transform
- pos: -26.5,-5.5
+ pos: 74.5,39.5
parent: 2
- - uid: 20208
+ - uid: 33317
components:
- type: Transform
- pos: -25.5,-5.5
+ pos: 73.5,39.5
parent: 2
- - uid: 20209
+ - uid: 33318
components:
- type: Transform
- pos: -24.5,-5.5
+ pos: 73.5,38.5
parent: 2
- - uid: 20210
+ - uid: 33319
components:
- type: Transform
- pos: -23.5,-5.5
+ pos: 73.5,37.5
parent: 2
- - uid: 20211
+ - uid: 33320
components:
- type: Transform
- pos: -22.5,-5.5
+ pos: 73.5,36.5
parent: 2
- - uid: 20212
+ - uid: 33321
components:
- type: Transform
- pos: -21.5,-5.5
+ pos: 73.5,35.5
parent: 2
- - uid: 20215
+ - uid: 33322
components:
- type: Transform
- pos: 39.5,16.5
+ pos: 73.5,34.5
parent: 2
- - uid: 20216
+ - uid: 33323
components:
- type: Transform
- pos: 39.5,15.5
+ pos: 73.5,32.5
parent: 2
- - uid: 20217
+ - uid: 33324
components:
- type: Transform
- pos: 39.5,14.5
+ pos: 72.5,32.5
parent: 2
- - uid: 20218
+ - uid: 33325
components:
- type: Transform
- pos: 38.5,14.5
+ pos: 71.5,32.5
parent: 2
- - uid: 20219
+ - uid: 33326
components:
- type: Transform
- pos: 37.5,14.5
+ pos: 70.5,32.5
parent: 2
- - uid: 20220
+ - uid: 33327
components:
- type: Transform
- pos: 37.5,13.5
+ pos: 69.5,32.5
parent: 2
- - uid: 20221
+ - uid: 33328
components:
- type: Transform
- pos: 37.5,12.5
+ pos: 68.5,32.5
parent: 2
- - uid: 20222
+ - uid: 33329
components:
- type: Transform
- pos: 37.5,11.5
+ pos: 67.5,32.5
parent: 2
- - uid: 20224
+ - uid: 33330
components:
- type: Transform
- pos: 33.5,11.5
+ pos: 66.5,32.5
parent: 2
- - uid: 20225
+ - uid: 33331
components:
- type: Transform
- pos: 34.5,11.5
+ pos: 65.5,32.5
parent: 2
- - uid: 20250
+ - uid: 33332
components:
- type: Transform
- pos: -45.5,38.5
+ pos: 64.5,32.5
parent: 2
- - uid: 20267
+ - uid: 33333
components:
- type: Transform
- pos: -44.5,38.5
+ pos: 63.5,32.5
parent: 2
- - uid: 20321
+ - uid: 33338
components:
- type: Transform
- pos: 17.5,4.5
+ pos: 73.5,33.5
parent: 2
- - uid: 20435
+ - uid: 33633
components:
- type: Transform
- pos: -4.5,-30.5
+ pos: 5.5,45.5
parent: 2
- - uid: 20476
+ - uid: 33710
components:
- type: Transform
- pos: 40.5,16.5
+ pos: -15.5,41.5
parent: 2
- - uid: 20571
+ - uid: 34050
components:
- type: Transform
- pos: 24.5,5.5
+ pos: -0.5,-37.5
parent: 2
- - uid: 20601
+ - uid: 34051
components:
- type: Transform
- pos: -42.5,70.5
+ pos: 0.5,-37.5
parent: 2
- - uid: 20605
+ - uid: 34052
components:
- type: Transform
- pos: -64.5,-20.5
+ pos: 1.5,-37.5
parent: 2
- - uid: 20609
+ - uid: 34053
components:
- type: Transform
- pos: -64.5,-19.5
+ pos: 2.5,-37.5
parent: 2
- - uid: 20613
+ - uid: 34054
components:
- type: Transform
- pos: 52.5,45.5
+ pos: 3.5,-37.5
parent: 2
- - uid: 20658
+ - uid: 34814
components:
- type: Transform
- pos: 51.5,44.5
+ pos: -54.5,52.5
parent: 2
- - uid: 20698
+ - uid: 34817
components:
- type: Transform
- pos: 10.5,9.5
+ pos: -51.5,52.5
parent: 2
- - uid: 20700
+ - uid: 34818
components:
- type: Transform
- pos: 10.5,8.5
+ pos: -52.5,52.5
parent: 2
- - uid: 20701
+ - uid: 34819
components:
- type: Transform
- pos: 10.5,10.5
+ pos: -53.5,52.5
parent: 2
- - uid: 20740
+ - uid: 34820
components:
- type: Transform
- pos: 10.5,11.5
+ pos: -54.5,51.5
parent: 2
- - uid: 20791
+ - uid: 34821
components:
- type: Transform
- pos: 31.5,52.5
+ pos: -54.5,50.5
parent: 2
- - uid: 20794
+ - uid: 34822
components:
- type: Transform
- pos: -50.5,39.5
+ pos: -54.5,49.5
parent: 2
- - uid: 20800
+ - uid: 34823
components:
- type: Transform
- pos: -50.5,38.5
+ pos: -54.5,48.5
parent: 2
- - uid: 20805
+ - uid: 34824
components:
- type: Transform
- pos: -49.5,38.5
+ pos: -54.5,47.5
parent: 2
- - uid: 20806
+ - uid: 34825
components:
- type: Transform
- pos: -48.5,38.5
+ pos: -54.5,46.5
parent: 2
- - uid: 20807
+ - uid: 34826
components:
- type: Transform
- pos: -47.5,38.5
+ pos: -54.5,45.5
parent: 2
- - uid: 20808
+ - uid: 35086
components:
- type: Transform
- pos: -46.5,38.5
+ pos: -80.5,61.5
parent: 2
- - uid: 20835
+ - uid: 35087
components:
- type: Transform
- pos: 7.5,56.5
+ pos: -80.5,65.5
parent: 2
- - uid: 20836
+ - uid: 35088
components:
- type: Transform
- pos: 7.5,57.5
+ pos: -80.5,66.5
parent: 2
- - uid: 20837
+ - uid: 35089
components:
- type: Transform
- pos: 7.5,59.5
+ pos: -80.5,67.5
parent: 2
- - uid: 20900
+ - uid: 35090
components:
- type: Transform
- pos: 36.5,11.5
+ pos: -80.5,68.5
parent: 2
- - uid: 20901
+ - uid: 35091
components:
- type: Transform
- pos: 35.5,11.5
+ pos: -80.5,70.5
parent: 2
- - uid: 20951
+ - uid: 35092
components:
- type: Transform
- pos: 7.5,58.5
+ pos: -80.5,72.5
parent: 2
- - uid: 21067
+ - uid: 35093
components:
- type: Transform
- pos: 7.5,55.5
+ pos: -80.5,73.5
parent: 2
- - uid: 21278
+ - uid: 35094
components:
- type: Transform
- pos: 7.5,54.5
+ pos: -80.5,75.5
parent: 2
- - uid: 21279
+ - uid: 35095
components:
- type: Transform
- pos: -39.5,34.5
+ pos: -80.5,76.5
parent: 2
- - uid: 21280
+ - uid: 35096
components:
- type: Transform
- pos: -39.5,35.5
+ pos: -80.5,77.5
parent: 2
- - uid: 21281
+ - uid: 35097
components:
- type: Transform
- pos: -38.5,34.5
+ pos: -80.5,78.5
parent: 2
- - uid: 21282
+ - uid: 35098
components:
- type: Transform
- pos: -38.5,33.5
+ pos: -80.5,79.5
parent: 2
- - uid: 21283
+ - uid: 35099
components:
- type: Transform
- pos: -38.5,32.5
+ pos: -80.5,82.5
parent: 2
- - uid: 21285
+ - uid: 35100
components:
- type: Transform
- pos: -55.5,-10.5
+ pos: -80.5,83.5
parent: 2
- - uid: 21360
+ - uid: 35101
components:
- type: Transform
- pos: -55.5,-11.5
+ pos: -80.5,84.5
parent: 2
- - uid: 21361
+ - uid: 35102
components:
- type: Transform
- pos: -55.5,-9.5
+ pos: -80.5,86.5
parent: 2
- - uid: 21362
+ - uid: 35103
components:
- type: Transform
- pos: -55.5,-12.5
+ pos: -80.5,87.5
parent: 2
- - uid: 21363
+ - uid: 35104
components:
- type: Transform
- pos: -58.5,-15.5
+ pos: -80.5,88.5
parent: 2
- - uid: 21364
+ - uid: 35105
components:
- type: Transform
- pos: -38.5,27.5
+ pos: -80.5,93.5
parent: 2
- - uid: 21400
+ - uid: 35106
components:
- type: Transform
- pos: -50.5,41.5
+ pos: -80.5,92.5
parent: 2
- - uid: 21479
+ - uid: 35107
components:
- type: Transform
- pos: -51.5,41.5
+ pos: -80.5,98.5
parent: 2
- - uid: 21514
+ - uid: 35108
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -80.5,100.5
parent: 2
- - uid: 21515
+ - uid: 35109
components:
- type: Transform
- pos: -38.5,31.5
+ pos: -80.5,101.5
parent: 2
- - uid: 21516
+ - uid: 35110
components:
- type: Transform
- pos: -38.5,30.5
+ pos: -80.5,102.5
parent: 2
- - uid: 21533
+ - uid: 35111
components:
- type: Transform
- pos: -38.5,28.5
+ pos: -81.5,102.5
parent: 2
- - uid: 21534
+ - uid: 35112
components:
- type: Transform
- pos: 8.5,33.5
+ pos: -81.5,103.5
parent: 2
- - uid: 21535
+ - uid: 35113
components:
- type: Transform
- pos: 8.5,32.5
+ pos: -80.5,90.5
parent: 2
- - uid: 21536
+ - uid: 35114
components:
- type: Transform
- pos: -38.5,29.5
+ pos: -77.5,96.5
parent: 2
- - uid: 21537
+ - uid: 35115
components:
- type: Transform
- pos: -38.5,26.5
+ pos: -76.5,96.5
parent: 2
- - uid: 21542
+ - uid: 35116
components:
- type: Transform
- pos: -37.5,26.5
+ pos: -75.5,96.5
parent: 2
- - uid: 21591
+ - uid: 35117
components:
- type: Transform
- pos: -61.5,-19.5
+ pos: -74.5,96.5
parent: 2
- - uid: 21592
+ - uid: 35118
components:
- type: Transform
- pos: -61.5,-20.5
+ pos: -72.5,95.5
parent: 2
- - uid: 21593
+ - uid: 35119
components:
- type: Transform
- pos: -58.5,-12.5
+ pos: -72.5,94.5
parent: 2
- - uid: 21594
+ - uid: 35120
components:
- type: Transform
- pos: -56.5,-12.5
+ pos: -73.5,94.5
parent: 2
- - uid: 21878
+ - uid: 35121
components:
- type: Transform
- pos: -24.5,36.5
+ pos: -71.5,90.5
parent: 2
- - uid: 21969
+ - uid: 35122
components:
- type: Transform
- pos: 12.5,48.5
+ pos: -72.5,90.5
parent: 2
- - uid: 22368
+ - uid: 35123
components:
- type: Transform
- pos: -20.5,-5.5
+ pos: -72.5,91.5
parent: 2
- - uid: 22369
+ - uid: 35124
components:
- type: Transform
- pos: -19.5,-5.5
+ pos: -73.5,91.5
parent: 2
- - uid: 22370
+ - uid: 35125
components:
- type: Transform
- pos: -18.5,-5.5
+ pos: -74.5,91.5
parent: 2
- - uid: 22372
+ - uid: 35126
components:
- type: Transform
- pos: -17.5,-5.5
+ pos: -76.5,91.5
parent: 2
- - uid: 22373
+ - uid: 35127
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: -77.5,91.5
parent: 2
- - uid: 22374
+ - uid: 35128
components:
- type: Transform
- pos: -15.5,-5.5
+ pos: -77.5,90.5
parent: 2
- - uid: 22375
+ - uid: 35129
components:
- type: Transform
- pos: -14.5,-5.5
+ pos: -78.5,90.5
parent: 2
- - uid: 22376
+ - uid: 35130
components:
- type: Transform
- pos: -13.5,-5.5
+ pos: -79.5,90.5
parent: 2
- - uid: 22377
+ - uid: 35131
components:
- type: Transform
- pos: -12.5,-5.5
+ pos: -81.5,90.5
parent: 2
- - uid: 22379
+ - uid: 35132
components:
- type: Transform
- pos: -11.5,-5.5
+ pos: -80.5,91.5
parent: 2
- - uid: 22380
+ - uid: 35133
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: -72.5,86.5
parent: 2
- - uid: 22381
+ - uid: 35134
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: -82.5,90.5
parent: 2
- - uid: 22545
+ - uid: 35135
components:
- type: Transform
- pos: -10.5,-4.5
+ pos: -83.5,89.5
parent: 2
- - uid: 22578
+ - uid: 35136
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: -84.5,89.5
parent: 2
- - uid: 22716
+ - uid: 35137
components:
- type: Transform
- pos: -10.5,-2.5
+ pos: -83.5,90.5
parent: 2
- - uid: 22737
+ - uid: 35138
components:
- type: Transform
- pos: -59.5,-31.5
+ pos: -85.5,86.5
parent: 2
- - uid: 22746
+ - uid: 35139
components:
- type: Transform
- pos: 9.5,27.5
+ pos: -88.5,84.5
parent: 2
- - uid: 22747
+ - uid: 35140
components:
- type: Transform
- pos: 8.5,28.5
+ pos: -87.5,84.5
parent: 2
- - uid: 22756
+ - uid: 35141
components:
- type: Transform
- pos: -10.5,-1.5
+ pos: -86.5,84.5
parent: 2
- - uid: 22764
+ - uid: 35142
components:
- type: Transform
- pos: -10.5,-0.5
+ pos: -77.5,86.5
parent: 2
- - uid: 22892
+ - uid: 35143
components:
- type: Transform
- pos: -10.5,0.5
+ pos: -76.5,86.5
parent: 2
- - uid: 22924
+ - uid: 35144
components:
- type: Transform
- pos: -10.5,1.5
+ pos: -75.5,86.5
parent: 2
- - uid: 22989
+ - uid: 35145
components:
- type: Transform
- pos: -10.5,2.5
+ pos: -77.5,85.5
parent: 2
- - uid: 23050
+ - uid: 35146
components:
- type: Transform
- pos: -61.5,-24.5
+ pos: -78.5,85.5
parent: 2
- - uid: 23088
+ - uid: 35147
components:
- type: Transform
- pos: -10.5,3.5
+ pos: -80.5,89.5
parent: 2
- - uid: 23224
+ - uid: 35148
components:
- type: Transform
- pos: -10.5,4.5
+ pos: -71.5,85.5
parent: 2
- - uid: 23226
+ - uid: 35149
components:
- type: Transform
- pos: -9.5,4.5
+ pos: -72.5,85.5
parent: 2
- - uid: 24655
+ - uid: 35150
components:
- type: Transform
- pos: 6.5,-20.5
+ pos: -72.5,84.5
parent: 2
- - uid: 25411
+ - uid: 35151
components:
- type: Transform
- pos: 29.5,39.5
+ pos: -73.5,84.5
parent: 2
- - uid: 25429
+ - uid: 35152
components:
- type: Transform
- pos: 28.5,39.5
+ pos: -72.5,79.5
parent: 2
- - uid: 25442
+ - uid: 35153
components:
- type: Transform
- pos: 27.5,39.5
+ pos: -73.5,79.5
parent: 2
- - uid: 27375
+ - uid: 35154
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: -74.5,79.5
parent: 2
- - uid: 27958
+ - uid: 35155
components:
- type: Transform
- pos: -61.5,-22.5
+ pos: -72.5,80.5
parent: 2
- - uid: 28684
+ - uid: 35156
components:
- type: Transform
- pos: 10.5,48.5
+ pos: -71.5,80.5
parent: 2
- - uid: 28685
+ - uid: 35157
components:
- type: Transform
- pos: 7.5,47.5
+ pos: -76.5,81.5
parent: 2
- - uid: 28686
+ - uid: 35158
components:
- type: Transform
- pos: 7.5,46.5
+ pos: -77.5,81.5
parent: 2
- - uid: 28687
+ - uid: 35159
components:
- type: Transform
- pos: 7.5,48.5
+ pos: -73.5,81.5
parent: 2
- - uid: 28688
+ - uid: 35160
components:
- type: Transform
- pos: 11.5,48.5
+ pos: -72.5,81.5
parent: 2
- - uid: 28689
+ - uid: 35161
components:
- type: Transform
- pos: 7.5,45.5
+ pos: -73.5,76.5
parent: 2
- - uid: 28691
+ - uid: 35162
components:
- type: Transform
- pos: 9.5,48.5
+ pos: -74.5,76.5
parent: 2
- - uid: 28692
+ - uid: 35163
components:
- type: Transform
- pos: 7.5,44.5
+ pos: -75.5,76.5
parent: 2
- - uid: 28693
+ - uid: 35164
components:
- type: Transform
- pos: 6.5,44.5
+ pos: -76.5,76.5
parent: 2
- - uid: 28694
+ - uid: 35165
components:
- type: Transform
- pos: 18.5,34.5
+ pos: -77.5,76.5
parent: 2
- - uid: 28696
+ - uid: 35166
components:
- type: Transform
- pos: 18.5,35.5
+ pos: -71.5,55.5
parent: 2
- - uid: 28697
+ - uid: 35167
components:
- type: Transform
- pos: 8.5,48.5
+ pos: -72.5,55.5
parent: 2
- - uid: 28698
+ - uid: 35168
components:
- type: Transform
- pos: 18.5,36.5
+ pos: -72.5,54.5
parent: 2
- - uid: 28707
+ - uid: 35169
components:
- type: Transform
- pos: 18.5,37.5
+ pos: -73.5,54.5
parent: 2
- - uid: 28708
+ - uid: 35170
components:
- type: Transform
- pos: 18.5,38.5
+ pos: -74.5,54.5
parent: 2
- - uid: 28716
+ - uid: 35171
components:
- type: Transform
- pos: 24.5,7.5
+ pos: -75.5,54.5
parent: 2
- - uid: 28795
+ - uid: 35172
components:
- type: Transform
- pos: -70.5,2.5
+ pos: -76.5,54.5
parent: 2
- - uid: 29541
+ - uid: 35173
components:
- type: Transform
- pos: -25.5,36.5
+ pos: -77.5,54.5
parent: 2
- - uid: 29544
+ - uid: 35174
components:
- type: Transform
- pos: -27.5,36.5
+ pos: -77.5,55.5
parent: 2
- - uid: 29545
+ - uid: 35175
components:
- type: Transform
- pos: -23.5,36.5
+ pos: -78.5,55.5
parent: 2
- - uid: 29642
+ - uid: 35176
components:
- type: Transform
- pos: -21.5,-24.5
+ pos: -79.5,55.5
parent: 2
- - uid: 29961
+ - uid: 35177
components:
- type: Transform
- pos: -60.5,-31.5
+ pos: -77.5,56.5
parent: 2
- - uid: 29963
+ - uid: 35178
components:
- type: Transform
- pos: -58.5,-31.5
+ pos: -76.5,56.5
parent: 2
- - uid: 29966
+ - uid: 35179
components:
- type: Transform
- pos: 17.5,48.5
+ pos: -74.5,56.5
parent: 2
- - uid: 29967
+ - uid: 35180
components:
- type: Transform
- pos: 18.5,48.5
+ pos: -73.5,56.5
parent: 2
- - uid: 29968
+ - uid: 35181
components:
- type: Transform
- pos: 18.5,47.5
+ pos: -72.5,56.5
parent: 2
- - uid: 29970
+ - uid: 35182
components:
- type: Transform
- pos: -61.5,-23.5
+ pos: -81.5,55.5
parent: 2
- - uid: 29972
+ - uid: 35183
components:
- type: Transform
- pos: -61.5,-26.5
+ pos: -82.5,55.5
parent: 2
- - uid: 29973
+ - uid: 35184
components:
- type: Transform
- pos: -61.5,-28.5
+ pos: -83.5,55.5
parent: 2
- - uid: 29974
+ - uid: 35185
components:
- type: Transform
- pos: -61.5,-25.5
+ pos: -83.5,56.5
parent: 2
- - uid: 29975
+ - uid: 35186
components:
- type: Transform
- pos: 18.5,46.5
+ pos: -84.5,56.5
parent: 2
- - uid: 29977
+ - uid: 35187
components:
- type: Transform
- pos: 5.5,60.5
+ pos: -85.5,56.5
parent: 2
- - uid: 29979
+ - uid: 35188
components:
- type: Transform
- pos: -61.5,-29.5
+ pos: -86.5,56.5
parent: 2
- - uid: 29982
+ - uid: 35189
components:
- type: Transform
- pos: -61.5,-30.5
+ pos: -87.5,56.5
parent: 2
- - uid: 30187
+ - uid: 35193
components:
- type: Transform
- pos: 5.5,61.5
+ pos: -88.5,54.5
parent: 2
- - uid: 30188
+ - uid: 35194
components:
- type: Transform
- pos: 5.5,62.5
+ pos: -87.5,54.5
parent: 2
- - uid: 30259
+ - uid: 35195
components:
- type: Transform
- pos: 5.5,63.5
+ pos: -86.5,54.5
parent: 2
- - uid: 30302
+ - uid: 35197
components:
- type: Transform
- pos: -30.5,-13.5
+ pos: -79.5,60.5
parent: 2
- - uid: 30304
+ - uid: 35198
components:
- type: Transform
- pos: 15.5,48.5
+ pos: -78.5,60.5
parent: 2
- - uid: 30306
+ - uid: 35199
components:
- type: Transform
- pos: 16.5,48.5
+ pos: -77.5,60.5
parent: 2
- - uid: 30313
+ - uid: 35200
components:
- type: Transform
- pos: -30.5,-12.5
+ pos: -77.5,61.5
parent: 2
- - uid: 30314
+ - uid: 35201
components:
- type: Transform
- pos: -63.5,9.5
+ pos: -76.5,61.5
parent: 2
- - uid: 30316
+ - uid: 35202
components:
- type: Transform
- pos: -63.5,8.5
+ pos: -75.5,61.5
parent: 2
- - uid: 30317
+ - uid: 35203
components:
- type: Transform
- pos: -63.5,10.5
+ pos: -74.5,61.5
parent: 2
- - uid: 30325
+ - uid: 35204
components:
- type: Transform
- pos: 14.5,48.5
+ pos: -76.5,59.5
parent: 2
- - uid: 30329
+ - uid: 35205
components:
- type: Transform
- pos: 13.5,48.5
+ pos: -75.5,59.5
parent: 2
- - uid: 30794
+ - uid: 35206
components:
- type: Transform
- pos: 44.5,-25.5
+ pos: -74.5,59.5
parent: 2
- - uid: 30797
+ - uid: 35207
components:
- type: Transform
- pos: -29.5,-5.5
+ pos: -73.5,59.5
parent: 2
- - uid: 30802
+ - uid: 35208
components:
- type: Transform
- pos: 23.5,7.5
+ pos: -72.5,60.5
parent: 2
- - uid: 30807
+ - uid: 35209
components:
- type: Transform
- pos: -71.5,2.5
+ pos: -72.5,61.5
parent: 2
- - uid: 30858
+ - uid: 35210
components:
- type: Transform
- pos: 26.5,7.5
+ pos: -71.5,60.5
parent: 2
- - uid: 30859
+ - uid: 35211
components:
- type: Transform
- pos: 16.5,6.5
+ pos: -83.5,61.5
parent: 2
- - uid: 30860
+ - uid: 35212
components:
- type: Transform
- pos: 16.5,5.5
+ pos: -84.5,61.5
parent: 2
- - uid: 30861
+ - uid: 35213
components:
- type: Transform
- pos: 16.5,4.5
+ pos: -85.5,61.5
parent: 2
- - uid: 30862
+ - uid: 35214
components:
- type: Transform
- pos: 16.5,3.5
+ pos: -86.5,61.5
parent: 2
- - uid: 30864
+ - uid: 35219
components:
- type: Transform
- pos: 19.5,7.5
+ pos: -86.5,59.5
parent: 2
- - uid: 30865
+ - uid: 35220
components:
- type: Transform
- pos: 19.5,8.5
+ pos: -85.5,59.5
parent: 2
- - uid: 30866
+ - uid: 35221
components:
- type: Transform
- pos: 19.5,9.5
+ pos: -84.5,59.5
parent: 2
- - uid: 30867
+ - uid: 35222
components:
- type: Transform
- pos: 20.5,9.5
+ pos: -83.5,59.5
parent: 2
- - uid: 30880
+ - uid: 35223
components:
- type: Transform
- pos: 21.5,9.5
+ pos: -83.5,60.5
parent: 2
- - uid: 30881
+ - uid: 35224
components:
- type: Transform
- pos: 21.5,10.5
+ pos: -82.5,60.5
parent: 2
- - uid: 30882
+ - uid: 35225
components:
- type: Transform
- pos: 21.5,11.5
+ pos: -82.5,65.5
parent: 2
- - uid: 30897
+ - uid: 35226
components:
- type: Transform
- pos: 22.5,8.5
+ pos: -83.5,65.5
parent: 2
- - uid: 30910
+ - uid: 35227
components:
- type: Transform
- pos: 21.5,7.5
+ pos: -83.5,66.5
parent: 2
- - uid: 30916
+ - uid: 35228
components:
- type: Transform
- pos: 20.5,7.5
+ pos: -84.5,66.5
parent: 2
- - uid: 30936
+ - uid: 35229
components:
- type: Transform
- pos: 16.5,2.5
+ pos: -86.5,66.5
parent: 2
- - uid: 30937
+ - uid: 35230
components:
- type: Transform
- pos: 16.5,1.5
+ pos: -87.5,66.5
parent: 2
- - uid: 30938
+ - uid: 35231
components:
- type: Transform
- pos: 16.5,0.5
+ pos: -88.5,66.5
parent: 2
- - uid: 30939
+ - uid: 35232
components:
- type: Transform
- pos: 16.5,-0.5
+ pos: -88.5,65.5
parent: 2
- - uid: 30940
+ - uid: 35233
components:
- type: Transform
- pos: 16.5,-1.5
+ pos: -89.5,65.5
parent: 2
- - uid: 30941
+ - uid: 35234
components:
- type: Transform
- pos: 16.5,-2.5
+ pos: -87.5,64.5
parent: 2
- - uid: 30942
+ - uid: 35235
components:
- type: Transform
- pos: 16.5,-3.5
+ pos: -86.5,64.5
parent: 2
- - uid: 30943
+ - uid: 35236
components:
- type: Transform
- pos: 17.5,-3.5
+ pos: -78.5,65.5
parent: 2
- - uid: 30944
+ - uid: 35237
components:
- type: Transform
- pos: 18.5,-3.5
+ pos: -77.5,65.5
parent: 2
- - uid: 30945
+ - uid: 35238
components:
- type: Transform
- pos: 19.5,-3.5
+ pos: -74.5,66.5
parent: 2
- - uid: 30946
+ - uid: 35239
components:
- type: Transform
- pos: 20.5,-3.5
+ pos: -73.5,66.5
parent: 2
- - uid: 30947
+ - uid: 35240
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: -71.5,65.5
parent: 2
- - uid: 30948
+ - uid: 35241
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: -72.5,65.5
parent: 2
- - uid: 30949
+ - uid: 35242
components:
- type: Transform
- pos: 11.5,7.5
+ pos: -74.5,64.5
parent: 2
- - uid: 30950
+ - uid: 35243
components:
- type: Transform
- pos: 10.5,7.5
+ pos: -75.5,64.5
parent: 2
- - uid: 30951
+ - uid: 35244
components:
- type: Transform
- pos: 10.5,6.5
+ pos: -76.5,64.5
parent: 2
- - uid: 30952
+ - uid: 35245
components:
- type: Transform
- pos: 10.5,5.5
+ pos: -77.5,64.5
parent: 2
- - uid: 30953
+ - uid: 35246
components:
- type: Transform
- pos: 10.5,4.5
+ pos: -76.5,69.5
parent: 2
- - uid: 30954
+ - uid: 35247
components:
- type: Transform
- pos: 10.5,3.5
+ pos: -75.5,69.5
parent: 2
- - uid: 30955
+ - uid: 35248
components:
- type: Transform
- pos: 10.5,2.5
+ pos: -74.5,69.5
parent: 2
- - uid: 30956
+ - uid: 35249
components:
- type: Transform
- pos: 10.5,1.5
+ pos: -73.5,69.5
parent: 2
- - uid: 30957
+ - uid: 35250
components:
- type: Transform
- pos: 10.5,0.5
+ pos: -72.5,69.5
parent: 2
- - uid: 30958
+ - uid: 35251
components:
- type: Transform
- pos: 10.5,-0.5
+ pos: -72.5,70.5
parent: 2
- - uid: 30959
+ - uid: 35252
components:
- type: Transform
- pos: 10.5,-1.5
+ pos: -72.5,71.5
parent: 2
- - uid: 30960
+ - uid: 35253
components:
- type: Transform
- pos: 10.5,-2.5
+ pos: -73.5,71.5
parent: 2
- - uid: 30961
+ - uid: 35254
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: -76.5,71.5
parent: 2
- - uid: 30971
+ - uid: 35255
components:
- type: Transform
- pos: 10.5,-12.5
+ pos: -78.5,70.5
parent: 2
- - uid: 30983
+ - uid: 35256
components:
- type: Transform
- pos: 28.5,7.5
+ pos: -83.5,70.5
parent: 2
- - uid: 30984
+ - uid: 35257
components:
- type: Transform
- pos: 29.5,7.5
+ pos: -83.5,69.5
parent: 2
- - uid: 30985
+ - uid: 35258
components:
- type: Transform
- pos: 30.5,7.5
+ pos: -86.5,69.5
parent: 2
- - uid: 30986
+ - uid: 35259
components:
- type: Transform
- pos: 31.5,7.5
+ pos: -87.5,69.5
parent: 2
- - uid: 30987
+ - uid: 35260
components:
- type: Transform
- pos: 31.5,6.5
+ pos: -88.5,69.5
parent: 2
- - uid: 30988
+ - uid: 35261
components:
- type: Transform
- pos: 31.5,5.5
+ pos: -85.5,71.5
parent: 2
- - uid: 30989
+ - uid: 35262
components:
- type: Transform
- pos: 31.5,4.5
+ pos: -86.5,71.5
parent: 2
- - uid: 30990
+ - uid: 35263
components:
- type: Transform
- pos: 31.5,3.5
+ pos: -88.5,76.5
parent: 2
- - uid: 30991
+ - uid: 35264
components:
- type: Transform
- pos: 31.5,2.5
+ pos: -87.5,76.5
parent: 2
- - uid: 30992
+ - uid: 35265
components:
- type: Transform
- pos: 31.5,1.5
+ pos: -86.5,76.5
parent: 2
- - uid: 30993
+ - uid: 35266
components:
- type: Transform
- pos: 31.5,0.5
+ pos: -85.5,76.5
parent: 2
- - uid: 30994
+ - uid: 35267
components:
- type: Transform
- pos: 32.5,0.5
+ pos: -84.5,76.5
parent: 2
- - uid: 30995
+ - uid: 35268
components:
- type: Transform
- pos: 10.5,12.5
+ pos: -83.5,76.5
parent: 2
- - uid: 30996
+ - uid: 35269
components:
- type: Transform
- pos: 10.5,13.5
+ pos: -83.5,75.5
parent: 2
- - uid: 30997
+ - uid: 35270
components:
- type: Transform
- pos: 10.5,14.5
+ pos: -82.5,75.5
parent: 2
- - uid: 30998
+ - uid: 35271
components:
- type: Transform
- pos: 10.5,15.5
+ pos: -81.5,75.5
parent: 2
- - uid: 30999
+ - uid: 35272
components:
- type: Transform
- pos: 10.5,16.5
+ pos: -83.5,74.5
parent: 2
- - uid: 31000
+ - uid: 35273
components:
- type: Transform
- pos: 9.5,16.5
+ pos: -84.5,74.5
parent: 2
- - uid: 31001
+ - uid: 35274
components:
- type: Transform
- pos: 8.5,16.5
+ pos: -85.5,74.5
parent: 2
- - uid: 31002
+ - uid: 35275
components:
- type: Transform
- pos: 8.5,17.5
+ pos: -86.5,74.5
parent: 2
- - uid: 31010
+ - uid: 35276
components:
- type: Transform
- pos: -35.5,10.5
+ pos: -87.5,74.5
parent: 2
- - uid: 31012
+ - uid: 35277
components:
- type: Transform
- pos: -14.5,13.5
+ pos: -88.5,74.5
parent: 2
- - uid: 31013
+ - uid: 35278
components:
- type: Transform
- pos: -13.5,13.5
+ pos: -88.5,75.5
parent: 2
- - uid: 31014
+ - uid: 35279
components:
- type: Transform
- pos: -12.5,13.5
+ pos: -89.5,75.5
parent: 2
- - uid: 31015
+ - uid: 35280
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -81.5,80.5
parent: 2
- - uid: 31016
+ - uid: 35281
components:
- type: Transform
- pos: -10.5,13.5
+ pos: -82.5,80.5
parent: 2
- - uid: 31017
+ - uid: 35282
components:
- type: Transform
- pos: -10.5,12.5
+ pos: -83.5,80.5
parent: 2
- - uid: 31018
+ - uid: 35283
components:
- type: Transform
- pos: -10.5,11.5
+ pos: -84.5,81.5
parent: 2
- - uid: 31019
+ - uid: 35284
components:
- type: Transform
- pos: -10.5,10.5
+ pos: -83.5,81.5
parent: 2
- - uid: 31020
+ - uid: 35285
components:
- type: Transform
- pos: -10.5,9.5
+ pos: -88.5,80.5
parent: 2
- - uid: 31021
+ - uid: 35286
components:
- type: Transform
- pos: -10.5,8.5
+ pos: -88.5,79.5
parent: 2
- - uid: 31022
+ - uid: 35287
components:
- type: Transform
- pos: -10.5,7.5
+ pos: -87.5,79.5
parent: 2
- - uid: 31023
+ - uid: 35288
components:
- type: Transform
- pos: -10.5,6.5
+ pos: -89.5,80.5
parent: 2
- - uid: 31024
+ - uid: 35289
components:
- type: Transform
- pos: -10.5,5.5
+ pos: -86.5,79.5
parent: 2
- - uid: 31025
+ - uid: 35290
components:
- type: Transform
- pos: 19.5,45.5
+ pos: -88.5,81.5
parent: 2
- - uid: 31026
+ - uid: 35291
components:
- type: Transform
- pos: 20.5,45.5
+ pos: -85.5,79.5
parent: 2
- - uid: 31027
+ - uid: 35292
components:
- type: Transform
- pos: 21.5,45.5
+ pos: -84.5,79.5
parent: 2
- - uid: 31028
+ - uid: 35293
components:
- type: Transform
- pos: 22.5,45.5
+ pos: -85.5,94.5
parent: 2
- - uid: 31029
+ - uid: 35294
components:
- type: Transform
- pos: 23.5,45.5
+ pos: -86.5,94.5
parent: 2
- - uid: 31030
+ - uid: 35523
components:
- type: Transform
- pos: 24.5,45.5
+ pos: -18.5,43.5
parent: 2
- - uid: 31031
+ - uid: 35812
components:
- type: Transform
- pos: 25.5,45.5
+ pos: -17.5,43.5
parent: 2
- - uid: 31032
+ - uid: 35816
components:
- type: Transform
- pos: 26.5,45.5
+ pos: -15.5,42.5
parent: 2
- - uid: 31089
+ - uid: 35817
components:
- type: Transform
- pos: 34.5,33.5
+ pos: -15.5,40.5
parent: 2
- - uid: 31091
+ - uid: 35818
components:
- type: Transform
- pos: 35.5,33.5
+ pos: -50.5,52.5
parent: 2
- - uid: 31093
+ - uid: 35826
components:
- type: Transform
- pos: 36.5,33.5
+ pos: -26.5,27.5
parent: 2
- - uid: 31094
+ - uid: 35827
components:
- type: Transform
- pos: 37.5,33.5
+ pos: -27.5,26.5
parent: 2
- - uid: 31095
+ - uid: 35926
components:
- type: Transform
- pos: 38.5,33.5
+ pos: -28.5,26.5
parent: 2
- - uid: 31101
+ - uid: 35927
components:
- type: Transform
- pos: 39.5,33.5
+ pos: -28.5,27.5
parent: 2
- - uid: 31130
+ - uid: 35928
components:
- type: Transform
- pos: 40.5,33.5
+ pos: -29.5,26.5
parent: 2
- - uid: 31139
+ - uid: 35929
components:
- type: Transform
- pos: 40.5,34.5
+ pos: -30.5,26.5
parent: 2
- - uid: 31147
+ - uid: 35930
components:
- type: Transform
- pos: 40.5,35.5
+ pos: -30.5,27.5
parent: 2
- - uid: 31182
+ - uid: 35931
components:
- type: Transform
- pos: -82.5,8.5
+ pos: -30.5,28.5
parent: 2
- - uid: 31265
+ - uid: 35932
components:
- type: Transform
- pos: 40.5,36.5
+ pos: -30.5,29.5
parent: 2
- - uid: 31266
+ - uid: 35933
components:
- type: Transform
- pos: 40.5,37.5
+ pos: -30.5,30.5
parent: 2
- - uid: 31267
+ - uid: 35934
components:
- type: Transform
- pos: 40.5,38.5
+ pos: -30.5,31.5
parent: 2
- - uid: 31268
+ - uid: 35935
components:
- type: Transform
- pos: 40.5,39.5
+ pos: -30.5,32.5
parent: 2
- - uid: 31269
+ - uid: 35936
components:
- type: Transform
- pos: 40.5,40.5
+ pos: -29.5,32.5
parent: 2
- - uid: 31270
+ - uid: 35937
components:
- type: Transform
- pos: 40.5,41.5
+ pos: -28.5,32.5
parent: 2
- - uid: 31304
+ - uid: 35938
components:
- type: Transform
- pos: 41.5,41.5
+ pos: -28.5,31.5
parent: 2
- - uid: 31366
+ - uid: 35939
components:
- type: Transform
- pos: 43.5,32.5
+ pos: -27.5,32.5
parent: 2
- - uid: 31367
+ - uid: 36083
components:
- type: Transform
- pos: 44.5,32.5
+ pos: -26.5,32.5
parent: 2
- - uid: 31368
+ - uid: 36084
components:
- type: Transform
- pos: 45.5,32.5
+ pos: -26.5,31.5
parent: 2
- - uid: 31369
+ - uid: 36085
components:
- type: Transform
- pos: 46.5,32.5
+ pos: -25.5,32.5
parent: 2
- - uid: 31370
+ - uid: 36086
components:
- type: Transform
- pos: 47.5,32.5
+ pos: -24.5,32.5
parent: 2
- - uid: 31371
+ - uid: 36087
components:
- type: Transform
- pos: 48.5,32.5
+ pos: -24.5,31.5
parent: 2
- - uid: 31372
+ - uid: 36088
components:
- type: Transform
- pos: -46.5,64.5
+ pos: -24.5,33.5
parent: 2
- - uid: 31373
+ - uid: 36089
components:
- type: Transform
- pos: 49.5,32.5
+ pos: -24.5,34.5
parent: 2
- - uid: 31374
+ - uid: 36125
components:
- type: Transform
- pos: 50.5,32.5
+ pos: -45.5,64.5
parent: 2
- - uid: 31375
+ - uid: 36126
components:
- type: Transform
- pos: 51.5,32.5
+ pos: -45.5,65.5
parent: 2
- - uid: 31376
+ - uid: 36127
components:
- type: Transform
- pos: 52.5,32.5
+ pos: -45.5,66.5
parent: 2
- - uid: 31377
+ - uid: 36128
components:
- type: Transform
- pos: 53.5,32.5
+ pos: -45.5,67.5
parent: 2
- - uid: 31378
+ - uid: 36129
components:
- type: Transform
- pos: 54.5,32.5
+ pos: -39.5,68.5
parent: 2
- - uid: 31379
+ - uid: 36130
components:
- type: Transform
- pos: 55.5,32.5
+ pos: -38.5,68.5
parent: 2
- - uid: 31380
+ - uid: 36131
components:
- type: Transform
- pos: 56.5,32.5
+ pos: -37.5,68.5
parent: 2
- - uid: 31381
+ - uid: 36132
components:
- type: Transform
- pos: 57.5,32.5
+ pos: -36.5,68.5
parent: 2
- - uid: 31382
+ - uid: 36133
components:
- type: Transform
- pos: 58.5,32.5
+ pos: -35.5,68.5
parent: 2
- - uid: 31383
+ - uid: 36141
components:
- type: Transform
- pos: 59.5,32.5
+ pos: -0.5,63.5
parent: 2
- - uid: 31384
+ - uid: 36142
components:
- type: Transform
- pos: 60.5,32.5
+ pos: -17.5,59.5
parent: 2
- - uid: 31385
+ - uid: 36143
components:
- type: Transform
- pos: 61.5,32.5
+ pos: -17.5,58.5
parent: 2
- - uid: 31386
+ - uid: 36144
components:
- type: Transform
- pos: 62.5,32.5
+ pos: -17.5,57.5
parent: 2
- - uid: 31387
+ - uid: 36145
components:
- type: Transform
- pos: 62.5,31.5
+ pos: -17.5,56.5
parent: 2
- - uid: 31388
+ - uid: 36146
components:
- type: Transform
- pos: 62.5,30.5
+ pos: -17.5,55.5
parent: 2
- - uid: 31389
+ - uid: 36147
components:
- type: Transform
- pos: 62.5,29.5
+ pos: -17.5,54.5
parent: 2
- - uid: 31390
+ - uid: 36148
components:
- type: Transform
- pos: 62.5,28.5
+ pos: -17.5,53.5
parent: 2
- - uid: 31391
+ - uid: 36149
components:
- type: Transform
- pos: 62.5,27.5
+ pos: -17.5,52.5
parent: 2
- - uid: 31392
+ - uid: 36185
components:
- type: Transform
- pos: 62.5,26.5
+ pos: -47.5,52.5
parent: 2
- - uid: 31393
+ - uid: 36186
components:
- type: Transform
- pos: 61.5,26.5
+ pos: -46.5,52.5
parent: 2
- - uid: 31394
+ - uid: 36187
components:
- type: Transform
- pos: 61.5,25.5
+ pos: -45.5,52.5
parent: 2
- - uid: 31395
+ - uid: 36188
components:
- type: Transform
- pos: 61.5,24.5
+ pos: -44.5,52.5
parent: 2
- - uid: 31396
+ - uid: 36189
components:
- type: Transform
- pos: 62.5,24.5
+ pos: -43.5,52.5
parent: 2
- - uid: 31397
+ - uid: 36190
components:
- type: Transform
- pos: 63.5,24.5
+ pos: -42.5,52.5
parent: 2
- - uid: 31398
+ - uid: 36191
components:
- type: Transform
- pos: 64.5,24.5
+ pos: -41.5,52.5
parent: 2
- - uid: 31399
+ - uid: 36192
components:
- type: Transform
- pos: 65.5,24.5
+ pos: -40.5,52.5
parent: 2
- - uid: 31401
+ - uid: 36193
components:
- type: Transform
- pos: 66.5,24.5
+ pos: -39.5,52.5
parent: 2
- - uid: 31404
+ - uid: 36194
components:
- type: Transform
- pos: 67.5,24.5
+ pos: -38.5,52.5
parent: 2
- - uid: 31405
+ - uid: 36195
components:
- type: Transform
- pos: 68.5,24.5
+ pos: -37.5,52.5
parent: 2
- - uid: 31406
+ - uid: 36196
components:
- type: Transform
- pos: 68.5,25.5
+ pos: -50.5,51.5
parent: 2
- - uid: 31413
+ - uid: 36197
components:
- type: Transform
- pos: 9.5,-17.5
+ pos: -50.5,50.5
parent: 2
- - uid: 31414
+ - uid: 36198
components:
- type: Transform
- pos: 18.5,-31.5
+ pos: -50.5,49.5
parent: 2
- - uid: 31421
+ - uid: 36199
components:
- type: Transform
- pos: 19.5,-31.5
+ pos: -50.5,48.5
parent: 2
- - uid: 31422
+ - uid: 36200
components:
- type: Transform
- pos: 20.5,-31.5
+ pos: -50.5,47.5
parent: 2
- - uid: 31423
+ - uid: 36201
components:
- type: Transform
- pos: 21.5,-31.5
+ pos: -49.5,47.5
parent: 2
- - uid: 31424
+ - uid: 36202
components:
- type: Transform
- pos: 22.5,-31.5
+ pos: -48.5,47.5
parent: 2
- - uid: 31425
+ - uid: 36203
components:
- type: Transform
- pos: 23.5,-31.5
+ pos: -47.5,47.5
parent: 2
- - uid: 31426
+ - uid: 36204
components:
- type: Transform
- pos: 24.5,-31.5
+ pos: -46.5,47.5
parent: 2
- - uid: 31427
+ - uid: 36205
components:
- type: Transform
- pos: 25.5,-31.5
+ pos: -45.5,47.5
parent: 2
- - uid: 31431
+ - uid: 36206
components:
- type: Transform
- pos: 26.5,-31.5
+ pos: -44.5,47.5
parent: 2
- - uid: 31432
+ - uid: 36207
components:
- type: Transform
- pos: 27.5,-31.5
+ pos: -43.5,47.5
parent: 2
- - uid: 31433
+ - uid: 36208
components:
- type: Transform
- pos: 27.5,-32.5
+ pos: -42.5,47.5
parent: 2
- - uid: 31437
+ - uid: 36209
components:
- type: Transform
- pos: 43.5,-26.5
+ pos: -41.5,47.5
parent: 2
- - uid: 31438
+ - uid: 36210
components:
- type: Transform
- pos: 42.5,-26.5
+ pos: -40.5,47.5
parent: 2
- - uid: 31439
+ - uid: 36211
components:
- type: Transform
- pos: 41.5,-26.5
+ pos: -39.5,47.5
parent: 2
- - uid: 31440
+ - uid: 36245
components:
- type: Transform
- pos: 40.5,-26.5
+ pos: -49.5,61.5
parent: 2
- - uid: 31441
+ - uid: 36246
components:
- type: Transform
- pos: 39.5,-26.5
+ pos: -48.5,61.5
parent: 2
- - uid: 31442
+ - uid: 36247
components:
- type: Transform
- pos: 38.5,-26.5
+ pos: -47.5,61.5
parent: 2
- - uid: 31449
+ - uid: 36248
components:
- type: Transform
- pos: 37.5,-26.5
+ pos: -47.5,63.5
parent: 2
- - uid: 31459
+ - uid: 36249
components:
- type: Transform
- pos: 36.5,-26.5
+ pos: -47.5,64.5
parent: 2
- - uid: 31460
+ - uid: 36250
components:
- type: Transform
- pos: 35.5,-26.5
+ pos: -47.5,65.5
parent: 2
- - uid: 31462
+ - uid: 36251
components:
- type: Transform
- pos: 34.5,-26.5
+ pos: -47.5,66.5
parent: 2
- - uid: 31470
+ - uid: 36252
components:
- type: Transform
- pos: 33.5,-26.5
+ pos: -47.5,67.5
parent: 2
- - uid: 31471
+ - uid: 36259
components:
- type: Transform
- pos: 32.5,-26.5
+ pos: -55.5,51.5
parent: 2
- - uid: 31474
+ - uid: 36260
components:
- type: Transform
- pos: 31.5,-26.5
+ pos: -55.5,50.5
parent: 2
- - uid: 31481
+ - uid: 36261
components:
- type: Transform
- pos: 30.5,-26.5
+ pos: -55.5,49.5
parent: 2
- - uid: 31482
+ - uid: 36262
components:
- type: Transform
- pos: 29.5,-26.5
+ pos: -55.5,48.5
parent: 2
- - uid: 31483
+ - uid: 36263
components:
- type: Transform
- pos: 28.5,-26.5
+ pos: -56.5,47.5
parent: 2
- - uid: 31484
+ - uid: 36264
components:
- type: Transform
- pos: 28.5,-27.5
+ pos: -57.5,47.5
parent: 2
- - uid: 31485
+ - uid: 36265
components:
- type: Transform
- pos: 28.5,-28.5
+ pos: -58.5,47.5
parent: 2
- - uid: 31486
+ - uid: 36266
components:
- type: Transform
- pos: 28.5,-29.5
+ pos: -59.5,47.5
parent: 2
- - uid: 31487
+ - uid: 36267
components:
- type: Transform
- pos: 28.5,-30.5
+ pos: -60.5,47.5
parent: 2
- - uid: 31488
+ - uid: 36268
components:
- type: Transform
- pos: 28.5,-31.5
+ pos: -61.5,47.5
parent: 2
- - uid: 31489
+ - uid: 36269
components:
- type: Transform
- pos: 44.5,-27.5
+ pos: -61.5,46.5
parent: 2
- - uid: 31490
+ - uid: 36270
components:
- type: Transform
- pos: 44.5,-28.5
+ pos: -61.5,45.5
parent: 2
- - uid: 31491
+ - uid: 36271
components:
- type: Transform
- pos: 39.5,31.5
+ pos: -61.5,48.5
parent: 2
- - uid: 31492
+ - uid: 36272
components:
- type: Transform
- pos: 44.5,-29.5
+ pos: -61.5,49.5
parent: 2
- - uid: 31493
+ - uid: 36280
components:
- type: Transform
- pos: 45.5,-29.5
+ pos: -61.5,52.5
parent: 2
- - uid: 31494
+ - uid: 36281
components:
- type: Transform
- pos: 46.5,-29.5
+ pos: -61.5,51.5
parent: 2
- - uid: 31495
+ - uid: 36282
components:
- type: Transform
- pos: 47.5,-29.5
+ pos: -61.5,50.5
parent: 2
- - uid: 31496
+ - uid: 36289
components:
- type: Transform
- pos: 48.5,-29.5
+ pos: -55.5,42.5
parent: 2
- - uid: 31501
+ - uid: 36290
components:
- type: Transform
- pos: 27.5,45.5
+ pos: -53.5,42.5
parent: 2
- - uid: 31503
+ - uid: 36306
components:
- type: Transform
- pos: 49.5,-29.5
+ pos: -55.5,18.5
parent: 2
- - uid: 31506
+ - uid: 36307
components:
- type: Transform
- pos: 50.5,-29.5
+ pos: -56.5,18.5
parent: 2
- - uid: 31507
+ - uid: 36308
components:
- type: Transform
- pos: 51.5,-29.5
+ pos: -56.5,19.5
parent: 2
- - uid: 31508
+ - uid: 36309
components:
- type: Transform
- pos: 52.5,-29.5
+ pos: -56.5,17.5
parent: 2
- - uid: 31509
+ - uid: 36310
components:
- type: Transform
- pos: 53.5,-29.5
+ pos: -56.5,20.5
parent: 2
- - uid: 31510
+ - uid: 36311
components:
- type: Transform
- pos: 54.5,-29.5
+ pos: -56.5,21.5
parent: 2
- - uid: 31511
+ - uid: 36312
components:
- type: Transform
- pos: 55.5,-29.5
+ pos: -57.5,21.5
parent: 2
- - uid: 31513
+ - uid: 36313
components:
- type: Transform
- pos: 55.5,-30.5
+ pos: -58.5,21.5
parent: 2
- - uid: 31514
+ - uid: 36314
components:
- type: Transform
- pos: 55.5,-31.5
+ pos: -59.5,21.5
parent: 2
- - uid: 31515
+ - uid: 36315
components:
- type: Transform
- pos: 55.5,-32.5
+ pos: -60.5,21.5
parent: 2
- - uid: 31516
+ - uid: 36316
components:
- type: Transform
- pos: 55.5,-33.5
+ pos: -61.5,21.5
parent: 2
- - uid: 31517
+ - uid: 36317
components:
- type: Transform
- pos: 55.5,-34.5
+ pos: -62.5,21.5
parent: 2
- - uid: 31518
+ - uid: 36318
components:
- type: Transform
- pos: 55.5,-35.5
+ pos: -54.5,33.5
parent: 2
- - uid: 31519
+ - uid: 36319
components:
- type: Transform
- pos: 55.5,-36.5
+ pos: -54.5,32.5
parent: 2
- - uid: 31520
+ - uid: 36320
components:
- type: Transform
- pos: 54.5,-36.5
+ pos: -54.5,31.5
parent: 2
- - uid: 31521
+ - uid: 36321
components:
- type: Transform
- pos: 56.5,-30.5
+ pos: -54.5,30.5
parent: 2
- - uid: 31522
+ - uid: 36322
components:
- type: Transform
- pos: 57.5,-30.5
+ pos: -54.5,29.5
parent: 2
- - uid: 31523
+ - uid: 36323
components:
- type: Transform
- pos: 58.5,-30.5
+ pos: -54.5,28.5
parent: 2
- - uid: 31524
+ - uid: 36324
components:
- type: Transform
- pos: 59.5,-30.5
+ pos: -54.5,27.5
parent: 2
- - uid: 31525
+ - uid: 36325
components:
- type: Transform
- pos: 60.5,-30.5
+ pos: -54.5,26.5
parent: 2
- - uid: 31526
+ - uid: 36326
components:
- type: Transform
- pos: 61.5,-30.5
+ pos: -54.5,25.5
parent: 2
- - uid: 31527
+ - uid: 36327
components:
- type: Transform
- pos: 62.5,-30.5
+ pos: -54.5,24.5
parent: 2
- - uid: 31528
+ - uid: 36328
components:
- type: Transform
- pos: -41.5,68.5
+ pos: -54.5,23.5
parent: 2
- - uid: 31529
+ - uid: 36329
components:
- type: Transform
- pos: 62.5,-29.5
+ pos: -54.5,22.5
parent: 2
- - uid: 31530
+ - uid: 36330
components:
- type: Transform
- pos: 63.5,-29.5
+ pos: -54.5,21.5
parent: 2
- - uid: 31531
+ - uid: 36331
components:
- type: Transform
- pos: 63.5,-28.5
+ pos: -54.5,20.5
parent: 2
- - uid: 31532
+ - uid: 36332
components:
- type: Transform
- pos: 64.5,-28.5
+ pos: -54.5,19.5
parent: 2
- - uid: 31533
+ - uid: 36333
components:
- type: Transform
- pos: 65.5,-28.5
+ pos: -54.5,18.5
parent: 2
- - uid: 31534
+ - uid: 36334
components:
- type: Transform
- pos: 66.5,-28.5
+ pos: -54.5,17.5
parent: 2
- - uid: 31535
+ - uid: 36335
components:
- type: Transform
- pos: 66.5,-27.5
+ pos: -54.5,16.5
parent: 2
- - uid: 31536
+ - uid: 36336
components:
- type: Transform
- pos: 67.5,-27.5
+ pos: -54.5,15.5
parent: 2
- - uid: 31537
+ - uid: 36337
components:
- type: Transform
- pos: 68.5,-27.5
+ pos: -54.5,14.5
parent: 2
- - uid: 31538
+ - uid: 36338
components:
- type: Transform
- pos: 68.5,-26.5
+ pos: -54.5,13.5
parent: 2
- - uid: 31539
+ - uid: 36339
components:
- type: Transform
- pos: 69.5,-26.5
+ pos: -54.5,12.5
parent: 2
- - uid: 31540
+ - uid: 36340
components:
- type: Transform
- pos: 69.5,-25.5
+ pos: -54.5,11.5
parent: 2
- - uid: 31541
+ - uid: 36341
components:
- type: Transform
- pos: 69.5,-24.5
+ pos: -54.5,10.5
parent: 2
- - uid: 31542
+ - uid: 36342
components:
- type: Transform
- pos: 70.5,-24.5
+ pos: -54.5,9.5
parent: 2
- - uid: 31543
+ - uid: 37243
components:
- type: Transform
- pos: 70.5,-23.5
+ pos: -24.5,2.5
parent: 2
- - uid: 31544
+ - uid: 37244
components:
- type: Transform
- pos: 70.5,-22.5
+ pos: -23.5,2.5
parent: 2
- - uid: 31545
+ - uid: 37245
components:
- type: Transform
- pos: 70.5,-21.5
+ pos: -22.5,2.5
parent: 2
- - uid: 31546
+ - uid: 37246
components:
- type: Transform
- pos: 71.5,-21.5
+ pos: -21.5,2.5
parent: 2
- - uid: 31547
+ - uid: 37247
components:
- type: Transform
- pos: 71.5,-20.5
+ pos: -20.5,2.5
parent: 2
- - uid: 31548
+ - uid: 37248
components:
- type: Transform
- pos: 72.5,-20.5
+ pos: -19.5,2.5
parent: 2
- - uid: 31560
+ - uid: 37249
components:
- type: Transform
- pos: 73.5,-20.5
+ pos: -18.5,2.5
parent: 2
- - uid: 31562
+ - uid: 37250
components:
- type: Transform
- pos: 74.5,-20.5
+ pos: -17.5,2.5
parent: 2
- - uid: 31563
+ - uid: 37251
components:
- type: Transform
- pos: 75.5,-20.5
+ pos: -16.5,2.5
parent: 2
- - uid: 31580
+ - uid: 37252
components:
- type: Transform
- pos: 76.5,-20.5
+ pos: -15.5,2.5
parent: 2
- - uid: 31581
+ - uid: 37253
components:
- type: Transform
- pos: 76.5,-19.5
+ pos: -14.5,2.5
parent: 2
- - uid: 31582
+ - uid: 37254
components:
- type: Transform
- pos: 76.5,-18.5
+ pos: -13.5,2.5
parent: 2
- - uid: 31583
+ - uid: 37255
components:
- type: Transform
- pos: 75.5,-18.5
+ pos: -12.5,2.5
parent: 2
- - uid: 31593
+ - uid: 37256
components:
- type: Transform
- pos: 1.5,-28.5
+ pos: -11.5,2.5
parent: 2
- - uid: 31594
+ - uid: 37257
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: -10.5,2.5
parent: 2
- - uid: 31595
+ - uid: 37258
components:
- type: Transform
- pos: 1.5,-26.5
+ pos: -9.5,2.5
parent: 2
- - uid: 31632
+ - uid: 37261
components:
- type: Transform
- pos: 1.5,-25.5
+ pos: -6.5,2.5
parent: 2
- - uid: 31640
+ - uid: 37304
components:
- type: Transform
- pos: 1.5,-24.5
+ pos: -39.5,74.5
parent: 2
- - uid: 31658
+ - uid: 37305
components:
- type: Transform
- pos: -63.5,-21.5
+ pos: -38.5,74.5
parent: 2
- - uid: 31731
+ - uid: 37306
components:
- type: Transform
- pos: -81.5,8.5
+ pos: -37.5,74.5
parent: 2
- - uid: 31759
+ - uid: 37307
components:
- type: Transform
- pos: -80.5,8.5
+ pos: -36.5,74.5
parent: 2
- - uid: 31766
+ - uid: 37308
components:
- type: Transform
- pos: -79.5,8.5
+ pos: -35.5,74.5
parent: 2
- - uid: 31768
+ - uid: 37321
components:
- type: Transform
- pos: -82.5,9.5
+ pos: -40.5,69.5
parent: 2
- - uid: 31770
+ - uid: 37324
components:
- type: Transform
- pos: -82.5,10.5
+ pos: -37.5,69.5
parent: 2
- - uid: 31771
+ - uid: 37325
components:
- type: Transform
- pos: -82.5,11.5
+ pos: -37.5,70.5
parent: 2
- - uid: 32021
+ - uid: 37328
components:
- type: Transform
- pos: 1.5,-23.5
+ pos: -37.5,71.5
parent: 2
- - uid: 32022
+ - uid: 37329
components:
- type: Transform
- pos: 1.5,-22.5
+ pos: -40.5,68.5
parent: 2
- - uid: 32119
+ - uid: 37375
components:
- type: Transform
- pos: 1.5,-21.5
+ pos: -51.5,53.5
parent: 2
- - uid: 32122
+ - uid: 37801
components:
- type: Transform
- pos: 2.5,-21.5
+ pos: 93.5,-13.5
parent: 2
- - uid: 32123
+ - uid: 37802
components:
- type: Transform
- pos: 3.5,-21.5
+ pos: 93.5,-14.5
parent: 2
- - uid: 32125
+ - uid: 37803
components:
- type: Transform
- pos: 4.5,-21.5
+ pos: 93.5,-15.5
parent: 2
- - uid: 32186
+ - uid: 37804
components:
- type: Transform
- pos: -97.5,53.5
+ pos: 93.5,-16.5
parent: 2
- - uid: 32188
+ - uid: 37805
components:
- type: Transform
- pos: -97.5,52.5
+ pos: 93.5,-17.5
parent: 2
- - uid: 32189
+ - uid: 37806
components:
- type: Transform
- pos: -97.5,51.5
+ pos: 93.5,-18.5
parent: 2
- - uid: 32190
+ - uid: 37807
components:
- type: Transform
- pos: -97.5,50.5
+ pos: 93.5,-19.5
parent: 2
- - uid: 32191
+ - uid: 37808
components:
- type: Transform
- pos: -97.5,49.5
+ pos: 93.5,-20.5
parent: 2
- - uid: 32192
+ - uid: 37809
components:
- type: Transform
- pos: -97.5,48.5
+ pos: 93.5,-21.5
parent: 2
- - uid: 32193
+ - uid: 37810
components:
- type: Transform
- pos: -98.5,51.5
+ pos: 93.5,-22.5
parent: 2
- - uid: 32194
+ - uid: 37811
components:
- type: Transform
- pos: -99.5,51.5
+ pos: 93.5,-23.5
parent: 2
- - uid: 32195
+ - uid: 37812
components:
- type: Transform
- pos: -100.5,51.5
+ pos: 93.5,-24.5
parent: 2
- - uid: 32196
+ - uid: 37813
components:
- type: Transform
- pos: -100.5,52.5
+ pos: 94.5,-24.5
parent: 2
- - uid: 32197
+ - uid: 37814
components:
- type: Transform
- pos: -100.5,50.5
+ pos: 95.5,-24.5
parent: 2
- - uid: 32198
+ - uid: 37815
components:
- type: Transform
- pos: -98.5,48.5
+ pos: 96.5,-24.5
parent: 2
- - uid: 32199
+ - uid: 37816
components:
- type: Transform
- pos: -99.5,48.5
+ pos: 97.5,-24.5
parent: 2
- - uid: 32200
+ - uid: 37817
components:
- type: Transform
- pos: -100.5,48.5
+ pos: 98.5,-24.5
parent: 2
- - uid: 32289
+ - uid: 37818
components:
- type: Transform
- pos: -59.5,-10.5
+ pos: 99.5,-24.5
parent: 2
- - uid: 32290
+ - uid: 37819
components:
- type: Transform
- pos: -59.5,-9.5
+ pos: 100.5,-24.5
parent: 2
- - uid: 32292
+ - uid: 37820
components:
- type: Transform
- pos: -59.5,-8.5
+ pos: 101.5,-24.5
parent: 2
- - uid: 32334
+ - uid: 37821
components:
- type: Transform
- pos: -59.5,-7.5
+ pos: 102.5,-24.5
parent: 2
- - uid: 32446
+ - uid: 37822
components:
- type: Transform
- pos: -59.5,-6.5
+ pos: 103.5,-24.5
parent: 2
- - uid: 32449
+ - uid: 37823
components:
- type: Transform
- pos: -59.5,-5.5
+ pos: 104.5,-24.5
parent: 2
- - uid: 32450
+ - uid: 37824
components:
- type: Transform
- pos: -59.5,-4.5
+ pos: 105.5,-24.5
parent: 2
- - uid: 32601
+ - uid: 37825
components:
- type: Transform
- pos: -54.5,19.5
+ pos: 106.5,-24.5
parent: 2
- - uid: 32603
+ - uid: 37826
components:
- type: Transform
- pos: -54.5,19.5
+ pos: 107.5,-24.5
parent: 2
- - uid: 32608
+ - uid: 37827
components:
- type: Transform
- pos: -54.5,20.5
+ pos: 108.5,-24.5
parent: 2
- - uid: 32610
+ - uid: 37828
components:
- type: Transform
- pos: -54.5,21.5
+ pos: 109.5,-24.5
parent: 2
- - uid: 32612
+ - uid: 37829
components:
- type: Transform
- pos: -54.5,22.5
+ pos: 108.5,-8.5
parent: 2
- - uid: 32613
+ - uid: 37830
components:
- type: Transform
- pos: -54.5,23.5
+ pos: 107.5,-8.5
parent: 2
- - uid: 32615
+ - uid: 37831
components:
- type: Transform
- pos: -54.5,24.5
+ pos: 106.5,-8.5
parent: 2
- - uid: 32616
+ - uid: 37832
components:
- type: Transform
- pos: -54.5,25.5
+ pos: 105.5,-8.5
parent: 2
- - uid: 32618
+ - uid: 37833
components:
- type: Transform
- pos: -54.5,26.5
+ pos: 104.5,-8.5
parent: 2
- - uid: 32621
+ - uid: 37834
components:
- type: Transform
- pos: -54.5,27.5
+ pos: 103.5,-8.5
parent: 2
- - uid: 32622
+ - uid: 37835
components:
- type: Transform
- pos: -54.5,28.5
+ pos: 102.5,-8.5
parent: 2
- - uid: 32623
+ - uid: 37836
components:
- type: Transform
- pos: -54.5,29.5
+ pos: 101.5,-8.5
parent: 2
- - uid: 32625
+ - uid: 37837
components:
- type: Transform
- pos: -54.5,30.5
+ pos: 100.5,-8.5
parent: 2
- - uid: 32627
+ - uid: 37838
components:
- type: Transform
- pos: -54.5,31.5
+ pos: 99.5,-8.5
parent: 2
- - uid: 32629
+ - uid: 37839
components:
- type: Transform
- pos: -54.5,32.5
+ pos: 98.5,-8.5
parent: 2
- - uid: 32631
+ - uid: 37840
components:
- type: Transform
- pos: -54.5,33.5
+ pos: 97.5,-8.5
parent: 2
- - uid: 32637
+ - uid: 37841
components:
- type: Transform
- pos: -54.5,34.5
+ pos: 96.5,-8.5
parent: 2
- - uid: 32639
+ - uid: 37842
components:
- type: Transform
- pos: -54.5,34.5
+ pos: 95.5,-8.5
parent: 2
- - uid: 32640
+ - uid: 37843
components:
- type: Transform
- pos: -55.5,34.5
+ pos: 94.5,-8.5
parent: 2
- - uid: 32650
+ - uid: 37844
components:
- type: Transform
- pos: -56.5,34.5
+ pos: 93.5,-8.5
parent: 2
- - uid: 32658
+ - uid: 37845
components:
- type: Transform
- pos: -57.5,34.5
+ pos: 93.5,-9.5
parent: 2
- - uid: 32660
+ - uid: 37846
components:
- type: Transform
- pos: -58.5,34.5
+ pos: 93.5,-10.5
parent: 2
- - uid: 32666
+ - uid: 37847
components:
- type: Transform
- pos: -59.5,34.5
+ pos: 93.5,-11.5
parent: 2
- - uid: 32670
+ - uid: 37848
components:
- type: Transform
- pos: -59.5,33.5
+ pos: 93.5,-12.5
parent: 2
- - uid: 32671
+ - uid: 37849
components:
- type: Transform
- pos: -59.5,32.5
+ pos: 92.5,-12.5
parent: 2
- - uid: 32677
+ - uid: 37850
components:
- type: Transform
- pos: -59.5,32.5
+ pos: 91.5,-12.5
parent: 2
- - uid: 32678
+ - uid: 37851
components:
- type: Transform
- pos: -60.5,32.5
+ pos: 90.5,-12.5
parent: 2
- - uid: 32681
+ - uid: 37852
components:
- type: Transform
- pos: -61.5,32.5
+ pos: 89.5,-12.5
parent: 2
- - uid: 32682
+ - uid: 37853
components:
- type: Transform
- pos: -62.5,32.5
+ pos: 88.5,-12.5
parent: 2
- - uid: 32686
+ - uid: 37856
components:
- type: Transform
- pos: -63.5,32.5
+ pos: 109.5,-8.5
parent: 2
- - uid: 32691
+ - uid: 37857
components:
- type: Transform
- pos: -59.5,-3.5
+ pos: 109.5,-9.5
parent: 2
- - uid: 32707
+ - uid: 37858
components:
- type: Transform
- pos: -59.5,-2.5
+ pos: 109.5,-10.5
parent: 2
- - uid: 32708
+ - uid: 37859
components:
- type: Transform
- pos: -59.5,-1.5
+ pos: 109.5,-11.5
parent: 2
- - uid: 32709
+ - uid: 37860
components:
- type: Transform
- pos: -59.5,-0.5
+ pos: 109.5,-12.5
parent: 2
- - uid: 32710
+ - uid: 37861
components:
- type: Transform
- pos: -59.5,0.5
+ pos: 109.5,-13.5
parent: 2
- - uid: 32711
+ - uid: 37862
components:
- type: Transform
- pos: -59.5,1.5
+ pos: 109.5,-14.5
parent: 2
- - uid: 32716
+ - uid: 37863
components:
- type: Transform
- pos: -59.5,2.5
+ pos: 109.5,-15.5
parent: 2
- - uid: 32717
+ - uid: 37864
components:
- type: Transform
- pos: -58.5,2.5
+ pos: 109.5,-16.5
parent: 2
- - uid: 33363
+ - uid: 37865
components:
- type: Transform
- pos: -57.5,2.5
+ pos: 109.5,-17.5
parent: 2
- - uid: 33647
+ - uid: 37866
components:
- type: Transform
- pos: -56.5,2.5
+ pos: 109.5,-18.5
parent: 2
- - uid: 33648
+ - uid: 37867
components:
- type: Transform
- pos: -55.5,2.5
+ pos: 109.5,-19.5
parent: 2
- - uid: 33652
+ - uid: 37868
components:
- type: Transform
- pos: -54.5,2.5
+ pos: 109.5,-20.5
parent: 2
- - uid: 33678
+ - uid: 37869
components:
- type: Transform
- pos: -53.5,2.5
+ pos: 109.5,-21.5
parent: 2
- - uid: 33680
+ - uid: 37870
components:
- type: Transform
- pos: -52.5,2.5
+ pos: 109.5,-22.5
parent: 2
- - uid: 33681
+ - uid: 37871
components:
- type: Transform
- pos: -51.5,2.5
+ pos: 109.5,-23.5
parent: 2
- - uid: 33682
+ - uid: 37878
components:
- type: Transform
- pos: -50.5,2.5
+ pos: 88.5,-20.5
parent: 2
- - uid: 33683
+ - uid: 37879
components:
- type: Transform
- pos: -49.5,2.5
+ pos: 89.5,-20.5
parent: 2
- - uid: 33685
+ - uid: 37880
components:
- type: Transform
- pos: -49.5,1.5
+ pos: 90.5,-20.5
parent: 2
- - uid: 33691
+ - uid: 37881
components:
- type: Transform
- pos: -63.5,32.5
+ pos: 91.5,-20.5
parent: 2
- - uid: 33696
+ - uid: 37882
components:
- type: Transform
- pos: -63.5,33.5
+ pos: 92.5,-20.5
parent: 2
- - uid: 33699
+ - uid: 37883
components:
- type: Transform
- pos: -63.5,34.5
+ pos: 99.5,-23.5
parent: 2
- - uid: 33884
+ - uid: 37884
components:
- type: Transform
- pos: -48.5,1.5
+ pos: 102.5,-23.5
parent: 2
- - uid: 34274
+ - uid: 37885
components:
- type: Transform
- pos: -20.5,-25.5
+ pos: 108.5,-17.5
parent: 2
- - uid: 34292
+ - uid: 37972
components:
- type: Transform
- pos: -72.5,3.5
+ pos: 82.5,-19.5
parent: 2
- - uid: 34312
+ - uid: 37973
components:
- type: Transform
- pos: -72.5,4.5
+ pos: 83.5,-13.5
parent: 2
- - uid: 34382
+ - uid: 37974
components:
- type: Transform
- pos: -65.5,-22.5
+ pos: 84.5,-13.5
parent: 2
- - uid: 34383
+ - uid: 37975
components:
- type: Transform
- pos: -43.5,37.5
+ pos: 84.5,-14.5
parent: 2
- - uid: 34384
+ - uid: 37976
components:
- type: Transform
- pos: -43.5,36.5
+ pos: 83.5,-14.5
parent: 2
- - uid: 34417
+ - uid: 37977
components:
- type: Transform
- pos: -20.5,-24.5
+ pos: 82.5,-14.5
parent: 2
- - uid: 34418
+ - uid: 37978
components:
- type: Transform
- pos: 27.5,40.5
+ pos: 83.5,-15.5
parent: 2
- - uid: 34420
+ - uid: 37983
components:
- type: Transform
- pos: -43.5,35.5
+ pos: 87.5,-19.5
parent: 2
- - uid: 34421
+ - uid: 38005
components:
- type: Transform
- pos: -43.5,34.5
+ pos: 3.5,39.5
parent: 2
- - uid: 34423
+ - uid: 38006
components:
- type: Transform
- pos: -43.5,33.5
+ pos: 4.5,40.5
parent: 2
- - uid: 34424
+ - uid: 38050
components:
- type: Transform
- pos: -43.5,32.5
+ pos: -77.5,9.5
parent: 2
- - uid: 34573
+ - uid: 38051
components:
- type: Transform
- pos: -43.5,31.5
+ pos: -77.5,10.5
parent: 2
- - uid: 34574
+ - uid: 38052
components:
- type: Transform
- pos: -43.5,30.5
+ pos: -77.5,11.5
parent: 2
- - uid: 34575
+ - uid: 38053
components:
- type: Transform
- pos: -44.5,30.5
+ pos: -77.5,12.5
parent: 2
- - uid: 34576
+ - uid: 38054
components:
- type: Transform
- pos: -45.5,30.5
+ pos: -77.5,13.5
parent: 2
- - uid: 34577
+ - uid: 38055
components:
- type: Transform
- pos: -46.5,30.5
+ pos: -77.5,14.5
parent: 2
- - uid: 34595
+ - uid: 38056
components:
- type: Transform
- pos: -1.5,53.5
+ pos: -77.5,15.5
parent: 2
- - uid: 34596
+ - uid: 38057
components:
- type: Transform
- pos: -0.5,53.5
+ pos: -77.5,16.5
parent: 2
- - uid: 34605
+ - uid: 38058
components:
- type: Transform
- pos: 0.5,53.5
+ pos: -77.5,17.5
parent: 2
- - uid: 34607
+ - uid: 38059
components:
- type: Transform
- pos: 1.5,53.5
+ pos: -77.5,18.5
parent: 2
- - uid: 34614
+ - uid: 38060
components:
- type: Transform
- pos: -47.5,30.5
+ pos: -73.5,21.5
parent: 2
- - uid: 34617
+ - uid: 38061
components:
- type: Transform
- pos: 1.5,53.5
+ pos: -74.5,21.5
parent: 2
- - uid: 34618
+ - uid: 38062
components:
- type: Transform
- pos: 1.5,52.5
+ pos: -75.5,21.5
parent: 2
- - uid: 34629
+ - uid: 38063
components:
- type: Transform
- pos: 1.5,51.5
+ pos: -76.5,21.5
parent: 2
- - uid: 34630
+ - uid: 38064
components:
- type: Transform
- pos: 1.5,50.5
+ pos: -77.5,21.5
parent: 2
- - uid: 34631
+ - uid: 38065
components:
- type: Transform
- pos: 1.5,49.5
+ pos: -77.5,20.5
parent: 2
- - uid: 34642
+ - uid: 38066
components:
- type: Transform
- pos: -48.5,30.5
+ pos: -77.5,19.5
parent: 2
- - uid: 34643
+ - uid: 38136
components:
- type: Transform
- pos: -49.5,30.5
+ pos: 4.5,42.5
parent: 2
- - uid: 34644
+ - uid: 38693
components:
- type: Transform
- pos: -50.5,30.5
+ pos: 2.5,39.5
parent: 2
- - uid: 34645
+ - uid: 38694
components:
- type: Transform
- pos: -51.5,30.5
+ pos: 4.5,39.5
parent: 2
- - uid: 34646
+ - uid: 38695
components:
- type: Transform
- pos: -52.5,30.5
+ pos: 4.5,41.5
parent: 2
- - uid: 34647
+ - uid: 38705
components:
- type: Transform
- pos: -53.5,30.5
+ pos: -48.5,55.5
parent: 2
- - uid: 34648
+ - uid: 38706
components:
- type: Transform
- pos: 39.5,32.5
+ pos: -49.5,55.5
parent: 2
- - uid: 34649
+ - uid: 38707
components:
- type: Transform
- pos: 39.5,30.5
+ pos: -50.5,55.5
parent: 2
- - uid: 34650
+ - uid: 38886
components:
- type: Transform
- pos: 39.5,29.5
+ pos: 1.5,-20.5
parent: 2
- - uid: 34651
+ - uid: 38887
components:
- type: Transform
- pos: 39.5,28.5
+ pos: 1.5,-19.5
parent: 2
- - uid: 34652
+ - uid: 38888
components:
- type: Transform
- pos: 40.5,28.5
+ pos: 1.5,-18.5
parent: 2
- - uid: 34668
+ - uid: 38889
components:
- type: Transform
- pos: 41.5,28.5
+ pos: 1.5,-17.5
parent: 2
- - uid: 34687
+ - uid: 38890
components:
- type: Transform
- pos: 42.5,28.5
+ pos: 1.5,-16.5
parent: 2
- - uid: 34688
+ - uid: 38902
components:
- type: Transform
- pos: 43.5,28.5
+ pos: 10.5,-38.5
parent: 2
- - uid: 34689
+ - uid: 38903
components:
- type: Transform
- pos: 44.5,28.5
+ pos: 10.5,-39.5
parent: 2
- - uid: 34690
+ - uid: 38904
components:
- type: Transform
- pos: 45.5,28.5
+ pos: 10.5,-40.5
parent: 2
- - uid: 34691
+ - uid: 38905
components:
- type: Transform
- pos: 46.5,28.5
+ pos: 10.5,-41.5
parent: 2
- - uid: 34692
+ - uid: 38906
components:
- type: Transform
- pos: 47.5,28.5
+ pos: 10.5,-42.5
parent: 2
- - uid: 34693
+- proto: CableHVStack
+ entities:
+ - uid: 4122
components:
- type: Transform
- pos: 48.5,28.5
+ pos: -47.34633,16.735825
parent: 2
- - uid: 34694
+- proto: CableHVStack1
+ entities:
+ - uid: 9835
components:
- type: Transform
- pos: 48.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 56.734528,-59.398197
parent: 2
- - uid: 34695
+ - uid: 9846
components:
- type: Transform
- pos: 48.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 56.953278,-59.648197
parent: 2
- - uid: 34696
+ - uid: 10429
components:
- type: Transform
- pos: 48.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 56.328278,-48.132572
parent: 2
- - uid: 34697
+ - uid: 11300
components:
- type: Transform
- pos: 49.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -67.81574,-24.348814
parent: 2
- - uid: 34698
+ - uid: 13699
components:
- type: Transform
- pos: 50.5,25.5
+ pos: 57.4527,-39.224056
parent: 2
- - uid: 34701
+ - uid: 13700
components:
- type: Transform
- pos: 24.5,6.5
+ pos: 57.6402,-39.58343
parent: 2
- - uid: 34703
+ - uid: 13702
components:
- type: Transform
- pos: 25.5,7.5
+ pos: 57.381878,-39.817806
parent: 2
- - uid: 34704
+ - uid: 13703
components:
- type: Transform
- pos: 25.5,8.5
+ pos: -32.34689,-37.163803
parent: 2
- - uid: 34705
+ - uid: 13707
components:
- type: Transform
- pos: 25.5,9.5
+ pos: -66.18941,-29.585678
parent: 2
- - uid: 34706
+ - uid: 13715
components:
- type: Transform
- pos: 25.5,10.5
+ pos: -67.21491,-36.21068
parent: 2
- - uid: 34707
+ - uid: 18698
components:
- type: Transform
- pos: 25.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 57.281403,-77.81058
parent: 2
- - uid: 34708
+ - uid: 26682
components:
- type: Transform
- pos: 26.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -67.52277,-24.219908
parent: 2
- - uid: 34713
+ - uid: 32004
components:
- type: Transform
- pos: 37.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 56.140778,-66.43997
parent: 2
- - uid: 34714
+ - uid: 32005
components:
- type: Transform
- pos: 37.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 56.093903,-72.6568
parent: 2
- - uid: 34715
+ - uid: 35632
components:
- type: Transform
- pos: 37.5,18.5
+ pos: -90.2432,-41.70928
parent: 2
- - uid: 34716
+ - uid: 35633
components:
- type: Transform
- pos: 37.5,19.5
+ pos: -78.48436,-34.82031
parent: 2
- - uid: 34717
+ - uid: 35634
components:
- type: Transform
- pos: 37.5,20.5
+ pos: -88.59237,-35.41406
parent: 2
- - uid: 34718
+ - uid: 35635
components:
- type: Transform
- pos: 27.5,10.5
+ pos: -90.0557,-42.05303
parent: 2
- - uid: 34719
+ - uid: 35636
components:
- type: Transform
- pos: 37.5,21.5
+ pos: -90.02445,-57.512814
parent: 2
- - uid: 34720
+ - uid: 35637
components:
- type: Transform
- pos: 38.5,21.5
+ pos: -88.50883,-51.28014
parent: 2
- - uid: 34721
+ - uid: 35638
components:
- type: Transform
- pos: 28.5,10.5
+ pos: -80.77633,57.882023
parent: 2
- - uid: 34722
+ - uid: 35639
components:
- type: Transform
- pos: 29.5,10.5
+ pos: -81.279465,95.05411
parent: 2
- - uid: 34723
+ - uid: 35640
components:
- type: Transform
- pos: 30.5,10.5
+ pos: -81.104454,64.1161
parent: 2
- - uid: 34724
+ - uid: 35641
components:
- type: Transform
- pos: 39.5,21.5
+ pos: -80.87008,64.60048
parent: 2
- - uid: 34725
+ - uid: 35642
components:
- type: Transform
- pos: 31.5,10.5
+ pos: -79.71383,64.803604
parent: 2
- - uid: 34726
+ - uid: 35643
components:
- type: Transform
- pos: 32.5,10.5
+ pos: -79.948204,70.21912
parent: 2
- - uid: 34727
+ - uid: 35644
components:
- type: Transform
- pos: 33.5,10.5
+ pos: -80.83883,79.83925
parent: 2
- - uid: 34728
+ - uid: 35645
components:
- type: Transform
- pos: 40.5,21.5
+ pos: -81.02633,81.41737
parent: 2
- - uid: 34731
+ - uid: 35646
components:
- type: Transform
- pos: -30.5,-10.5
+ pos: -79.80758,86.09206
parent: 2
- - uid: 34732
+- proto: CableMV
+ entities:
+ - uid: 124
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: 1.5,30.5
parent: 2
- - uid: 34733
+ - uid: 133
components:
- type: Transform
- pos: -28.5,-10.5
+ pos: 34.5,12.5
parent: 2
- - uid: 34734
+ - uid: 203
components:
- type: Transform
- pos: -27.5,-10.5
+ pos: -31.5,-1.5
parent: 2
- - uid: 34735
+ - uid: 209
components:
- type: Transform
- pos: -27.5,-11.5
+ pos: 81.5,-22.5
parent: 2
- - uid: 34736
+ - uid: 222
components:
- type: Transform
- pos: -27.5,-12.5
+ pos: -40.5,71.5
parent: 2
- - uid: 34737
+ - uid: 448
components:
- type: Transform
- pos: -27.5,-13.5
+ pos: -32.5,-1.5
parent: 2
- - uid: 34738
+ - uid: 629
components:
- type: Transform
- pos: -27.5,-14.5
+ pos: -41.5,69.5
parent: 2
- - uid: 34739
+ - uid: 658
components:
- type: Transform
- pos: 35.5,10.5
+ pos: -42.5,69.5
parent: 2
- - uid: 34740
+ - uid: 696
components:
- type: Transform
- pos: 19.5,48.5
+ pos: -27.5,2.5
parent: 2
- - uid: 34742
+ - uid: 697
components:
- type: Transform
- pos: 20.5,48.5
+ pos: -26.5,2.5
parent: 2
- - uid: 34743
+ - uid: 767
components:
- type: Transform
- pos: -43.5,23.5
+ pos: -41.5,20.5
parent: 2
- - uid: 34744
+ - uid: 773
components:
- type: Transform
- pos: -44.5,23.5
+ pos: 46.5,49.5
parent: 2
- - uid: 34745
+ - uid: 808
components:
- type: Transform
- pos: -44.5,24.5
+ pos: -14.5,42.5
parent: 2
- - uid: 34746
+ - uid: 815
components:
- type: Transform
- pos: -44.5,25.5
+ pos: -18.5,-30.5
parent: 2
- - uid: 34747
+ - uid: 859
components:
- type: Transform
- pos: -44.5,26.5
+ pos: 9.5,1.5
parent: 2
- - uid: 34748
+ - uid: 873
components:
- type: Transform
- pos: -43.5,26.5
+ pos: -43.5,69.5
parent: 2
- - uid: 34749
+ - uid: 889
components:
- type: Transform
- pos: -42.5,26.5
+ pos: 9.5,12.5
parent: 2
- - uid: 34750
+ - uid: 989
components:
- type: Transform
- pos: -41.5,26.5
+ pos: 9.5,-12.5
parent: 2
- - uid: 34751
+ - uid: 994
components:
- type: Transform
- pos: -40.5,26.5
+ pos: 9.5,-11.5
parent: 2
- - uid: 34752
+ - uid: 1001
components:
- type: Transform
- pos: -39.5,26.5
+ pos: 9.5,-10.5
parent: 2
- - uid: 34870
+ - uid: 1011
components:
- type: Transform
- pos: 1.5,48.5
+ pos: -72.5,2.5
parent: 2
- - uid: 34873
+ - uid: 1014
components:
- type: Transform
- pos: 1.5,47.5
+ pos: 22.5,7.5
parent: 2
- - uid: 34874
+ - uid: 1086
components:
- type: Transform
- pos: 1.5,46.5
+ pos: 9.5,-9.5
parent: 2
- - uid: 34875
+ - uid: 1126
components:
- type: Transform
- pos: 1.5,45.5
+ pos: 9.5,-8.5
parent: 2
- - uid: 34877
+ - uid: 1135
components:
- type: Transform
- pos: 0.5,45.5
+ pos: 9.5,-7.5
parent: 2
- - uid: 34878
+ - uid: 1159
components:
- type: Transform
- pos: 0.5,44.5
+ pos: 9.5,-6.5
parent: 2
- - uid: 34912
+ - uid: 1164
components:
- type: Transform
- pos: -0.5,44.5
+ pos: 9.5,9.5
parent: 2
- - uid: 34913
+ - uid: 1184
components:
- type: Transform
- pos: -2.5,44.5
+ pos: 9.5,-5.5
parent: 2
- - uid: 34925
+ - uid: 1199
components:
- type: Transform
- pos: 27.5,44.5
+ pos: 9.5,-4.5
parent: 2
- - uid: 34927
+ - uid: 1201
components:
- type: Transform
- pos: 27.5,43.5
+ pos: 9.5,-3.5
parent: 2
- - uid: 34928
+ - uid: 1287
components:
- type: Transform
- pos: 27.5,42.5
+ pos: 9.5,10.5
parent: 2
- - uid: 34929
+ - uid: 1288
components:
- type: Transform
- pos: 27.5,41.5
+ pos: 24.5,7.5
parent: 2
- - uid: 36123
+ - uid: 1363
components:
- type: Transform
- pos: -18.5,-32.5
+ pos: -49.5,41.5
parent: 2
- - uid: 36136
+ - uid: 1436
components:
- type: Transform
- pos: -18.5,-33.5
+ pos: 9.5,13.5
parent: 2
- - uid: 36137
+ - uid: 1441
components:
- type: Transform
- pos: -17.5,-33.5
+ pos: 5.5,1.5
parent: 2
- - uid: 36138
+ - uid: 1457
components:
- type: Transform
- pos: -16.5,-33.5
+ pos: -48.5,41.5
parent: 2
- - uid: 36381
+ - uid: 1480
components:
- type: Transform
- pos: -15.5,-33.5
+ pos: 9.5,11.5
parent: 2
- - uid: 36382
+ - uid: 1848
components:
- type: Transform
- pos: -14.5,-33.5
+ pos: 1.5,39.5
parent: 2
- - uid: 36383
+ - uid: 1961
components:
- type: Transform
- pos: -13.5,-33.5
+ pos: 22.5,25.5
parent: 2
- - uid: 36384
+ - uid: 2062
components:
- type: Transform
- pos: -12.5,-33.5
+ pos: -18.5,-31.5
parent: 2
- - uid: 36385
+ - uid: 2082
components:
- type: Transform
- pos: -12.5,-32.5
+ pos: -28.5,2.5
parent: 2
- - uid: 36386
+ - uid: 2321
components:
- type: Transform
- pos: -12.5,-31.5
+ pos: 79.5,-20.5
parent: 2
- - uid: 36399
+ - uid: 2337
components:
- type: Transform
- pos: -1.5,44.5
+ pos: 7.5,49.5
parent: 2
- - uid: 36421
+ - uid: 2360
components:
- type: Transform
- pos: 23.5,25.5
+ pos: -26.5,-28.5
parent: 2
- - uid: 36422
+ - uid: 2400
components:
- type: Transform
- pos: 24.5,25.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 36423
+ - uid: 2436
components:
- type: Transform
- pos: 24.5,25.5
+ pos: -26.5,-27.5
parent: 2
- - uid: 36424
+ - uid: 2604
components:
- type: Transform
- pos: 24.5,26.5
+ pos: -43.5,38.5
parent: 2
- - uid: 36425
+ - uid: 2822
components:
- type: Transform
- pos: 24.5,27.5
+ pos: -1.5,39.5
parent: 2
- - uid: 36426
+ - uid: 2995
components:
- type: Transform
- pos: 24.5,28.5
+ pos: -44.5,22.5
parent: 2
- - uid: 36427
+ - uid: 3118
components:
- type: Transform
- pos: 24.5,29.5
+ pos: -3.5,1.5
parent: 2
- - uid: 36428
+ - uid: 3148
components:
- type: Transform
- pos: 24.5,30.5
+ pos: 48.5,49.5
parent: 2
- - uid: 36429
+ - uid: 3149
components:
- type: Transform
- pos: 24.5,31.5
+ pos: 47.5,49.5
parent: 2
- - uid: 36430
+ - uid: 3171
components:
- type: Transform
- pos: 24.5,32.5
+ pos: -25.5,5.5
parent: 2
- - uid: 36431
+ - uid: 3287
components:
- type: Transform
- pos: 24.5,33.5
+ pos: -0.5,1.5
parent: 2
- - uid: 36432
+ - uid: 3327
components:
- type: Transform
- pos: 24.5,33.5
+ pos: -4.5,1.5
parent: 2
- - uid: 36433
+ - uid: 3357
components:
- type: Transform
- pos: 23.5,33.5
+ pos: -5.5,1.5
parent: 2
- - uid: 36434
+ - uid: 3358
components:
- type: Transform
- pos: 22.5,33.5
+ pos: -6.5,-0.5
parent: 2
- - uid: 36435
+ - uid: 3369
components:
- type: Transform
- pos: 21.5,33.5
+ pos: 0.5,1.5
parent: 2
- - uid: 36436
+ - uid: 3378
components:
- type: Transform
- pos: 20.5,33.5
+ pos: -29.5,2.5
parent: 2
- - uid: 36437
+ - uid: 3522
components:
- type: Transform
- pos: 19.5,33.5
+ pos: -2.5,1.5
parent: 2
- - uid: 36438
+ - uid: 3590
components:
- type: Transform
- pos: 18.5,33.5
+ pos: -1.5,1.5
parent: 2
- - uid: 36439
+ - uid: 3712
components:
- type: Transform
- pos: 17.5,33.5
+ pos: -6.5,-2.5
parent: 2
- - uid: 36440
+ - uid: 3774
components:
- type: Transform
- pos: 16.5,33.5
+ pos: -5.5,-2.5
parent: 2
- - uid: 36441
+ - uid: 3776
components:
- type: Transform
- pos: 15.5,33.5
+ pos: -31.5,6.5
parent: 2
- - uid: 36442
+ - uid: 3777
components:
- type: Transform
- pos: 14.5,33.5
+ pos: -32.5,6.5
parent: 2
- - uid: 36443
+ - uid: 3824
components:
- type: Transform
- pos: 13.5,33.5
+ pos: -30.5,2.5
parent: 2
- - uid: 36444
+ - uid: 3825
components:
- type: Transform
- pos: 12.5,33.5
+ pos: -30.5,3.5
parent: 2
- - uid: 36445
+ - uid: 3826
components:
- type: Transform
- pos: 11.5,33.5
+ pos: -24.5,2.5
parent: 2
- - uid: 36446
+ - uid: 3841
components:
- type: Transform
- pos: 10.5,33.5
+ pos: -23.5,2.5
parent: 2
- - uid: 36447
+ - uid: 3893
components:
- type: Transform
- pos: 9.5,33.5
+ pos: -22.5,2.5
parent: 2
- - uid: 36448
+ - uid: 3968
components:
- type: Transform
- pos: 8.5,33.5
+ pos: -21.5,2.5
parent: 2
-- proto: CableMVStack
- entities:
- - uid: 18853
+ - uid: 4194
components:
- type: Transform
- pos: -101.012436,57.41075
+ pos: -20.5,2.5
parent: 2
-- proto: CableMVStack1
- entities:
- - uid: 32183
+ - uid: 4217
components:
- type: Transform
- pos: -101.45151,46.4036
+ pos: -1.5,26.5
parent: 2
- - uid: 32184
+ - uid: 4428
components:
- type: Transform
- pos: -105.3278,44.961136
+ pos: -44.5,20.5
parent: 2
- - uid: 32185
+ - uid: 4557
components:
- type: Transform
- pos: -105.882484,46.85176
+ pos: 48.5,50.5
parent: 2
- - uid: 32187
+ - uid: 4562
components:
- type: Transform
- pos: -105.17155,48.663605
+ pos: 43.5,49.5
parent: 2
-- proto: CableTerminal
- entities:
- - uid: 339
+ - uid: 4565
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,36.5
+ pos: 44.5,49.5
parent: 2
- - uid: 1539
+ - uid: 4569
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,35.5
+ pos: 45.5,49.5
parent: 2
- - uid: 3584
+ - uid: 4688
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,35.5
+ pos: -44.5,21.5
parent: 2
- - uid: 8973
+ - uid: 4750
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,36.5
+ pos: -6.5,1.5
parent: 2
- - uid: 9703
+ - uid: 4817
components:
- type: Transform
- pos: -58.5,41.5
+ pos: -19.5,2.5
parent: 2
- - uid: 9963
+ - uid: 4851
components:
- type: Transform
- pos: -57.5,41.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 10409
+ - uid: 4854
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-33.5
+ pos: -18.5,2.5
parent: 2
- - uid: 10416
+ - uid: 4945
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,-35.5
+ pos: 34.5,33.5
parent: 2
- - uid: 13400
+ - uid: 4946
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,-35.5
+ pos: 99.5,77.5
parent: 2
- - uid: 13401
+ - uid: 4947
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-35.5
+ pos: 97.5,77.5
parent: 2
- - uid: 19095
+ - uid: 5050
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,53.5
+ pos: -61.5,-31.5
parent: 2
-- proto: Candle
- entities:
- - uid: 459
+ - uid: 5111
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.7918,22.712358
+ pos: -43.5,20.5
parent: 2
- - uid: 475
+ - uid: 5144
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.21758,22.583452
+ pos: -61.5,-30.5
parent: 2
- - uid: 2483
+ - uid: 5145
components:
- type: Transform
- pos: 62.999084,24.923903
+ pos: -61.5,-29.5
parent: 2
- - uid: 2515
+ - uid: 5146
components:
- type: Transform
- pos: 57.62018,10.780073
+ pos: -61.5,-28.5
parent: 2
- - uid: 2516
+ - uid: 5151
components:
- type: Transform
- pos: 62.366272,10.791792
+ pos: -61.5,-27.5
parent: 2
- - uid: 2521
+ - uid: 5152
components:
- type: Transform
- pos: 62.85846,10.440229
+ pos: -61.5,-26.5
parent: 2
- - uid: 2585
+ - uid: 5153
components:
- type: Transform
- pos: 58.569397,24.794996
+ pos: -61.5,-25.5
parent: 2
- - uid: 4486
+ - uid: 5215
components:
- type: Transform
- pos: 56.29596,24.642653
+ pos: 34.5,31.5
parent: 2
- - uid: 5725
+ - uid: 5242
components:
- type: Transform
- pos: 58.850647,24.712965
+ pos: 1.5,42.5
parent: 2
- - uid: 5726
+ - uid: 5259
components:
- type: Transform
- pos: 58.73346,24.47859
+ pos: 34.5,32.5
parent: 2
- - uid: 5730
+ - uid: 5421
components:
- type: Transform
- pos: 56.56549,24.85359
+ pos: 1.5,41.5
parent: 2
- - uid: 8679
+ - uid: 5510
components:
- type: Transform
- pos: 66.906136,20.752184
+ pos: -17.5,2.5
parent: 2
- - uid: 8680
+ - uid: 5511
components:
- type: Transform
- pos: 67.12879,20.59984
+ pos: -16.5,2.5
parent: 2
- - uid: 8681
+ - uid: 5630
components:
- type: Transform
- pos: 66.156136,19.451403
+ pos: -15.5,2.5
parent: 2
- - uid: 8682
+ - uid: 5907
components:
- type: Transform
- pos: 66.249886,19.123278
+ pos: -25.5,-1.5
parent: 2
- - uid: 11206
+ - uid: 5911
components:
- type: Transform
- pos: -13.560717,-10.543997
+ pos: -27.5,-1.5
parent: 2
- - uid: 11309
+ - uid: 5917
components:
- type: Transform
- pos: 66.74207,17.869371
+ pos: -25.5,1.5
parent: 2
- - uid: 11310
+ - uid: 5918
components:
- type: Transform
- pos: 66.636604,15.021715
+ pos: -26.5,-1.5
parent: 2
- - uid: 11311
+ - uid: 5927
components:
- type: Transform
- pos: 66.39051,19.498278
+ pos: -29.5,-1.5
parent: 2
- - uid: 11323
+ - uid: 5933
components:
- type: Transform
- pos: 66.61317,15.279528
+ pos: -28.5,-1.5
parent: 2
- - uid: 21958
+ - uid: 5936
components:
- type: Transform
- pos: 66.449104,15.197496
+ pos: -25.5,0.5
parent: 2
- - uid: 22093
+ - uid: 5937
components:
- type: Transform
- pos: 66.30848,16.158434
+ pos: -25.5,-0.5
parent: 2
- - uid: 22105
+ - uid: 5967
components:
- type: Transform
- pos: 67.386604,20.857653
+ pos: -14.5,2.5
parent: 2
- - uid: 22172
+ - uid: 5995
components:
- type: Transform
- pos: 66.730354,19.873278
+ pos: -43.5,39.5
parent: 2
- - uid: 22259
+ - uid: 6124
components:
- type: Transform
- pos: 67.42176,14.588121
+ pos: -0.5,39.5
parent: 2
- - uid: 26479
+ - uid: 6125
components:
- type: Transform
- pos: -29.105165,-9.336966
+ pos: -2.5,39.5
parent: 2
- - uid: 26482
+ - uid: 6155
components:
- type: Transform
- pos: -38.6157,-10.497122
+ pos: 105.5,-9.5
parent: 2
-- proto: CandleSmall
- entities:
- - uid: 1190
+ - uid: 6311
components:
- type: Transform
- pos: 27.557243,30.584219
+ pos: 34.5,36.5
parent: 2
- - uid: 2522
+ - uid: 6323
components:
- type: Transform
- pos: 62.68268,10.510542
+ pos: -2.5,37.5
parent: 2
- - uid: 2524
+ - uid: 6328
components:
- type: Transform
- pos: 62.131897,10.662886
+ pos: -39.5,68.5
parent: 2
- - uid: 2622
+ - uid: 6373
components:
- type: Transform
- pos: 62.647522,10.944136
+ pos: 34.5,34.5
parent: 2
- - uid: 2658
+ - uid: 6385
components:
- type: Transform
- pos: 58.07721,10.803511
+ pos: 34.5,35.5
parent: 2
- - uid: 2659
+ - uid: 6469
components:
- type: Transform
- pos: 56.01471,24.854292
+ pos: -37.5,69.5
parent: 2
- - uid: 2705
+ - uid: 6662
components:
- type: Transform
- pos: 56.612366,24.514448
+ pos: -62.5,-21.5
parent: 2
- - uid: 2775
+ - uid: 6663
components:
- type: Transform
- pos: 61.417053,24.655073
+ pos: -61.5,-21.5
parent: 2
- - uid: 2790
+ - uid: 6680
components:
- type: Transform
- pos: 62.75299,24.807417
+ pos: -19.5,-29.5
parent: 2
- - uid: 2818
+ - uid: 6764
components:
- type: Transform
- pos: 63.010803,24.701948
+ pos: -65.5,-21.5
parent: 2
- - uid: 2910
+ - uid: 6916
components:
- type: Transform
- pos: 54.467834,30.516266
+ pos: -18.5,-29.5
parent: 2
- - uid: 4487
+ - uid: 6917
components:
- type: Transform
- pos: 58.229553,10.487104
+ pos: 8.5,27.5
parent: 2
- - uid: 8668
+ - uid: 7102
components:
- type: Transform
- pos: -7.749852,9.529368
+ pos: 25.5,7.5
parent: 2
- - uid: 8669
+ - uid: 7197
components:
- type: Transform
- pos: -4.984227,9.669993
+ pos: 26.5,7.5
parent: 2
- - uid: 8670
+ - uid: 7198
components:
- type: Transform
- pos: 7.7723064,26.424816
+ pos: 23.5,5.5
parent: 2
- - uid: 8671
+ - uid: 7701
components:
- type: Transform
- pos: 4.6668377,28.35841
+ pos: -9.5,-4.5
parent: 2
- - uid: 8672
+ - uid: 7731
components:
- type: Transform
- pos: 4.7723064,28.276379
+ pos: 8.5,29.5
parent: 2
- - uid: 8673
+ - uid: 7789
components:
- type: Transform
- pos: 52.712265,27.603039
+ pos: 8.5,30.5
parent: 2
- - uid: 8674
+ - uid: 7938
components:
- type: Transform
- pos: 65.45301,30.813976
+ pos: 32.5,35.5
parent: 2
- - uid: 8675
+ - uid: 7939
components:
- type: Transform
- pos: 67.12879,14.611559
+ pos: 33.5,36.5
parent: 2
- - uid: 8676
+ - uid: 7962
components:
- type: Transform
- pos: 66.249886,15.408434
+ pos: 32.5,36.5
parent: 2
- - uid: 8677
+ - uid: 8016
components:
- type: Transform
- pos: 66.51942,15.748278
+ pos: 8.5,33.5
parent: 2
- - uid: 8678
+ - uid: 8258
components:
- type: Transform
- pos: 67.45692,20.470934
+ pos: 39.5,15.5
parent: 2
- - uid: 9324
+ - uid: 8310
components:
- type: Transform
- pos: 65.20692,27.755383
+ pos: 39.5,16.5
parent: 2
- - uid: 9327
+ - uid: 8442
components:
- type: Transform
- pos: 66.30848,20.552965
+ pos: -53.5,19.5
parent: 2
- - uid: 9457
+ - uid: 8443
components:
- type: Transform
- pos: 66.33192,20.400621
+ pos: -52.5,19.5
parent: 2
- - uid: 9484
+ - uid: 8733
components:
- type: Transform
- pos: 67.281136,14.845934
+ pos: -43.5,40.5
parent: 2
- - uid: 9485
+ - uid: 9243
components:
- type: Transform
- pos: 67.60926,14.670153
+ pos: 10.5,27.5
parent: 2
- - uid: 11200
+ - uid: 9510
components:
- type: Transform
- pos: -11.355476,-11.411184
+ pos: -25.5,4.5
parent: 2
- - uid: 13586
+ - uid: 9533
components:
- type: Transform
- pos: 27.67443,30.513906
+ pos: -22.5,-23.5
parent: 2
- - uid: 27236
+ - uid: 9571
components:
- type: Transform
- pos: -6.140632,-7.438528
+ pos: -30.5,-1.5
parent: 2
-- proto: CapacitorStockPart
- entities:
- - uid: 31176
+ - uid: 9633
components:
- type: Transform
- pos: -69.67199,1.5256414
+ pos: -25.5,3.5
parent: 2
- - uid: 31181
+ - uid: 10013
components:
- type: Transform
- pos: -69.63683,1.7600164
+ pos: -73.5,8.5
parent: 2
-- proto: CarbonDioxideCanister
- entities:
- - uid: 9352
+ - uid: 10074
components:
- type: Transform
- pos: -39.5,48.5
+ pos: 33.5,53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: CargoBountyComputerCircuitboard
- entities:
- - uid: 13360
+ - uid: 10076
components:
- type: Transform
- pos: -51.60338,25.72561
+ pos: -67.5,34.5
parent: 2
-- proto: CargoTelepadMachineCircuitboard
- entities:
- - uid: 1218
+ - uid: 10077
components:
- type: Transform
- pos: -51.337753,25.686548
+ pos: -66.5,34.5
parent: 2
-- proto: Carpet
- entities:
- - uid: 82
+ - uid: 10078
components:
- type: Transform
- pos: 65.5,30.5
+ pos: -65.5,34.5
parent: 2
- - uid: 234
+ - uid: 10079
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: -64.5,34.5
parent: 2
- - uid: 237
+ - uid: 10080
components:
- type: Transform
- pos: -3.5,-10.5
+ pos: -64.5,35.5
parent: 2
- - uid: 245
+ - uid: 10123
components:
- type: Transform
- pos: -5.5,-8.5
+ pos: 33.5,55.5
parent: 2
- - uid: 379
+ - uid: 10124
components:
- type: Transform
- pos: -3.5,-8.5
+ pos: 33.5,54.5
parent: 2
- - uid: 380
+ - uid: 10162
components:
- type: Transform
- pos: -4.5,-8.5
+ pos: -74.5,8.5
parent: 2
- - uid: 477
+ - uid: 10935
components:
- type: Transform
- pos: -4.5,-9.5
+ pos: 35.5,12.5
parent: 2
- - uid: 478
+ - uid: 11015
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -61.5,-15.5
parent: 2
- - uid: 482
+ - uid: 11016
components:
- type: Transform
- pos: -5.5,-10.5
+ pos: -60.5,-15.5
parent: 2
- - uid: 483
+ - uid: 11017
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: -59.5,-15.5
parent: 2
- - uid: 603
+ - uid: 11018
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-8.5
+ pos: -58.5,-14.5
parent: 2
- - uid: 609
+ - uid: 11019
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-9.5
+ pos: -61.5,-18.5
parent: 2
- - uid: 614
+ - uid: 11020
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-8.5
+ pos: -61.5,-17.5
parent: 2
- - uid: 625
+ - uid: 11021
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-9.5
+ pos: -61.5,-16.5
parent: 2
- - uid: 769
+ - uid: 11028
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,19.5
+ pos: -57.5,-31.5
parent: 2
- - uid: 1089
+ - uid: 11029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,17.5
+ pos: -56.5,-31.5
parent: 2
- - uid: 1094
+ - uid: 11030
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,16.5
+ pos: -55.5,-31.5
parent: 2
- - uid: 1169
+ - uid: 11031
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,17.5
+ pos: -55.5,-32.5
parent: 2
- - uid: 1171
+ - uid: 11032
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,18.5
+ pos: -49.5,-38.5
parent: 2
- - uid: 1764
+ - uid: 11034
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,16.5
+ pos: -59.5,-31.5
parent: 2
- - uid: 2033
+ - uid: 11035
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,18.5
+ pos: -51.5,-37.5
parent: 2
- - uid: 2034
+ - uid: 11036
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,16.5
+ pos: -51.5,-36.5
parent: 2
- - uid: 2247
+ - uid: 11037
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,24.5
+ pos: -51.5,-35.5
parent: 2
- - uid: 2324
+ - uid: 11038
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,18.5
+ pos: -52.5,-35.5
parent: 2
- - uid: 2333
+ - uid: 11039
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,24.5
+ pos: -51.5,-38.5
parent: 2
- - uid: 2545
+ - uid: 11040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,21.5
+ pos: -48.5,-38.5
parent: 2
- - uid: 2554
+ - uid: 11041
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,17.5
+ pos: -44.5,-38.5
parent: 2
- - uid: 2626
+ - uid: 11042
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,16.5
+ pos: -45.5,-38.5
parent: 2
- - uid: 2905
+ - uid: 11043
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,17.5
+ pos: -46.5,-38.5
parent: 2
- - uid: 2906
+ - uid: 11044
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,18.5
+ pos: -47.5,-38.5
parent: 2
- - uid: 3275
+ - uid: 11046
components:
- type: Transform
- pos: 59.5,17.5
+ pos: -60.5,-31.5
parent: 2
- - uid: 4068
+ - uid: 11059
components:
- type: Transform
- pos: -3.5,60.5
+ pos: -58.5,-13.5
parent: 2
- - uid: 4245
+ - uid: 11070
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,21.5
+ pos: -59.5,-11.5
parent: 2
- - uid: 4413
+ - uid: 11111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,17.5
+ pos: -68.5,-2.5
parent: 2
- - uid: 4414
+ - uid: 11112
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,16.5
+ pos: -68.5,-3.5
parent: 2
- - uid: 4415
+ - uid: 11113
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,18.5
+ pos: -67.5,-3.5
parent: 2
- - uid: 4416
+ - uid: 11114
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,18.5
+ pos: -66.5,-3.5
parent: 2
- - uid: 4417
+ - uid: 11115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,17.5
+ pos: -65.5,-3.5
parent: 2
- - uid: 4418
+ - uid: 11116
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,17.5
+ pos: -64.5,-3.5
parent: 2
- - uid: 4420
+ - uid: 11117
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,18.5
+ pos: -64.5,-2.5
parent: 2
- - uid: 4421
+ - uid: 11118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,18.5
+ pos: -64.5,-1.5
parent: 2
- - uid: 4422
+ - uid: 11119
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,16.5
+ pos: -64.5,-0.5
parent: 2
- - uid: 4423
+ - uid: 11120
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,16.5
+ pos: -64.5,0.5
parent: 2
- - uid: 4426
+ - uid: 11121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,16.5
+ pos: -64.5,1.5
parent: 2
- - uid: 4427
+ - uid: 11122
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,16.5
+ pos: -64.5,2.5
parent: 2
- - uid: 4429
+ - uid: 11123
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,17.5
+ pos: -64.5,3.5
parent: 2
- - uid: 4431
+ - uid: 11124
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,17.5
+ pos: -64.5,4.5
parent: 2
- - uid: 4433
+ - uid: 11125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,16.5
+ pos: -64.5,5.5
parent: 2
- - uid: 4434
+ - uid: 11126
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,16.5
+ pos: -64.5,6.5
parent: 2
- - uid: 4436
+ - uid: 11127
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,18.5
+ pos: -64.5,7.5
parent: 2
- - uid: 4437
+ - uid: 11128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,18.5
+ pos: -64.5,8.5
parent: 2
- - uid: 4439
+ - uid: 11129
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,17.5
+ pos: -65.5,8.5
parent: 2
- - uid: 4440
+ - uid: 11130
components:
- type: Transform
- pos: -4.5,60.5
+ pos: -66.5,8.5
parent: 2
- - uid: 4580
+ - uid: 11131
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,18.5
+ pos: -67.5,8.5
parent: 2
- - uid: 5232
+ - uid: 11132
components:
- type: Transform
- pos: -3.5,61.5
+ pos: -68.5,8.5
parent: 2
- - uid: 11199
+ - uid: 11133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,22.5
+ pos: -69.5,8.5
parent: 2
- - uid: 11205
+ - uid: 11134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,22.5
+ pos: -70.5,8.5
parent: 2
- - uid: 11225
+ - uid: 11135
components:
- type: Transform
- pos: 65.5,29.5
+ pos: -71.5,8.5
parent: 2
- - uid: 13094
+ - uid: 11136
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,21.5
+ pos: -72.5,8.5
parent: 2
- - uid: 13095
+ - uid: 11137
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,21.5
+ pos: -72.5,7.5
parent: 2
- - uid: 13129
+ - uid: 11138
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,22.5
+ pos: -72.5,6.5
parent: 2
- - uid: 13130
+ - uid: 11139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,23.5
+ pos: -72.5,5.5
parent: 2
- - uid: 13132
+ - uid: 11143
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,23.5
+ pos: -76.5,8.5
parent: 2
- - uid: 15420
+ - uid: 11148
components:
- type: Transform
- pos: -21.5,26.5
+ pos: -75.5,8.5
parent: 2
- - uid: 15421
+ - uid: 11154
components:
- type: Transform
- pos: -21.5,25.5
+ pos: -78.5,8.5
parent: 2
- - uid: 15422
+ - uid: 11155
components:
- type: Transform
- pos: -21.5,24.5
+ pos: -77.5,8.5
parent: 2
- - uid: 15423
+ - uid: 11206
components:
- type: Transform
- pos: -20.5,26.5
+ pos: -44.5,69.5
parent: 2
- - uid: 15424
+ - uid: 11713
components:
- type: Transform
- pos: -20.5,25.5
+ pos: -27.5,-27.5
parent: 2
- - uid: 15425
+ - uid: 11714
components:
- type: Transform
- pos: -20.5,24.5
+ pos: -28.5,-27.5
parent: 2
- - uid: 15426
+ - uid: 11715
components:
- type: Transform
- pos: -19.5,26.5
+ pos: -29.5,-27.5
parent: 2
- - uid: 15427
+ - uid: 11716
components:
- type: Transform
- pos: -19.5,25.5
+ pos: -30.5,-27.5
parent: 2
- - uid: 15428
+ - uid: 11717
components:
- type: Transform
- pos: -19.5,24.5
+ pos: -31.5,-27.5
parent: 2
- - uid: 15430
+ - uid: 11718
components:
- type: Transform
- pos: -16.5,25.5
+ pos: -32.5,-27.5
parent: 2
- - uid: 15433
+ - uid: 11719
components:
- type: Transform
- pos: -15.5,25.5
+ pos: -33.5,-27.5
parent: 2
- - uid: 15435
+ - uid: 11720
components:
- type: Transform
- pos: -14.5,26.5
+ pos: -33.5,-26.5
parent: 2
- - uid: 15436
+ - uid: 11721
components:
- type: Transform
- pos: -14.5,25.5
+ pos: -33.5,-25.5
parent: 2
- - uid: 15438
+ - uid: 11722
components:
- type: Transform
- pos: -10.5,26.5
+ pos: -33.5,-24.5
parent: 2
- - uid: 15439
+ - uid: 11723
components:
- type: Transform
- pos: -10.5,25.5
+ pos: -33.5,-23.5
parent: 2
- - uid: 15440
+ - uid: 11724
components:
- type: Transform
- pos: -10.5,24.5
+ pos: -33.5,-22.5
parent: 2
- - uid: 15441
+ - uid: 11725
components:
- type: Transform
- pos: -9.5,26.5
+ pos: -33.5,-21.5
parent: 2
- - uid: 15442
+ - uid: 11726
components:
- type: Transform
- pos: -9.5,25.5
+ pos: -33.5,-20.5
parent: 2
- - uid: 15443
+ - uid: 11727
components:
- type: Transform
- pos: -9.5,24.5
+ pos: -33.5,-19.5
parent: 2
- - uid: 15444
+ - uid: 11728
components:
- type: Transform
- pos: -8.5,26.5
+ pos: -33.5,-18.5
parent: 2
- - uid: 15445
+ - uid: 11729
components:
- type: Transform
- pos: -8.5,25.5
+ pos: -33.5,-17.5
parent: 2
- - uid: 15446
+ - uid: 11730
components:
- type: Transform
- pos: -8.5,24.5
+ pos: -33.5,-16.5
parent: 2
- - uid: 15515
+ - uid: 11731
components:
- type: Transform
- pos: -5.5,61.5
+ pos: -33.5,-15.5
parent: 2
- - uid: 15518
+ - uid: 11732
components:
- type: Transform
- pos: -5.5,60.5
+ pos: -32.5,-15.5
parent: 2
- - uid: 15702
+ - uid: 11733
components:
- type: Transform
- pos: -23.5,42.5
+ pos: -31.5,-15.5
parent: 2
- - uid: 15703
+ - uid: 11734
components:
- type: Transform
- pos: -23.5,41.5
+ pos: -30.5,-15.5
parent: 2
- - uid: 15704
+ - uid: 11735
components:
- type: Transform
- pos: -23.5,40.5
+ pos: -29.5,-15.5
parent: 2
- - uid: 15705
+ - uid: 11736
components:
- type: Transform
- pos: -22.5,42.5
+ pos: -28.5,-15.5
parent: 2
- - uid: 15706
+ - uid: 11737
components:
- type: Transform
- pos: -22.5,41.5
+ pos: -27.5,-15.5
parent: 2
- - uid: 15707
+ - uid: 11738
components:
- type: Transform
- pos: -22.5,40.5
+ pos: -26.5,-15.5
parent: 2
- - uid: 15708
+ - uid: 11739
components:
- type: Transform
- pos: -21.5,42.5
+ pos: -25.5,-15.5
parent: 2
- - uid: 15709
+ - uid: 11740
components:
- type: Transform
- pos: -21.5,41.5
+ pos: -24.5,-15.5
parent: 2
- - uid: 15710
+ - uid: 11741
components:
- type: Transform
- pos: -21.5,40.5
+ pos: -23.5,-15.5
parent: 2
- - uid: 15714
+ - uid: 11742
components:
- type: Transform
- pos: -30.5,41.5
+ pos: -22.5,-15.5
parent: 2
- - uid: 15715
+ - uid: 11743
components:
- type: Transform
- pos: -30.5,40.5
+ pos: -21.5,-15.5
parent: 2
- - uid: 15716
+ - uid: 11744
components:
- type: Transform
- pos: -29.5,40.5
+ pos: -20.5,-15.5
parent: 2
- - uid: 15717
+ - uid: 11745
components:
- type: Transform
- pos: -29.5,41.5
+ pos: -19.5,-15.5
parent: 2
- - uid: 15731
+ - uid: 11746
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,34.5
+ pos: -18.5,-15.5
parent: 2
- - uid: 15758
+ - uid: 11747
components:
- type: Transform
- pos: -6.5,29.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 15761
+ - uid: 11748
components:
- type: Transform
- pos: -6.5,28.5
+ pos: -16.5,-15.5
parent: 2
- - uid: 15762
+ - uid: 11749
components:
- type: Transform
- pos: -5.5,29.5
+ pos: -15.5,-15.5
parent: 2
- - uid: 15763
+ - uid: 11750
components:
- type: Transform
- pos: -5.5,28.5
+ pos: -14.5,-15.5
parent: 2
- - uid: 15764
+ - uid: 11751
components:
- type: Transform
- pos: -4.5,29.5
+ pos: -13.5,-15.5
parent: 2
- - uid: 15765
+ - uid: 11752
components:
- type: Transform
- pos: -4.5,28.5
+ pos: -12.5,-15.5
parent: 2
- - uid: 15766
+ - uid: 11753
components:
- type: Transform
- pos: -6.5,27.5
+ pos: -11.5,-15.5
parent: 2
- - uid: 15767
+ - uid: 11754
components:
- type: Transform
- pos: -5.5,27.5
+ pos: -11.5,-16.5
parent: 2
- - uid: 15768
+ - uid: 11755
components:
- type: Transform
- pos: -4.5,27.5
+ pos: -11.5,-17.5
parent: 2
- - uid: 15783
+ - uid: 11756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,33.5
+ pos: -11.5,-18.5
parent: 2
- - uid: 15784
+ - uid: 11757
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,34.5
+ pos: -11.5,-19.5
parent: 2
- - uid: 15785
+ - uid: 11758
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,33.5
+ pos: -11.5,-20.5
parent: 2
- - uid: 15786
+ - uid: 11759
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,34.5
+ pos: -12.5,-20.5
parent: 2
- - uid: 15787
+ - uid: 11760
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,33.5
+ pos: -13.5,-20.5
parent: 2
- - uid: 16448
+ - uid: 11761
components:
- type: Transform
- pos: -9.5,41.5
+ pos: -14.5,-20.5
parent: 2
- - uid: 16449
+ - uid: 11762
components:
- type: Transform
- pos: -9.5,40.5
+ pos: -15.5,-20.5
parent: 2
- - uid: 16450
+ - uid: 11763
components:
- type: Transform
- pos: -8.5,41.5
+ pos: -16.5,-20.5
parent: 2
- - uid: 16451
+ - uid: 11764
components:
- type: Transform
- pos: -8.5,40.5
+ pos: -17.5,-20.5
parent: 2
- - uid: 16623
+ - uid: 11765
components:
- type: Transform
- pos: -4.5,61.5
+ pos: -18.5,-20.5
parent: 2
- - uid: 23557
+ - uid: 11766
components:
- type: Transform
- pos: 66.5,29.5
+ pos: -19.5,-20.5
parent: 2
- - uid: 25006
+ - uid: 11767
components:
- type: Transform
- pos: 66.5,30.5
+ pos: -20.5,-20.5
parent: 2
- - uid: 26092
+ - uid: 11768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,26.5
+ pos: -21.5,-20.5
parent: 2
- - uid: 26093
+ - uid: 11769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,26.5
+ pos: -22.5,-20.5
parent: 2
- - uid: 26094
+ - uid: 11770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,24.5
+ pos: -22.5,-21.5
parent: 2
- - uid: 27815
+ - uid: 11771
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,23.5
+ pos: -22.5,-22.5
parent: 2
- - uid: 29721
+ - uid: 11772
components:
- type: Transform
- pos: 59.5,18.5
+ pos: -23.5,-22.5
parent: 2
- - uid: 30520
+ - uid: 11809
components:
- type: Transform
- pos: -7.5,20.5
+ pos: -22.5,-24.5
parent: 2
- - uid: 30521
+ - uid: 11827
components:
- type: Transform
- pos: -7.5,19.5
+ pos: 44.5,-26.5
parent: 2
- - uid: 30522
+ - uid: 11852
components:
- type: Transform
- pos: -6.5,20.5
+ pos: -64.5,-21.5
parent: 2
- - uid: 30523
+ - uid: 11950
components:
- type: Transform
- pos: -6.5,19.5
+ pos: -20.5,-26.5
parent: 2
- - uid: 30524
+ - uid: 11951
components:
- type: Transform
- pos: -5.5,20.5
+ pos: -20.5,-27.5
parent: 2
- - uid: 30526
+ - uid: 12006
components:
- type: Transform
- pos: -4.5,20.5
+ pos: -55.5,-33.5
parent: 2
- - uid: 30527
+ - uid: 12007
components:
- type: Transform
- pos: -4.5,19.5
+ pos: -50.5,-38.5
parent: 2
- - uid: 30543
+ - uid: 12066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,20.5
+ pos: 1.5,1.5
parent: 2
- - uid: 30544
+ - uid: 12082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,21.5
+ pos: -30.5,6.5
parent: 2
- - uid: 30545
+ - uid: 12088
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,20.5
+ pos: -1.5,-28.5
parent: 2
- - uid: 30546
+ - uid: 12098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,21.5
+ pos: -55.5,-34.5
parent: 2
- - uid: 30547
+ - uid: 12225
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,20.5
+ pos: -57.5,-12.5
parent: 2
- - uid: 30548
+ - uid: 12290
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,21.5
+ pos: 2.5,1.5
parent: 2
- - uid: 30549
+ - uid: 12311
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,21.5
+ pos: 4.5,1.5
parent: 2
- - uid: 30550
+ - uid: 12316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,20.5
+ pos: 3.5,1.5
parent: 2
- - uid: 30551
+ - uid: 12317
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,20.5
+ pos: 7.5,1.5
parent: 2
- - uid: 33553
+ - uid: 12328
components:
- type: Transform
- pos: 70.5,42.5
+ pos: 7.5,52.5
parent: 2
- - uid: 33554
+ - uid: 12347
components:
- type: Transform
- pos: 70.5,41.5
+ pos: 7.5,53.5
parent: 2
- - uid: 33555
+ - uid: 12406
components:
- type: Transform
- pos: 71.5,42.5
+ pos: 8.5,1.5
parent: 2
- - uid: 33556
+ - uid: 12416
components:
- type: Transform
- pos: 71.5,41.5
+ pos: -28.5,6.5
parent: 2
- - uid: 33557
+ - uid: 12417
components:
- type: Transform
- pos: 72.5,42.5
+ pos: 6.5,1.5
parent: 2
- - uid: 33558
+ - uid: 12425
components:
- type: Transform
- pos: 72.5,41.5
+ pos: -29.5,6.5
parent: 2
-- proto: CarpetBlack
- entities:
- - uid: 689
+ - uid: 12429
components:
- type: Transform
- pos: -21.5,-8.5
+ pos: -6.5,-1.5
parent: 2
- - uid: 690
+ - uid: 12446
components:
- type: Transform
- pos: -22.5,-8.5
+ pos: -25.5,2.5
parent: 2
- - uid: 691
+ - uid: 12464
components:
- type: Transform
- pos: -23.5,-8.5
+ pos: 7.5,51.5
parent: 2
- - uid: 692
+ - uid: 12505
components:
- type: Transform
- pos: -23.5,-9.5
+ pos: 7.5,50.5
parent: 2
- - uid: 693
+ - uid: 12627
components:
- type: Transform
- pos: -22.5,-9.5
+ pos: 80.5,-16.5
parent: 2
- - uid: 694
+ - uid: 12893
components:
- type: Transform
- pos: -21.5,-9.5
+ pos: 31.5,52.5
parent: 2
- - uid: 695
+ - uid: 13011
components:
- type: Transform
- pos: -20.5,-8.5
+ pos: -55.5,-35.5
parent: 2
- - uid: 696
+ - uid: 13241
components:
- type: Transform
- pos: -20.5,-9.5
+ pos: 37.5,18.5
parent: 2
- - uid: 697
+ - uid: 13392
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: 37.5,20.5
parent: 2
- - uid: 698
+ - uid: 13734
components:
- type: Transform
- pos: -21.5,-10.5
+ pos: 37.5,19.5
parent: 2
- - uid: 699
+ - uid: 13829
components:
- type: Transform
- pos: -22.5,-10.5
+ pos: -54.5,-35.5
parent: 2
- - uid: 700
+ - uid: 13852
components:
- type: Transform
- pos: -23.5,-10.5
+ pos: -53.5,-35.5
parent: 2
- - uid: 701
+ - uid: 13855
components:
- type: Transform
- pos: -16.5,-10.5
+ pos: -58.5,-31.5
parent: 2
- - uid: 702
+ - uid: 13909
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: 42.5,32.5
parent: 2
- - uid: 703
+ - uid: 14289
components:
- type: Transform
- pos: -17.5,-8.5
+ pos: 41.5,32.5
parent: 2
- - uid: 704
+ - uid: 14290
components:
- type: Transform
- pos: -17.5,-10.5
+ pos: 40.5,32.5
parent: 2
- - uid: 705
+ - uid: 14368
components:
- type: Transform
- pos: -16.5,-9.5
+ pos: -33.5,23.5
parent: 2
- - uid: 706
+ - uid: 14373
components:
- type: Transform
- pos: -16.5,-8.5
+ pos: -0.5,-28.5
parent: 2
- - uid: 918
+ - uid: 14375
components:
- type: Transform
- pos: -73.5,3.5
+ pos: -2.5,-28.5
parent: 2
- - uid: 4680
+ - uid: 14377
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,33.5
+ pos: -30.5,-14.5
parent: 2
- - uid: 4681
+ - uid: 14387
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,32.5
+ pos: 18.5,39.5
parent: 2
- - uid: 4683
+ - uid: 14388
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,34.5
+ pos: 18.5,40.5
parent: 2
- - uid: 4684
+ - uid: 14389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,34.5
+ pos: 18.5,41.5
parent: 2
- - uid: 4685
+ - uid: 14390
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,34.5
+ pos: 18.5,42.5
parent: 2
- - uid: 4686
+ - uid: 14391
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,32.5
+ pos: 18.5,43.5
parent: 2
- - uid: 4689
+ - uid: 14392
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,33.5
+ pos: 18.5,44.5
parent: 2
- - uid: 5308
+ - uid: 14393
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,32.5
+ pos: 18.5,45.5
parent: 2
- - uid: 5447
+ - uid: 14394
components:
- type: Transform
- pos: -10.5,67.5
+ pos: 17.5,45.5
parent: 2
- - uid: 5450
+ - uid: 14395
components:
- type: Transform
- pos: 48.5,33.5
+ pos: 16.5,45.5
parent: 2
- - uid: 5451
+ - uid: 14403
components:
- type: Transform
- pos: 47.5,33.5
+ pos: 12.5,7.5
parent: 2
- - uid: 5452
+ - uid: 14404
components:
- type: Transform
- pos: 47.5,34.5
+ pos: 13.5,7.5
parent: 2
- - uid: 5453
+ - uid: 14405
components:
- type: Transform
- pos: 48.5,34.5
+ pos: 15.5,7.5
parent: 2
- - uid: 5454
+ - uid: 14406
components:
- type: Transform
- pos: 44.5,29.5
+ pos: 14.5,7.5
parent: 2
- - uid: 5455
+ - uid: 14420
components:
- type: Transform
- pos: 43.5,29.5
+ pos: 18.5,7.5
parent: 2
- - uid: 5456
+ - uid: 14422
components:
- type: Transform
- pos: 43.5,30.5
+ pos: 24.5,4.5
parent: 2
- - uid: 5457
+ - uid: 14491
components:
- type: Transform
- pos: 44.5,30.5
+ pos: 17.5,7.5
parent: 2
- - uid: 5458
+ - uid: 14492
components:
- type: Transform
- pos: 45.5,29.5
+ pos: 16.5,7.5
parent: 2
- - uid: 5459
+ - uid: 14598
components:
- type: Transform
- pos: 45.5,30.5
+ pos: -33.5,6.5
parent: 2
- - uid: 5460
+ - uid: 14599
components:
- type: Transform
- pos: 46.5,30.5
+ pos: -15.5,13.5
parent: 2
- - uid: 5461
+ - uid: 14600
components:
- type: Transform
- pos: 46.5,29.5
+ pos: -15.5,14.5
parent: 2
- - uid: 5462
+ - uid: 14603
components:
- type: Transform
- pos: 48.5,29.5
+ pos: -40.5,70.5
parent: 2
- - uid: 5463
+ - uid: 14606
components:
- type: Transform
- pos: 48.5,30.5
+ pos: 91.5,-21.5
parent: 2
- - uid: 5464
+ - uid: 14608
components:
- type: Transform
- pos: 49.5,29.5
+ pos: -34.5,10.5
parent: 2
- - uid: 5465
+ - uid: 14617
components:
- type: Transform
- pos: 49.5,30.5
+ pos: 32.5,51.5
parent: 2
- - uid: 5466
+ - uid: 14618
components:
- type: Transform
- pos: 44.5,34.5
+ pos: 31.5,51.5
parent: 2
- - uid: 5467
+ - uid: 14619
components:
- type: Transform
- pos: 43.5,34.5
+ pos: 31.5,50.5
parent: 2
- - uid: 5468
+ - uid: 14620
components:
- type: Transform
- pos: 43.5,33.5
+ pos: 31.5,49.5
parent: 2
- - uid: 5469
+ - uid: 14621
components:
- type: Transform
- pos: 44.5,33.5
+ pos: 32.5,49.5
parent: 2
- - uid: 5470
+ - uid: 14622
components:
- type: Transform
- pos: 46.5,33.5
+ pos: 33.5,49.5
parent: 2
- - uid: 5471
+ - uid: 14623
components:
- type: Transform
- pos: 46.5,34.5
+ pos: 34.5,49.5
parent: 2
- - uid: 5472
+ - uid: 14624
components:
- type: Transform
- pos: 49.5,33.5
+ pos: 35.5,49.5
parent: 2
- - uid: 5473
+ - uid: 14625
components:
- type: Transform
- pos: 49.5,34.5
+ pos: 36.5,49.5
parent: 2
- - uid: 6303
+ - uid: 14626
components:
- type: Transform
- pos: -9.5,69.5
+ pos: 37.5,49.5
parent: 2
- - uid: 6310
+ - uid: 14627
components:
- type: Transform
- pos: -11.5,69.5
+ pos: 38.5,49.5
parent: 2
- - uid: 7578
+ - uid: 14628
components:
- type: Transform
- pos: -7.5,69.5
+ pos: 39.5,49.5
parent: 2
- - uid: 7579
+ - uid: 14629
components:
- type: Transform
- pos: -8.5,69.5
+ pos: 40.5,49.5
parent: 2
- - uid: 7580
+ - uid: 14630
components:
- type: Transform
- pos: -7.5,67.5
+ pos: 41.5,49.5
parent: 2
- - uid: 7607
+ - uid: 14631
components:
- type: Transform
- pos: -10.5,69.5
+ pos: 42.5,49.5
parent: 2
- - uid: 7881
+ - uid: 14635
components:
- type: Transform
- pos: 88.5,39.5
+ pos: 42.5,45.5
parent: 2
- - uid: 8140
+ - uid: 14659
components:
- type: Transform
- pos: -71.5,3.5
+ pos: 93.5,-23.5
parent: 2
- - uid: 8334
+ - uid: 14946
components:
- type: Transform
- pos: -73.5,2.5
+ pos: -33.5,-1.5
parent: 2
- - uid: 11258
+ - uid: 14947
components:
- type: Transform
- pos: -71.5,2.5
+ pos: -33.5,-2.5
parent: 2
- - uid: 11637
+ - uid: 15392
components:
- type: Transform
- pos: -8.5,67.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 13827
+ - uid: 15416
components:
- type: Transform
- pos: 87.5,39.5
+ pos: -33.5,-4.5
parent: 2
- - uid: 13842
+ - uid: 15531
components:
- type: Transform
- pos: -11.5,67.5
+ pos: -33.5,-3.5
parent: 2
- - uid: 13860
+ - uid: 15555
components:
- type: Transform
- pos: -9.5,67.5
+ pos: 1.5,33.5
parent: 2
- - uid: 19942
+ - uid: 15706
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-5.5
+ pos: -15.5,42.5
parent: 2
- - uid: 19951
+ - uid: 15748
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-4.5
+ pos: -59.5,-12.5
parent: 2
- - uid: 23071
+ - uid: 15788
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-3.5
+ pos: -11.5,40.5
parent: 2
- - uid: 23253
+ - uid: 16005
components:
- type: Transform
- pos: -72.5,3.5
+ pos: 1.5,28.5
parent: 2
- - uid: 23469
+ - uid: 16007
components:
- type: Transform
- pos: 87.5,40.5
+ pos: 1.5,27.5
parent: 2
- - uid: 23482
+ - uid: 16009
components:
- type: Transform
- pos: 87.5,41.5
+ pos: 1.5,44.5
parent: 2
- - uid: 23510
+ - uid: 16010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-4.5
+ pos: 1.5,43.5
parent: 2
- - uid: 23511
+ - uid: 16011
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-4.5
+ pos: 1.5,40.5
parent: 2
- - uid: 23513
+ - uid: 16012
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-3.5
+ pos: -2.5,30.5
parent: 2
- - uid: 23514
+ - uid: 16014
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,-5.5
+ pos: 0.5,39.5
parent: 2
- - uid: 23515
+ - uid: 16015
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,-5.5
+ pos: -0.5,30.5
parent: 2
- - uid: 23627
+ - uid: 16028
components:
- type: Transform
- pos: -72.5,2.5
+ pos: 1.5,37.5
parent: 2
- - uid: 27948
+ - uid: 16035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,-3.5
+ pos: -2.5,26.5
parent: 2
- - uid: 27969
+ - uid: 16068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,33.5
+ pos: -2.5,40.5
parent: 2
- - uid: 29781
+ - uid: 16069
components:
- type: Transform
- pos: 82.5,59.5
+ pos: -3.5,40.5
parent: 2
- - uid: 29782
+ - uid: 16070
components:
- type: Transform
- pos: 82.5,58.5
+ pos: -4.5,40.5
parent: 2
- - uid: 29783
+ - uid: 16071
components:
- type: Transform
- pos: 83.5,59.5
+ pos: -5.5,40.5
parent: 2
- - uid: 29784
+ - uid: 16072
components:
- type: Transform
- pos: 83.5,58.5
+ pos: -6.5,40.5
parent: 2
- - uid: 29785
+ - uid: 16073
components:
- type: Transform
- pos: 84.5,59.5
+ pos: -7.5,40.5
parent: 2
- - uid: 29786
+ - uid: 16074
components:
- type: Transform
- pos: 84.5,58.5
+ pos: -8.5,40.5
parent: 2
- - uid: 29787
+ - uid: 16075
components:
- type: Transform
- pos: 85.5,59.5
+ pos: -9.5,40.5
parent: 2
- - uid: 29788
+ - uid: 16076
components:
- type: Transform
- pos: 85.5,58.5
+ pos: -10.5,40.5
parent: 2
- - uid: 29789
+ - uid: 16077
components:
- type: Transform
- pos: 81.5,56.5
+ pos: -10.5,36.5
parent: 2
- - uid: 29790
+ - uid: 16078
components:
- type: Transform
- pos: 81.5,55.5
+ pos: -11.5,37.5
parent: 2
- - uid: 29791
+ - uid: 16081
components:
- type: Transform
- pos: 82.5,56.5
+ pos: -12.5,40.5
parent: 2
- - uid: 29792
+ - uid: 16087
components:
- type: Transform
- pos: 82.5,55.5
+ pos: -12.5,39.5
parent: 2
- - uid: 29793
+ - uid: 16088
components:
- type: Transform
- pos: 83.5,56.5
+ pos: -12.5,38.5
parent: 2
- - uid: 29794
+ - uid: 16089
components:
- type: Transform
- pos: 83.5,55.5
+ pos: -12.5,37.5
parent: 2
- - uid: 29795
+ - uid: 16332
components:
- type: Transform
- pos: 84.5,56.5
+ pos: -10.5,37.5
parent: 2
- - uid: 29796
+ - uid: 16346
components:
- type: Transform
- pos: 84.5,55.5
+ pos: -13.5,42.5
parent: 2
- - uid: 29797
+ - uid: 16351
components:
- type: Transform
- pos: 85.5,56.5
+ pos: -12.5,42.5
parent: 2
- - uid: 29798
+ - uid: 16352
components:
- type: Transform
- pos: 85.5,55.5
+ pos: -12.5,41.5
parent: 2
- - uid: 29852
+ - uid: 16355
components:
- type: Transform
- pos: 86.5,41.5
+ pos: -2.5,31.5
parent: 2
- - uid: 29854
+ - uid: 16565
components:
- type: Transform
- pos: 88.5,40.5
+ pos: 37.5,15.5
parent: 2
- - uid: 29855
+ - uid: 16566
components:
- type: Transform
- pos: 88.5,41.5
+ pos: -34.5,26.5
parent: 2
- - uid: 29856
+ - uid: 16567
components:
- type: Transform
- pos: 86.5,39.5
+ pos: -36.5,26.5
parent: 2
- - uid: 29858
+ - uid: 16575
components:
- type: Transform
- pos: 86.5,40.5
+ pos: -35.5,26.5
parent: 2
- - uid: 30351
+ - uid: 16599
components:
- type: Transform
- pos: 48.5,15.5
+ pos: -45.5,69.5
parent: 2
- - uid: 30352
+ - uid: 16648
components:
- type: Transform
- pos: 48.5,16.5
+ pos: 93.5,-22.5
parent: 2
- - uid: 30454
+ - uid: 16651
components:
- type: Transform
- pos: 50.5,7.5
+ pos: 93.5,-21.5
parent: 2
- - uid: 30457
+ - uid: 16654
components:
- type: Transform
- pos: 50.5,6.5
+ pos: 92.5,-21.5
parent: 2
- - uid: 30460
+ - uid: 17502
components:
- type: Transform
- pos: 49.5,6.5
+ pos: -6.5,0.5
parent: 2
- - uid: 30461
+ - uid: 17561
components:
- type: Transform
- pos: 49.5,7.5
+ pos: 23.5,6.5
parent: 2
- - uid: 30462
+ - uid: 17874
components:
- type: Transform
- pos: 48.5,7.5
+ pos: 0.5,26.5
parent: 2
- - uid: 30463
+ - uid: 17923
components:
- type: Transform
- pos: 48.5,6.5
+ pos: 11.5,14.5
parent: 2
- - uid: 30464
+ - uid: 17951
components:
- type: Transform
- pos: 48.5,9.5
+ pos: 27.5,7.5
parent: 2
- - uid: 30465
+ - uid: 18258
components:
- type: Transform
- pos: 48.5,10.5
+ pos: -20.5,-29.5
parent: 2
- - uid: 30466
+ - uid: 18259
components:
- type: Transform
- pos: 49.5,9.5
+ pos: -20.5,-28.5
parent: 2
- - uid: 30467
+ - uid: 18260
components:
- type: Transform
- pos: 49.5,10.5
+ pos: 8.5,31.5
parent: 2
- - uid: 30468
+ - uid: 18308
components:
- type: Transform
- pos: 50.5,9.5
+ pos: -33.5,24.5
parent: 2
- - uid: 30469
+ - uid: 18575
components:
- type: Transform
- pos: 50.5,10.5
+ pos: 81.5,-16.5
parent: 2
- - uid: 30470
+ - uid: 18581
components:
- type: Transform
- pos: 48.5,17.5
+ pos: 82.5,-16.5
parent: 2
- - uid: 30471
+ - uid: 18674
components:
- type: Transform
- pos: 48.5,18.5
+ pos: 89.5,-11.5
parent: 2
- - uid: 30472
+ - uid: 18675
components:
- type: Transform
- pos: 48.5,19.5
+ pos: 88.5,-21.5
parent: 2
- - uid: 30473
+ - uid: 18676
components:
- type: Transform
- pos: 49.5,15.5
+ pos: 85.5,-21.5
parent: 2
- - uid: 30474
+ - uid: 18680
components:
- type: Transform
- pos: 49.5,16.5
+ pos: 92.5,-11.5
parent: 2
- - uid: 30475
+ - uid: 18685
components:
- type: Transform
- pos: 49.5,17.5
+ pos: 82.5,-21.5
parent: 2
- - uid: 30476
+ - uid: 18978
components:
- type: Transform
- pos: 49.5,18.5
+ pos: 87.5,-21.5
parent: 2
- - uid: 30477
+ - uid: 18979
components:
- type: Transform
- pos: 49.5,19.5
+ pos: 86.5,-21.5
parent: 2
- - uid: 30478
+ - uid: 18980
components:
- type: Transform
- pos: 50.5,15.5
+ pos: 87.5,-11.5
parent: 2
- - uid: 30479
+ - uid: 18981
components:
- type: Transform
- pos: 50.5,16.5
+ pos: 90.5,-11.5
parent: 2
- - uid: 30480
+ - uid: 18982
components:
- type: Transform
- pos: 50.5,17.5
+ pos: 91.5,-11.5
parent: 2
- - uid: 30481
+ - uid: 18983
components:
- type: Transform
- pos: 50.5,18.5
+ pos: 83.5,-16.5
parent: 2
- - uid: 30482
+ - uid: 19036
components:
- type: Transform
- pos: 50.5,19.5
+ pos: 80.5,-22.5
parent: 2
- - uid: 30503
+ - uid: 19053
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,68.5
+ pos: 84.5,-16.5
parent: 2
- - uid: 30504
+ - uid: 19068
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,69.5
+ pos: -32.5,12.5
parent: 2
- - uid: 30506
+ - uid: 19069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,67.5
+ pos: -32.5,11.5
parent: 2
- - uid: 30507
+ - uid: 19070
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,66.5
+ pos: -32.5,10.5
parent: 2
- - uid: 30508
+ - uid: 19071
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,65.5
+ pos: -32.5,9.5
parent: 2
- - uid: 30509
+ - uid: 19072
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,69.5
+ pos: -32.5,8.5
parent: 2
- - uid: 30510
+ - uid: 19104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,68.5
+ pos: 85.5,-16.5
parent: 2
- - uid: 30511
+ - uid: 19171
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,67.5
+ pos: 86.5,-16.5
parent: 2
- - uid: 30512
+ - uid: 19199
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,66.5
+ pos: 86.5,-15.5
parent: 2
- - uid: 30513
+ - uid: 19200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,65.5
+ pos: 97.5,-10.5
parent: 2
- - uid: 33659
+ - uid: 19218
components:
- type: Transform
- pos: -38.5,66.5
+ pos: 93.5,-24.5
parent: 2
- - uid: 33660
+ - uid: 19219
components:
- type: Transform
- pos: -38.5,65.5
+ pos: 94.5,-24.5
parent: 2
- - uid: 33661
+ - uid: 19252
components:
- type: Transform
- pos: -38.5,64.5
+ pos: 79.5,-18.5
parent: 2
- - uid: 33662
+ - uid: 19255
components:
- type: Transform
- pos: -38.5,63.5
+ pos: 79.5,-19.5
parent: 2
- - uid: 33663
+ - uid: 19306
components:
- type: Transform
- pos: -37.5,66.5
+ pos: -33.5,25.5
parent: 2
- - uid: 33664
+ - uid: 19518
components:
- type: Transform
- pos: -37.5,65.5
+ pos: -33.5,26.5
parent: 2
- - uid: 33665
+ - uid: 19704
components:
- type: Transform
- pos: -37.5,64.5
+ pos: 41.5,13.5
parent: 2
- - uid: 33666
+ - uid: 20008
components:
- type: Transform
- pos: -37.5,63.5
+ pos: 40.5,13.5
parent: 2
- - uid: 33667
+ - uid: 20009
components:
- type: Transform
- pos: -36.5,66.5
+ pos: 39.5,13.5
parent: 2
- - uid: 33668
+ - uid: 20156
components:
- type: Transform
- pos: -36.5,65.5
+ pos: 86.5,-17.5
parent: 2
- - uid: 33669
+ - uid: 20217
components:
- type: Transform
- pos: -36.5,64.5
+ pos: 39.5,14.5
parent: 2
- - uid: 33670
+ - uid: 20218
components:
- type: Transform
- pos: -36.5,63.5
+ pos: 38.5,14.5
parent: 2
- - uid: 33671
+ - uid: 20219
components:
- type: Transform
- pos: -38.5,62.5
+ pos: 37.5,14.5
parent: 2
- - uid: 33672
+ - uid: 20220
components:
- type: Transform
- pos: -37.5,62.5
+ pos: 37.5,13.5
parent: 2
- - uid: 33673
+ - uid: 20221
components:
- type: Transform
- pos: -36.5,62.5
+ pos: 37.5,12.5
parent: 2
-- proto: CarpetBlue
- entities:
- - uid: 850
+ - uid: 20222
components:
- type: Transform
- pos: -3.5,-31.5
+ pos: 37.5,11.5
parent: 2
- - uid: 1360
+ - uid: 20224
components:
- type: Transform
- pos: -2.5,-33.5
+ pos: 33.5,11.5
parent: 2
- - uid: 1836
+ - uid: 20225
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-41.5
+ pos: 34.5,11.5
parent: 2
- - uid: 1857
+ - uid: 20240
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-42.5
+ pos: 36.5,12.5
parent: 2
- - uid: 1896
+ - uid: 20321
components:
- type: Transform
- pos: 6.5,29.5
+ pos: 17.5,4.5
parent: 2
- - uid: 1897
+ - uid: 20571
components:
- type: Transform
- pos: 6.5,28.5
+ pos: 24.5,5.5
parent: 2
- - uid: 1953
+ - uid: 20605
components:
- type: Transform
- pos: 12.5,28.5
+ pos: -64.5,-20.5
parent: 2
- - uid: 1954
+ - uid: 20609
components:
- type: Transform
- pos: 11.5,28.5
+ pos: -64.5,-19.5
parent: 2
- - uid: 1955
+ - uid: 20613
components:
- type: Transform
- pos: 11.5,29.5
+ pos: 52.5,45.5
parent: 2
- - uid: 1957
+ - uid: 20888
components:
- type: Transform
- pos: 12.5,29.5
+ pos: -60.5,-24.5
parent: 2
- - uid: 1959
+ - uid: 20989
components:
- type: Transform
- pos: 13.5,29.5
+ pos: 1.5,29.5
parent: 2
- - uid: 1960
+ - uid: 21278
components:
- type: Transform
- pos: 13.5,28.5
+ pos: 7.5,54.5
parent: 2
- - uid: 1968
+ - uid: 21281
components:
- type: Transform
- pos: 7.5,28.5
+ pos: -38.5,34.5
parent: 2
- - uid: 1969
+ - uid: 21282
components:
- type: Transform
- pos: 7.5,29.5
+ pos: -38.5,33.5
parent: 2
- - uid: 1970
+ - uid: 21283
components:
- type: Transform
- pos: 8.5,29.5
+ pos: -38.5,32.5
parent: 2
- - uid: 1971
+ - uid: 21285
components:
- type: Transform
- pos: 8.5,28.5
+ pos: -55.5,-10.5
parent: 2
- - uid: 1972
+ - uid: 21360
components:
- type: Transform
- pos: 5.5,28.5
+ pos: -55.5,-11.5
parent: 2
- - uid: 1973
+ - uid: 21361
components:
- type: Transform
- pos: 5.5,29.5
+ pos: -55.5,-9.5
parent: 2
- - uid: 2063
+ - uid: 21362
components:
- type: Transform
- pos: -3.5,-33.5
+ pos: -55.5,-12.5
parent: 2
- - uid: 2269
+ - uid: 21363
components:
- type: Transform
- pos: -4.5,-33.5
+ pos: -58.5,-15.5
parent: 2
- - uid: 2274
+ - uid: 21364
components:
- type: Transform
- pos: -3.5,-32.5
+ pos: -38.5,27.5
parent: 2
- - uid: 2283
+ - uid: 21400
components:
- type: Transform
- pos: -2.5,-32.5
+ pos: -50.5,41.5
parent: 2
- - uid: 2557
+ - uid: 21479
components:
- type: Transform
- pos: 4.5,4.5
+ pos: -51.5,41.5
parent: 2
- - uid: 3335
+ - uid: 21514
components:
- type: Transform
- pos: 19.5,38.5
+ pos: -52.5,41.5
parent: 2
- - uid: 5903
+ - uid: 21515
components:
- type: Transform
- pos: 22.5,-24.5
+ pos: -38.5,31.5
parent: 2
- - uid: 5904
+ - uid: 21516
components:
- type: Transform
- pos: 25.5,-24.5
+ pos: -38.5,30.5
parent: 2
- - uid: 5905
+ - uid: 21533
components:
- type: Transform
- pos: 25.5,-25.5
+ pos: -38.5,28.5
parent: 2
- - uid: 5906
+ - uid: 21534
components:
- type: Transform
- pos: 26.5,-25.5
+ pos: 8.5,33.5
parent: 2
- - uid: 5907
+ - uid: 21535
components:
- type: Transform
- pos: 26.5,-24.5
+ pos: 8.5,32.5
parent: 2
- - uid: 7361
+ - uid: 21536
components:
- type: Transform
- pos: 5.5,-0.5
+ pos: -38.5,29.5
parent: 2
- - uid: 9141
+ - uid: 21537
components:
- type: Transform
- pos: -2.5,-31.5
+ pos: -38.5,26.5
parent: 2
- - uid: 9217
+ - uid: 21542
components:
- type: Transform
- pos: -4.5,-32.5
+ pos: -37.5,26.5
parent: 2
- - uid: 9536
+ - uid: 21591
components:
- type: Transform
- pos: -4.5,-31.5
+ pos: -61.5,-19.5
parent: 2
- - uid: 12215
+ - uid: 21592
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-42.5
+ pos: -61.5,-20.5
parent: 2
- - uid: 12243
+ - uid: 21593
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-42.5
+ pos: -58.5,-12.5
parent: 2
- - uid: 12244
+ - uid: 21594
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-42.5
+ pos: -56.5,-12.5
parent: 2
- - uid: 12308
+ - uid: 21779
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-41.5
+ pos: -2.5,38.5
parent: 2
- - uid: 12976
+ - uid: 21969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-41.5
+ pos: 12.5,48.5
parent: 2
- - uid: 12977
+ - uid: 22319
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-41.5
+ pos: -2.5,34.5
parent: 2
- - uid: 13102
+ - uid: 22545
components:
- type: Transform
- pos: 5.5,-32.5
+ pos: -10.5,-4.5
parent: 2
- - uid: 13103
+ - uid: 22578
components:
- type: Transform
- pos: 5.5,-33.5
+ pos: -10.5,-3.5
parent: 2
- - uid: 13104
+ - uid: 22716
components:
- type: Transform
- pos: 6.5,-32.5
+ pos: -10.5,-2.5
parent: 2
- - uid: 13105
+ - uid: 22746
components:
- type: Transform
- pos: 6.5,-33.5
+ pos: 9.5,27.5
parent: 2
- - uid: 13106
+ - uid: 22747
components:
- type: Transform
- pos: 7.5,-33.5
+ pos: 8.5,28.5
parent: 2
- - uid: 13107
+ - uid: 22756
components:
- type: Transform
- pos: 7.5,-32.5
+ pos: -10.5,-1.5
parent: 2
- - uid: 13108
+ - uid: 22764
components:
- type: Transform
- pos: 4.5,-32.5
+ pos: -10.5,-0.5
parent: 2
- - uid: 13109
+ - uid: 22892
components:
- type: Transform
- pos: 4.5,-33.5
+ pos: -10.5,0.5
parent: 2
- - uid: 14144
+ - uid: 22924
components:
- type: Transform
- pos: 10.5,49.5
+ pos: -10.5,1.5
parent: 2
- - uid: 14145
+ - uid: 22989
components:
- type: Transform
- pos: 10.5,48.5
+ pos: -10.5,2.5
parent: 2
- - uid: 14146
+ - uid: 23050
components:
- type: Transform
- pos: 10.5,47.5
+ pos: -61.5,-24.5
parent: 2
- - uid: 14147
+ - uid: 23088
components:
- type: Transform
- pos: 10.5,46.5
+ pos: -10.5,3.5
parent: 2
- - uid: 14148
+ - uid: 23224
components:
- type: Transform
- pos: 11.5,49.5
+ pos: -10.5,4.5
parent: 2
- - uid: 14149
+ - uid: 23226
components:
- type: Transform
- pos: 11.5,48.5
+ pos: -9.5,4.5
parent: 2
- - uid: 14150
+ - uid: 23248
components:
- type: Transform
- pos: 11.5,47.5
+ pos: 81.5,-21.5
parent: 2
- - uid: 14151
+ - uid: 23251
components:
- type: Transform
- pos: 11.5,46.5
+ pos: 88.5,-11.5
parent: 2
- - uid: 14152
+ - uid: 23301
components:
- type: Transform
- pos: 12.5,49.5
+ pos: 93.5,-11.5
parent: 2
- - uid: 14153
+ - uid: 23352
components:
- type: Transform
- pos: 12.5,48.5
+ pos: 84.5,-21.5
parent: 2
- - uid: 14154
+ - uid: 23590
components:
- type: Transform
- pos: 12.5,47.5
+ pos: 33.5,52.5
parent: 2
- - uid: 14155
+ - uid: 23591
components:
- type: Transform
- pos: 12.5,46.5
+ pos: 32.5,52.5
parent: 2
- - uid: 14156
+ - uid: 23900
components:
- type: Transform
- pos: 13.5,49.5
+ pos: -40.5,69.5
parent: 2
- - uid: 14157
+ - uid: 24136
components:
- type: Transform
- pos: 13.5,48.5
+ pos: -9.5,36.5
parent: 2
- - uid: 14158
+ - uid: 24657
components:
- type: Transform
- pos: 13.5,47.5
+ pos: -0.5,26.5
parent: 2
- - uid: 14159
+ - uid: 25262
components:
- type: Transform
- pos: 13.5,46.5
+ pos: 9.5,14.5
parent: 2
- - uid: 14161
+ - uid: 25411
components:
- type: Transform
- pos: 14.5,48.5
+ pos: 29.5,39.5
parent: 2
- - uid: 14162
+ - uid: 25429
components:
- type: Transform
- pos: 14.5,47.5
+ pos: 28.5,39.5
parent: 2
- - uid: 14163
+ - uid: 25442
components:
- type: Transform
- pos: 14.5,46.5
+ pos: 27.5,39.5
parent: 2
- - uid: 14227
+ - uid: 26230
components:
- type: Transform
- pos: 10.5,39.5
+ pos: 95.5,-24.5
parent: 2
- - uid: 14228
+ - uid: 26231
components:
- type: Transform
- pos: 10.5,38.5
+ pos: 96.5,-24.5
parent: 2
- - uid: 14229
+ - uid: 26248
components:
- type: Transform
- pos: 11.5,39.5
+ pos: 90.5,-21.5
parent: 2
- - uid: 14230
+ - uid: 26289
components:
- type: Transform
- pos: 11.5,38.5
+ pos: -42.5,20.5
parent: 2
- - uid: 14231
+ - uid: 26897
components:
- type: Transform
- pos: 12.5,39.5
+ pos: -47.5,41.5
parent: 2
- - uid: 14232
+ - uid: 27319
components:
- type: Transform
- pos: 12.5,38.5
+ pos: 11.5,15.5
parent: 2
- - uid: 14233
+ - uid: 27450
components:
- type: Transform
- pos: 13.5,39.5
+ pos: -25.5,6.5
parent: 2
- - uid: 14234
+ - uid: 27451
components:
- type: Transform
- pos: 13.5,38.5
+ pos: -27.5,6.5
parent: 2
- - uid: 14235
+ - uid: 27572
components:
- type: Transform
- pos: 5.5,40.5
+ pos: 42.5,13.5
parent: 2
- - uid: 14236
+ - uid: 27667
components:
- type: Transform
- pos: 5.5,39.5
+ pos: -44.5,41.5
parent: 2
- - uid: 14237
+ - uid: 27696
components:
- type: Transform
- pos: 5.5,38.5
+ pos: 38.5,15.5
parent: 2
- - uid: 14238
+ - uid: 27958
components:
- type: Transform
- pos: 5.5,37.5
+ pos: -61.5,-22.5
parent: 2
- - uid: 14239
+ - uid: 27997
components:
- type: Transform
- pos: 6.5,40.5
+ pos: -26.5,6.5
parent: 2
- - uid: 14240
+ - uid: 28099
components:
- type: Transform
- pos: 6.5,39.5
+ pos: -45.5,41.5
parent: 2
- - uid: 14241
+ - uid: 28126
components:
- type: Transform
- pos: 6.5,38.5
+ pos: 79.5,-12.5
parent: 2
- - uid: 14242
+ - uid: 28137
components:
- type: Transform
- pos: 6.5,37.5
+ pos: 79.5,-16.5
parent: 2
- - uid: 14243
+ - uid: 28139
components:
- type: Transform
- pos: 17.5,38.5
+ pos: 79.5,-11.5
parent: 2
- - uid: 14244
+ - uid: 28684
components:
- type: Transform
- pos: 17.5,37.5
+ pos: 10.5,48.5
parent: 2
- - uid: 14249
+ - uid: 28685
components:
- type: Transform
- pos: 18.5,38.5
+ pos: 7.5,47.5
parent: 2
- - uid: 14250
+ - uid: 28686
components:
- type: Transform
- pos: 18.5,37.5
+ pos: 7.5,46.5
parent: 2
- - uid: 14252
+ - uid: 28687
components:
- type: Transform
- pos: 19.5,37.5
+ pos: 7.5,48.5
parent: 2
- - uid: 15076
+ - uid: 28688
components:
- type: Transform
- pos: 24.5,49.5
+ pos: 11.5,48.5
parent: 2
- - uid: 15100
+ - uid: 28691
components:
- type: Transform
- pos: 25.5,49.5
+ pos: 9.5,48.5
parent: 2
- - uid: 15101
+ - uid: 28694
components:
- type: Transform
- pos: 25.5,50.5
+ pos: 18.5,34.5
parent: 2
- - uid: 15102
+ - uid: 28696
components:
- type: Transform
- pos: 26.5,50.5
+ pos: 18.5,35.5
parent: 2
- - uid: 15103
+ - uid: 28697
components:
- type: Transform
- pos: 26.5,49.5
+ pos: 8.5,48.5
parent: 2
- - uid: 15129
+ - uid: 28698
components:
- type: Transform
- pos: 24.5,50.5
+ pos: 18.5,36.5
parent: 2
- - uid: 15173
+ - uid: 28707
components:
- type: Transform
- pos: 4.5,-1.5
+ pos: 18.5,37.5
parent: 2
- - uid: 17311
+ - uid: 28708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,49.5
+ pos: 18.5,38.5
parent: 2
- - uid: 20952
+ - uid: 28795
components:
- type: Transform
- pos: -2.5,-0.5
+ pos: -70.5,2.5
parent: 2
- - uid: 21010
+ - uid: 28894
components:
- type: Transform
- pos: -1.5,5.5
+ pos: 6.5,46.5
parent: 2
- - uid: 21465
+ - uid: 29220
components:
- type: Transform
- pos: -2.5,5.5
+ pos: 79.5,-14.5
parent: 2
- - uid: 23245
+ - uid: 29221
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-42.5
+ pos: 80.5,-11.5
parent: 2
- - uid: 23316
+ - uid: 29332
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-41.5
+ pos: 89.5,-21.5
parent: 2
- - uid: 23317
+ - uid: 29333
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-41.5
+ pos: 83.5,-21.5
parent: 2
- - uid: 23318
+ - uid: 29605
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-42.5
+ pos: 97.5,-24.5
parent: 2
- - uid: 23319
+ - uid: 29642
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-41.5
+ pos: -21.5,-24.5
parent: 2
- - uid: 23320
+ - uid: 29749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-42.5
+ pos: 85.5,-11.5
parent: 2
- - uid: 23324
+ - uid: 29966
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-42.5
+ pos: 17.5,48.5
parent: 2
- - uid: 23325
+ - uid: 29967
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-41.5
+ pos: 18.5,48.5
parent: 2
- - uid: 23680
+ - uid: 29968
components:
- type: Transform
- pos: -2.5,6.5
+ pos: 18.5,47.5
parent: 2
- - uid: 24653
+ - uid: 29970
components:
- type: Transform
- pos: 5.5,-1.5
+ pos: -61.5,-23.5
parent: 2
- - uid: 24656
+ - uid: 29975
components:
- type: Transform
- pos: -1.5,6.5
+ pos: 18.5,46.5
parent: 2
- - uid: 25255
+ - uid: 30113
components:
- type: Transform
- pos: 4.5,-0.5
+ pos: 98.5,77.5
parent: 2
- - uid: 25312
+ - uid: 30254
components:
- type: Transform
- pos: 5.5,4.5
+ pos: 81.5,-11.5
parent: 2
- - uid: 26130
+ - uid: 30302
components:
- type: Transform
- pos: 5.5,5.5
+ pos: -30.5,-13.5
parent: 2
- - uid: 26847
+ - uid: 30304
components:
- type: Transform
- pos: 4.5,5.5
+ pos: 15.5,48.5
parent: 2
- - uid: 26854
+ - uid: 30306
components:
- type: Transform
- pos: -2.5,-1.5
+ pos: 16.5,48.5
parent: 2
- - uid: 34047
+ - uid: 30313
components:
- type: Transform
- pos: -1.5,-0.5
+ pos: -30.5,-12.5
parent: 2
- - uid: 34048
+ - uid: 30314
components:
- type: Transform
- pos: -1.5,-1.5
+ pos: -63.5,9.5
parent: 2
-- proto: CarpetGreen
- entities:
- - uid: 568
+ - uid: 30316
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,17.5
+ pos: -63.5,8.5
parent: 2
- - uid: 3206
+ - uid: 30317
components:
- type: Transform
- pos: -28.5,-10.5
+ pos: -63.5,10.5
parent: 2
- - uid: 8380
+ - uid: 30325
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-14.5
+ pos: 14.5,48.5
parent: 2
- - uid: 13818
+ - uid: 30329
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,16.5
+ pos: 13.5,48.5
parent: 2
- - uid: 18618
+ - uid: 30494
components:
- type: Transform
- pos: -26.5,-11.5
+ pos: 1.5,26.5
parent: 2
- - uid: 19407
+ - uid: 30794
components:
- type: Transform
- pos: -61.5,-2.5
+ pos: 44.5,-25.5
parent: 2
- - uid: 21097
+ - uid: 30802
components:
- type: Transform
- pos: -60.5,-2.5
+ pos: 23.5,7.5
parent: 2
- - uid: 21101
+ - uid: 30807
components:
- type: Transform
- pos: -61.5,-3.5
+ pos: -71.5,2.5
parent: 2
- - uid: 21104
+ - uid: 30820
components:
- type: Transform
- pos: -27.5,-11.5
+ pos: 4.5,56.5
parent: 2
- - uid: 22542
+ - uid: 30821
components:
- type: Transform
- pos: -26.5,-10.5
+ pos: 5.5,56.5
parent: 2
- - uid: 22585
+ - uid: 30859
components:
- type: Transform
- pos: -27.5,-10.5
+ pos: 16.5,6.5
parent: 2
- - uid: 22634
+ - uid: 30860
components:
- type: Transform
- pos: -28.5,-11.5
+ pos: 16.5,5.5
parent: 2
- - uid: 22966
+ - uid: 30861
components:
- type: Transform
- pos: -60.5,-3.5
+ pos: 16.5,4.5
parent: 2
- - uid: 22967
+ - uid: 30862
components:
- type: Transform
- pos: -59.5,-2.5
+ pos: 16.5,3.5
parent: 2
- - uid: 22968
+ - uid: 30864
components:
- type: Transform
- pos: -59.5,-3.5
+ pos: 19.5,7.5
parent: 2
- - uid: 22969
+ - uid: 30876
components:
- type: Transform
- pos: -58.5,-2.5
+ pos: 6.5,56.5
parent: 2
- - uid: 22970
+ - uid: 30910
components:
- type: Transform
- pos: -58.5,-3.5
+ pos: 21.5,7.5
parent: 2
- - uid: 23488
+ - uid: 30916
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,18.5
+ pos: 20.5,7.5
parent: 2
- - uid: 29307
+ - uid: 30936
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,18.5
+ pos: 16.5,2.5
parent: 2
- - uid: 29997
+ - uid: 30937
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,16.5
+ pos: 16.5,1.5
parent: 2
- - uid: 30008
+ - uid: 30938
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,17.5
+ pos: 16.5,0.5
parent: 2
- - uid: 30421
+ - uid: 30939
components:
- type: Transform
- pos: 11.5,-13.5
+ pos: 16.5,-0.5
parent: 2
- - uid: 30445
+ - uid: 30940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-13.5
+ pos: 16.5,-1.5
parent: 2
- - uid: 30446
+ - uid: 30941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-14.5
+ pos: 16.5,-2.5
parent: 2
- - uid: 30447
+ - uid: 30942
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-13.5
+ pos: 16.5,-3.5
parent: 2
- - uid: 30448
+ - uid: 30943
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-14.5
+ pos: 17.5,-3.5
parent: 2
- - uid: 30561
+ - uid: 30944
components:
- type: Transform
- pos: -47.5,-4.5
+ pos: 18.5,-3.5
parent: 2
- - uid: 30563
+ - uid: 30945
components:
- type: Transform
- pos: -46.5,-4.5
+ pos: 19.5,-3.5
parent: 2
- - uid: 30565
+ - uid: 30946
components:
- type: Transform
- pos: -45.5,-4.5
+ pos: 20.5,-3.5
parent: 2
- - uid: 30567
+ - uid: 30947
components:
- type: Transform
- pos: -47.5,1.5
+ pos: 21.5,-3.5
parent: 2
- - uid: 30568
+ - uid: 30948
components:
- type: Transform
- pos: -47.5,-3.5
+ pos: 22.5,-3.5
parent: 2
- - uid: 30569
+ - uid: 30949
components:
- type: Transform
- pos: -47.5,0.5
+ pos: 11.5,7.5
parent: 2
- - uid: 30570
+ - uid: 30950
components:
- type: Transform
- pos: -47.5,-2.5
+ pos: 10.5,7.5
parent: 2
- - uid: 30571
+ - uid: 30951
components:
- type: Transform
- pos: -47.5,-0.5
+ pos: 10.5,6.5
parent: 2
- - uid: 30572
+ - uid: 30952
components:
- type: Transform
- pos: -47.5,-1.5
+ pos: 10.5,5.5
parent: 2
- - uid: 30573
+ - uid: 30953
components:
- type: Transform
- pos: -47.5,2.5
+ pos: 10.5,4.5
parent: 2
- - uid: 30578
+ - uid: 30954
components:
- type: Transform
- pos: -46.5,-3.5
+ pos: 10.5,3.5
parent: 2
- - uid: 30579
+ - uid: 30955
components:
- type: Transform
- pos: -46.5,-2.5
+ pos: 10.5,2.5
parent: 2
- - uid: 30580
+ - uid: 30956
components:
- type: Transform
- pos: -46.5,-1.5
+ pos: 10.5,1.5
parent: 2
- - uid: 30581
+ - uid: 30957
components:
- type: Transform
- pos: -46.5,-0.5
+ pos: 10.5,0.5
parent: 2
- - uid: 30582
+ - uid: 30958
components:
- type: Transform
- pos: -46.5,0.5
+ pos: 10.5,-0.5
parent: 2
- - uid: 30583
+ - uid: 30959
components:
- type: Transform
- pos: -46.5,1.5
+ pos: 10.5,-1.5
parent: 2
- - uid: 30584
+ - uid: 30960
components:
- type: Transform
- pos: -46.5,2.5
+ pos: 10.5,-2.5
parent: 2
- - uid: 30589
+ - uid: 30961
components:
- type: Transform
- pos: -45.5,-3.5
+ pos: 10.5,-3.5
parent: 2
- - uid: 30590
+ - uid: 30971
components:
- type: Transform
- pos: -45.5,-2.5
+ pos: 10.5,-12.5
parent: 2
- - uid: 30591
+ - uid: 30983
components:
- type: Transform
- pos: -45.5,-1.5
+ pos: 28.5,7.5
parent: 2
- - uid: 30592
+ - uid: 30984
components:
- type: Transform
- pos: -45.5,-0.5
+ pos: 29.5,7.5
parent: 2
- - uid: 30593
+ - uid: 30985
components:
- type: Transform
- pos: -45.5,0.5
+ pos: 30.5,7.5
parent: 2
- - uid: 30594
+ - uid: 30986
components:
- type: Transform
- pos: -45.5,1.5
+ pos: 31.5,7.5
parent: 2
- - uid: 30607
+ - uid: 30987
components:
- type: Transform
- pos: -45.5,2.5
+ pos: 31.5,6.5
parent: 2
- - uid: 30661
+ - uid: 30988
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-11.5
+ pos: 31.5,5.5
parent: 2
- - uid: 30662
+ - uid: 30989
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-12.5
+ pos: 31.5,4.5
parent: 2
- - uid: 30663
+ - uid: 30990
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-11.5
+ pos: 31.5,3.5
parent: 2
- - uid: 30664
+ - uid: 30991
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-12.5
+ pos: 31.5,2.5
parent: 2
- - uid: 30665
+ - uid: 30992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-11.5
+ pos: 31.5,1.5
parent: 2
- - uid: 30666
+ - uid: 30993
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-12.5
+ pos: 31.5,0.5
parent: 2
-- proto: CarpetOrange
- entities:
- - uid: 6585
+ - uid: 30994
components:
- type: Transform
- pos: -28.5,-24.5
+ pos: 32.5,0.5
parent: 2
- - uid: 6586
+ - uid: 31010
components:
- type: Transform
- pos: -27.5,-24.5
+ pos: -35.5,10.5
parent: 2
- - uid: 6587
+ - uid: 31012
components:
- type: Transform
- pos: -26.5,-24.5
+ pos: -14.5,13.5
parent: 2
- - uid: 6588
+ - uid: 31013
components:
- type: Transform
- pos: -27.5,-18.5
+ pos: -13.5,13.5
parent: 2
- - uid: 6589
+ - uid: 31014
components:
- type: Transform
- pos: -26.5,-25.5
+ pos: -12.5,13.5
parent: 2
- - uid: 6590
+ - uid: 31015
components:
- type: Transform
- pos: -27.5,-25.5
+ pos: -11.5,13.5
parent: 2
- - uid: 6591
+ - uid: 31016
components:
- type: Transform
- pos: -28.5,-25.5
+ pos: -10.5,13.5
parent: 2
- - uid: 6592
+ - uid: 31017
components:
- type: Transform
- pos: -27.5,-19.5
+ pos: -10.5,12.5
parent: 2
- - uid: 6593
+ - uid: 31018
components:
- type: Transform
- pos: -27.5,-20.5
+ pos: -10.5,11.5
parent: 2
- - uid: 6594
+ - uid: 31019
components:
- type: Transform
- pos: -27.5,-21.5
+ pos: -10.5,10.5
parent: 2
- - uid: 6595
+ - uid: 31020
components:
- type: Transform
- pos: -26.5,-18.5
+ pos: -10.5,9.5
parent: 2
- - uid: 6596
+ - uid: 31021
components:
- type: Transform
- pos: -26.5,-19.5
+ pos: -10.5,8.5
parent: 2
- - uid: 6597
+ - uid: 31022
components:
- type: Transform
- pos: -26.5,-20.5
+ pos: -10.5,7.5
parent: 2
- - uid: 6598
+ - uid: 31023
components:
- type: Transform
- pos: -26.5,-21.5
+ pos: -10.5,6.5
parent: 2
- - uid: 6599
+ - uid: 31024
components:
- type: Transform
- pos: -25.5,-18.5
+ pos: -10.5,5.5
parent: 2
- - uid: 6600
+ - uid: 31025
components:
- type: Transform
- pos: -25.5,-19.5
+ pos: 19.5,45.5
parent: 2
- - uid: 6601
+ - uid: 31026
components:
- type: Transform
- pos: -25.5,-20.5
+ pos: 20.5,45.5
parent: 2
- - uid: 6602
+ - uid: 31027
components:
- type: Transform
- pos: -25.5,-21.5
+ pos: 21.5,45.5
parent: 2
- - uid: 6603
+ - uid: 31028
components:
- type: Transform
- pos: -24.5,-18.5
+ pos: 22.5,45.5
parent: 2
- - uid: 6604
+ - uid: 31029
components:
- type: Transform
- pos: -24.5,-19.5
+ pos: 23.5,45.5
parent: 2
- - uid: 6605
+ - uid: 31030
components:
- type: Transform
- pos: -24.5,-20.5
+ pos: 24.5,45.5
parent: 2
- - uid: 6606
+ - uid: 31031
components:
- type: Transform
- pos: -24.5,-21.5
+ pos: 25.5,45.5
parent: 2
- - uid: 6640
+ - uid: 31032
components:
- type: Transform
- pos: -10.5,-33.5
+ pos: 26.5,45.5
parent: 2
- - uid: 6642
+ - uid: 31065
components:
- type: Transform
- pos: -12.5,-33.5
+ pos: 7.5,56.5
parent: 2
- - uid: 6643
+ - uid: 31076
components:
- type: Transform
- pos: -12.5,-34.5
+ pos: 7.5,55.5
parent: 2
- - uid: 6644
+ - uid: 31089
components:
- type: Transform
- pos: -11.5,-33.5
+ pos: 34.5,33.5
parent: 2
- - uid: 6645
+ - uid: 31091
components:
- type: Transform
- pos: -11.5,-34.5
+ pos: 35.5,33.5
parent: 2
- - uid: 6647
+ - uid: 31093
components:
- type: Transform
- pos: -10.5,-34.5
+ pos: 36.5,33.5
parent: 2
- - uid: 30431
+ - uid: 31094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-13.5
+ pos: 37.5,33.5
parent: 2
- - uid: 30432
+ - uid: 31095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-14.5
+ pos: 38.5,33.5
parent: 2
- - uid: 30433
+ - uid: 31101
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-13.5
+ pos: 39.5,33.5
parent: 2
- - uid: 30434
+ - uid: 31130
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-14.5
+ pos: 40.5,33.5
parent: 2
- - uid: 30435
+ - uid: 31139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-13.5
+ pos: 40.5,34.5
parent: 2
- - uid: 30436
+ - uid: 31147
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-14.5
+ pos: 40.5,35.5
parent: 2
- - uid: 30439
+ - uid: 31182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-13.5
+ pos: -82.5,8.5
parent: 2
- - uid: 30440
+ - uid: 31220
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-14.5
+ pos: 79.5,-15.5
parent: 2
- - uid: 30441
+ - uid: 31264
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-13.5
+ pos: -38.5,68.5
parent: 2
- - uid: 30442
+ - uid: 31265
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-14.5
+ pos: 40.5,36.5
parent: 2
- - uid: 30443
+ - uid: 31266
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-13.5
+ pos: 40.5,37.5
parent: 2
- - uid: 30444
+ - uid: 31267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-14.5
+ pos: 40.5,38.5
parent: 2
-- proto: CarpetPurple
- entities:
- - uid: 2709
+ - uid: 31268
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,24.5
+ pos: 40.5,39.5
parent: 2
- - uid: 2936
+ - uid: 31269
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,26.5
+ pos: 40.5,40.5
parent: 2
- - uid: 4528
+ - uid: 31270
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,28.5
+ pos: 40.5,41.5
parent: 2
- - uid: 5150
+ - uid: 31304
components:
- type: Transform
- pos: 28.5,28.5
+ pos: 41.5,41.5
parent: 2
- - uid: 5488
+ - uid: 31366
components:
- type: Transform
- pos: 46.5,26.5
+ pos: 43.5,32.5
parent: 2
- - uid: 5489
+ - uid: 31367
components:
- type: Transform
- pos: 46.5,25.5
+ pos: 44.5,32.5
parent: 2
- - uid: 5490
+ - uid: 31368
components:
- type: Transform
- pos: 47.5,25.5
+ pos: 45.5,32.5
parent: 2
- - uid: 5491
+ - uid: 31369
components:
- type: Transform
- pos: 47.5,26.5
+ pos: 46.5,32.5
parent: 2
- - uid: 5492
+ - uid: 31370
components:
- type: Transform
- pos: 48.5,26.5
+ pos: 47.5,32.5
parent: 2
- - uid: 5493
+ - uid: 31371
components:
- type: Transform
- pos: 48.5,25.5
+ pos: 48.5,32.5
parent: 2
- - uid: 5494
+ - uid: 31372
components:
- type: Transform
- pos: 48.5,24.5
+ pos: -46.5,64.5
parent: 2
- - uid: 5495
+ - uid: 31373
components:
- type: Transform
- pos: 47.5,24.5
+ pos: 49.5,32.5
parent: 2
- - uid: 5496
+ - uid: 31374
components:
- type: Transform
- pos: 46.5,24.5
+ pos: 50.5,32.5
parent: 2
- - uid: 5497
+ - uid: 31375
components:
- type: Transform
- pos: 45.5,24.5
+ pos: 51.5,32.5
parent: 2
- - uid: 5498
+ - uid: 31376
components:
- type: Transform
- pos: 45.5,25.5
+ pos: 52.5,32.5
parent: 2
- - uid: 5499
+ - uid: 31377
components:
- type: Transform
- pos: 45.5,26.5
+ pos: 53.5,32.5
parent: 2
- - uid: 5500
+ - uid: 31378
components:
- type: Transform
- pos: 43.5,24.5
+ pos: 54.5,32.5
parent: 2
- - uid: 5501
+ - uid: 31379
components:
- type: Transform
- pos: 42.5,24.5
+ pos: 55.5,32.5
parent: 2
- - uid: 5502
+ - uid: 31380
components:
- type: Transform
- pos: 42.5,25.5
+ pos: 56.5,32.5
parent: 2
- - uid: 5503
+ - uid: 31381
components:
- type: Transform
- pos: 43.5,25.5
+ pos: 57.5,32.5
parent: 2
- - uid: 5504
+ - uid: 31382
components:
- type: Transform
- pos: 44.5,25.5
+ pos: 58.5,32.5
parent: 2
- - uid: 5505
+ - uid: 31383
components:
- type: Transform
- pos: 44.5,24.5
+ pos: 59.5,32.5
parent: 2
- - uid: 5583
+ - uid: 31384
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,29.5
+ pos: 60.5,32.5
parent: 2
- - uid: 5584
+ - uid: 31385
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,29.5
+ pos: 61.5,32.5
parent: 2
- - uid: 5588
+ - uid: 31386
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,28.5
+ pos: 62.5,32.5
parent: 2
- - uid: 5593
+ - uid: 31387
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,27.5
+ pos: 62.5,31.5
parent: 2
- - uid: 5594
+ - uid: 31388
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 63.5,27.5
+ pos: 62.5,30.5
parent: 2
- - uid: 5598
+ - uid: 31389
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,29.5
+ pos: 62.5,29.5
parent: 2
- - uid: 5599
+ - uid: 31390
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,28.5
+ pos: 62.5,28.5
parent: 2
- - uid: 5600
+ - uid: 31391
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,27.5
+ pos: 62.5,27.5
parent: 2
- - uid: 5601
+ - uid: 31392
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,26.5
+ pos: 62.5,26.5
parent: 2
- - uid: 5602
+ - uid: 31393
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,29.5
+ pos: 61.5,26.5
parent: 2
- - uid: 5603
+ - uid: 31394
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,28.5
+ pos: 61.5,25.5
parent: 2
- - uid: 5604
+ - uid: 31395
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,27.5
+ pos: 61.5,24.5
parent: 2
- - uid: 5605
+ - uid: 31396
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,26.5
+ pos: 62.5,24.5
parent: 2
- - uid: 5606
+ - uid: 31397
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,29.5
+ pos: 63.5,24.5
parent: 2
- - uid: 5607
+ - uid: 31398
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,28.5
+ pos: 64.5,24.5
parent: 2
- - uid: 5608
+ - uid: 31399
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,27.5
+ pos: 65.5,24.5
parent: 2
- - uid: 5610
+ - uid: 31401
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,29.5
+ pos: 66.5,24.5
parent: 2
- - uid: 5611
+ - uid: 31404
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,28.5
+ pos: 67.5,24.5
parent: 2
- - uid: 5612
+ - uid: 31405
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,27.5
+ pos: 68.5,24.5
parent: 2
- - uid: 5613
+ - uid: 31406
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,26.5
+ pos: 68.5,25.5
parent: 2
- - uid: 5614
+ - uid: 31432
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,26.5
+ pos: 27.5,-31.5
parent: 2
- - uid: 5615
+ - uid: 31433
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,27.5
+ pos: 27.5,-32.5
parent: 2
- - uid: 5616
+ - uid: 31437
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,28.5
+ pos: 43.5,-26.5
parent: 2
- - uid: 5617
+ - uid: 31438
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,29.5
+ pos: 42.5,-26.5
parent: 2
- - uid: 5618
+ - uid: 31439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,30.5
+ pos: 41.5,-26.5
parent: 2
- - uid: 5619
+ - uid: 31440
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,30.5
+ pos: 40.5,-26.5
parent: 2
- - uid: 5620
+ - uid: 31441
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,30.5
+ pos: 39.5,-26.5
parent: 2
- - uid: 5662
+ - uid: 31442
components:
- type: Transform
- pos: 28.5,24.5
+ pos: 38.5,-26.5
parent: 2
- - uid: 5664
+ - uid: 31449
components:
- type: Transform
- pos: 29.5,23.5
+ pos: 37.5,-26.5
parent: 2
- - uid: 5665
+ - uid: 31459
components:
- type: Transform
- pos: 28.5,23.5
+ pos: 36.5,-26.5
parent: 2
- - uid: 5666
+ - uid: 31460
components:
- type: Transform
- pos: 27.5,23.5
+ pos: 35.5,-26.5
parent: 2
- - uid: 5667
+ - uid: 31462
components:
- type: Transform
- pos: 30.5,23.5
+ pos: 34.5,-26.5
parent: 2
- - uid: 5668
+ - uid: 31470
components:
- type: Transform
- pos: 30.5,24.5
+ pos: 33.5,-26.5
parent: 2
- - uid: 17858
+ - uid: 31471
components:
- type: Transform
- pos: 29.5,28.5
+ pos: 32.5,-26.5
parent: 2
- - uid: 17868
+ - uid: 31474
components:
- type: Transform
- pos: 28.5,27.5
+ pos: 31.5,-26.5
parent: 2
- - uid: 22422
+ - uid: 31481
components:
- type: Transform
- pos: 29.5,27.5
+ pos: 30.5,-26.5
parent: 2
- - uid: 22423
+ - uid: 31482
components:
- type: Transform
- pos: 30.5,28.5
+ pos: 29.5,-26.5
parent: 2
- - uid: 22424
+ - uid: 31483
components:
- type: Transform
- pos: 30.5,27.5
+ pos: 28.5,-26.5
parent: 2
- - uid: 22425
+ - uid: 31484
components:
- type: Transform
- pos: 28.5,29.5
+ pos: 28.5,-27.5
parent: 2
- - uid: 22426
+ - uid: 31485
components:
- type: Transform
- pos: 29.5,29.5
+ pos: 28.5,-28.5
parent: 2
- - uid: 22427
+ - uid: 31486
components:
- type: Transform
- pos: 30.5,29.5
+ pos: 28.5,-29.5
parent: 2
- - uid: 22428
+ - uid: 31487
components:
- type: Transform
- pos: 36.5,25.5
+ pos: 28.5,-30.5
parent: 2
- - uid: 22429
+ - uid: 31488
components:
- type: Transform
- pos: 36.5,25.5
+ pos: 28.5,-31.5
parent: 2
- - uid: 22430
+ - uid: 31489
components:
- type: Transform
- pos: 36.5,24.5
+ pos: 44.5,-27.5
parent: 2
- - uid: 22431
+ - uid: 31490
components:
- type: Transform
- pos: 37.5,25.5
+ pos: 44.5,-28.5
parent: 2
- - uid: 22432
+ - uid: 31491
components:
- type: Transform
- pos: 37.5,24.5
+ pos: 39.5,31.5
parent: 2
- - uid: 22433
+ - uid: 31492
components:
- type: Transform
- pos: 38.5,25.5
+ pos: 44.5,-29.5
parent: 2
- - uid: 22434
+ - uid: 31493
components:
- type: Transform
- pos: 38.5,24.5
+ pos: 45.5,-29.5
parent: 2
- - uid: 22435
+ - uid: 31494
components:
- type: Transform
- pos: 39.5,25.5
+ pos: 46.5,-29.5
parent: 2
- - uid: 22436
+ - uid: 31495
components:
- type: Transform
- pos: 39.5,24.5
+ pos: 47.5,-29.5
parent: 2
- - uid: 25500
+ - uid: 31496
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,24.5
+ pos: 48.5,-29.5
parent: 2
- - uid: 30301
+ - uid: 31501
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,18.5
+ pos: 27.5,45.5
parent: 2
- - uid: 30303
+ - uid: 31503
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,18.5
+ pos: 49.5,-29.5
parent: 2
- - uid: 30305
+ - uid: 31506
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,19.5
+ pos: 50.5,-29.5
parent: 2
- - uid: 30307
+ - uid: 31507
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,18.5
+ pos: 51.5,-29.5
parent: 2
- - uid: 30308
+ - uid: 31508
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,18.5
+ pos: 52.5,-29.5
parent: 2
- - uid: 30309
+ - uid: 31509
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,19.5
+ pos: 53.5,-29.5
parent: 2
- - uid: 30310
+ - uid: 31510
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,19.5
+ pos: 54.5,-29.5
parent: 2
- - uid: 30311
+ - uid: 31511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,18.5
+ pos: 55.5,-29.5
parent: 2
- - uid: 30312
+ - uid: 31513
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,19.5
+ pos: 55.5,-30.5
parent: 2
- - uid: 30315
+ - uid: 31514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,19.5
+ pos: 55.5,-31.5
parent: 2
-- proto: CarpetSBlue
- entities:
- - uid: 32559
+ - uid: 31515
components:
- type: Transform
- pos: 82.5,72.5
+ pos: 55.5,-32.5
parent: 2
- - uid: 32560
+ - uid: 31516
components:
- type: Transform
- pos: 82.5,71.5
+ pos: 55.5,-33.5
parent: 2
- - uid: 32561
+ - uid: 31517
components:
- type: Transform
- pos: 82.5,70.5
+ pos: 55.5,-34.5
parent: 2
- - uid: 32562
+ - uid: 31518
components:
- type: Transform
- pos: 83.5,72.5
+ pos: 55.5,-35.5
parent: 2
- - uid: 32563
+ - uid: 31519
components:
- type: Transform
- pos: 83.5,71.5
+ pos: 55.5,-36.5
parent: 2
- - uid: 32564
+ - uid: 31520
components:
- type: Transform
- pos: 83.5,70.5
+ pos: 54.5,-36.5
parent: 2
- - uid: 32565
+ - uid: 31521
components:
- type: Transform
- pos: 84.5,72.5
+ pos: 56.5,-30.5
parent: 2
- - uid: 32566
+ - uid: 31522
components:
- type: Transform
- pos: 84.5,71.5
+ pos: 57.5,-30.5
parent: 2
- - uid: 32567
+ - uid: 31523
components:
- type: Transform
- pos: 84.5,70.5
+ pos: 58.5,-30.5
parent: 2
-- proto: Catwalk
- entities:
- - uid: 63
+ - uid: 31524
components:
- type: Transform
- pos: 78.5,-0.5
+ pos: 59.5,-30.5
parent: 2
- - uid: 165
+ - uid: 31525
components:
- type: Transform
- pos: 41.5,15.5
+ pos: 60.5,-30.5
parent: 2
- - uid: 183
+ - uid: 31526
components:
- type: Transform
- pos: 40.5,15.5
+ pos: 61.5,-30.5
parent: 2
- - uid: 211
+ - uid: 31527
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,35.5
+ pos: 62.5,-30.5
parent: 2
- - uid: 284
+ - uid: 31529
components:
- type: Transform
- pos: -43.5,56.5
+ pos: 62.5,-29.5
parent: 2
- - uid: 301
+ - uid: 31530
components:
- type: Transform
- pos: -46.5,64.5
+ pos: 63.5,-29.5
parent: 2
- - uid: 330
+ - uid: 31531
components:
- type: Transform
- pos: -42.5,56.5
+ pos: 63.5,-28.5
parent: 2
- - uid: 441
+ - uid: 31532
components:
- type: Transform
- pos: 81.5,-17.5
+ pos: 64.5,-28.5
parent: 2
- - uid: 567
+ - uid: 31533
components:
- type: Transform
- pos: 78.5,0.5
+ pos: 65.5,-28.5
parent: 2
- - uid: 585
+ - uid: 31534
components:
- type: Transform
- pos: 78.5,1.5
+ pos: 66.5,-28.5
parent: 2
- - uid: 591
+ - uid: 31535
components:
- type: Transform
- pos: 80.5,2.5
+ pos: 66.5,-27.5
parent: 2
- - uid: 637
+ - uid: 31536
components:
- type: Transform
- pos: 78.5,2.5
+ pos: 67.5,-27.5
parent: 2
- - uid: 660
+ - uid: 31537
components:
- type: Transform
- pos: -32.5,17.5
+ pos: 68.5,-27.5
parent: 2
- - uid: 679
+ - uid: 31538
components:
- type: Transform
- pos: 80.5,-0.5
+ pos: 68.5,-26.5
parent: 2
- - uid: 684
+ - uid: 31539
components:
- type: Transform
- pos: 80.5,0.5
+ pos: 69.5,-26.5
parent: 2
- - uid: 685
+ - uid: 31540
components:
- type: Transform
- pos: 80.5,1.5
+ pos: 69.5,-25.5
parent: 2
- - uid: 687
+ - uid: 31541
components:
- type: Transform
- pos: 38.5,14.5
+ pos: 69.5,-24.5
parent: 2
- - uid: 688
+ - uid: 31542
components:
- type: Transform
- pos: 39.5,14.5
+ pos: 70.5,-24.5
parent: 2
- - uid: 730
+ - uid: 31543
components:
- type: Transform
- pos: 39.5,15.5
+ pos: 70.5,-23.5
parent: 2
- - uid: 827
+ - uid: 31544
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-7.5
+ pos: 70.5,-22.5
parent: 2
- - uid: 1502
+ - uid: 31545
components:
- type: Transform
- pos: 17.5,13.5
+ pos: 70.5,-21.5
parent: 2
- - uid: 1504
+ - uid: 31546
components:
- type: Transform
- pos: 19.5,15.5
+ pos: 71.5,-21.5
parent: 2
- - uid: 1506
+ - uid: 31547
components:
- type: Transform
- pos: 18.5,14.5
+ pos: 71.5,-20.5
parent: 2
- - uid: 1511
+ - uid: 31548
components:
- type: Transform
- pos: 17.5,15.5
+ pos: 72.5,-20.5
parent: 2
- - uid: 1535
+ - uid: 31560
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,34.5
+ pos: 73.5,-20.5
parent: 2
- - uid: 1536
+ - uid: 31562
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,34.5
+ pos: 74.5,-20.5
parent: 2
- - uid: 1545
+ - uid: 31563
components:
- type: Transform
- pos: -55.5,-31.5
+ pos: 75.5,-20.5
parent: 2
- - uid: 1610
+ - uid: 31580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,22.5
+ pos: 76.5,-20.5
parent: 2
- - uid: 1612
+ - uid: 31581
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,24.5
+ pos: 76.5,-19.5
parent: 2
- - uid: 1711
+ - uid: 31582
components:
- type: Transform
- pos: -56.5,-31.5
+ pos: 76.5,-18.5
parent: 2
- - uid: 1712
+ - uid: 31583
components:
- type: Transform
- pos: -61.5,-31.5
+ pos: 75.5,-18.5
parent: 2
- - uid: 1717
+ - uid: 31593
components:
- type: Transform
- pos: -60.5,-31.5
+ pos: 1.5,-28.5
parent: 2
- - uid: 1718
+ - uid: 31594
components:
- type: Transform
- pos: -59.5,-31.5
+ pos: 1.5,-27.5
parent: 2
- - uid: 1719
+ - uid: 31595
components:
- type: Transform
- pos: -58.5,-31.5
+ pos: 1.5,-26.5
parent: 2
- - uid: 1735
+ - uid: 31632
components:
- type: Transform
- pos: -57.5,-31.5
+ pos: 1.5,-25.5
parent: 2
- - uid: 2246
+ - uid: 31640
components:
- type: Transform
- pos: 7.5,-17.5
+ pos: 1.5,-24.5
parent: 2
- - uid: 2346
+ - uid: 31658
components:
- type: Transform
- pos: -46.5,56.5
+ pos: -63.5,-21.5
parent: 2
- - uid: 2359
+ - uid: 31730
components:
- type: Transform
- pos: -60.5,32.5
+ pos: 11.5,16.5
parent: 2
- - uid: 2517
+ - uid: 31731
components:
- type: Transform
- pos: 80.5,-5.5
+ pos: -81.5,8.5
parent: 2
- - uid: 2518
+ - uid: 31741
components:
- type: Transform
- pos: 80.5,-1.5
+ pos: 11.5,17.5
parent: 2
- - uid: 2520
+ - uid: 31759
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-20.5
+ pos: -80.5,8.5
parent: 2
- - uid: 2587
+ - uid: 31766
components:
- type: Transform
- pos: -46.5,59.5
+ pos: -79.5,8.5
parent: 2
- - uid: 2711
+ - uid: 31768
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,13.5
+ pos: -82.5,9.5
parent: 2
- - uid: 3333
+ - uid: 31770
components:
- type: Transform
- pos: 33.5,36.5
+ pos: -82.5,10.5
parent: 2
- - uid: 3345
+ - uid: 31771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-6.5
+ pos: -82.5,11.5
parent: 2
- - uid: 3429
+ - uid: 31961
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-11.5
+ pos: -12.5,44.5
parent: 2
- - uid: 3565
+ - uid: 31962
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,14.5
+ pos: -13.5,44.5
parent: 2
- - uid: 3585
+ - uid: 31963
components:
- type: Transform
- pos: -61.5,33.5
+ pos: -14.5,44.5
parent: 2
- - uid: 3633
+ - uid: 31964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-8.5
+ pos: -15.5,44.5
parent: 2
- - uid: 3651
+ - uid: 31965
components:
- type: Transform
- pos: -60.5,27.5
+ pos: -16.5,44.5
parent: 2
- - uid: 3659
+ - uid: 31966
components:
- type: Transform
- pos: -62.5,32.5
+ pos: -17.5,44.5
parent: 2
- - uid: 3662
+ - uid: 31991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,49.5
+ pos: -18.5,44.5
parent: 2
- - uid: 3767
+ - uid: 31992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-7.5
+ pos: -19.5,44.5
parent: 2
- - uid: 3824
+ - uid: 31993
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-5.5
+ pos: -20.5,44.5
parent: 2
- - uid: 3825
+ - uid: 31994
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
+ pos: -21.5,44.5
parent: 2
- - uid: 3826
+ - uid: 31995
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-5.5
+ pos: -22.5,44.5
parent: 2
- - uid: 4849
+ - uid: 32021
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,54.5
+ pos: 1.5,-23.5
parent: 2
- - uid: 5052
+ - uid: 32022
components:
- type: Transform
- pos: 78.5,-15.5
+ pos: 1.5,-22.5
parent: 2
- - uid: 5092
+ - uid: 32026
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,81.5
+ pos: -23.5,44.5
parent: 2
- - uid: 5093
+ - uid: 32027
components:
- type: Transform
- pos: 43.5,-35.5
+ pos: -24.5,44.5
parent: 2
- - uid: 5102
+ - uid: 32028
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,79.5
+ pos: -25.5,44.5
parent: 2
- - uid: 5104
+ - uid: 32029
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,82.5
+ pos: -25.5,43.5
parent: 2
- - uid: 5105
+ - uid: 32030
components:
- type: Transform
- pos: 2.5,-55.5
+ pos: -25.5,42.5
parent: 2
- - uid: 5107
+ - uid: 32031
components:
- type: Transform
- pos: 0.5,-54.5
+ pos: -25.5,41.5
parent: 2
- - uid: 5288
+ - uid: 32032
components:
- type: Transform
- pos: 2.5,-56.5
+ pos: -24.5,41.5
parent: 2
- - uid: 5292
+ - uid: 32033
components:
- type: Transform
- pos: -5.5,-56.5
+ pos: -12.5,43.5
parent: 2
- - uid: 5293
+ - uid: 32119
components:
- type: Transform
- pos: 0.5,-55.5
+ pos: 1.5,-21.5
parent: 2
- - uid: 5297
+ - uid: 32172
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,79.5
+ pos: 79.5,-13.5
parent: 2
- - uid: 5405
+ - uid: 32173
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,82.5
+ pos: 83.5,-11.5
parent: 2
- - uid: 5478
+ - uid: 32176
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,80.5
+ pos: 97.5,-9.5
parent: 2
- - uid: 5538
+ - uid: 32196
components:
- type: Transform
- pos: 80.5,-15.5
+ pos: 84.5,-11.5
parent: 2
- - uid: 5545
+ - uid: 32197
components:
- type: Transform
- pos: -5.5,-53.5
+ pos: 86.5,-11.5
parent: 2
- - uid: 5629
+ - uid: 32244
components:
- type: Transform
- pos: 43.5,-34.5
+ pos: 82.5,-11.5
parent: 2
- - uid: 5694
+ - uid: 32251
components:
- type: Transform
- pos: 49.5,-34.5
+ pos: 79.5,-17.5
parent: 2
- - uid: 5697
+ - uid: 32289
components:
- type: Transform
- pos: 49.5,-35.5
+ pos: -59.5,-10.5
parent: 2
- - uid: 5890
+ - uid: 32290
components:
- type: Transform
- pos: 81.5,-15.5
+ pos: -59.5,-9.5
parent: 2
- - uid: 5894
+ - uid: 32292
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,81.5
+ pos: -59.5,-8.5
parent: 2
- - uid: 5909
+ - uid: 32334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-9.5
+ pos: -59.5,-7.5
parent: 2
- - uid: 5912
+ - uid: 32446
components:
- type: Transform
- pos: 79.5,-15.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 5930
+ - uid: 32449
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-10.5
+ pos: -59.5,-5.5
parent: 2
- - uid: 5931
+ - uid: 32450
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-4.5
+ pos: -59.5,-4.5
parent: 2
- - uid: 5952
+ - uid: 32601
components:
- type: Transform
- pos: 8.5,-54.5
+ pos: -54.5,19.5
parent: 2
- - uid: 5953
+ - uid: 32603
components:
- type: Transform
- pos: -7.5,-56.5
+ pos: -54.5,19.5
parent: 2
- - uid: 5957
+ - uid: 32608
components:
- type: Transform
- pos: 43.5,-33.5
+ pos: -54.5,20.5
parent: 2
- - uid: 5960
+ - uid: 32610
components:
- type: Transform
- pos: -7.5,-54.5
+ pos: -54.5,21.5
parent: 2
- - uid: 5961
+ - uid: 32612
components:
- type: Transform
- pos: 0.5,-53.5
+ pos: -54.5,22.5
parent: 2
- - uid: 5962
+ - uid: 32613
components:
- type: Transform
- pos: 8.5,-53.5
+ pos: -54.5,23.5
parent: 2
- - uid: 5963
+ - uid: 32615
components:
- type: Transform
- pos: 43.5,-31.5
+ pos: -54.5,24.5
parent: 2
- - uid: 5967
+ - uid: 32616
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-5.5
+ pos: -54.5,25.5
parent: 2
- - uid: 5968
+ - uid: 32618
components:
- type: Transform
- pos: -5.5,-54.5
+ pos: -54.5,26.5
parent: 2
- - uid: 5969
+ - uid: 32621
components:
- type: Transform
- pos: 2.5,-54.5
+ pos: -54.5,27.5
parent: 2
- - uid: 5971
+ - uid: 32622
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-5.5
+ pos: -54.5,28.5
parent: 2
- - uid: 5972
+ - uid: 32623
components:
- type: Transform
- pos: 0.5,-56.5
+ pos: -54.5,29.5
parent: 2
- - uid: 5973
+ - uid: 32625
components:
- type: Transform
- pos: 43.5,-32.5
+ pos: -54.5,30.5
parent: 2
- - uid: 5976
+ - uid: 32627
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,80.5
+ pos: -54.5,31.5
parent: 2
- - uid: 5981
+ - uid: 32629
components:
- type: Transform
- pos: 8.5,-55.5
+ pos: -54.5,32.5
parent: 2
- - uid: 5986
+ - uid: 32631
components:
- type: Transform
- pos: 10.5,-54.5
+ pos: -54.5,33.5
parent: 2
- - uid: 5987
+ - uid: 32637
components:
- type: Transform
- pos: 8.5,-56.5
+ pos: -54.5,34.5
parent: 2
- - uid: 5988
+ - uid: 32639
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,81.5
+ pos: -54.5,34.5
parent: 2
- - uid: 5990
+ - uid: 32640
components:
- type: Transform
- pos: -7.5,-55.5
+ pos: -55.5,34.5
parent: 2
- - uid: 5991
+ - uid: 32650
components:
- type: Transform
- pos: 10.5,-56.5
+ pos: -56.5,34.5
parent: 2
- - uid: 6002
+ - uid: 32658
components:
- type: Transform
- pos: 10.5,-53.5
+ pos: -57.5,34.5
parent: 2
- - uid: 6003
+ - uid: 32660
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,80.5
+ pos: -58.5,34.5
parent: 2
- - uid: 6004
+ - uid: 32666
components:
- type: Transform
- pos: 10.5,-55.5
+ pos: -59.5,34.5
parent: 2
- - uid: 6005
+ - uid: 32670
components:
- type: Transform
- pos: -5.5,-55.5
+ pos: -59.5,33.5
parent: 2
- - uid: 6006
+ - uid: 32671
components:
- type: Transform
- pos: 2.5,-53.5
+ pos: -59.5,32.5
parent: 2
- - uid: 6139
+ - uid: 32677
components:
- type: Transform
- pos: -7.5,-53.5
+ pos: -59.5,32.5
parent: 2
- - uid: 6179
+ - uid: 32678
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,82.5
+ pos: -60.5,32.5
parent: 2
- - uid: 6194
+ - uid: 32681
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,79.5
+ pos: -61.5,32.5
parent: 2
- - uid: 6195
+ - uid: 32682
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,81.5
+ pos: -62.5,32.5
parent: 2
- - uid: 6196
+ - uid: 32686
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,82.5
+ pos: -63.5,32.5
parent: 2
- - uid: 6273
+ - uid: 32691
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,82.5
+ pos: -59.5,-3.5
parent: 2
- - uid: 6432
+ - uid: 32707
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,81.5
+ pos: -59.5,-2.5
parent: 2
- - uid: 6928
+ - uid: 32708
components:
- type: Transform
- pos: 32.5,36.5
+ pos: -59.5,-1.5
parent: 2
- - uid: 7095
+ - uid: 32709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,80.5
+ pos: -59.5,-0.5
parent: 2
- - uid: 7211
+ - uid: 32710
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,81.5
+ pos: -59.5,0.5
parent: 2
- - uid: 7213
+ - uid: 32711
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,80.5
+ pos: -59.5,1.5
parent: 2
- - uid: 7214
+ - uid: 32716
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,82.5
+ pos: -59.5,2.5
parent: 2
- - uid: 7237
+ - uid: 32717
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,79.5
+ pos: -58.5,2.5
parent: 2
- - uid: 7451
+ - uid: 33362
components:
- type: Transform
- pos: -46.5,57.5
+ pos: 78.5,58.5
parent: 2
- - uid: 7465
+ - uid: 33363
components:
- type: Transform
- pos: -46.5,58.5
+ pos: -57.5,2.5
parent: 2
- - uid: 7544
+ - uid: 33378
components:
- type: Transform
- pos: 34.5,32.5
+ pos: 78.5,57.5
parent: 2
- - uid: 7582
+ - uid: 33379
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-5.5
+ pos: 78.5,56.5
parent: 2
- - uid: 7656
+ - uid: 33380
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,24.5
+ pos: 78.5,55.5
parent: 2
- - uid: 8641
+ - uid: 33381
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,23.5
+ pos: 78.5,54.5
parent: 2
- - uid: 8792
+ - uid: 33382
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,31.5
+ pos: 77.5,54.5
parent: 2
- - uid: 8793
+ - uid: 33383
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,31.5
+ pos: 76.5,54.5
parent: 2
- - uid: 8858
+ - uid: 33647
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,32.5
+ pos: -56.5,2.5
parent: 2
- - uid: 8859
+ - uid: 33648
components:
- type: Transform
- pos: -58.5,25.5
+ pos: -55.5,2.5
parent: 2
- - uid: 8861
+ - uid: 33652
components:
- type: Transform
- pos: -58.5,26.5
+ pos: -54.5,2.5
parent: 2
- - uid: 8862
+ - uid: 33678
components:
- type: Transform
- pos: -61.5,25.5
+ pos: -53.5,2.5
parent: 2
- - uid: 8863
+ - uid: 33680
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,34.5
+ pos: -52.5,2.5
parent: 2
- - uid: 8869
+ - uid: 33681
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,36.5
+ pos: -51.5,2.5
parent: 2
- - uid: 8898
+ - uid: 33682
components:
- type: Transform
- pos: -60.5,26.5
+ pos: -50.5,2.5
parent: 2
- - uid: 8899
+ - uid: 33683
components:
- type: Transform
- pos: -63.5,24.5
+ pos: -49.5,2.5
parent: 2
- - uid: 8900
+ - uid: 33685
components:
- type: Transform
- pos: -59.5,23.5
+ pos: -49.5,1.5
parent: 2
- - uid: 8901
+ - uid: 33691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,34.5
+ pos: -63.5,32.5
parent: 2
- - uid: 8902
+ - uid: 33696
components:
- type: Transform
- pos: -60.5,25.5
+ pos: -63.5,33.5
parent: 2
- - uid: 8903
+ - uid: 33699
components:
- type: Transform
- pos: -62.5,24.5
+ pos: -63.5,34.5
parent: 2
- - uid: 8904
+ - uid: 33884
components:
- type: Transform
- pos: -60.5,23.5
+ pos: -48.5,1.5
parent: 2
- - uid: 8906
+ - uid: 33920
components:
- type: Transform
- pos: -59.5,26.5
+ pos: 35.5,11.5
parent: 2
- - uid: 8907
+ - uid: 33939
components:
- type: Transform
- pos: -61.5,24.5
+ pos: 10.5,14.5
parent: 2
- - uid: 8908
+ - uid: 34058
components:
- type: Transform
- pos: -61.5,23.5
+ pos: 9.5,7.5
parent: 2
- - uid: 8910
+ - uid: 34274
components:
- type: Transform
- pos: -59.5,25.5
+ pos: -20.5,-25.5
parent: 2
- - uid: 8911
+ - uid: 34292
components:
- type: Transform
- pos: -60.5,24.5
+ pos: -72.5,3.5
parent: 2
- - uid: 8912
+ - uid: 34312
components:
- type: Transform
- pos: -62.5,23.5
+ pos: -72.5,4.5
parent: 2
- - uid: 8914
+ - uid: 34382
components:
- type: Transform
- pos: -64.5,26.5
+ pos: -65.5,-22.5
parent: 2
- - uid: 8915
+ - uid: 34383
components:
- type: Transform
- pos: -59.5,24.5
+ pos: -43.5,37.5
parent: 2
- - uid: 8916
+ - uid: 34384
components:
- type: Transform
- pos: -63.5,23.5
+ pos: -43.5,36.5
parent: 2
- - uid: 8917
+ - uid: 34417
components:
- type: Transform
- pos: -61.5,27.5
+ pos: -20.5,-24.5
parent: 2
- - uid: 8918
+ - uid: 34418
components:
- type: Transform
- pos: -64.5,25.5
+ pos: 27.5,40.5
parent: 2
- - uid: 8919
+ - uid: 34420
components:
- type: Transform
- pos: -64.5,24.5
+ pos: -43.5,35.5
parent: 2
- - uid: 8920
+ - uid: 34421
components:
- type: Transform
- pos: -64.5,23.5
+ pos: -43.5,34.5
parent: 2
- - uid: 8929
+ - uid: 34423
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,31.5
+ pos: -43.5,33.5
parent: 2
- - uid: 8931
+ - uid: 34424
components:
- type: Transform
- pos: -62.5,27.5
+ pos: -43.5,32.5
parent: 2
- - uid: 8938
+ - uid: 34573
components:
- type: Transform
- pos: -61.5,26.5
+ pos: -43.5,31.5
parent: 2
- - uid: 8941
+ - uid: 34574
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,34.5
+ pos: -43.5,30.5
parent: 2
- - uid: 8942
+ - uid: 34575
components:
- type: Transform
- pos: -62.5,26.5
+ pos: -44.5,30.5
parent: 2
- - uid: 8944
+ - uid: 34576
components:
- type: Transform
- pos: -61.5,30.5
+ pos: -45.5,30.5
parent: 2
- - uid: 8946
+ - uid: 34577
components:
- type: Transform
- pos: -62.5,25.5
+ pos: -46.5,30.5
parent: 2
- - uid: 8950
+ - uid: 34595
components:
- type: Transform
- pos: -63.5,25.5
+ pos: -1.5,53.5
parent: 2
- - uid: 8952
+ - uid: 34596
components:
- type: Transform
- pos: -61.5,28.5
+ pos: -0.5,53.5
parent: 2
- - uid: 8954
+ - uid: 34605
components:
- type: Transform
- pos: -63.5,26.5
+ pos: 0.5,53.5
parent: 2
- - uid: 8958
+ - uid: 34607
components:
- type: Transform
- pos: -58.5,23.5
+ pos: 1.5,53.5
parent: 2
- - uid: 8960
+ - uid: 34614
components:
- type: Transform
- pos: -61.5,29.5
+ pos: -47.5,30.5
parent: 2
- - uid: 8962
+ - uid: 34617
components:
- type: Transform
- pos: -58.5,24.5
+ pos: 1.5,53.5
parent: 2
- - uid: 8971
+ - uid: 34618
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,52.5
+ pos: 1.5,52.5
parent: 2
- - uid: 8981
+ - uid: 34629
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,50.5
+ pos: 1.5,51.5
parent: 2
- - uid: 8983
+ - uid: 34630
components:
- type: Transform
- pos: -62.5,33.5
+ pos: 1.5,50.5
parent: 2
- - uid: 8984
+ - uid: 34631
components:
- type: Transform
- pos: -60.5,33.5
+ pos: 1.5,49.5
parent: 2
- - uid: 8989
+ - uid: 34642
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,36.5
+ pos: -48.5,30.5
parent: 2
- - uid: 8991
+ - uid: 34643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,35.5
+ pos: -49.5,30.5
parent: 2
- - uid: 9649
+ - uid: 34644
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,-33.5
+ pos: -50.5,30.5
parent: 2
- - uid: 9704
+ - uid: 34645
components:
- type: Transform
- pos: -57.5,39.5
+ pos: -51.5,30.5
parent: 2
- - uid: 9733
+ - uid: 34646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-53.5
+ pos: -52.5,30.5
parent: 2
- - uid: 9734
+ - uid: 34647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-42.5
+ pos: -53.5,30.5
parent: 2
- - uid: 9735
+ - uid: 34648
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-63.5
+ pos: 39.5,32.5
parent: 2
- - uid: 9737
+ - uid: 34649
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-64.5
+ pos: 39.5,30.5
parent: 2
- - uid: 9742
+ - uid: 34650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-79.5
+ pos: 39.5,29.5
parent: 2
- - uid: 9744
+ - uid: 34651
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-78.5
+ pos: 39.5,28.5
parent: 2
- - uid: 9745
+ - uid: 34652
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-78.5
+ pos: 40.5,28.5
parent: 2
- - uid: 9746
+ - uid: 34668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-77.5
+ pos: 41.5,28.5
parent: 2
- - uid: 9747
+ - uid: 34687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-67.5
+ pos: 42.5,28.5
parent: 2
- - uid: 9877
+ - uid: 34688
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -60.5,41.5
+ pos: 43.5,28.5
parent: 2
- - uid: 9878
+ - uid: 34689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,41.5
+ pos: 44.5,28.5
parent: 2
- - uid: 9879
+ - uid: 34690
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,40.5
+ pos: 45.5,28.5
parent: 2
- - uid: 9880
+ - uid: 34691
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,39.5
+ pos: 46.5,28.5
parent: 2
- - uid: 9882
+ - uid: 34692
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,40.5
+ pos: 47.5,28.5
parent: 2
- - uid: 9883
+ - uid: 34693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,40.5
+ pos: 48.5,28.5
parent: 2
- - uid: 9884
+ - uid: 34694
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -64.5,40.5
+ pos: 48.5,27.5
parent: 2
- - uid: 9885
+ - uid: 34695
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -65.5,40.5
+ pos: 48.5,26.5
parent: 2
- - uid: 9886
+ - uid: 34696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,40.5
+ pos: 48.5,25.5
parent: 2
- - uid: 9887
+ - uid: 34697
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,41.5
+ pos: 49.5,25.5
parent: 2
- - uid: 9888
+ - uid: 34698
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,42.5
+ pos: 50.5,25.5
parent: 2
- - uid: 9889
+ - uid: 34704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,43.5
+ pos: 25.5,8.5
parent: 2
- - uid: 9890
+ - uid: 34705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,44.5
+ pos: 25.5,9.5
parent: 2
- - uid: 9891
+ - uid: 34706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,45.5
+ pos: 25.5,10.5
parent: 2
- - uid: 9892
+ - uid: 34707
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,46.5
+ pos: 25.5,10.5
parent: 2
- - uid: 9893
+ - uid: 34708
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,47.5
+ pos: 26.5,10.5
parent: 2
- - uid: 9894
+ - uid: 34713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,48.5
+ pos: 37.5,16.5
parent: 2
- - uid: 9895
+ - uid: 34714
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,49.5
+ pos: 37.5,17.5
parent: 2
- - uid: 9896
+ - uid: 34717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,50.5
+ pos: 43.5,13.5
parent: 2
- - uid: 9897
+ - uid: 34718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -66.5,51.5
+ pos: 27.5,10.5
parent: 2
- - uid: 9899
+ - uid: 34719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,51.5
+ pos: 37.5,21.5
parent: 2
- - uid: 9900
+ - uid: 34720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,51.5
+ pos: 38.5,21.5
parent: 2
- - uid: 9901
+ - uid: 34721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,35.5
+ pos: 28.5,10.5
parent: 2
- - uid: 9902
+ - uid: 34722
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,36.5
+ pos: 29.5,10.5
parent: 2
- - uid: 9906
+ - uid: 34723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,51.5
+ pos: 30.5,10.5
parent: 2
- - uid: 9907
+ - uid: 34724
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -76.5,51.5
+ pos: 39.5,21.5
parent: 2
- - uid: 9908
+ - uid: 34725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,51.5
+ pos: 31.5,10.5
parent: 2
- - uid: 9910
+ - uid: 34726
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,51.5
+ pos: 32.5,10.5
parent: 2
- - uid: 9913
+ - uid: 34727
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,51.5
+ pos: 33.5,10.5
parent: 2
- - uid: 9915
+ - uid: 34728
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,51.5
+ pos: 40.5,21.5
parent: 2
- - uid: 9916
+ - uid: 34731
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,51.5
+ pos: -30.5,-10.5
parent: 2
- - uid: 9917
+ - uid: 34732
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,51.5
+ pos: -29.5,-10.5
parent: 2
- - uid: 9948
+ - uid: 34733
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,41.5
+ pos: -28.5,-10.5
parent: 2
- - uid: 9949
+ - uid: 34734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,41.5
+ pos: -27.5,-10.5
parent: 2
- - uid: 9952
+ - uid: 34735
components:
- type: Transform
- pos: -55.5,41.5
+ pos: -27.5,-11.5
parent: 2
- - uid: 9953
+ - uid: 34736
components:
- type: Transform
- pos: -54.5,40.5
+ pos: -27.5,-12.5
parent: 2
- - uid: 9955
+ - uid: 34737
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,39.5
+ pos: -27.5,-13.5
parent: 2
- - uid: 9956
+ - uid: 34738
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,39.5
+ pos: -27.5,-14.5
parent: 2
- - uid: 9962
+ - uid: 34740
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,39.5
+ pos: 19.5,48.5
parent: 2
- - uid: 9964
+ - uid: 34742
components:
- type: Transform
- pos: -58.5,39.5
+ pos: 20.5,48.5
parent: 2
- - uid: 9965
+ - uid: 34744
components:
- type: Transform
- pos: -54.5,41.5
+ pos: -44.5,23.5
parent: 2
- - uid: 10017
+ - uid: 34745
components:
- type: Transform
- pos: -64.5,34.5
+ pos: -44.5,24.5
parent: 2
- - uid: 10018
+ - uid: 34746
components:
- type: Transform
- pos: -63.5,34.5
+ pos: -44.5,25.5
parent: 2
- - uid: 10019
+ - uid: 34747
components:
- type: Transform
- pos: -59.5,34.5
+ pos: -44.5,26.5
parent: 2
- - uid: 10020
+ - uid: 34748
components:
- type: Transform
- pos: -57.5,34.5
+ pos: -43.5,26.5
parent: 2
- - uid: 10021
+ - uid: 34749
components:
- type: Transform
- pos: -56.5,34.5
+ pos: -42.5,26.5
parent: 2
- - uid: 10022
+ - uid: 34750
components:
- type: Transform
- pos: -55.5,34.5
+ pos: -41.5,26.5
parent: 2
- - uid: 10023
+ - uid: 34751
components:
- type: Transform
- pos: -54.5,34.5
+ pos: -40.5,26.5
parent: 2
- - uid: 10024
+ - uid: 34752
components:
- type: Transform
- pos: -54.5,35.5
+ pos: -39.5,26.5
parent: 2
- - uid: 10025
+ - uid: 34870
components:
- type: Transform
- pos: -54.5,36.5
+ pos: 1.5,48.5
parent: 2
- - uid: 10026
+ - uid: 34873
components:
- type: Transform
- pos: -54.5,37.5
+ pos: 1.5,47.5
parent: 2
- - uid: 10027
+ - uid: 34874
components:
- type: Transform
- pos: -54.5,38.5
+ pos: 1.5,46.5
parent: 2
- - uid: 10033
+ - uid: 34875
components:
- type: Transform
- pos: -68.5,28.5
+ pos: 1.5,45.5
parent: 2
- - uid: 10034
+ - uid: 34925
components:
- type: Transform
- pos: -68.5,27.5
+ pos: 27.5,44.5
parent: 2
- - uid: 10035
+ - uid: 34927
components:
- type: Transform
- pos: -68.5,26.5
+ pos: 27.5,43.5
parent: 2
- - uid: 10036
+ - uid: 34928
components:
- type: Transform
- pos: -68.5,25.5
+ pos: 27.5,42.5
parent: 2
- - uid: 10037
+ - uid: 34929
components:
- type: Transform
- pos: -68.5,24.5
+ pos: 27.5,41.5
parent: 2
- - uid: 10038
+ - uid: 36123
components:
- type: Transform
- pos: -68.5,23.5
+ pos: -18.5,-32.5
parent: 2
- - uid: 10039
+ - uid: 36136
components:
- type: Transform
- pos: -68.5,22.5
+ pos: -18.5,-33.5
parent: 2
- - uid: 10040
+ - uid: 36137
components:
- type: Transform
- pos: -68.5,21.5
+ pos: -17.5,-33.5
parent: 2
- - uid: 10041
+ - uid: 36138
components:
- type: Transform
- pos: -68.5,20.5
+ pos: -16.5,-33.5
parent: 2
- - uid: 10042
+ - uid: 36379
components:
- type: Transform
- pos: -68.5,19.5
+ pos: 44.5,13.5
parent: 2
- - uid: 10043
+ - uid: 36381
components:
- type: Transform
- pos: -67.5,19.5
+ pos: -15.5,-33.5
parent: 2
- - uid: 10044
+ - uid: 36382
components:
- type: Transform
- pos: -66.5,19.5
+ pos: -14.5,-33.5
parent: 2
- - uid: 10045
+ - uid: 36383
components:
- type: Transform
- pos: -65.5,19.5
+ pos: -13.5,-33.5
parent: 2
- - uid: 10046
+ - uid: 36384
components:
- type: Transform
- pos: -65.5,18.5
+ pos: -12.5,-33.5
parent: 2
- - uid: 10047
+ - uid: 36385
components:
- type: Transform
- pos: -65.5,17.5
+ pos: -12.5,-32.5
parent: 2
- - uid: 10048
+ - uid: 36386
components:
- type: Transform
- pos: -65.5,16.5
+ pos: -12.5,-31.5
parent: 2
- - uid: 10049
+ - uid: 36421
components:
- type: Transform
- pos: -65.5,15.5
+ pos: 23.5,25.5
parent: 2
- - uid: 10050
+ - uid: 36422
components:
- type: Transform
- pos: -65.5,14.5
+ pos: 24.5,25.5
parent: 2
- - uid: 10051
+ - uid: 36423
components:
- type: Transform
- pos: -65.5,13.5
+ pos: 24.5,25.5
parent: 2
- - uid: 10052
+ - uid: 36424
components:
- type: Transform
- pos: -65.5,12.5
+ pos: 24.5,26.5
parent: 2
- - uid: 10053
+ - uid: 36425
components:
- type: Transform
- pos: -65.5,11.5
+ pos: 24.5,27.5
parent: 2
- - uid: 10054
+ - uid: 36426
components:
- type: Transform
- pos: -64.5,11.5
+ pos: 24.5,28.5
parent: 2
- - uid: 10055
+ - uid: 36427
components:
- type: Transform
- pos: -64.5,10.5
+ pos: 24.5,29.5
parent: 2
- - uid: 10061
+ - uid: 36428
components:
- type: Transform
- pos: -67.5,35.5
+ pos: 24.5,30.5
parent: 2
- - uid: 10062
+ - uid: 36429
components:
- type: Transform
- pos: -67.5,36.5
+ pos: 24.5,31.5
parent: 2
- - uid: 10063
+ - uid: 36430
components:
- type: Transform
- pos: -66.5,36.5
+ pos: 24.5,32.5
parent: 2
- - uid: 10066
+ - uid: 36431
components:
- type: Transform
- pos: -68.5,36.5
+ pos: 24.5,33.5
parent: 2
- - uid: 10514
+ - uid: 36432
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-47.5
+ pos: 24.5,33.5
parent: 2
- - uid: 10515
+ - uid: 36433
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-57.5
+ pos: 23.5,33.5
parent: 2
- - uid: 10516
+ - uid: 36434
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-46.5
+ pos: 22.5,33.5
parent: 2
- - uid: 11013
+ - uid: 36435
components:
- type: Transform
- pos: -62.5,-21.5
+ pos: 21.5,33.5
parent: 2
- - uid: 11524
+ - uid: 36436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,-3.5
+ pos: 20.5,33.5
parent: 2
- - uid: 11552
+ - uid: 36437
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,21.5
+ pos: 19.5,33.5
parent: 2
- - uid: 11553
+ - uid: 36438
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,20.5
+ pos: 18.5,33.5
parent: 2
- - uid: 11554
+ - uid: 36439
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,19.5
+ pos: 17.5,33.5
parent: 2
- - uid: 11555
+ - uid: 36440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,18.5
+ pos: 16.5,33.5
parent: 2
- - uid: 11556
+ - uid: 36441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-3.5
+ pos: 15.5,33.5
parent: 2
- - uid: 11557
+ - uid: 36442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,-3.5
+ pos: 14.5,33.5
parent: 2
- - uid: 11558
+ - uid: 36443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-3.5
+ pos: 13.5,33.5
parent: 2
- - uid: 11559
+ - uid: 36444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-3.5
+ pos: 12.5,33.5
parent: 2
- - uid: 11560
+ - uid: 36445
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-2.5
+ pos: 11.5,33.5
parent: 2
- - uid: 11561
+ - uid: 36446
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-1.5
+ pos: 10.5,33.5
parent: 2
- - uid: 11562
+ - uid: 36447
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-0.5
+ pos: 9.5,33.5
parent: 2
- - uid: 11563
+ - uid: 36448
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,0.5
+ pos: 8.5,33.5
parent: 2
- - uid: 11564
+ - uid: 36741
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,1.5
+ pos: 17.5,-30.5
parent: 2
- - uid: 11565
+ - uid: 36742
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,2.5
+ pos: 17.5,-29.5
parent: 2
- - uid: 11566
+ - uid: 36757
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,3.5
+ pos: 9.5,8.5
parent: 2
- - uid: 11567
+ - uid: 36762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,4.5
+ pos: 17.5,-28.5
parent: 2
- - uid: 11568
+ - uid: 36775
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,5.5
+ pos: 17.5,-27.5
parent: 2
- - uid: 11569
+ - uid: 36776
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,6.5
+ pos: 16.5,-27.5
parent: 2
- - uid: 11570
+ - uid: 37195
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-4.5
+ pos: 5.5,46.5
parent: 2
- - uid: 11571
+ - uid: 37240
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-5.5
+ pos: -13.5,2.5
parent: 2
- - uid: 11572
+ - uid: 37241
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-6.5
+ pos: -12.5,2.5
parent: 2
- - uid: 11573
+ - uid: 37242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-7.5
+ pos: -11.5,2.5
parent: 2
- - uid: 11574
+ - uid: 37322
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-8.5
+ pos: -40.5,68.5
parent: 2
- - uid: 11575
+ - uid: 37326
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-9.5
+ pos: -37.5,70.5
parent: 2
- - uid: 11576
+ - uid: 37327
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-10.5
+ pos: -37.5,71.5
parent: 2
- - uid: 11577
+ - uid: 37333
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-11.5
+ pos: -37.5,68.5
parent: 2
- - uid: 11578
+ - uid: 37346
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-11.5
+ pos: -46.5,69.5
parent: 2
- - uid: 11579
+ - uid: 37347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-11.5
+ pos: -46.5,68.5
parent: 2
- - uid: 11580
+ - uid: 37348
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-11.5
+ pos: -46.5,67.5
parent: 2
- - uid: 11581
+ - uid: 37349
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-12.5
+ pos: -46.5,66.5
parent: 2
- - uid: 11582
+ - uid: 37350
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-13.5
+ pos: -46.5,65.5
parent: 2
- - uid: 11583
+ - uid: 37351
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-14.5
+ pos: -46.5,64.5
parent: 2
- - uid: 11584
+ - uid: 37352
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-15.5
+ pos: -46.5,63.5
parent: 2
- - uid: 11585
+ - uid: 37353
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-16.5
+ pos: -46.5,62.5
parent: 2
- - uid: 11586
+ - uid: 37354
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-17.5
+ pos: -46.5,61.5
parent: 2
- - uid: 11587
+ - uid: 37355
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-18.5
+ pos: -46.5,60.5
parent: 2
- - uid: 11588
+ - uid: 37356
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-19.5
+ pos: -46.5,59.5
parent: 2
- - uid: 11589
+ - uid: 37357
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-20.5
+ pos: -46.5,58.5
parent: 2
- - uid: 11590
+ - uid: 37358
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-21.5
+ pos: -46.5,57.5
parent: 2
- - uid: 11591
+ - uid: 37359
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-22.5
+ pos: -46.5,56.5
parent: 2
- - uid: 11592
+ - uid: 37360
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-23.5
+ pos: -45.5,56.5
parent: 2
- - uid: 11593
+ - uid: 37361
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-24.5
+ pos: -44.5,56.5
parent: 2
- - uid: 11595
+ - uid: 37362
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-26.5
+ pos: -43.5,56.5
parent: 2
- - uid: 11597
+ - uid: 37363
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-28.5
+ pos: -42.5,56.5
parent: 2
- - uid: 11599
+ - uid: 37364
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-30.5
+ pos: -42.5,57.5
parent: 2
- - uid: 11600
+ - uid: 37683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-33.5
+ pos: -32.5,7.5
parent: 2
- - uid: 11601
+ - uid: 37699
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-33.5
+ pos: -33.5,10.5
parent: 2
- - uid: 11602
+ - uid: 37754
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-34.5
+ pos: 98.5,-24.5
parent: 2
- - uid: 11603
+ - uid: 37755
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-35.5
+ pos: 99.5,-24.5
parent: 2
- - uid: 11604
+ - uid: 37756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-35.5
+ pos: 100.5,-24.5
parent: 2
- - uid: 11607
+ - uid: 37757
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-34.5
+ pos: 101.5,-24.5
parent: 2
- - uid: 11618
+ - uid: 37758
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-34.5
+ pos: 102.5,-24.5
parent: 2
- - uid: 11619
+ - uid: 37759
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-33.5
+ pos: 103.5,-24.5
parent: 2
- - uid: 11620
+ - uid: 37760
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-35.5
+ pos: 104.5,-24.5
parent: 2
- - uid: 11621
+ - uid: 37761
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-34.5
+ pos: 105.5,-24.5
parent: 2
- - uid: 11622
+ - uid: 37762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,-34.5
+ pos: 106.5,-24.5
parent: 2
- - uid: 11623
+ - uid: 37763
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-34.5
+ pos: 107.5,-24.5
parent: 2
- - uid: 11624
+ - uid: 37764
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-34.5
+ pos: 108.5,-24.5
parent: 2
- - uid: 11625
+ - uid: 37765
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-34.5
+ pos: 109.5,-24.5
parent: 2
- - uid: 11626
+ - uid: 37766
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-33.5
+ pos: 109.5,-23.5
parent: 2
- - uid: 11627
+ - uid: 37767
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-35.5
+ pos: 109.5,-22.5
parent: 2
- - uid: 11628
+ - uid: 37768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-35.5
+ pos: 109.5,-21.5
parent: 2
- - uid: 11629
+ - uid: 37769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-33.5
+ pos: 109.5,-20.5
parent: 2
- - uid: 11630
+ - uid: 37770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-33.5
+ pos: 109.5,-19.5
parent: 2
- - uid: 11631
+ - uid: 37771
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-35.5
+ pos: 109.5,-18.5
parent: 2
- - uid: 11632
+ - uid: 37772
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-33.5
+ pos: 109.5,-17.5
parent: 2
- - uid: 11634
+ - uid: 37773
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-35.5
+ pos: 109.5,-16.5
parent: 2
- - uid: 11638
+ - uid: 37774
components:
- type: Transform
- pos: -46.5,61.5
+ pos: 109.5,-15.5
parent: 2
- - uid: 11652
+ - uid: 37775
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-35.5
+ pos: 109.5,-14.5
parent: 2
- - uid: 11653
+ - uid: 37776
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-35.5
+ pos: 109.5,-13.5
parent: 2
- - uid: 11654
+ - uid: 37777
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-35.5
+ pos: 109.5,-12.5
parent: 2
- - uid: 11656
+ - uid: 37778
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-35.5
+ pos: 109.5,-11.5
parent: 2
- - uid: 11657
+ - uid: 37779
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-35.5
+ pos: 109.5,-10.5
parent: 2
- - uid: 11658
+ - uid: 37780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-35.5
+ pos: 109.5,-9.5
parent: 2
- - uid: 11659
+ - uid: 37781
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-35.5
+ pos: 109.5,-8.5
parent: 2
- - uid: 11660
+ - uid: 37782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-35.5
+ pos: 108.5,-8.5
parent: 2
- - uid: 11661
+ - uid: 37783
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-35.5
+ pos: 107.5,-8.5
parent: 2
- - uid: 11662
+ - uid: 37784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-35.5
+ pos: 106.5,-8.5
parent: 2
- - uid: 11663
+ - uid: 37785
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-35.5
+ pos: 105.5,-8.5
parent: 2
- - uid: 11664
+ - uid: 37786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-35.5
+ pos: 104.5,-8.5
parent: 2
- - uid: 11665
+ - uid: 37787
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-35.5
+ pos: 103.5,-8.5
parent: 2
- - uid: 11666
+ - uid: 37788
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-35.5
+ pos: 102.5,-8.5
parent: 2
- - uid: 11667
+ - uid: 37789
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-35.5
+ pos: 101.5,-8.5
parent: 2
- - uid: 11668
+ - uid: 37790
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-35.5
+ pos: 100.5,-8.5
parent: 2
- - uid: 11669
+ - uid: 37791
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-36.5
+ pos: 99.5,-8.5
parent: 2
- - uid: 11670
+ - uid: 37792
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-36.5
+ pos: 98.5,-8.5
parent: 2
- - uid: 11671
+ - uid: 37793
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-17.5
+ pos: 97.5,-8.5
parent: 2
- - uid: 11672
+ - uid: 37794
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-18.5
+ pos: 96.5,-8.5
parent: 2
- - uid: 11673
+ - uid: 37795
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-19.5
+ pos: 95.5,-8.5
parent: 2
- - uid: 11674
+ - uid: 37796
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-20.5
+ pos: 94.5,-8.5
parent: 2
- - uid: 11675
+ - uid: 37797
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-21.5
+ pos: 93.5,-8.5
parent: 2
- - uid: 11676
+ - uid: 37798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-22.5
+ pos: 93.5,-9.5
parent: 2
- - uid: 11677
+ - uid: 37799
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-23.5
+ pos: 93.5,-10.5
parent: 2
- - uid: 11678
+ - uid: 37988
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-24.5
+ pos: 87.5,-12.5
parent: 2
- - uid: 11679
+ - uid: 37989
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-25.5
+ pos: 87.5,-13.5
parent: 2
- - uid: 11680
+ - uid: 37990
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-26.5
+ pos: 87.5,-19.5
parent: 2
- - uid: 11681
+ - uid: 37991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-27.5
+ pos: 87.5,-20.5
parent: 2
- - uid: 11682
+ - uid: 38068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-27.5
+ pos: -77.5,18.5
parent: 2
- - uid: 11683
+ - uid: 38069
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-27.5
+ pos: -77.5,16.5
parent: 2
- - uid: 11684
+ - uid: 38070
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-27.5
+ pos: -77.5,17.5
parent: 2
- - uid: 11685
+ - uid: 38072
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-27.5
+ pos: -76.5,16.5
parent: 2
- - uid: 11686
+ - uid: 38382
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-27.5
+ pos: -2.5,35.5
parent: 2
- - uid: 11687
+ - uid: 38398
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-27.5
+ pos: -43.5,-38.5
parent: 2
- - uid: 11688
+ - uid: 38650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-27.5
+ pos: 1.5,35.5
parent: 2
- - uid: 11689
+ - uid: 38651
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-27.5
+ pos: 1.5,32.5
parent: 2
- - uid: 11690
+ - uid: 38698
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-28.5
+ pos: 0.5,30.5
parent: 2
- - uid: 11691
+ - uid: 38699
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-28.5
+ pos: 1.5,31.5
parent: 2
- - uid: 11861
+ - uid: 38700
components:
- type: Transform
- pos: -63.5,-21.5
+ pos: 1.5,36.5
parent: 2
- - uid: 11894
+ - uid: 38701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-33.5
+ pos: -2.5,36.5
parent: 2
- - uid: 11895
+ - uid: 38796
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-32.5
+ pos: -43.5,41.5
parent: 2
- - uid: 11896
+ - uid: 38801
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-31.5
+ pos: -46.5,41.5
parent: 2
- - uid: 11897
+ - uid: 38852
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-30.5
+ pos: -2.5,32.5
parent: 2
- - uid: 11898
+ - uid: 38853
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-29.5
+ pos: 1.5,38.5
parent: 2
- - uid: 12004
+ - uid: 38854
components:
- type: Transform
- pos: -41.5,56.5
+ pos: -2.5,33.5
parent: 2
- - uid: 12249
+ - uid: 38856
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-18.5
+ pos: -1.5,30.5
parent: 2
- - uid: 12250
+ - uid: 38858
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-19.5
+ pos: 1.5,34.5
parent: 2
- - uid: 12251
+ - uid: 38913
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-17.5
+ pos: 10.5,-42.5
parent: 2
- - uid: 12252
+ - uid: 38914
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-19.5
+ pos: 10.5,-41.5
parent: 2
- - uid: 12254
+ - uid: 38915
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-20.5
+ pos: 10.5,-40.5
parent: 2
- - uid: 12255
+ - uid: 38916
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-20.5
+ pos: 10.5,-39.5
parent: 2
- - uid: 12256
+ - uid: 38921
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-21.5
+ pos: 9.5,-39.5
parent: 2
- - uid: 12257
+ - uid: 39217
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-22.5
+ pos: -42.5,-38.5
parent: 2
- - uid: 12258
+ - uid: 39218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-23.5
+ pos: -41.5,-38.5
parent: 2
- - uid: 12259
+ - uid: 39219
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-24.5
+ pos: -40.5,-38.5
parent: 2
- - uid: 12260
+ - uid: 39220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-25.5
+ pos: -39.5,-38.5
parent: 2
- - uid: 12261
+ - uid: 39221
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-26.5
+ pos: -38.5,-38.5
parent: 2
- - uid: 12262
+ - uid: 39226
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-27.5
+ pos: -37.5,-38.5
parent: 2
- - uid: 12263
+ - uid: 39227
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-28.5
+ pos: -36.5,-38.5
parent: 2
- - uid: 12264
+ - uid: 39241
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-28.5
+ pos: -36.5,-37.5
parent: 2
- - uid: 12265
+ - uid: 39242
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-28.5
+ pos: -36.5,-36.5
parent: 2
- - uid: 12266
+ - uid: 39243
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-28.5
+ pos: -36.5,-35.5
parent: 2
- - uid: 12267
+ - uid: 39244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-28.5
+ pos: -36.5,-34.5
parent: 2
- - uid: 12268
+ - uid: 39245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-28.5
+ pos: -36.5,-33.5
parent: 2
- - uid: 12270
+ - uid: 39246
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-34.5
+ pos: -36.5,-32.5
parent: 2
- - uid: 12271
+ - uid: 39247
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-35.5
+ pos: -36.5,-31.5
parent: 2
- - uid: 12272
+ - uid: 39248
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-36.5
+ pos: -37.5,-31.5
parent: 2
- - uid: 12273
+ - uid: 39249
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-37.5
+ pos: -38.5,-31.5
parent: 2
- - uid: 12274
+ - uid: 39250
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-37.5
+ pos: -38.5,-30.5
parent: 2
- - uid: 12275
+- proto: CableMVStack
+ entities:
+ - uid: 14370
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-38.5
+ pos: -47.44008,16.579575
parent: 2
- - uid: 12276
+- proto: CableTerminal
+ entities:
+ - uid: 339
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,-38.5
+ pos: -61.5,36.5
parent: 2
- - uid: 12277
+ - uid: 1439
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-20.5
parent: 2
- - uid: 12278
+ - uid: 1440
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,-20.5
parent: 2
- - uid: 12279
+ - uid: 1486
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-37.5
+ pos: 84.5,-12.5
parent: 2
- - uid: 12280
+ - uid: 1539
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,-37.5
+ pos: -61.5,35.5
parent: 2
- - uid: 12281
+ - uid: 1575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-36.5
+ pos: 83.5,-12.5
parent: 2
- - uid: 12282
+ - uid: 3584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,35.5
parent: 2
- - uid: 12283
+ - uid: 4078
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-34.5
+ pos: 82.5,-12.5
parent: 2
- - uid: 12284
+ - uid: 8973
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,36.5
parent: 2
- - uid: 12285
+ - uid: 9703
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-32.5
+ pos: -58.5,41.5
parent: 2
- - uid: 12286
+ - uid: 9963
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-31.5
+ pos: -57.5,41.5
parent: 2
- - uid: 12287
+ - uid: 10361
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,-20.5
parent: 2
- - uid: 12288
+ - uid: 10409
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,-29.5
+ pos: -62.5,-33.5
parent: 2
- - uid: 12289
+ - uid: 10416
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,-28.5
+ pos: -62.5,-35.5
parent: 2
- - uid: 12290
+ - uid: 12087
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-28.5
+ pos: -61.5,34.5
parent: 2
- - uid: 12291
+ - uid: 12089
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,34.5
parent: 2
- - uid: 12292
+ - uid: 13400
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,-35.5
parent: 2
- - uid: 12293
+ - uid: 13401
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,-35.5
parent: 2
- - uid: 12294
+- proto: Candle
+ entities:
+ - uid: 459
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-28.5
+ pos: -70.36334,22.790642
parent: 2
- - uid: 12295
+ - uid: 475
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-28.5
+ pos: -70.61334,22.642204
parent: 2
- - uid: 12296
+ - uid: 2483
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-28.5
+ pos: 62.999084,24.923903
parent: 2
- - uid: 12299
+ - uid: 2515
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-28.5
+ pos: 57.62018,10.780073
parent: 2
- - uid: 12300
+ - uid: 2516
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-27.5
+ pos: 62.366272,10.791792
parent: 2
- - uid: 12301
+ - uid: 2521
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-26.5
+ pos: 62.85846,10.440229
parent: 2
- - uid: 12302
+ - uid: 2585
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-25.5
+ pos: 58.569397,24.794996
parent: 2
- - uid: 12303
+ - uid: 4486
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-24.5
+ pos: 56.29596,24.642653
parent: 2
- - uid: 12304
+ - uid: 5725
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-23.5
+ pos: 58.850647,24.712965
parent: 2
- - uid: 12305
+ - uid: 5726
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-22.5
+ pos: 58.73346,24.47859
parent: 2
- - uid: 12306
+ - uid: 5730
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-21.5
+ pos: 56.56549,24.85359
parent: 2
- - uid: 12307
+ - uid: 8679
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-20.5
+ pos: 66.906136,20.752184
parent: 2
- - uid: 12309
+ - uid: 8680
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-19.5
+ pos: 67.12879,20.59984
parent: 2
- - uid: 12310
+ - uid: 8681
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-18.5
+ pos: 66.156136,19.451403
parent: 2
- - uid: 12314
+ - uid: 8682
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-18.5
+ pos: 66.249886,19.123278
parent: 2
- - uid: 12315
+ - uid: 11309
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-18.5
+ pos: 66.74207,17.869371
parent: 2
- - uid: 12316
+ - uid: 11310
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-18.5
+ pos: 66.636604,15.021715
parent: 2
- - uid: 12317
+ - uid: 11311
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-18.5
+ pos: 66.39051,19.498278
parent: 2
- - uid: 12320
+ - uid: 11323
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-18.5
+ pos: 66.61317,15.279528
parent: 2
- - uid: 12321
+ - uid: 21958
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-20.5
+ pos: 66.449104,15.197496
parent: 2
- - uid: 12322
+ - uid: 22093
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-20.5
+ pos: 66.30848,16.158434
parent: 2
- - uid: 12681
+ - uid: 22105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-19.5
+ pos: 67.386604,20.857653
parent: 2
- - uid: 12682
+ - uid: 22172
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-20.5
+ pos: 66.730354,19.873278
parent: 2
- - uid: 12683
+ - uid: 22259
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-21.5
+ pos: 67.42176,14.588121
parent: 2
- - uid: 12684
+ - uid: 22268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-22.5
+ pos: 52.357483,20.89059
parent: 2
- - uid: 12685
+ - uid: 22271
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-23.5
+ pos: 52.498108,20.624966
parent: 2
- - uid: 12686
+ - uid: 22417
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-24.5
+ pos: 52.623108,13.062466
parent: 2
- - uid: 12687
+ - uid: 22418
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-25.5
+ pos: 52.404358,13.124966
parent: 2
- - uid: 12688
+ - uid: 26479
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-26.5
+ pos: -29.105165,-9.336966
parent: 2
- - uid: 12689
+- proto: CandleSmall
+ entities:
+ - uid: 1190
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-26.5
+ pos: 27.557243,30.584219
parent: 2
- - uid: 12690
+ - uid: 2522
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-26.5
+ pos: 62.68268,10.510542
parent: 2
- - uid: 12691
+ - uid: 2524
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-26.5
+ pos: 62.131897,10.662886
parent: 2
- - uid: 12692
+ - uid: 2622
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-26.5
+ pos: 62.647522,10.944136
parent: 2
- - uid: 12693
+ - uid: 2658
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-26.5
+ pos: 58.07721,10.803511
parent: 2
- - uid: 12694
+ - uid: 2659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-26.5
+ pos: 56.01471,24.854292
parent: 2
- - uid: 12695
+ - uid: 2705
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-27.5
+ pos: 56.612366,24.514448
parent: 2
- - uid: 12696
+ - uid: 2775
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-28.5
+ pos: 61.417053,24.655073
parent: 2
- - uid: 12697
+ - uid: 2790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-29.5
+ pos: 62.75299,24.807417
parent: 2
- - uid: 12698
+ - uid: 2818
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-30.5
+ pos: 63.010803,24.701948
parent: 2
- - uid: 12699
+ - uid: 2910
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-31.5
+ pos: 54.467834,30.516266
parent: 2
- - uid: 12700
+ - uid: 4487
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-32.5
+ pos: 58.229553,10.487104
parent: 2
- - uid: 12701
+ - uid: 8668
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-33.5
+ pos: -7.749852,9.529368
parent: 2
- - uid: 12702
+ - uid: 8669
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-33.5
+ pos: -4.984227,9.669993
parent: 2
- - uid: 12703
+ - uid: 8670
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-33.5
+ pos: 7.7723064,26.424816
parent: 2
- - uid: 12704
+ - uid: 8671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-33.5
+ pos: 4.6668377,28.35841
parent: 2
- - uid: 12705
+ - uid: 8672
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-33.5
+ pos: 4.7723064,28.276379
parent: 2
- - uid: 12706
+ - uid: 8673
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-33.5
+ pos: 52.712265,27.603039
parent: 2
- - uid: 12707
+ - uid: 8674
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-32.5
+ pos: 65.45301,30.813976
parent: 2
- - uid: 12708
+ - uid: 8675
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-31.5
+ pos: 67.12879,14.611559
parent: 2
- - uid: 12711
+ - uid: 8676
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-31.5
+ pos: 66.249886,15.408434
parent: 2
- - uid: 12712
+ - uid: 8677
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-31.5
+ pos: 66.51942,15.748278
parent: 2
- - uid: 12713
+ - uid: 8678
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-30.5
+ pos: 67.45692,20.470934
parent: 2
- - uid: 12714
+ - uid: 9324
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-30.5
+ pos: 65.20692,27.755383
parent: 2
- - uid: 12715
+ - uid: 9327
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-30.5
+ pos: 66.30848,20.552965
parent: 2
- - uid: 12716
+ - uid: 9457
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-30.5
+ pos: 66.33192,20.400621
parent: 2
- - uid: 12717
+ - uid: 9484
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-30.5
+ pos: 67.281136,14.845934
parent: 2
- - uid: 12718
+ - uid: 9485
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-30.5
+ pos: 67.60926,14.670153
parent: 2
- - uid: 12719
+ - uid: 11200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-30.5
+ pos: -11.337551,-10.456441
parent: 2
- - uid: 12720
+ - uid: 13586
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-30.5
+ pos: 27.67443,30.513906
parent: 2
- - uid: 12721
+ - uid: 22274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,-30.5
+ pos: 52.701233,21.07809
parent: 2
- - uid: 12722
+ - uid: 22371
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,-30.5
+ pos: 52.248108,14.499966
parent: 2
- - uid: 12723
+ - uid: 22378
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,-30.5
+ pos: 52.654358,13.859341
parent: 2
- - uid: 12724
+ - uid: 22416
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-30.5
+ pos: 52.310608,12.703091
parent: 2
- - uid: 12725
+ - uid: 27236
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,-29.5
+ pos: -6.140632,-7.438528
parent: 2
- - uid: 12726
+- proto: CapacitorStockPart
+ entities:
+ - uid: 14948
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,-28.5
+ pos: 21.57747,-25.42226
parent: 2
- - uid: 12727
+ - uid: 19724
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-29.5
+ pos: 21.554033,-25.289448
parent: 2
- - uid: 12728
+ - uid: 20183
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-29.5
+ pos: 52.36106,8.602298
parent: 2
- - uid: 12729
+ - uid: 31176
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-28.5
+ pos: -69.67199,1.5256414
parent: 2
- - uid: 12733
+ - uid: 31181
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-28.5
+ pos: -69.63683,1.7600164
parent: 2
- - uid: 12734
+- proto: CarbonDioxideCanister
+ entities:
+ - uid: 9352
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-28.5
+ pos: -39.5,48.5
parent: 2
- - uid: 12735
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: CargoBountyComputerCircuitboard
+ entities:
+ - uid: 13360
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-28.5
+ pos: -51.60338,25.72561
parent: 2
- - uid: 12736
+- proto: CargoTelepadMachineCircuitboard
+ entities:
+ - uid: 1218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-27.5
+ pos: -51.337753,25.686548
parent: 2
- - uid: 12737
+- proto: Carpet
+ entities:
+ - uid: 234
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-27.5
+ pos: -3.5,-9.5
parent: 2
- - uid: 12738
+ - uid: 237
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-27.5
+ pos: -3.5,-10.5
parent: 2
- - uid: 12739
+ - uid: 245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-26.5
+ pos: -5.5,-8.5
parent: 2
- - uid: 12740
+ - uid: 379
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-26.5
+ pos: -3.5,-8.5
parent: 2
- - uid: 12741
+ - uid: 380
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-25.5
+ pos: -4.5,-8.5
parent: 2
- - uid: 12742
+ - uid: 477
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-24.5
+ pos: -4.5,-9.5
parent: 2
- - uid: 12743
+ - uid: 478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-24.5
+ pos: -4.5,-10.5
parent: 2
- - uid: 12744
+ - uid: 482
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-23.5
+ pos: -5.5,-10.5
parent: 2
- - uid: 12745
+ - uid: 483
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-22.5
+ pos: -5.5,-9.5
parent: 2
- - uid: 12746
+ - uid: 603
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-8.5
parent: 2
- - uid: 12749
+ - uid: 609
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-9.5
parent: 2
- - uid: 12750
+ - uid: 614
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-8.5
parent: 2
- - uid: 12751
+ - uid: 625
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-9.5
parent: 2
- - uid: 12752
+ - uid: 769
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,19.5
parent: 2
- - uid: 12753
+ - uid: 880
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-36.5
parent: 2
- - uid: 12754
+ - uid: 881
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-35.5
parent: 2
- - uid: 12755
+ - uid: 928
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-35.5
parent: 2
- - uid: 12756
+ - uid: 950
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-35.5
parent: 2
- - uid: 12757
+ - uid: 988
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-35.5
parent: 2
- - uid: 12758
+ - uid: 1379
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-36.5
parent: 2
- - uid: 12759
+ - uid: 2247
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,24.5
parent: 2
- - uid: 12760
+ - uid: 2333
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,24.5
parent: 2
- - uid: 12761
+ - uid: 2545
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,21.5
parent: 2
- - uid: 12762
+ - uid: 4068
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-10.5
+ pos: -3.5,60.5
parent: 2
- - uid: 12763
+ - uid: 4245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,21.5
parent: 2
- - uid: 12764
+ - uid: 4440
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-9.5
+ pos: -4.5,60.5
parent: 2
- - uid: 12765
+ - uid: 5232
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-8.5
+ pos: -3.5,61.5
parent: 2
- - uid: 12766
+ - uid: 11193
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-7.5
+ pos: -17.5,50.5
parent: 2
- - uid: 12767
+ - uid: 11194
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 78.5,-6.5
+ pos: -17.5,51.5
parent: 2
- - uid: 12768
+ - uid: 11199
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,22.5
parent: 2
- - uid: 12769
+ - uid: 11205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,22.5
parent: 2
- - uid: 12770
+ - uid: 11986
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-36.5
parent: 2
- - uid: 12771
+ - uid: 13094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,21.5
parent: 2
- - uid: 12772
+ - uid: 13095
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,21.5
parent: 2
- - uid: 12773
+ - uid: 13129
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,22.5
parent: 2
- - uid: 12774
+ - uid: 13130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,23.5
parent: 2
- - uid: 12775
+ - uid: 13132
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -71.5,23.5
parent: 2
- - uid: 12776
+ - uid: 13783
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-36.5
parent: 2
- - uid: 12777
+ - uid: 13790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-35.5
parent: 2
- - uid: 12778
+ - uid: 13791
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-35.5
parent: 2
- - uid: 12779
+ - uid: 13806
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-36.5
parent: 2
- - uid: 12780
+ - uid: 13812
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-36.5
parent: 2
- - uid: 12781
+ - uid: 15421
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,3.5
+ pos: -21.5,25.5
parent: 2
- - uid: 12782
+ - uid: 15422
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,4.5
+ pos: -21.5,24.5
parent: 2
- - uid: 12783
+ - uid: 15424
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,5.5
+ pos: -20.5,25.5
parent: 2
- - uid: 12784
+ - uid: 15425
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,6.5
+ pos: -20.5,24.5
parent: 2
- - uid: 12785
+ - uid: 15427
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,7.5
+ pos: -19.5,25.5
parent: 2
- - uid: 12786
+ - uid: 15428
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,8.5
+ pos: -19.5,24.5
parent: 2
- - uid: 12787
+ - uid: 15430
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,9.5
+ pos: -16.5,25.5
parent: 2
- - uid: 13329
+ - uid: 15433
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,24.5
+ pos: -15.5,25.5
parent: 2
- - uid: 13330
+ - uid: 15435
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,24.5
+ pos: -14.5,26.5
parent: 2
- - uid: 13495
+ - uid: 15436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-58.5
+ pos: -14.5,25.5
parent: 2
- - uid: 13496
+ - uid: 15438
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-56.5
+ pos: -10.5,26.5
parent: 2
- - uid: 13497
+ - uid: 15439
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-45.5
+ pos: -10.5,25.5
parent: 2
- - uid: 13498
+ - uid: 15440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-83.5
+ pos: -10.5,24.5
parent: 2
- - uid: 13499
+ - uid: 15441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-83.5
+ pos: -9.5,26.5
parent: 2
- - uid: 13500
+ - uid: 15442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-85.5
+ pos: -9.5,25.5
parent: 2
- - uid: 13501
+ - uid: 15443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-65.5
+ pos: -9.5,24.5
parent: 2
- - uid: 13502
+ - uid: 15444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-73.5
+ pos: -8.5,26.5
parent: 2
- - uid: 13503
+ - uid: 15445
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-74.5
+ pos: -8.5,25.5
parent: 2
- - uid: 13520
+ - uid: 15446
components:
- type: Transform
- pos: 55.5,-33.5
+ pos: -8.5,24.5
parent: 2
- - uid: 13521
+ - uid: 15515
components:
- type: Transform
- pos: 56.5,-33.5
+ pos: -5.5,61.5
parent: 2
- - uid: 13522
+ - uid: 15518
components:
- type: Transform
- pos: 57.5,-33.5
+ pos: -5.5,60.5
parent: 2
- - uid: 13523
+ - uid: 15634
components:
- type: Transform
- pos: 55.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,49.5
parent: 2
- - uid: 13524
+ - uid: 15680
components:
- type: Transform
- pos: 56.5,-35.5
+ pos: -16.5,49.5
parent: 2
- - uid: 13525
+ - uid: 15681
components:
- type: Transform
- pos: 57.5,-35.5
+ pos: -16.5,50.5
parent: 2
- - uid: 13526
+ - uid: 15731
components:
- type: Transform
- pos: 56.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,34.5
parent: 2
- - uid: 13527
+ - uid: 15758
components:
- type: Transform
- pos: 55.5,-36.5
+ pos: -6.5,29.5
parent: 2
- - uid: 13528
+ - uid: 15761
components:
- type: Transform
- pos: 55.5,-37.5
+ pos: -6.5,28.5
parent: 2
- - uid: 13529
+ - uid: 15762
components:
- type: Transform
- pos: 55.5,-38.5
+ pos: -5.5,29.5
parent: 2
- - uid: 13530
+ - uid: 15763
components:
- type: Transform
- pos: 56.5,-38.5
+ pos: -5.5,28.5
parent: 2
- - uid: 13531
+ - uid: 15764
components:
- type: Transform
- pos: 57.5,-37.5
+ pos: -4.5,29.5
parent: 2
- - uid: 13532
+ - uid: 15765
components:
- type: Transform
- pos: 57.5,-38.5
+ pos: -4.5,28.5
parent: 2
- - uid: 13533
+ - uid: 15766
components:
- type: Transform
- pos: 57.5,-36.5
+ pos: -6.5,27.5
parent: 2
- - uid: 13534
+ - uid: 15767
components:
- type: Transform
- pos: 56.5,-39.5
+ pos: -5.5,27.5
parent: 2
- - uid: 13550
+ - uid: 15768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-80.5
+ pos: -4.5,27.5
parent: 2
- - uid: 13558
+ - uid: 15783
components:
- type: Transform
- pos: 57.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,33.5
parent: 2
- - uid: 13559
+ - uid: 15784
components:
- type: Transform
- pos: 55.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,34.5
parent: 2
- - uid: 13560
+ - uid: 15785
components:
- type: Transform
- pos: 55.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,33.5
parent: 2
- - uid: 13561
+ - uid: 15786
components:
- type: Transform
- pos: 57.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,34.5
parent: 2
- - uid: 13651
+ - uid: 15787
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,33.5
parent: 2
- - uid: 13652
+ - uid: 16448
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-52.5
+ pos: -9.5,41.5
parent: 2
- - uid: 13653
+ - uid: 16449
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-50.5
+ pos: -9.5,40.5
parent: 2
- - uid: 13654
+ - uid: 16450
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-51.5
+ pos: -8.5,41.5
parent: 2
- - uid: 13659
+ - uid: 16451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-49.5
+ pos: -8.5,40.5
parent: 2
- - uid: 13722
+ - uid: 16623
components:
- type: Transform
- pos: -46.5,63.5
+ pos: -4.5,61.5
parent: 2
- - uid: 13861
+ - uid: 26092
components:
- type: Transform
- pos: -42.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,26.5
parent: 2
- - uid: 13862
+ - uid: 26093
components:
- type: Transform
- pos: -46.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,26.5
parent: 2
- - uid: 13995
+ - uid: 26094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,24.5
parent: 2
- - uid: 14245
+ - uid: 27815
components:
- type: Transform
- pos: -46.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,23.5
parent: 2
- - uid: 14286
+ - uid: 28971
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,44.5
+ pos: -16.5,51.5
parent: 2
- - uid: 14291
+ - uid: 30520
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,44.5
+ pos: -7.5,20.5
parent: 2
- - uid: 14568
+ - uid: 30521
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,33.5
+ pos: -7.5,19.5
parent: 2
- - uid: 14569
+ - uid: 30522
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,33.5
+ pos: -6.5,20.5
parent: 2
- - uid: 14570
+ - uid: 30523
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,33.5
+ pos: -6.5,19.5
parent: 2
- - uid: 14571
+ - uid: 30524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,33.5
+ pos: -5.5,20.5
parent: 2
- - uid: 14572
+ - uid: 30526
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,33.5
+ pos: -4.5,20.5
parent: 2
- - uid: 14573
+ - uid: 30527
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,33.5
+ pos: -4.5,19.5
parent: 2
- - uid: 14574
+ - uid: 30543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,20.5
parent: 2
- - uid: 14575
+ - uid: 30544
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,21.5
parent: 2
- - uid: 14576
+ - uid: 30545
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,20.5
parent: 2
- - uid: 14577
+ - uid: 30546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,21.5
parent: 2
- - uid: 14578
+ - uid: 30547
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,20.5
parent: 2
- - uid: 14579
+ - uid: 30548
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,21.5
parent: 2
- - uid: 14580
+ - uid: 30549
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,21.5
parent: 2
- - uid: 14581
+ - uid: 30550
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,20.5
parent: 2
- - uid: 14582
+ - uid: 30551
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,20.5
parent: 2
- - uid: 14583
+- proto: CarpetBlack
+ entities:
+ - uid: 674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,33.5
+ pos: -20.5,-10.5
parent: 2
- - uid: 14584
+ - uid: 675
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,33.5
+ pos: -21.5,-11.5
parent: 2
- - uid: 14585
+ - uid: 701
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,33.5
+ pos: -16.5,-10.5
parent: 2
- - uid: 14594
+ - uid: 702
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,33.5
+ pos: -17.5,-9.5
parent: 2
- - uid: 14595
+ - uid: 703
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,34.5
+ pos: -17.5,-8.5
parent: 2
- - uid: 14596
+ - uid: 704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,35.5
+ pos: -17.5,-10.5
parent: 2
- - uid: 14597
+ - uid: 705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,36.5
+ pos: -16.5,-9.5
parent: 2
- - uid: 14609
+ - uid: 706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,45.5
+ pos: -16.5,-8.5
parent: 2
- - uid: 14610
+ - uid: 918
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,46.5
+ pos: -73.5,3.5
parent: 2
- - uid: 14611
+ - uid: 4171
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,20.5
parent: 2
- - uid: 14612
+ - uid: 4172
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,29.5
parent: 2
- - uid: 14613
+ - uid: 4173
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,49.5
+ pos: 54.5,16.5
parent: 2
- - uid: 14614
+ - uid: 4174
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,50.5
+ pos: 54.5,17.5
parent: 2
- - uid: 14615
+ - uid: 4177
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,51.5
+ pos: 65.5,22.5
parent: 2
- - uid: 14636
+ - uid: 4267
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,49.5
+ pos: 62.5,18.5
parent: 2
- - uid: 14637
+ - uid: 4273
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,18.5
parent: 2
- - uid: 14763
+ - uid: 4274
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,32.5
+ pos: 53.5,16.5
parent: 2
- - uid: 14764
+ - uid: 4276
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,31.5
+ pos: 63.5,17.5
parent: 2
- - uid: 14765
+ - uid: 4279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,30.5
+ pos: 62.5,17.5
parent: 2
- - uid: 14766
+ - uid: 4284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,29.5
+ pos: 62.5,16.5
parent: 2
- - uid: 14767
+ - uid: 4285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,28.5
+ pos: 63.5,18.5
parent: 2
- - uid: 14768
+ - uid: 4287
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,27.5
+ pos: 63.5,16.5
parent: 2
- - uid: 14769
+ - uid: 4291
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,26.5
+ pos: 53.5,17.5
parent: 2
- - uid: 14770
+ - uid: 4293
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,25.5
+ pos: 57.5,18.5
parent: 2
- - uid: 14771
+ - uid: 4295
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,24.5
+ pos: 60.5,16.5
parent: 2
- - uid: 14772
+ - uid: 4302
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,23.5
+ pos: 60.5,17.5
parent: 2
- - uid: 14773
+ - uid: 4303
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,22.5
+ pos: 59.5,17.5
parent: 2
- - uid: 14774
+ - uid: 4304
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,27.5
+ pos: 59.5,16.5
parent: 2
- - uid: 15046
+ - uid: 4305
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,60.5
+ pos: 59.5,18.5
parent: 2
- - uid: 15156
+ - uid: 4337
components:
- type: Transform
- pos: -46.5,69.5
+ pos: 58.5,16.5
parent: 2
- - uid: 15198
+ - uid: 4338
components:
- type: Transform
- pos: -44.5,69.5
+ pos: 61.5,16.5
parent: 2
- - uid: 15935
+ - uid: 4339
components:
- type: Transform
- pos: -46.5,62.5
+ pos: 57.5,16.5
parent: 2
- - uid: 15960
+ - uid: 4340
components:
- type: Transform
- pos: -45.5,69.5
+ pos: 58.5,18.5
parent: 2
- - uid: 16006
+ - uid: 4341
components:
- type: Transform
- pos: -5.5,45.5
+ pos: 58.5,17.5
parent: 2
- - uid: 16007
+ - uid: 4343
components:
- type: Transform
- pos: -4.5,45.5
+ pos: 56.5,18.5
parent: 2
- - uid: 16008
+ - uid: 4344
components:
- type: Transform
- pos: -3.5,45.5
+ pos: 60.5,18.5
parent: 2
- - uid: 16009
+ - uid: 4345
components:
- type: Transform
- pos: -2.5,45.5
+ pos: 61.5,18.5
parent: 2
- - uid: 16010
+ - uid: 4346
components:
- type: Transform
- pos: -2.5,44.5
+ pos: 56.5,16.5
parent: 2
- - uid: 16011
+ - uid: 4356
components:
- type: Transform
- pos: -2.5,43.5
+ pos: 56.5,17.5
parent: 2
- - uid: 16012
+ - uid: 4357
components:
- type: Transform
- pos: -2.5,42.5
+ pos: 54.5,18.5
parent: 2
- - uid: 16013
+ - uid: 4358
components:
- type: Transform
- pos: -2.5,41.5
+ pos: 55.5,16.5
parent: 2
- - uid: 16014
+ - uid: 4360
components:
- type: Transform
- pos: -2.5,40.5
+ pos: 55.5,18.5
parent: 2
- - uid: 16015
+ - uid: 4361
components:
- type: Transform
- pos: -2.5,39.5
+ pos: 55.5,17.5
parent: 2
- - uid: 16016
+ - uid: 4362
components:
- type: Transform
- pos: -2.5,38.5
+ pos: 61.5,17.5
parent: 2
- - uid: 16017
+ - uid: 4363
components:
- type: Transform
- pos: -2.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,30.5
parent: 2
- - uid: 16018
+ - uid: 4364
components:
- type: Transform
- pos: -2.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,29.5
parent: 2
- - uid: 16019
+ - uid: 4413
components:
- type: Transform
- pos: -2.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,30.5
parent: 2
- - uid: 16020
+ - uid: 4414
components:
- type: Transform
- pos: -2.5,34.5
+ pos: 57.5,17.5
parent: 2
- - uid: 16021
+ - uid: 4418
components:
- type: Transform
- pos: -2.5,33.5
+ pos: 54.5,20.5
parent: 2
- - uid: 16022
+ - uid: 4420
components:
- type: Transform
- pos: -2.5,32.5
+ pos: 54.5,21.5
parent: 2
- - uid: 16023
+ - uid: 4421
components:
- type: Transform
- pos: -2.5,31.5
+ pos: 54.5,22.5
parent: 2
- - uid: 16024
+ - uid: 4422
components:
- type: Transform
- pos: -2.5,30.5
+ pos: 50.5,17.5
parent: 2
- - uid: 16025
+ - uid: 5447
components:
- type: Transform
- pos: -2.5,29.5
+ pos: -10.5,67.5
parent: 2
- - uid: 16026
+ - uid: 5450
components:
- type: Transform
- pos: -2.5,28.5
+ pos: 48.5,33.5
parent: 2
- - uid: 16027
+ - uid: 5451
components:
- type: Transform
- pos: -1.5,28.5
+ pos: 47.5,33.5
parent: 2
- - uid: 16028
+ - uid: 5452
components:
- type: Transform
- pos: -0.5,28.5
+ pos: 47.5,34.5
parent: 2
- - uid: 16029
+ - uid: 5453
components:
- type: Transform
- pos: -1.5,44.5
+ pos: 48.5,34.5
parent: 2
- - uid: 16030
+ - uid: 5454
components:
- type: Transform
- pos: -0.5,44.5
+ pos: 44.5,29.5
parent: 2
- - uid: 16084
+ - uid: 5455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,40.5
+ pos: 43.5,29.5
parent: 2
- - uid: 16361
+ - uid: 5456
components:
- type: Transform
- pos: -46.5,68.5
+ pos: 43.5,30.5
parent: 2
- - uid: 16367
+ - uid: 5457
components:
- type: Transform
- pos: -43.5,69.5
+ pos: 44.5,30.5
parent: 2
- - uid: 16396
+ - uid: 5458
components:
- type: Transform
- pos: 80.5,-17.5
+ pos: 45.5,29.5
parent: 2
- - uid: 16405
+ - uid: 5459
components:
- type: Transform
- pos: -46.5,60.5
+ pos: 45.5,30.5
parent: 2
- - uid: 17968
+ - uid: 5460
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,60.5
+ pos: 46.5,30.5
parent: 2
- - uid: 17970
+ - uid: 5461
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,59.5
+ pos: 46.5,29.5
parent: 2
- - uid: 17976
+ - uid: 5462
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,62.5
+ pos: 48.5,29.5
parent: 2
- - uid: 17978
+ - uid: 5463
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,61.5
+ pos: 48.5,30.5
parent: 2
- - uid: 18015
+ - uid: 5464
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,60.5
+ pos: 49.5,29.5
parent: 2
- - uid: 18016
+ - uid: 5465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,58.5
+ pos: 49.5,30.5
parent: 2
- - uid: 18327
+ - uid: 5466
components:
- type: Transform
- pos: 37.5,10.5
+ pos: 44.5,34.5
parent: 2
- - uid: 18346
+ - uid: 5467
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,58.5
+ pos: 43.5,34.5
parent: 2
- - uid: 19098
+ - uid: 5468
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,50.5
+ pos: 43.5,33.5
parent: 2
- - uid: 19103
+ - uid: 5469
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -113.5,58.5
+ pos: 44.5,33.5
parent: 2
- - uid: 19104
+ - uid: 5470
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,58.5
+ pos: 46.5,33.5
parent: 2
- - uid: 19105
+ - uid: 5471
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,58.5
+ pos: 46.5,34.5
parent: 2
- - uid: 19108
+ - uid: 5472
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -118.5,58.5
+ pos: 49.5,33.5
parent: 2
- - uid: 19109
+ - uid: 5473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,58.5
+ pos: 49.5,34.5
parent: 2
- - uid: 19110
+ - uid: 6303
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,57.5
+ pos: -9.5,69.5
parent: 2
- - uid: 19111
+ - uid: 6310
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,56.5
+ pos: -11.5,69.5
parent: 2
- - uid: 19113
+ - uid: 7578
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,53.5
+ pos: -7.5,69.5
parent: 2
- - uid: 19114
+ - uid: 7579
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,51.5
+ pos: -8.5,69.5
parent: 2
- - uid: 19116
+ - uid: 7580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,55.5
+ pos: -7.5,67.5
parent: 2
- - uid: 19117
+ - uid: 7607
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,55.5
+ pos: -10.5,69.5
parent: 2
- - uid: 19118
+ - uid: 7881
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,55.5
+ pos: 88.5,39.5
parent: 2
- - uid: 19119
+ - uid: 8140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -110.5,55.5
+ pos: -71.5,3.5
parent: 2
- - uid: 19120
+ - uid: 8334
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,53.5
+ pos: -73.5,2.5
parent: 2
- - uid: 19121
+ - uid: 11258
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,51.5
+ pos: -71.5,2.5
parent: 2
- - uid: 19122
+ - uid: 11637
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,50.5
+ pos: -8.5,67.5
parent: 2
- - uid: 19123
+ - uid: 13827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,49.5
+ pos: 87.5,39.5
parent: 2
- - uid: 19124
+ - uid: 13842
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,47.5
+ pos: -11.5,67.5
parent: 2
- - uid: 19125
+ - uid: 13860
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -111.5,47.5
+ pos: -9.5,67.5
parent: 2
- - uid: 19126
+ - uid: 15504
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,47.5
+ pos: -22.5,-11.5
parent: 2
- - uid: 19127
+ - uid: 15842
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,47.5
+ pos: -20.5,-11.5
parent: 2
- - uid: 19128
+ - uid: 15860
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,46.5
+ pos: 65.5,21.5
parent: 2
- - uid: 19129
+ - uid: 15950
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,45.5
+ pos: -22.5,-10.5
parent: 2
- - uid: 19130
+ - uid: 16589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,44.5
+ pos: 66.5,21.5
parent: 2
- - uid: 19131
+ - uid: 16593
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -117.5,44.5
+ pos: 65.5,18.5
parent: 2
- - uid: 19133
+ - uid: 16594
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -115.5,44.5
+ pos: 66.5,20.5
parent: 2
- - uid: 19134
+ - uid: 16614
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -114.5,44.5
+ pos: 65.5,16.5
parent: 2
- - uid: 19135
+ - uid: 16616
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -113.5,44.5
+ pos: 65.5,13.5
parent: 2
- - uid: 19136
+ - uid: 16618
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -112.5,44.5
+ pos: 66.5,22.5
parent: 2
- - uid: 19137
+ - uid: 16620
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -109.5,44.5
+ pos: 65.5,17.5
parent: 2
- - uid: 19138
+ - uid: 18027
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,44.5
+ pos: 65.5,14.5
parent: 2
- - uid: 19139
+ - uid: 18220
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,44.5
+ pos: 65.5,12.5
parent: 2
- - uid: 19140
+ - uid: 19334
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,45.5
+ pos: 65.5,15.5
parent: 2
- - uid: 19141
+ - uid: 19942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,46.5
- parent: 2
- - uid: 19142
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-5.5
parent: 2
- - uid: 19143
+ - uid: 19951
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-4.5
parent: 2
- - uid: 19144
+ - uid: 20566
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,51.5
+ pos: -15.5,-9.5
parent: 2
- - uid: 19145
+ - uid: 20634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,54.5
+ pos: -15.5,-8.5
parent: 2
- - uid: 19147
+ - uid: 20872
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,56.5
+ pos: -21.5,-10.5
parent: 2
- - uid: 19148
+ - uid: 21838
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,57.5
+ pos: 66.5,19.5
parent: 2
- - uid: 19149
+ - uid: 22226
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,56.5
+ pos: 66.5,18.5
parent: 2
- - uid: 19150
+ - uid: 23071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-3.5
parent: 2
- - uid: 19151
+ - uid: 23253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,56.5
+ pos: -72.5,3.5
parent: 2
- - uid: 19152
+ - uid: 23469
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,56.5
+ pos: 87.5,40.5
parent: 2
- - uid: 19153
+ - uid: 23482
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,56.5
+ pos: 87.5,41.5
parent: 2
- - uid: 19154
+ - uid: 23510
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-4.5
parent: 2
- - uid: 19155
+ - uid: 23511
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-4.5
parent: 2
- - uid: 19156
+ - uid: 23513
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -99.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-3.5
parent: 2
- - uid: 19157
+ - uid: 23514
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -98.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,-5.5
parent: 2
- - uid: 19158
+ - uid: 23515
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,-5.5
parent: 2
- - uid: 19159
+ - uid: 23627
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,54.5
+ pos: -72.5,2.5
parent: 2
- - uid: 19160
+ - uid: 25006
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,54.5
+ pos: 56.5,12.5
parent: 2
- - uid: 19161
+ - uid: 27948
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,-3.5
parent: 2
- - uid: 19162
+ - uid: 29852
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,52.5
+ pos: 86.5,41.5
parent: 2
- - uid: 19163
+ - uid: 29854
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,51.5
+ pos: 88.5,40.5
parent: 2
- - uid: 19164
+ - uid: 29855
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,51.5
+ pos: 88.5,41.5
parent: 2
- - uid: 19167
+ - uid: 29856
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,51.5
+ pos: 86.5,39.5
parent: 2
- - uid: 19168
+ - uid: 29858
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,51.5
+ pos: 86.5,40.5
parent: 2
- - uid: 19169
+ - uid: 30351
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,51.5
+ pos: 48.5,15.5
parent: 2
- - uid: 19170
+ - uid: 30352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,51.5
+ pos: 48.5,16.5
parent: 2
- - uid: 19171
+ - uid: 30367
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,48.5
+ pos: 65.5,20.5
parent: 2
- - uid: 19172
+ - uid: 30369
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,47.5
+ pos: 65.5,19.5
parent: 2
- - uid: 19173
+ - uid: 30470
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,46.5
+ pos: 48.5,17.5
parent: 2
- - uid: 19174
+ - uid: 30471
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,46.5
+ pos: 48.5,18.5
parent: 2
- - uid: 19175
+ - uid: 30472
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,46.5
+ pos: 48.5,19.5
parent: 2
- - uid: 19176
+ - uid: 30473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,46.5
+ pos: 49.5,15.5
parent: 2
- - uid: 19289
+ - uid: 30474
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,35.5
+ pos: 49.5,16.5
parent: 2
- - uid: 19290
+ - uid: 30475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,36.5
+ pos: 49.5,17.5
parent: 2
- - uid: 19481
+ - uid: 30476
components:
- type: Transform
- pos: -5.5,79.5
+ pos: 49.5,18.5
parent: 2
- - uid: 19604
+ - uid: 30477
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: 49.5,19.5
parent: 2
- - uid: 19689
+ - uid: 30478
components:
- type: Transform
- pos: -41.5,69.5
+ pos: 50.5,15.5
parent: 2
- - uid: 19767
+ - uid: 30479
components:
- type: Transform
- pos: -27.5,-4.5
+ pos: 50.5,16.5
parent: 2
- - uid: 19814
+ - uid: 30481
components:
- type: Transform
- pos: -45.5,56.5
+ pos: 50.5,18.5
parent: 2
- - uid: 19828
+ - uid: 30482
components:
- type: Transform
- pos: -46.5,65.5
+ pos: 50.5,19.5
parent: 2
- - uid: 19900
+ - uid: 30503
components:
- type: Transform
- pos: 79.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,68.5
parent: 2
- - uid: 20006
+ - uid: 30504
components:
- type: Transform
- pos: 78.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,69.5
parent: 2
- - uid: 20214
+ - uid: 30506
components:
- type: Transform
- pos: -44.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,67.5
parent: 2
- - uid: 20223
+ - uid: 30507
components:
- type: Transform
- pos: 36.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,66.5
parent: 2
- - uid: 20839
+ - uid: 30508
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,16.5
+ pos: 0.5,65.5
parent: 2
- - uid: 20840
+ - uid: 30509
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,15.5
+ pos: 1.5,69.5
parent: 2
- - uid: 20841
+ - uid: 30510
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,14.5
+ pos: 1.5,68.5
parent: 2
- - uid: 20842
+ - uid: 30511
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,13.5
+ pos: 1.5,67.5
parent: 2
- - uid: 20843
+ - uid: 30512
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,16.5
+ pos: 1.5,66.5
parent: 2
- - uid: 20844
+ - uid: 30513
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,15.5
+ pos: 1.5,65.5
parent: 2
- - uid: 20845
+ - uid: 31365
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,14.5
+ pos: -15.5,-10.5
parent: 2
- - uid: 20846
+ - uid: 33659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,13.5
+ pos: -38.5,66.5
parent: 2
- - uid: 20847
+ - uid: 33660
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,12.5
+ pos: -38.5,65.5
parent: 2
- - uid: 20848
+ - uid: 33661
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,11.5
+ pos: -38.5,64.5
parent: 2
- - uid: 20849
+ - uid: 33662
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,10.5
+ pos: -38.5,63.5
parent: 2
- - uid: 20850
+ - uid: 33663
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,9.5
+ pos: -37.5,66.5
parent: 2
- - uid: 20851
+ - uid: 33664
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,8.5
+ pos: -37.5,65.5
parent: 2
- - uid: 20852
+ - uid: 33665
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,7.5
+ pos: -37.5,64.5
parent: 2
- - uid: 20853
+ - uid: 33666
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,6.5
+ pos: -37.5,63.5
parent: 2
- - uid: 20854
+ - uid: 33667
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,5.5
+ pos: -36.5,66.5
parent: 2
- - uid: 20855
+ - uid: 33668
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,4.5
+ pos: -36.5,65.5
parent: 2
- - uid: 20856
+ - uid: 33669
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,3.5
+ pos: -36.5,64.5
parent: 2
- - uid: 20857
+ - uid: 33670
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,2.5
+ pos: -36.5,63.5
parent: 2
- - uid: 20858
+ - uid: 33671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,1.5
+ pos: -38.5,62.5
parent: 2
- - uid: 20859
+ - uid: 33672
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,0.5
+ pos: -37.5,62.5
parent: 2
- - uid: 20860
+ - uid: 33673
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-0.5
+ pos: -36.5,62.5
parent: 2
- - uid: 20861
+ - uid: 35703
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,-1.5
+ pos: 56.5,85.5
parent: 2
- - uid: 20862
+ - uid: 35704
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,-2.5
+ pos: 57.5,85.5
parent: 2
- - uid: 20863
+ - uid: 35705
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,-3.5
+ pos: 58.5,84.5
parent: 2
- - uid: 20871
+ - uid: 35706
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -27.5,-5.5
+ pos: 57.5,83.5
parent: 2
- - uid: 20872
+ - uid: 35707
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,-5.5
+ pos: 56.5,83.5
parent: 2
- - uid: 20873
+ - uid: 35708
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.5,-5.5
+ pos: 57.5,84.5
parent: 2
- - uid: 20874
+ - uid: 35710
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,-5.5
+ pos: 58.5,83.5
parent: 2
- - uid: 20880
+ - uid: 37733
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,4.5
+ pos: 66.5,15.5
parent: 2
- - uid: 20881
+ - uid: 37734
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,4.5
+ pos: 66.5,16.5
parent: 2
- - uid: 20882
+ - uid: 37735
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,4.5
+ pos: 66.5,17.5
parent: 2
- - uid: 20883
+ - uid: 37736
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,4.5
+ pos: 66.5,14.5
parent: 2
- - uid: 20884
+ - uid: 37739
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,6.5
+ pos: 66.5,13.5
parent: 2
- - uid: 20885
+ - uid: 37740
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,6.5
+ pos: 66.5,12.5
parent: 2
- - uid: 20886
+ - uid: 37741
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,6.5
+ pos: 67.5,22.5
parent: 2
- - uid: 20887
+ - uid: 37742
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,6.5
+ pos: 67.5,21.5
parent: 2
- - uid: 20888
+ - uid: 37745
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,8.5
+ pos: 67.5,20.5
parent: 2
- - uid: 20891
+ - uid: 37746
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,17.5
+ pos: 67.5,19.5
parent: 2
- - uid: 20892
+ - uid: 37747
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,16.5
+ pos: 67.5,18.5
parent: 2
- - uid: 20893
+ - uid: 37749
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,15.5
+ pos: 67.5,17.5
parent: 2
- - uid: 20894
+ - uid: 37750
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,14.5
+ pos: 67.5,16.5
parent: 2
- - uid: 20895
+ - uid: 37751
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,13.5
+ pos: 67.5,15.5
parent: 2
- - uid: 20896
+ - uid: 37752
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,12.5
+ pos: 67.5,14.5
parent: 2
- - uid: 20897
+ - uid: 38131
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,11.5
+ pos: 67.5,13.5
parent: 2
- - uid: 20898
+ - uid: 38132
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,11.5
+ pos: 67.5,12.5
parent: 2
- - uid: 20899
+ - uid: 39097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,11.5
+ pos: 68.5,22.5
parent: 2
- - uid: 20902
+ - uid: 39098
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,10.5
+ pos: 68.5,21.5
parent: 2
- - uid: 20903
+ - uid: 39099
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,9.5
+ pos: 68.5,20.5
parent: 2
- - uid: 20904
+ - uid: 39100
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,8.5
+ pos: 68.5,19.5
parent: 2
- - uid: 20905
+ - uid: 39101
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,7.5
+ pos: 68.5,18.5
parent: 2
- - uid: 20906
+ - uid: 39102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,6.5
+ pos: 68.5,17.5
parent: 2
- - uid: 20907
+ - uid: 39103
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,5.5
+ pos: 68.5,16.5
parent: 2
- - uid: 20908
+ - uid: 39104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,4.5
+ pos: 68.5,15.5
parent: 2
- - uid: 20909
+ - uid: 39105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,3.5
+ pos: 68.5,14.5
parent: 2
- - uid: 20910
+ - uid: 39106
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,2.5
+ pos: 68.5,13.5
parent: 2
- - uid: 20911
+ - uid: 39107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,1.5
+ pos: 68.5,12.5
parent: 2
- - uid: 20912
+ - uid: 39108
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,0.5
+ pos: 69.5,22.5
parent: 2
- - uid: 20913
+ - uid: 39109
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-0.5
+ pos: 69.5,21.5
parent: 2
- - uid: 20914
+ - uid: 39110
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-1.5
+ pos: 69.5,20.5
parent: 2
- - uid: 20915
+ - uid: 39111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-2.5
+ pos: 69.5,19.5
parent: 2
- - uid: 20916
+ - uid: 39112
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-3.5
+ pos: 69.5,18.5
parent: 2
- - uid: 20917
+ - uid: 39113
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-4.5
+ pos: 69.5,17.5
parent: 2
- - uid: 20918
+ - uid: 39114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-5.5
+ pos: 69.5,16.5
parent: 2
- - uid: 20919
+ - uid: 39115
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-6.5
+ pos: 69.5,15.5
parent: 2
- - uid: 20920
+ - uid: 39116
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-7.5
+ pos: 69.5,14.5
parent: 2
- - uid: 20921
+ - uid: 39117
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-8.5
+ pos: 69.5,13.5
parent: 2
- - uid: 20922
+ - uid: 39118
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-9.5
+ pos: 69.5,12.5
parent: 2
- - uid: 20923
+ - uid: 39119
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-10.5
+ pos: 69.5,11.5
parent: 2
- - uid: 20924
+ - uid: 39120
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-11.5
+ pos: 68.5,11.5
parent: 2
- - uid: 20925
+ - uid: 39121
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-12.5
+ pos: 67.5,11.5
parent: 2
- - uid: 21183
+ - uid: 39122
components:
- type: Transform
- pos: -62.5,-16.5
+ pos: 66.5,11.5
parent: 2
- - uid: 21184
+ - uid: 39123
components:
- type: Transform
- pos: -63.5,-16.5
+ pos: 66.5,10.5
parent: 2
- - uid: 21185
+ - uid: 39124
components:
- type: Transform
- pos: -64.5,-16.5
+ pos: 67.5,10.5
parent: 2
- - uid: 21186
+ - uid: 39125
components:
- type: Transform
- pos: -65.5,-16.5
+ pos: 68.5,10.5
parent: 2
- - uid: 21187
+ - uid: 39126
components:
- type: Transform
- pos: -66.5,-16.5
+ pos: 66.5,23.5
parent: 2
- - uid: 21192
+ - uid: 39127
components:
- type: Transform
- pos: 42.5,15.5
+ pos: 66.5,24.5
parent: 2
- - uid: 21193
+ - uid: 39128
components:
- type: Transform
- pos: 43.5,15.5
+ pos: 67.5,23.5
parent: 2
- - uid: 21194
+ - uid: 39129
components:
- type: Transform
- pos: 39.5,13.5
+ pos: 67.5,24.5
parent: 2
- - uid: 21195
+ - uid: 39130
components:
- type: Transform
- pos: 40.5,13.5
+ pos: 68.5,23.5
parent: 2
- - uid: 21196
+ - uid: 39131
components:
- type: Transform
- pos: 41.5,13.5
+ pos: 68.5,24.5
parent: 2
- - uid: 21197
+ - uid: 39132
components:
- type: Transform
- pos: 42.5,13.5
+ pos: 69.5,23.5
parent: 2
- - uid: 21198
+ - uid: 39133
components:
- type: Transform
- pos: 43.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,18.5
parent: 2
- - uid: 21205
+ - uid: 39134
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,80.5
+ pos: 52.5,17.5
parent: 2
- - uid: 21206
+ - uid: 39135
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,79.5
+ pos: 52.5,16.5
parent: 2
- - uid: 21210
+ - uid: 39136
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,33.5
+ pos: 55.5,22.5
parent: 2
- - uid: 21211
+ - uid: 39137
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,32.5
+ pos: 55.5,21.5
parent: 2
- - uid: 21212
+ - uid: 39138
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,31.5
+ pos: 55.5,20.5
parent: 2
- - uid: 21213
+ - uid: 39139
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.5,30.5
+ pos: 56.5,21.5
parent: 2
- - uid: 21214
+ - uid: 39140
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.5,29.5
+ pos: 56.5,22.5
parent: 2
- - uid: 21215
+ - uid: 39142
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,28.5
+ pos: 54.5,14.5
parent: 2
- - uid: 21216
+ - uid: 39143
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,27.5
+ pos: 54.5,13.5
parent: 2
- - uid: 21217
+ - uid: 39144
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,26.5
+ pos: 54.5,12.5
parent: 2
- - uid: 21218
+ - uid: 39145
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,26.5
+ pos: 55.5,14.5
parent: 2
- - uid: 21219
+ - uid: 39146
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,26.5
+ pos: 55.5,13.5
parent: 2
- - uid: 21220
+ - uid: 39147
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,26.5
+ pos: 55.5,12.5
parent: 2
- - uid: 21221
+ - uid: 39148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,26.5
+ pos: 56.5,13.5
parent: 2
- - uid: 21222
+ - uid: 39149
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,26.5
+ pos: 56.5,14.5
parent: 2
- - uid: 21223
+ - uid: 39272
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-25.5
parent: 2
- - uid: 21224
+ - uid: 39273
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-26.5
parent: 2
- - uid: 21225
+ - uid: 39274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-27.5
parent: 2
- - uid: 21226
+ - uid: 39275
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-25.5
parent: 2
- - uid: 21227
+ - uid: 39276
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-26.5
parent: 2
- - uid: 21228
+ - uid: 39277
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-27.5
parent: 2
- - uid: 21229
+ - uid: 39278
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-25.5
parent: 2
- - uid: 21230
+ - uid: 39279
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-26.5
parent: 2
- - uid: 21231
+ - uid: 39280
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-27.5
parent: 2
- - uid: 21232
+ - uid: 39281
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-25.5
parent: 2
- - uid: 21233
+ - uid: 39282
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-26.5
parent: 2
- - uid: 21234
+ - uid: 39283
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-27.5
parent: 2
- - uid: 21235
+ - uid: 39284
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-25.5
parent: 2
- - uid: 21236
+ - uid: 39285
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-26.5
parent: 2
- - uid: 21237
+ - uid: 39286
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-27.5
parent: 2
- - uid: 21238
+- proto: CarpetBlue
+ entities:
+ - uid: 850
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,25.5
+ pos: -3.5,-31.5
parent: 2
- - uid: 21239
+ - uid: 1071
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,24.5
+ pos: 21.5,49.5
parent: 2
- - uid: 21240
+ - uid: 1338
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,23.5
+ pos: -35.5,-25.5
parent: 2
- - uid: 21839
+ - uid: 1360
components:
- type: Transform
- pos: -55.5,-32.5
+ pos: -2.5,-33.5
parent: 2
- - uid: 21840
+ - uid: 1836
components:
- type: Transform
- pos: -55.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-41.5
parent: 2
- - uid: 21841
+ - uid: 1857
components:
- type: Transform
- pos: -55.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-42.5
parent: 2
- - uid: 21952
+ - uid: 1896
components:
- type: Transform
- pos: -55.5,-33.5
+ pos: 6.5,29.5
parent: 2
- - uid: 21954
+ - uid: 1897
components:
- type: Transform
- pos: -52.5,-35.5
+ pos: 6.5,28.5
parent: 2
- - uid: 21968
+ - uid: 1953
components:
- type: Transform
- pos: 5.5,33.5
+ pos: 12.5,28.5
parent: 2
- - uid: 22286
+ - uid: 1954
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,60.5
+ pos: 11.5,28.5
parent: 2
- - uid: 22288
+ - uid: 1955
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,61.5
+ pos: 11.5,29.5
parent: 2
- - uid: 22296
+ - uid: 1957
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,59.5
+ pos: 12.5,29.5
parent: 2
- - uid: 22297
+ - uid: 1959
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,62.5
+ pos: 13.5,29.5
parent: 2
- - uid: 22350
+ - uid: 1960
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,60.5
+ pos: 13.5,28.5
parent: 2
- - uid: 22351
+ - uid: 1968
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,60.5
+ pos: 7.5,28.5
parent: 2
- - uid: 22734
+ - uid: 1969
components:
- type: Transform
- pos: -64.5,-21.5
+ pos: 7.5,29.5
parent: 2
- - uid: 23228
+ - uid: 1970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,35.5
+ pos: 8.5,29.5
parent: 2
- - uid: 23265
+ - uid: 1971
components:
- type: Transform
- pos: 5.5,44.5
+ pos: 8.5,28.5
parent: 2
- - uid: 23588
+ - uid: 1972
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,34.5
+ pos: 5.5,28.5
parent: 2
- - uid: 23794
+ - uid: 1973
components:
- type: Transform
- pos: 4.5,44.5
+ pos: 5.5,29.5
parent: 2
- - uid: 26407
+ - uid: 2028
components:
- type: Transform
- pos: 4.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-29.5
parent: 2
- - uid: 27335
+ - uid: 2030
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,14.5
+ pos: -37.5,-29.5
parent: 2
- - uid: 28003
+ - uid: 2063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,29.5
+ pos: -3.5,-33.5
parent: 2
- - uid: 28806
+ - uid: 2269
components:
- type: Transform
- pos: -54.5,-35.5
+ pos: -4.5,-33.5
parent: 2
- - uid: 28811
+ - uid: 2274
components:
- type: Transform
- pos: -53.5,-35.5
+ pos: -3.5,-32.5
parent: 2
- - uid: 29718
+ - uid: 2283
components:
- type: Transform
- pos: 34.5,37.5
+ pos: -2.5,-32.5
parent: 2
- - uid: 29871
+ - uid: 2974
components:
- type: Transform
- pos: 34.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-25.5
parent: 2
- - uid: 29894
+ - uid: 2975
components:
- type: Transform
- pos: 34.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-25.5
parent: 2
- - uid: 29897
+ - uid: 3335
components:
- type: Transform
- pos: 34.5,43.5
+ pos: 19.5,38.5
parent: 2
- - uid: 29898
+ - uid: 5736
components:
- type: Transform
- pos: 32.5,43.5
+ pos: 22.5,48.5
parent: 2
- - uid: 29899
+ - uid: 9141
components:
- type: Transform
- pos: 31.5,44.5
+ pos: -2.5,-31.5
parent: 2
- - uid: 29949
+ - uid: 9217
components:
- type: Transform
- pos: 6.5,33.5
+ pos: -4.5,-32.5
parent: 2
- - uid: 29953
+ - uid: 9482
components:
- type: Transform
- pos: 7.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,50.5
parent: 2
- - uid: 30716
+ - uid: 9536
components:
- type: Transform
- pos: 34.5,38.5
+ pos: -4.5,-31.5
parent: 2
- - uid: 30718
+ - uid: 10221
components:
- type: Transform
- pos: 34.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,49.5
parent: 2
- - uid: 30729
+ - uid: 10984
components:
- type: Transform
- pos: 34.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,50.5
parent: 2
- - uid: 30735
+ - uid: 11402
components:
- type: Transform
- pos: 33.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-29.5
parent: 2
- - uid: 30736
+ - uid: 12215
components:
- type: Transform
- pos: 31.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-42.5
parent: 2
- - uid: 30760
+ - uid: 12243
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-42.5
parent: 2
- - uid: 30761
+ - uid: 12244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-42.5
parent: 2
- - uid: 30762
+ - uid: 12308
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-41.5
parent: 2
- - uid: 30763
+ - uid: 12976
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-41.5
parent: 2
- - uid: 30764
+ - uid: 12977
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-41.5
parent: 2
- - uid: 30765
+ - uid: 13102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,56.5
+ pos: 5.5,-32.5
parent: 2
- - uid: 30766
+ - uid: 13103
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,55.5
+ pos: 5.5,-33.5
parent: 2
- - uid: 30767
+ - uid: 13104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,54.5
+ pos: 6.5,-32.5
parent: 2
- - uid: 30769
+ - uid: 13105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,53.5
+ pos: 6.5,-33.5
parent: 2
- - uid: 30770
+ - uid: 13106
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,53.5
+ pos: 7.5,-33.5
parent: 2
- - uid: 30771
+ - uid: 13107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,53.5
+ pos: 7.5,-32.5
parent: 2
- - uid: 30772
+ - uid: 13108
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,53.5
+ pos: 4.5,-32.5
parent: 2
- - uid: 30773
+ - uid: 13109
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,53.5
+ pos: 4.5,-33.5
parent: 2
- - uid: 30774
+ - uid: 13987
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,53.5
+ pos: 23.5,49.5
parent: 2
- - uid: 30775
+ - uid: 14144
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,52.5
+ pos: 10.5,49.5
parent: 2
- - uid: 30776
+ - uid: 14145
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,51.5
+ pos: 10.5,48.5
parent: 2
- - uid: 30777
+ - uid: 14146
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,51.5
+ pos: 10.5,47.5
parent: 2
- - uid: 30778
+ - uid: 14147
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,51.5
+ pos: 10.5,46.5
parent: 2
- - uid: 30779
+ - uid: 14148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,51.5
+ pos: 11.5,49.5
parent: 2
- - uid: 30780
+ - uid: 14149
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,51.5
+ pos: 11.5,48.5
parent: 2
- - uid: 30781
+ - uid: 14150
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,51.5
+ pos: 11.5,47.5
parent: 2
- - uid: 30782
+ - uid: 14151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,51.5
+ pos: 11.5,46.5
parent: 2
- - uid: 30783
+ - uid: 14152
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,51.5
+ pos: 12.5,49.5
parent: 2
- - uid: 30784
+ - uid: 14153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,51.5
+ pos: 12.5,48.5
parent: 2
- - uid: 30785
+ - uid: 14154
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,51.5
+ pos: 12.5,47.5
parent: 2
- - uid: 30786
+ - uid: 14155
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,51.5
+ pos: 12.5,46.5
parent: 2
- - uid: 30787
+ - uid: 14156
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,51.5
+ pos: 13.5,49.5
parent: 2
- - uid: 30890
+ - uid: 14157
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,53.5
+ pos: 13.5,48.5
parent: 2
- - uid: 31069
+ - uid: 14158
components:
- type: Transform
- pos: 26.5,33.5
+ pos: 13.5,47.5
parent: 2
- - uid: 31074
+ - uid: 14159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,36.5
+ pos: 13.5,46.5
parent: 2
- - uid: 31078
+ - uid: 14161
components:
- type: Transform
- pos: 27.5,33.5
+ pos: 14.5,48.5
parent: 2
- - uid: 31080
+ - uid: 14162
components:
- type: Transform
- pos: 28.5,33.5
+ pos: 14.5,47.5
parent: 2
- - uid: 31081
+ - uid: 14163
components:
- type: Transform
- pos: 29.5,33.5
+ pos: 14.5,46.5
parent: 2
- - uid: 31082
+ - uid: 14227
components:
- type: Transform
- pos: 30.5,33.5
+ pos: 10.5,39.5
parent: 2
- - uid: 31084
+ - uid: 14228
components:
- type: Transform
- pos: 31.5,33.5
+ pos: 10.5,38.5
parent: 2
- - uid: 31087
+ - uid: 14229
components:
- type: Transform
- pos: 32.5,33.5
+ pos: 11.5,39.5
parent: 2
- - uid: 31088
+ - uid: 14230
components:
- type: Transform
- pos: 33.5,33.5
+ pos: 11.5,38.5
parent: 2
- - uid: 31411
+ - uid: 14231
components:
- type: Transform
- pos: 4.5,-21.5
+ pos: 12.5,39.5
parent: 2
- - uid: 32155
+ - uid: 14232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,48.5
+ pos: 12.5,38.5
parent: 2
- - uid: 32156
+ - uid: 14233
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,48.5
+ pos: 13.5,39.5
parent: 2
- - uid: 32157
+ - uid: 14234
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,48.5
+ pos: 13.5,38.5
parent: 2
- - uid: 32158
+ - uid: 14235
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,48.5
+ pos: 5.5,40.5
parent: 2
- - uid: 32159
+ - uid: 14236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,48.5
+ pos: 5.5,39.5
parent: 2
- - uid: 32160
+ - uid: 14237
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,48.5
+ pos: 5.5,38.5
parent: 2
- - uid: 32161
+ - uid: 14238
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,48.5
+ pos: 5.5,37.5
parent: 2
- - uid: 32241
+ - uid: 14239
components:
- type: Transform
- pos: -94.5,53.5
+ pos: 6.5,40.5
parent: 2
- - uid: 32242
+ - uid: 14240
components:
- type: Transform
- pos: -94.5,49.5
+ pos: 6.5,39.5
parent: 2
- - uid: 32243
+ - uid: 14241
components:
- type: Transform
- pos: -93.5,54.5
+ pos: 6.5,38.5
parent: 2
- - uid: 35524
+ - uid: 14242
components:
- type: Transform
- pos: -68.5,-34.5
+ pos: 6.5,37.5
parent: 2
- - uid: 35532
+ - uid: 14243
components:
- type: Transform
- pos: -76.5,-34.5
+ pos: 17.5,38.5
parent: 2
- - uid: 35533
+ - uid: 14244
components:
- type: Transform
- pos: -77.5,-34.5
+ pos: 17.5,37.5
parent: 2
- - uid: 35534
+ - uid: 14249
components:
- type: Transform
- pos: -80.5,-34.5
+ pos: 18.5,38.5
parent: 2
- - uid: 35535
+ - uid: 14250
components:
- type: Transform
- pos: -81.5,-34.5
+ pos: 18.5,37.5
parent: 2
- - uid: 35536
+ - uid: 14252
components:
- type: Transform
- pos: -82.5,-34.5
+ pos: 19.5,37.5
parent: 2
- - uid: 35537
+ - uid: 15114
components:
- type: Transform
- pos: -86.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,49.5
parent: 2
- - uid: 35538
+ - uid: 15121
components:
- type: Transform
- pos: -88.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,49.5
parent: 2
- - uid: 35539
+ - uid: 17311
components:
- type: Transform
- pos: -89.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,49.5
parent: 2
- - uid: 35540
+ - uid: 20806
components:
- type: Transform
- pos: -89.5,-35.5
+ pos: 23.5,48.5
parent: 2
- - uid: 35541
+ - uid: 23245
components:
- type: Transform
- pos: -89.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-42.5
parent: 2
- - uid: 35542
+ - uid: 23316
components:
- type: Transform
- pos: -89.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-41.5
parent: 2
- - uid: 35543
+ - uid: 23317
components:
- type: Transform
- pos: -89.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-41.5
parent: 2
- - uid: 35544
+ - uid: 23318
components:
- type: Transform
- pos: -89.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-42.5
parent: 2
- - uid: 35545
+ - uid: 23319
components:
- type: Transform
- pos: -89.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-41.5
parent: 2
- - uid: 35546
+ - uid: 23320
components:
- type: Transform
- pos: -89.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-42.5
parent: 2
- - uid: 35547
+ - uid: 23324
components:
- type: Transform
- pos: -89.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-42.5
parent: 2
- - uid: 35548
+ - uid: 23325
components:
- type: Transform
- pos: -89.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-41.5
parent: 2
- - uid: 35549
+ - uid: 25797
components:
- type: Transform
- pos: -89.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,50.5
parent: 2
- - uid: 35550
+ - uid: 25844
components:
- type: Transform
- pos: -89.5,-53.5
+ pos: 22.5,49.5
parent: 2
- - uid: 35551
+ - uid: 25845
components:
- type: Transform
- pos: -89.5,-54.5
+ pos: 21.5,48.5
parent: 2
- - uid: 35552
+- proto: CarpetGreen
+ entities:
+ - uid: 568
components:
- type: Transform
- pos: -89.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,17.5
parent: 2
- - uid: 35553
+ - uid: 12423
components:
- type: Transform
- pos: -89.5,-63.5
+ pos: 12.5,-14.5
parent: 2
- - uid: 35554
+ - uid: 13818
components:
- type: Transform
- pos: -89.5,-62.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,16.5
parent: 2
- - uid: 35555
+ - uid: 13820
components:
- type: Transform
- pos: -89.5,-65.5
+ pos: 11.5,-14.5
parent: 2
-- proto: Chair
- entities:
- - uid: 664
+ - uid: 17391
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-8.5
+ pos: 11.5,-13.5
parent: 2
- - uid: 665
+ - uid: 19407
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-9.5
+ pos: -61.5,-2.5
parent: 2
- - uid: 666
+ - uid: 21097
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-10.5
+ pos: -60.5,-2.5
parent: 2
- - uid: 1105
+ - uid: 21101
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-17.5
+ pos: -61.5,-3.5
parent: 2
- - uid: 1107
+ - uid: 22966
components:
- type: Transform
- pos: -46.5,-16.5
+ pos: -60.5,-3.5
parent: 2
- - uid: 1111
+ - uid: 22967
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-18.5
+ pos: -59.5,-2.5
parent: 2
- - uid: 1213
+ - uid: 22968
components:
- type: Transform
- pos: 24.5,-4.5
+ pos: -59.5,-3.5
parent: 2
- - uid: 1214
+ - uid: 22969
components:
- type: Transform
- pos: 24.5,-7.5
+ pos: -58.5,-2.5
parent: 2
- - uid: 1215
+ - uid: 22970
components:
- type: Transform
- pos: 24.5,-10.5
+ pos: -58.5,-3.5
parent: 2
- - uid: 1551
+ - uid: 23488
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,18.5
parent: 2
- - uid: 1553
+ - uid: 29307
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,18.5
parent: 2
- - uid: 2070
+ - uid: 29997
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,14.5
+ pos: 89.5,16.5
parent: 2
- - uid: 2071
+ - uid: 30008
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,13.5
+ pos: 90.5,17.5
parent: 2
- - uid: 2249
+ - uid: 30445
components:
- type: Transform
- pos: -26.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-13.5
parent: 2
- - uid: 2258
+ - uid: 30447
components:
- type: Transform
- pos: -28.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-13.5
parent: 2
- - uid: 2341
+ - uid: 30453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,21.5
+ pos: 13.5,-14.5
parent: 2
- - uid: 2579
+ - uid: 30561
components:
- type: Transform
- pos: -82.5,-4.5
+ pos: -47.5,-4.5
parent: 2
- - uid: 2600
+ - uid: 30563
components:
- type: Transform
- pos: -81.5,-4.5
+ pos: -46.5,-4.5
parent: 2
- - uid: 2729
+ - uid: 30565
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-32.5
+ pos: -45.5,-4.5
parent: 2
- - uid: 2734
+ - uid: 30567
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,32.5
+ pos: -47.5,1.5
parent: 2
- - uid: 2735
+ - uid: 30568
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,32.5
+ pos: -47.5,-3.5
parent: 2
- - uid: 2782
+ - uid: 30569
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-4.5
+ pos: -47.5,0.5
parent: 2
- - uid: 2984
+ - uid: 30570
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-10.5
+ pos: -47.5,-2.5
parent: 2
- - uid: 2986
+ - uid: 30571
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-8.5
+ pos: -47.5,-0.5
parent: 2
- - uid: 3053
+ - uid: 30572
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,-7.5
+ pos: -47.5,-1.5
parent: 2
- - uid: 3306
+ - uid: 30573
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-33.5
+ pos: -47.5,2.5
parent: 2
- - uid: 3311
+ - uid: 30578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-32.5
+ pos: -46.5,-3.5
parent: 2
- - uid: 3412
+ - uid: 30579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-32.5
+ pos: -46.5,-2.5
parent: 2
- - uid: 3413
+ - uid: 30580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-33.5
+ pos: -46.5,-1.5
parent: 2
- - uid: 3614
+ - uid: 30581
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,12.5
+ pos: -46.5,-0.5
parent: 2
- - uid: 3796
+ - uid: 30582
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-4.5
+ pos: -46.5,0.5
parent: 2
- - uid: 4445
+ - uid: 30583
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,58.5
+ pos: -46.5,1.5
parent: 2
- - uid: 5475
+ - uid: 30584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,26.5
+ pos: -46.5,2.5
parent: 2
- - uid: 5476
+ - uid: 30589
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,25.5
+ pos: -45.5,-3.5
parent: 2
- - uid: 5477
+ - uid: 30590
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,24.5
+ pos: -45.5,-2.5
parent: 2
- - uid: 5936
+ - uid: 30591
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-33.5
+ pos: -45.5,-1.5
parent: 2
- - uid: 5937
+ - uid: 30592
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-32.5
+ pos: -45.5,-0.5
parent: 2
- - uid: 5938
+ - uid: 30593
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-33.5
+ pos: -45.5,0.5
parent: 2
- - uid: 5939
+ - uid: 30594
components:
- type: Transform
- pos: 14.5,-31.5
+ pos: -45.5,1.5
parent: 2
- - uid: 5940
+ - uid: 30607
components:
- type: Transform
- pos: 15.5,-31.5
+ pos: -45.5,2.5
parent: 2
- - uid: 5941
+ - uid: 30661
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-34.5
+ pos: -54.5,-11.5
parent: 2
- - uid: 5942
+ - uid: 30662
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-34.5
+ pos: -54.5,-12.5
parent: 2
- - uid: 6304
+ - uid: 30663
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-11.5
parent: 2
- - uid: 6810
+ - uid: 30664
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-12.5
parent: 2
- - uid: 7143
+ - uid: 30665
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-11.5
parent: 2
- - uid: 7144
+ - uid: 30666
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-12.5
parent: 2
- - uid: 7146
+- proto: CarpetOrange
+ entities:
+ - uid: 6585
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-17.5
+ pos: -28.5,-24.5
parent: 2
- - uid: 7148
+ - uid: 6586
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-17.5
+ pos: -27.5,-24.5
parent: 2
- - uid: 7149
+ - uid: 6587
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-17.5
+ pos: -26.5,-24.5
parent: 2
- - uid: 7151
+ - uid: 6588
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-21.5
+ pos: -27.5,-18.5
parent: 2
- - uid: 7152
+ - uid: 6589
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-21.5
+ pos: -26.5,-25.5
parent: 2
- - uid: 7153
+ - uid: 6590
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-21.5
+ pos: -27.5,-25.5
parent: 2
- - uid: 7154
+ - uid: 6591
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-22.5
+ pos: -28.5,-25.5
parent: 2
- - uid: 7155
+ - uid: 6592
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-18.5
+ pos: -27.5,-19.5
parent: 2
- - uid: 7157
+ - uid: 6593
components:
- type: Transform
- pos: -42.5,-16.5
+ pos: -27.5,-20.5
parent: 2
- - uid: 7159
+ - uid: 6594
components:
- type: Transform
- pos: -38.5,-20.5
+ pos: -27.5,-21.5
parent: 2
- - uid: 7160
+ - uid: 6595
components:
- type: Transform
- pos: -42.5,-20.5
+ pos: -26.5,-18.5
parent: 2
- - uid: 7161
+ - uid: 6596
components:
- type: Transform
- pos: -46.5,-20.5
+ pos: -26.5,-19.5
parent: 2
- - uid: 7162
+ - uid: 6597
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-22.5
+ pos: -26.5,-20.5
parent: 2
- - uid: 7163
+ - uid: 6598
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-22.5
+ pos: -26.5,-21.5
parent: 2
- - uid: 8125
+ - uid: 6599
components:
- type: Transform
- pos: -85.5,-5.5
+ pos: -25.5,-18.5
parent: 2
- - uid: 8126
+ - uid: 6600
components:
- type: Transform
- pos: -84.5,-5.5
+ pos: -25.5,-19.5
parent: 2
- - uid: 8132
+ - uid: 6601
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,11.5
+ pos: -25.5,-20.5
parent: 2
- - uid: 8133
+ - uid: 6602
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,10.5
+ pos: -25.5,-21.5
parent: 2
- - uid: 8135
+ - uid: 6603
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,8.5
+ pos: -24.5,-18.5
parent: 2
- - uid: 8136
+ - uid: 6604
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,7.5
+ pos: -24.5,-19.5
parent: 2
- - uid: 8141
+ - uid: 6605
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,22.5
+ pos: -24.5,-20.5
parent: 2
- - uid: 8142
+ - uid: 6606
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,22.5
+ pos: -24.5,-21.5
parent: 2
- - uid: 8143
+ - uid: 6640
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,22.5
+ pos: -10.5,-33.5
parent: 2
- - uid: 8144
+ - uid: 6642
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,22.5
+ pos: -12.5,-33.5
parent: 2
- - uid: 8145
+ - uid: 6643
+ components:
+ - type: Transform
+ pos: -12.5,-34.5
+ parent: 2
+ - uid: 6644
+ components:
+ - type: Transform
+ pos: -11.5,-33.5
+ parent: 2
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: -11.5,-34.5
+ parent: 2
+ - uid: 6647
+ components:
+ - type: Transform
+ pos: -10.5,-34.5
+ parent: 2
+ - uid: 27344
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -81.5,22.5
+ pos: 12.5,5.5
parent: 2
- - uid: 8771
+ - uid: 30431
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,14.5
+ pos: 15.5,-13.5
parent: 2
- - uid: 8773
+ - uid: 30432
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,12.5
+ pos: 15.5,-14.5
parent: 2
- - uid: 8774
+ - uid: 30433
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,13.5
+ pos: 16.5,-13.5
parent: 2
- - uid: 9005
+ - uid: 30434
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-14.5
parent: 2
- - uid: 9006
+ - uid: 30435
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,20.5
+ pos: 17.5,-13.5
parent: 2
- - uid: 9092
+ - uid: 30436
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-14.5
parent: 2
- - uid: 9093
+ - uid: 30439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-13.5
parent: 2
- - uid: 9094
+ - uid: 30440
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-14.5
parent: 2
- - uid: 11156
+ - uid: 30441
components:
- type: Transform
- pos: 33.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-13.5
parent: 2
- - uid: 11222
+ - uid: 30442
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -97.5,27.5
+ pos: 20.5,-14.5
parent: 2
- - uid: 11298
+ - uid: 30443
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-13.5
parent: 2
- - uid: 11299
+ - uid: 30444
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-14.5
parent: 2
- - uid: 11395
+ - uid: 33930
components:
- type: Transform
- pos: 33.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,5.5
parent: 2
- - uid: 11512
+ - uid: 33938
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-5.5
+ pos: 14.5,5.5
parent: 2
- - uid: 11548
+ - uid: 38103
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.5,-5.5
+ pos: 15.5,5.5
parent: 2
- - uid: 13071
+ - uid: 38104
components:
- type: Transform
- pos: 10.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,5.5
parent: 2
- - uid: 13072
+ - uid: 39291
components:
- type: Transform
- pos: -7.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-21.5
parent: 2
- - uid: 13337
+ - uid: 39292
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-20.5
parent: 2
- - uid: 13338
+ - uid: 39293
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-21.5
parent: 2
- - uid: 13340
+ - uid: 39294
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,21.5
+ pos: -8.5,-20.5
parent: 2
- - uid: 13341
+ - uid: 39295
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,21.5
+ pos: -10.5,-21.5
parent: 2
- - uid: 13342
+ - uid: 39296
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-20.5
parent: 2
- - uid: 13343
+ - uid: 39297
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-20.5
parent: 2
- - uid: 13345
+ - uid: 39298
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-21.5
parent: 2
- - uid: 13346
+- proto: CarpetPurple
+ entities:
+ - uid: 2936
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -97.5,-8.5
+ pos: 53.5,26.5
parent: 2
- - uid: 13347
+ - uid: 4528
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,28.5
parent: 2
- - uid: 13789
+ - uid: 5150
components:
- type: Transform
- pos: 84.5,41.5
+ pos: 28.5,28.5
parent: 2
- - uid: 13970
+ - uid: 5488
components:
- type: Transform
- pos: 8.5,-50.5
+ pos: 46.5,26.5
parent: 2
- - uid: 13971
+ - uid: 5489
components:
- type: Transform
- pos: -6.5,-50.5
+ pos: 46.5,25.5
parent: 2
- - uid: 13972
+ - uid: 5490
components:
- type: Transform
- pos: -5.5,-50.5
+ pos: 47.5,25.5
parent: 2
- - uid: 13973
+ - uid: 5491
components:
- type: Transform
- pos: 9.5,-50.5
+ pos: 47.5,26.5
parent: 2
- - uid: 15254
+ - uid: 5492
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,70.5
+ pos: 48.5,26.5
parent: 2
- - uid: 15492
+ - uid: 5493
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,24.5
+ pos: 48.5,25.5
parent: 2
- - uid: 15493
+ - uid: 5494
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,24.5
+ pos: 48.5,24.5
parent: 2
- - uid: 15494
+ - uid: 5495
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,24.5
+ pos: 47.5,24.5
parent: 2
- - uid: 15495
+ - uid: 5496
components:
- type: Transform
- pos: -30.5,30.5
+ pos: 46.5,24.5
parent: 2
- - uid: 15498
+ - uid: 5497
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,28.5
+ pos: 45.5,24.5
parent: 2
- - uid: 15499
+ - uid: 5498
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,28.5
+ pos: 45.5,25.5
parent: 2
- - uid: 15514
+ - uid: 5499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,59.5
+ pos: 45.5,26.5
parent: 2
- - uid: 15546
+ - uid: 5500
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,32.5
+ pos: 43.5,24.5
parent: 2
- - uid: 15547
+ - uid: 5501
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,32.5
+ pos: 42.5,24.5
parent: 2
- - uid: 15552
+ - uid: 5502
components:
- type: Transform
- pos: -16.5,34.5
+ pos: 42.5,25.5
parent: 2
- - uid: 15553
+ - uid: 5503
components:
- type: Transform
- pos: -20.5,34.5
+ pos: 43.5,25.5
parent: 2
- - uid: 15554
+ - uid: 5504
components:
- type: Transform
- pos: -24.5,30.5
+ pos: 44.5,25.5
parent: 2
- - uid: 15634
+ - uid: 5505
components:
- type: Transform
- pos: -24.5,37.5
+ pos: 44.5,24.5
parent: 2
- - uid: 15635
+ - uid: 5583
components:
- type: Transform
- pos: -22.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,29.5
parent: 2
- - uid: 15637
+ - uid: 5584
components:
- type: Transform
- pos: -20.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,29.5
parent: 2
- - uid: 15638
+ - uid: 5588
components:
- type: Transform
- pos: -18.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,28.5
parent: 2
- - uid: 15640
+ - uid: 5593
components:
- type: Transform
- pos: -16.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,27.5
parent: 2
- - uid: 15698
+ - uid: 5594
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,27.5
parent: 2
- - uid: 15699
+ - uid: 5598
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,29.5
parent: 2
- - uid: 15700
+ - uid: 5599
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,28.5
parent: 2
- - uid: 15736
+ - uid: 5600
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,24.5
+ pos: 51.5,27.5
parent: 2
- - uid: 15737
+ - uid: 5601
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,24.5
+ pos: 51.5,26.5
parent: 2
- - uid: 15738
+ - uid: 5602
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,24.5
+ pos: 52.5,29.5
parent: 2
- - uid: 15790
+ - uid: 5603
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,28.5
parent: 2
- - uid: 15912
+ - uid: 5604
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,55.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,27.5
parent: 2
- - uid: 15915
+ - uid: 5605
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,26.5
parent: 2
- - uid: 15916
+ - uid: 5606
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,29.5
parent: 2
- - uid: 15969
+ - uid: 5607
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,28.5
parent: 2
- - uid: 15970
+ - uid: 5608
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,27.5
parent: 2
- - uid: 18031
+ - uid: 5610
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,29.5
parent: 2
- - uid: 18103
+ - uid: 5611
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,70.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,28.5
parent: 2
- - uid: 18200
+ - uid: 5612
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,27.5
parent: 2
- - uid: 18246
+ - uid: 5613
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,67.5
+ pos: 54.5,26.5
parent: 2
- - uid: 18328
+ - uid: 5614
components:
- type: Transform
- pos: -7.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,26.5
parent: 2
- - uid: 18330
+ - uid: 5615
components:
- type: Transform
- pos: -11.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,27.5
parent: 2
- - uid: 18331
+ - uid: 5616
components:
- type: Transform
- pos: -9.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,28.5
parent: 2
- - uid: 18337
+ - uid: 5617
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,67.5
+ pos: 55.5,29.5
parent: 2
- - uid: 18338
+ - uid: 5618
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,67.5
+ pos: 54.5,30.5
parent: 2
- - uid: 20201
+ - uid: 5619
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,30.5
parent: 2
- - uid: 21200
+ - uid: 5620
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,30.5
parent: 2
- - uid: 21201
+ - uid: 5664
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,24.5
+ pos: 29.5,23.5
parent: 2
- - uid: 21202
+ - uid: 5665
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,23.5
+ pos: 28.5,23.5
parent: 2
- - uid: 21203
+ - uid: 5666
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,26.5
+ pos: 27.5,23.5
parent: 2
- - uid: 23389
+ - uid: 17858
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,46.5
+ pos: 29.5,28.5
parent: 2
- - uid: 26705
+ - uid: 17868
components:
- type: Transform
- pos: 33.5,-4.5
+ pos: 28.5,27.5
parent: 2
- - uid: 29719
+ - uid: 22422
components:
- type: Transform
- pos: 9.5,71.5
+ pos: 29.5,27.5
parent: 2
- - uid: 29895
+ - uid: 22423
components:
- type: Transform
- pos: 8.5,71.5
+ pos: 30.5,28.5
parent: 2
- - uid: 29896
+ - uid: 22424
components:
- type: Transform
- pos: 12.5,71.5
+ pos: 30.5,27.5
parent: 2
- - uid: 30064
+ - uid: 22425
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,40.5
+ pos: 28.5,29.5
parent: 2
- - uid: 30237
+ - uid: 22426
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,24.5
+ pos: 29.5,29.5
parent: 2
- - uid: 30417
+ - uid: 22427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-16.5
+ pos: 30.5,29.5
parent: 2
- - uid: 30419
+ - uid: 22428
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-16.5
+ pos: 36.5,25.5
parent: 2
- - uid: 30422
+ - uid: 22429
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-16.5
+ pos: 36.5,25.5
parent: 2
- - uid: 30757
+ - uid: 22430
components:
- type: Transform
- pos: 7.5,71.5
+ pos: 36.5,24.5
parent: 2
- - uid: 30923
+ - uid: 22431
components:
- type: Transform
- pos: 11.5,71.5
+ pos: 37.5,25.5
parent: 2
-- proto: ChairFolding
- entities:
- - uid: 1587
+ - uid: 22432
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,12.5
+ pos: 37.5,24.5
parent: 2
- - uid: 1588
+ - uid: 22433
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,12.5
+ pos: 38.5,25.5
parent: 2
- - uid: 1628
+ - uid: 22434
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,11.5
+ pos: 38.5,24.5
parent: 2
- - uid: 1629
+ - uid: 22435
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,11.5
+ pos: 39.5,25.5
parent: 2
- - uid: 1630
+ - uid: 22436
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,11.5
+ pos: 39.5,24.5
parent: 2
- - uid: 1631
+- proto: CarpetSBlue
+ entities:
+ - uid: 3507
components:
- type: Transform
- pos: -2.5,14.5
+ pos: 13.5,10.5
parent: 2
- - uid: 2654
+ - uid: 5989
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,55.5
+ pos: -2.5,7.5
parent: 2
- - uid: 2702
+ - uid: 6144
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,57.5
+ pos: -2.5,6.5
parent: 2
- - uid: 2703
+ - uid: 6351
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,56.5
+ pos: 4.5,-0.5
parent: 2
- - uid: 3416
+ - uid: 6658
components:
- type: Transform
- pos: 32.5,-24.5
+ pos: 4.5,0.5
parent: 2
- - uid: 3418
+ - uid: 6660
components:
- type: Transform
- pos: 31.5,-24.5
+ pos: -1.5,0.5
parent: 2
- - uid: 3444
+ - uid: 6675
components:
- type: Transform
- pos: 34.5,-24.5
+ pos: -2.5,-2.5
parent: 2
- - uid: 3445
+ - uid: 6678
components:
- type: Transform
- pos: 33.5,-24.5
+ pos: -2.5,0.5
parent: 2
- - uid: 3446
+ - uid: 6683
components:
- type: Transform
- pos: 36.5,-25.5
+ pos: 4.5,-1.5
parent: 2
- - uid: 3447
+ - uid: 6730
components:
- type: Transform
- pos: 35.5,-24.5
+ pos: 5.5,-1.5
parent: 2
- - uid: 3448
+ - uid: 6788
components:
- type: Transform
- pos: 33.5,-25.5
+ pos: -2.5,-1.5
parent: 2
- - uid: 3449
+ - uid: 6912
components:
- type: Transform
- pos: 34.5,-25.5
+ pos: -2.5,5.5
parent: 2
- - uid: 3451
+ - uid: 6949
components:
- type: Transform
- pos: 32.5,-25.5
+ pos: -2.5,4.5
parent: 2
- - uid: 3454
+ - uid: 6950
components:
- type: Transform
- pos: 37.5,-24.5
+ pos: -1.5,7.5
parent: 2
- - uid: 3455
+ - uid: 6951
components:
- type: Transform
- pos: 30.5,-25.5
+ pos: 5.5,-2.5
parent: 2
- - uid: 5135
+ - uid: 6958
components:
- type: Transform
- pos: 65.5,-7.5
+ pos: -1.5,6.5
parent: 2
- - uid: 5137
+ - uid: 7081
components:
- type: Transform
- pos: 64.5,-7.5
+ pos: 4.5,-2.5
parent: 2
- - uid: 5141
+ - uid: 7109
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-9.5
+ pos: -1.5,-2.5
parent: 2
- - uid: 6156
+ - uid: 7130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,-6.5
+ pos: -2.5,-0.5
parent: 2
- - uid: 6420
+ - uid: 7359
components:
- type: Transform
- pos: 42.5,-34.5
+ pos: -1.5,-1.5
parent: 2
- - uid: 6422
+ - uid: 7361
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-1.5
+ pos: -1.5,5.5
parent: 2
- - uid: 6423
+ - uid: 7562
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 79.5,-5.5
+ pos: -1.5,4.5
parent: 2
- - uid: 6619
+ - uid: 7922
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,59.5
+ pos: -1.5,-0.5
parent: 2
- - uid: 6622
+ - uid: 8145
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,58.5
+ pos: 5.5,0.5
parent: 2
- - uid: 6689
+ - uid: 8359
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,59.5
+ pos: 5.5,-0.5
parent: 2
- - uid: 6831
+ - uid: 14418
components:
- type: Transform
- pos: -38.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-8.5
parent: 2
- - uid: 7033
+ - uid: 15159
components:
- type: Transform
- pos: -28.5,-34.5
+ pos: 15.5,10.5
parent: 2
- - uid: 7034
+ - uid: 20288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-35.5
+ pos: 14.5,9.5
parent: 2
- - uid: 7035
+ - uid: 20290
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-9.5
parent: 2
- - uid: 7934
+ - uid: 23270
components:
- type: Transform
- pos: -37.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-7.5
parent: 2
- - uid: 9632
+ - uid: 23427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-6.5
parent: 2
- - uid: 12319
+ - uid: 23676
components:
- type: Transform
- pos: 48.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-6.5
parent: 2
- - uid: 15203
+ - uid: 23680
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,53.5
+ pos: 14.5,10.5
parent: 2
- - uid: 16318
+ - uid: 25087
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-8.5
parent: 2
- - uid: 16652
+ - uid: 25090
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,11.5
+ pos: 30.5,-7.5
parent: 2
- - uid: 17885
+ - uid: 25102
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-9.5
parent: 2
- - uid: 17887
+ - uid: 31774
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,63.5
+ pos: 14.5,11.5
parent: 2
- - uid: 18059
+ - uid: 36770
components:
- type: Transform
- pos: -15.5,67.5
+ pos: 21.5,6.5
parent: 2
- - uid: 18062
+ - uid: 36771
components:
- type: Transform
- pos: -19.5,67.5
+ pos: 22.5,6.5
parent: 2
- - uid: 18064
+ - uid: 36772
components:
- type: Transform
- pos: -23.5,67.5
+ pos: 23.5,6.5
parent: 2
- - uid: 18066
+ - uid: 36773
components:
- type: Transform
- pos: -27.5,67.5
+ pos: 24.5,6.5
parent: 2
- - uid: 18149
+ - uid: 37982
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,61.5
+ pos: 8.5,3.5
parent: 2
- - uid: 18457
+ - uid: 37992
components:
- type: Transform
- pos: -59.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,2.5
parent: 2
- - uid: 18458
+ - uid: 37994
components:
- type: Transform
- pos: -58.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,1.5
parent: 2
- - uid: 18502
+ - uid: 37995
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,3.5
parent: 2
- - uid: 18503
+ - uid: 37996
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,2.5
parent: 2
- - uid: 19772
+ - uid: 37997
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,1.5
parent: 2
- - uid: 25069
+ - uid: 38081
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,3.5
parent: 2
- - uid: 33675
+ - uid: 38089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,2.5
parent: 2
- - uid: 33676
+ - uid: 38090
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,1.5
parent: 2
-- proto: ChairFoldingSpawnFolded
+- proto: CartridgeRocket
entities:
- - uid: 3450
- components:
- - type: Transform
- pos: 38.52028,-21.96194
- parent: 2
- - uid: 3452
+ - uid: 15714
components:
- type: Transform
- pos: 38.543716,-22.383816
+ pos: -22.327036,51.442375
parent: 2
- - uid: 3453
+- proto: CarvedPumpkin
+ entities:
+ - uid: 37596
components:
- type: Transform
- pos: 38.555435,-22.16116
+ pos: -42.425594,-21.113438
parent: 2
-- proto: ChairOfficeDark
+- proto: CarvedPumpkinLarge
entities:
- - uid: 432
+ - uid: 37599
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-2.5
+ pos: -27.533237,-37.419685
parent: 2
- - uid: 464
+- proto: CarvedPumpkinSmall
+ entities:
+ - uid: 37597
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-2.5
+ pos: -43.01153,-21.816563
parent: 2
- - uid: 465
+ - uid: 37598
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-2.5
+ pos: -41.48028,-21.410313
parent: 2
- - uid: 931
+- proto: Catwalk
+ entities:
+ - uid: 211
components:
- type: Transform
- pos: -28.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,35.5
parent: 2
- - uid: 999
+ - uid: 269
components:
- type: Transform
- pos: -7.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-38.5
parent: 2
- - uid: 1083
+ - uid: 284
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-1.5
+ pos: -43.5,56.5
parent: 2
- - uid: 1122
+ - uid: 287
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -3.5,-33.5
+ pos: -51.5,-38.5
parent: 2
- - uid: 1146
+ - uid: 301
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-0.5
+ pos: -46.5,64.5
parent: 2
- - uid: 1277
+ - uid: 330
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,6.5
+ pos: -42.5,56.5
parent: 2
- - uid: 1391
+ - uid: 585
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-15.5
parent: 2
- - uid: 1650
+ - uid: 632
components:
- type: Transform
- rot: -3.141592351598195 rad
- pos: 19.453836,-2.5060267
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-4.5
parent: 2
- - uid: 1657
+ - uid: 641
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-4.5
parent: 2
- - uid: 1658
+ - uid: 657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-0.5
+ pos: -30.5,3.5
parent: 2
- - uid: 1663
+ - uid: 660
components:
- type: Transform
- pos: 16.5,-5.5
+ pos: -32.5,17.5
parent: 2
- - uid: 1664
+ - uid: 685
components:
- type: Transform
- pos: 20.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-17.5
parent: 2
- - uid: 1940
+ - uid: 687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,27.5
+ pos: 38.5,14.5
parent: 2
- - uid: 4367
+ - uid: 688
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-10.5
+ pos: 39.5,14.5
parent: 2
- - uid: 5364
+ - uid: 730
components:
- type: Transform
- pos: 57.5,51.5
+ pos: 39.5,15.5
parent: 2
- - uid: 5365
+ - uid: 742
components:
- type: Transform
- pos: 58.5,51.5
+ pos: -26.5,6.5
parent: 2
- - uid: 5366
+ - uid: 827
components:
- type: Transform
- pos: 59.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-7.5
parent: 2
- - uid: 8378
+ - uid: 1460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-4.5
+ pos: -77.5,19.5
parent: 2
- - uid: 11292
+ - uid: 1461
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-28.5
+ pos: -76.5,19.5
parent: 2
- - uid: 11297
+ - uid: 1478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-7.5
+ pos: -78.5,19.5
parent: 2
- - uid: 14038
+ - uid: 1545
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,58.5
+ pos: -55.5,-31.5
parent: 2
- - uid: 14061
+ - uid: 1612
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,58.5
+ pos: -72.5,24.5
parent: 2
- - uid: 14070
+ - uid: 1711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,58.5
+ pos: -56.5,-31.5
parent: 2
- - uid: 14174
+ - uid: 1712
components:
- type: Transform
- pos: 13.5,42.5
+ pos: -61.5,-31.5
parent: 2
-- proto: ChairOfficeLight
- entities:
- - uid: 1095
+ - uid: 1717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-23.5
+ pos: -60.5,-31.5
parent: 2
- - uid: 2511
+ - uid: 1718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,50.5
+ pos: -59.5,-31.5
parent: 2
- - uid: 5212
+ - uid: 1719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-23.5
+ pos: -58.5,-31.5
parent: 2
- - uid: 5257
+ - uid: 1735
components:
- type: Transform
- pos: 27.5,26.5
+ pos: -57.5,-31.5
parent: 2
- - uid: 5412
+ - uid: 1876
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-29.5
parent: 2
- - uid: 5416
+ - uid: 1877
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-31.5
parent: 2
- - uid: 5521
+ - uid: 1882
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-30.5
parent: 2
- - uid: 5531
+ - uid: 2036
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,28.5
+ pos: 52.5,36.5
parent: 2
- - uid: 5532
+ - uid: 2075
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 37.5,28.5
+ pos: 16.5,-31.5
parent: 2
- - uid: 6523
+ - uid: 2346
components:
- type: Transform
- pos: -9.5,-27.5
+ pos: -46.5,56.5
parent: 2
- - uid: 6524
+ - uid: 2359
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-30.5
+ pos: -60.5,32.5
parent: 2
- - uid: 6525
+ - uid: 2518
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 86.5,-17.5
parent: 2
- - uid: 6526
+ - uid: 2570
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-28.5
parent: 2
- - uid: 6574
+ - uid: 2587
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-42.5
+ pos: -46.5,59.5
parent: 2
- - uid: 6715
+ - uid: 2601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,26.5
parent: 2
- - uid: 8405
+ - uid: 2671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,13.5
+ pos: 5.5,44.5
parent: 2
- - uid: 8834
+ - uid: 2713
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,17.5
+ pos: -34.5,55.5
parent: 2
- - uid: 9151
+ - uid: 2723
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 49.5,47.5
+ pos: 5.5,-28.5
parent: 2
- - uid: 9220
+ - uid: 2772
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,50.5
+ pos: 52.5,-33.5
parent: 2
- - uid: 9655
+ - uid: 2960
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,31.5
+ pos: 44.5,12.5
parent: 2
- - uid: 15402
+ - uid: 3155
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,28.5
+ pos: -29.5,-1.5
parent: 2
- - uid: 15557
+ - uid: 3161
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,33.5
+ pos: -28.5,-1.5
parent: 2
- - uid: 15558
+ - uid: 3166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,34.5
+ pos: -32.5,-1.5
parent: 2
- - uid: 15574
+ - uid: 3168
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,31.5
+ pos: -30.5,-1.5
parent: 2
- - uid: 15611
+ - uid: 3169
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,33.5
+ pos: -31.5,-1.5
parent: 2
- - uid: 15615
+ - uid: 3172
components:
- type: Transform
- pos: -13.5,35.5
+ pos: -27.5,-1.5
parent: 2
- - uid: 18435
+ - uid: 3186
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,2.5
+ pos: 25.5,-19.5
parent: 2
- - uid: 18525
+ - uid: 3194
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,24.5
+ pos: 25.5,-21.5
parent: 2
- - uid: 19092
+ - uid: 3213
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,51.5
+ pos: 52.5,32.5
parent: 2
- - uid: 22876
+ - uid: 3333
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-49.5
+ pos: 33.5,36.5
parent: 2
-- proto: ChairPilotSeat
- entities:
- - uid: 11235
+ - uid: 3345
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-30.5
+ pos: -33.5,-6.5
parent: 2
- - uid: 21934
+ - uid: 3385
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-26.5
+ pos: 52.5,37.5
parent: 2
- - uid: 23715
+ - uid: 3386
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-25.5
+ pos: 52.5,38.5
parent: 2
- - uid: 23731
+ - uid: 3396
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,-27.5
+ pos: 87.5,-16.5
parent: 2
- - uid: 23764
+ - uid: 3399
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-28.5
+ pos: 54.5,32.5
parent: 2
-- proto: ChairRitual
- entities:
- - uid: 4747
+ - uid: 3411
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,34.5
+ pos: -31.5,6.5
parent: 2
- - uid: 4748
+ - uid: 3426
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,32.5
+ pos: 56.5,32.5
parent: 2
- - uid: 11104
+ - uid: 3429
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -75.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-11.5
parent: 2
- - uid: 14356
+ - uid: 3484
components:
- type: Transform
- pos: -74.5,-3.5
+ pos: 51.5,32.5
parent: 2
- - uid: 14357
+ - uid: 3585
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -76.5,-4.5
+ pos: -61.5,33.5
parent: 2
- - uid: 15399
+ - uid: 3633
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -76.5,-5.5
+ pos: -32.5,-8.5
parent: 2
- - uid: 17120
+ - uid: 3647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-5.5
+ pos: 39.5,16.5
parent: 2
- - uid: 17121
+ - uid: 3651
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,-6.5
+ pos: -60.5,27.5
parent: 2
- - uid: 17802
+ - uid: 3659
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,-4.5
+ pos: -62.5,32.5
parent: 2
- - uid: 26340
+ - uid: 3767
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-7.5
parent: 2
- - uid: 29263
+ - uid: 3775
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,31.5
+ pos: -30.5,6.5
parent: 2
-- proto: ChairWood
- entities:
- - uid: 253
+ - uid: 3781
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 15.5,-14.5
+ pos: 32.5,55.5
parent: 2
- - uid: 561
+ - uid: 3786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,56.5
parent: 2
- - uid: 563
+ - uid: 3973
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-8.5
+ pos: 84.5,-11.5
parent: 2
- - uid: 573
+ - uid: 4159
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-29.5
parent: 2
- - uid: 6083
+ - uid: 4251
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-30.5
parent: 2
- - uid: 6084
+ - uid: 4400
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 68.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-31.5
parent: 2
- - uid: 6409
+ - uid: 4496
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,35.5
parent: 2
- - uid: 6607
+ - uid: 4530
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
+ pos: 25.5,-27.5
parent: 2
- - uid: 6608
+ - uid: 4585
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-20.5
+ pos: 25.5,-24.5
parent: 2
- - uid: 6609
+ - uid: 4681
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-21.5
+ pos: -67.5,33.5
parent: 2
- - uid: 8620
+ - uid: 4719
components:
- type: Transform
- pos: -12.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-25.5
parent: 2
- - uid: 8622
+ - uid: 4916
components:
- type: Transform
- pos: -13.5,58.5
+ pos: 25.5,-20.5
parent: 2
- - uid: 9043
+ - uid: 5037
components:
- type: Transform
- pos: -14.5,58.5
+ pos: 84.5,-20.5
parent: 2
- - uid: 11170
+ - uid: 5092
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,81.5
parent: 2
- - uid: 12213
+ - uid: 5102
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 15.5,-13.5
+ pos: 0.5,79.5
parent: 2
- - uid: 13114
+ - uid: 5104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,82.5
parent: 2
- - uid: 13133
+ - uid: 5105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,22.5
+ pos: 2.5,-55.5
parent: 2
- - uid: 15840
+ - uid: 5107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,55.5
+ pos: 0.5,-54.5
parent: 2
- - uid: 15841
+ - uid: 5288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,54.5
+ pos: 2.5,-56.5
parent: 2
- - uid: 16314
+ - uid: 5292
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,49.5
+ pos: -5.5,-56.5
parent: 2
- - uid: 16316
+ - uid: 5293
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,48.5
+ pos: 0.5,-55.5
parent: 2
- - uid: 26715
+ - uid: 5294
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 65.5,26.5
+ pos: -38.5,34.5
parent: 2
- - uid: 27239
+ - uid: 5297
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,79.5
parent: 2
- - uid: 27819
+ - uid: 5405
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -73.5,5.5
+ pos: 8.5,82.5
parent: 2
- - uid: 27964
+ - uid: 5478
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,80.5
parent: 2
- - uid: 27975
+ - uid: 5545
components:
- type: Transform
- pos: -14.5,57.5
+ pos: -5.5,-53.5
parent: 2
- - uid: 28001
+ - uid: 5751
components:
- type: Transform
- pos: -13.5,57.5
+ pos: 79.5,-18.5
parent: 2
- - uid: 28002
+ - uid: 5892
components:
- type: Transform
- pos: -12.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-31.5
parent: 2
- - uid: 30334
+ - uid: 5893
components:
- type: Transform
- pos: 29.5,21.5
+ pos: 25.5,-18.5
parent: 2
- - uid: 30336
+ - uid: 5894
components:
- type: Transform
- pos: 27.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,81.5
parent: 2
- - uid: 30337
+ - uid: 5898
components:
- type: Transform
- pos: 28.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-26.5
parent: 2
- - uid: 30427
+ - uid: 5909
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-9.5
parent: 2
- - uid: 30428
+ - uid: 5930
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-10.5
parent: 2
- - uid: 30488
+ - uid: 5931
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-4.5
parent: 2
- - uid: 30489
+ - uid: 5952
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,32.5
+ pos: 8.5,-54.5
parent: 2
- - uid: 30490
+ - uid: 5953
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,40.5
+ pos: -7.5,-56.5
parent: 2
- - uid: 30491
+ - uid: 5957
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,41.5
+ pos: 43.5,-33.5
parent: 2
- - uid: 30602
+ - uid: 5960
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-0.5
+ pos: -7.5,-54.5
parent: 2
- - uid: 30608
+ - uid: 5961
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-1.5
+ pos: 0.5,-53.5
parent: 2
-- proto: CheckerBoard
- entities:
- - uid: 18504
+ - uid: 5962
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.463306,-3.3159504
+ pos: 8.5,-53.5
parent: 2
-- proto: chem_master
- entities:
- - uid: 1026
+ - uid: 5963
components:
- type: Transform
- pos: 14.5,-2.5
+ pos: 43.5,-31.5
parent: 2
- - uid: 1656
+ - uid: 5968
components:
- type: Transform
- pos: 18.5,-1.5
+ pos: -5.5,-54.5
parent: 2
-- proto: ChemDispenser
- entities:
- - uid: 6376
+ - uid: 5969
components:
- type: Transform
- pos: 13.5,-2.5
+ pos: 2.5,-54.5
parent: 2
- - uid: 12212
+ - uid: 5972
components:
- type: Transform
- pos: 17.5,-1.5
+ pos: 0.5,-56.5
parent: 2
-- proto: ChemicalPayload
- entities:
- - uid: 36047
+ - uid: 5976
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 30.216724,16.68445
+ pos: -7.5,80.5
parent: 2
-- proto: ChemistryEmptyBottle01
- entities:
- - uid: 26710
+ - uid: 5981
components:
- type: Transform
- pos: -46.573345,-28.43862
+ pos: 8.5,-55.5
parent: 2
- - uid: 26714
+ - uid: 5986
components:
- type: Transform
- pos: 65.3554,30.867294
+ pos: 10.5,-54.5
parent: 2
- - uid: 26723
+ - uid: 5987
components:
- type: Transform
- pos: -46.221783,-27.231588
+ pos: 8.5,-56.5
parent: 2
- - uid: 26724
+ - uid: 5988
components:
- type: Transform
- pos: -50.46397,-25.215963
+ rot: 1.5707963267948966 rad
+ pos: -7.5,81.5
parent: 2
- - uid: 26725
+ - uid: 5990
components:
- type: Transform
- pos: -50.346783,-26.130026
+ pos: -7.5,-55.5
parent: 2
- - uid: 26726
+ - uid: 5991
components:
- type: Transform
- pos: -50.510845,-26.024557
+ pos: 10.5,-56.5
parent: 2
- - uid: 26727
+ - uid: 6002
components:
- type: Transform
- pos: -50.229595,-28.286276
+ pos: 10.5,-53.5
parent: 2
- - uid: 27240
+ - uid: 6003
components:
- type: Transform
- pos: -46.292095,-28.309713
+ rot: 1.5707963267948966 rad
+ pos: -5.5,80.5
parent: 2
-- proto: ChemistryHotplate
- entities:
- - uid: 1433
+ - uid: 6004
components:
- type: Transform
- pos: 20.5,-1.5
+ pos: 10.5,-55.5
parent: 2
- - uid: 2170
+ - uid: 6005
components:
- type: Transform
- pos: 12.5,-1.5
+ pos: -5.5,-55.5
parent: 2
-- proto: ChessBoard
- entities:
- - uid: 15104
+ - uid: 6006
components:
- type: Transform
- pos: 26.503761,48.66876
+ pos: 2.5,-53.5
parent: 2
- - uid: 18125
+ - uid: 6139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.510897,53.567955
+ pos: -7.5,-53.5
parent: 2
-- proto: ChurchOrganInstrument
- entities:
- - uid: 22120
+ - uid: 6179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,82.5
parent: 2
-- proto: Cigar
- entities:
- - uid: 1614
+ - uid: 6194
components:
- type: Transform
- pos: -7.8759413,9.743548
+ rot: 1.5707963267948966 rad
+ pos: -7.5,79.5
parent: 2
- - uid: 5949
+ - uid: 6195
components:
- type: Transform
- pos: 14.8608,-32.892647
+ rot: 1.5707963267948966 rad
+ pos: -5.5,81.5
parent: 2
- - uid: 5950
+ - uid: 6196
components:
- type: Transform
- pos: 19.239498,-32.498737
+ rot: 1.5707963267948966 rad
+ pos: -5.5,82.5
parent: 2
- - uid: 5951
+ - uid: 6273
components:
- type: Transform
- pos: 20.567831,-32.459053
+ rot: 1.5707963267948966 rad
+ pos: 0.5,82.5
parent: 2
- - uid: 36111
+ - uid: 6312
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.581564,37.55846
+ pos: 25.5,-23.5
parent: 2
- - uid: 36112
+ - uid: 6418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.39207,37.5661
+ pos: 42.5,13.5
parent: 2
-- proto: CigarCase
- entities:
- - uid: 9334
+ - uid: 6419
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.50312,33.706814
+ pos: 79.5,0.5
parent: 2
-- proto: Cigarette
- entities:
- - uid: 22121
+ - uid: 6420
components:
- type: Transform
- pos: 65.775085,30.909584
+ rot: 1.5707963267948966 rad
+ pos: 79.5,1.5
parent: 2
- - uid: 25623
+ - uid: 6422
components:
- type: Transform
- pos: 47.137054,24.677122
+ rot: 1.5707963267948966 rad
+ pos: 80.5,3.5
parent: 2
-- proto: CigaretteSpent
- entities:
- - uid: 805
+ - uid: 6425
components:
- type: Transform
- pos: -11.890192,-41.501385
+ rot: 1.5707963267948966 rad
+ pos: 79.5,2.5
parent: 2
- - uid: 4323
+ - uid: 6432
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.89948,30.141405
+ rot: 1.5707963267948966 rad
+ pos: 0.5,81.5
parent: 2
- - uid: 4324
+ - uid: 6468
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 65.94636,29.871874
+ rot: 1.5707963267948966 rad
+ pos: -40.5,69.5
parent: 2
- - uid: 4329
+ - uid: 6654
components:
- type: Transform
- pos: 46.949554,24.829466
+ rot: -1.5707963267948966 rad
+ pos: -44.5,21.5
parent: 2
- - uid: 4330
+ - uid: 6928
components:
- type: Transform
- pos: 65.5362,30.84453
+ pos: 32.5,36.5
parent: 2
- - uid: 6391
+ - uid: 7095
components:
- type: Transform
- pos: 17.924091,-18.72768
+ rot: 1.5707963267948966 rad
+ pos: 0.5,80.5
parent: 2
- - uid: 6887
+ - uid: 7200
components:
- type: Transform
- pos: 21.486591,-21.087055
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-31.5
parent: 2
- - uid: 7086
+ - uid: 7201
components:
- type: Transform
- pos: 32.16749,-19.04018
+ pos: -29.5,6.5
parent: 2
- - uid: 7087
+ - uid: 7211
components:
- type: Transform
- pos: 32.79249,-18.75893
+ rot: 1.5707963267948966 rad
+ pos: 10.5,81.5
parent: 2
- - uid: 7198
+ - uid: 7213
components:
- type: Transform
- pos: 17.752216,-18.899555
+ rot: 1.5707963267948966 rad
+ pos: 2.5,80.5
parent: 2
- - uid: 7442
+ - uid: 7214
components:
- type: Transform
- pos: 31.917488,-17.91518
+ rot: 1.5707963267948966 rad
+ pos: 2.5,82.5
parent: 2
- - uid: 7609
+ - uid: 7237
components:
- type: Transform
- pos: 18.377216,-21.680805
+ rot: 1.5707963267948966 rad
+ pos: 2.5,79.5
parent: 2
- - uid: 7610
+ - uid: 7282
components:
- type: Transform
- pos: 32.433113,-19.024555
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-37.5
parent: 2
- - uid: 7611
+ - uid: 7283
components:
- type: Transform
- pos: 32.35499,-19.29018
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-36.5
parent: 2
- - uid: 7626
+ - uid: 7441
components:
- type: Transform
- pos: 32.79249,-18.85268
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-29.5
parent: 2
- - uid: 7717
+ - uid: 7442
components:
- type: Transform
- pos: 28.735868,25.78203
+ pos: 25.5,-22.5
parent: 2
- - uid: 7722
+ - uid: 7451
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 65.969795,30.012499
+ pos: -46.5,57.5
parent: 2
- - uid: 8137
+ - uid: 7465
components:
- type: Transform
- pos: 32.683113,-18.930805
+ pos: -46.5,58.5
parent: 2
- - uid: 8435
+ - uid: 7544
components:
- type: Transform
- pos: 32.26124,-20.368305
+ pos: 34.5,32.5
parent: 2
- - uid: 9510
+ - uid: 7582
components:
- type: Transform
- pos: 32.94874,-19.149555
+ rot: 3.141592653589793 rad
+ pos: -33.5,-5.5
parent: 2
- - uid: 10651
+ - uid: 7622
components:
- type: Transform
- pos: -12.300348,-42.263103
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-30.5
parent: 2
- - uid: 10652
+ - uid: 7656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.308161,-41.677166
+ rot: 3.141592653589793 rad
+ pos: -69.5,24.5
parent: 2
- - uid: 10653
+ - uid: 7743
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.249567,-41.419353
+ pos: 17.5,-28.5
parent: 2
- - uid: 10654
+ - uid: 7823
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.218317,-40.868572
+ pos: -72.5,22.5
parent: 2
- - uid: 11221
+ - uid: 8294
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.0503483,-41.489666
+ pos: 79.5,-2.5
parent: 2
- - uid: 20299
+ - uid: 8295
components:
- type: Transform
- pos: -8.280817,-42.509197
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-0.5
parent: 2
- - uid: 20301
+ - uid: 8299
components:
- type: Transform
- pos: -11.245661,-42.438885
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-1.5
parent: 2
- - uid: 20302
+ - uid: 8373
components:
- type: Transform
- pos: -10.964411,-42.532635
+ rot: -1.5707963267948966 rad
+ pos: 38.5,10.5
parent: 2
- - uid: 20303
+ - uid: 8452
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.058161,-42.884197
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-26.5
parent: 2
- - uid: 20304
+ - uid: 8641
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -12.136286,-41.72404
+ pos: -72.5,23.5
parent: 2
- - uid: 21976
+ - uid: 8792
components:
- type: Transform
- pos: -12.124567,-41.337322
+ rot: 3.141592653589793 rad
+ pos: -62.5,31.5
parent: 2
- - uid: 22063
+ - uid: 8793
components:
- type: Transform
- pos: 29.134306,25.571093
+ rot: 3.141592653589793 rad
+ pos: -61.5,31.5
parent: 2
- - uid: 23337
+ - uid: 8858
components:
- type: Transform
- pos: 33.164318,-4.454046
+ rot: 3.141592653589793 rad
+ pos: -61.5,32.5
parent: 2
- - uid: 25399
+ - uid: 8859
components:
- type: Transform
- pos: 46.844086,24.911497
+ pos: -58.5,25.5
parent: 2
- - uid: 26706
+ - uid: 8861
components:
- type: Transform
- pos: 33.89088,-5.5087333
+ pos: -58.5,26.5
parent: 2
- - uid: 27251
+ - uid: 8862
components:
- type: Transform
- pos: 33.773693,-5.7899833
+ pos: -61.5,25.5
parent: 2
- - uid: 29178
+ - uid: 8863
components:
- type: Transform
- pos: 29.251493,25.629686
+ rot: 3.141592653589793 rad
+ pos: -61.5,34.5
parent: 2
-- proto: CigarGold
- entities:
- - uid: 32465
+ - uid: 8869
components:
- type: Transform
- pos: 84.11947,71.26582
+ rot: -1.5707963267948966 rad
+ pos: -59.5,36.5
parent: 2
- - uid: 32556
+ - uid: 8898
components:
- type: Transform
- pos: 82.97884,71.1877
+ pos: -60.5,26.5
parent: 2
- - uid: 32558
+ - uid: 8899
components:
- type: Transform
- pos: 82.7104,71.27461
+ pos: -63.5,24.5
parent: 2
- - uid: 33570
+ - uid: 8900
components:
- type: Transform
- pos: 84.43197,71.26582
+ pos: -59.5,23.5
parent: 2
-- proto: CigarGoldCase
- entities:
- - uid: 15264
+ - uid: 8901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.61628,48.233536
+ rot: 3.141592653589793 rad
+ pos: -62.5,34.5
parent: 2
-- proto: CigarSpent
- entities:
- - uid: 27385
+ - uid: 8902
components:
- type: Transform
- pos: 34.329052,-4.3861756
+ pos: -60.5,25.5
parent: 2
-- proto: CircuitImprinter
- entities:
- - uid: 1593
+ - uid: 8903
components:
- type: Transform
- pos: 29.5,30.5
+ pos: -62.5,24.5
parent: 2
-- proto: ClaymoreDulled
- entities:
- - uid: 32475
+ - uid: 8904
components:
- type: Transform
- pos: 61.054596,64.87431
+ pos: -60.5,23.5
parent: 2
-- proto: CleanerDispenser
- entities:
- - uid: 27297
+ - uid: 8906
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,20.5
+ pos: -59.5,26.5
parent: 2
-- proto: ClockworkShield
- entities:
- - uid: 32472
+ - uid: 8907
components:
- type: Transform
- pos: 61.89163,64.76277
+ pos: -61.5,24.5
parent: 2
- - type: Blocking
- blockingToggleActionEntity: 32473
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 32473
-- proto: CloningConsoleComputerCircuitboard
- entities:
- - uid: 7432
+ - uid: 8908
components:
- type: Transform
- pos: -51.525253,26.717798
+ pos: -61.5,23.5
parent: 2
-- proto: CloningPod
- entities:
- - uid: 1015
+ - uid: 8910
components:
- type: Transform
- pos: 27.5,2.5
+ pos: -59.5,25.5
parent: 2
-- proto: CloningPodMachineCircuitboard
- entities:
- - uid: 7428
+ - uid: 8911
components:
- type: Transform
- pos: -51.400253,26.577173
+ pos: -60.5,24.5
parent: 2
-- proto: ClosetBombFilled
- entities:
- - uid: 4034
+ - uid: 8912
components:
- type: Transform
- pos: 40.5,26.5
+ pos: -62.5,23.5
parent: 2
- - uid: 19734
+ - uid: 8914
components:
- type: Transform
- pos: 4.5,66.5
+ pos: -64.5,26.5
parent: 2
- - uid: 26214
+ - uid: 8915
components:
- type: Transform
- pos: -25.5,44.5
+ pos: -59.5,24.5
parent: 2
- - uid: 29716
+ - uid: 8916
components:
- type: Transform
- pos: 5.5,66.5
+ pos: -63.5,23.5
parent: 2
-- proto: ClosetChefFilled
- entities:
- - uid: 11233
+ - uid: 8917
components:
- type: Transform
- pos: -52.5,-5.5
+ pos: -61.5,27.5
parent: 2
- - uid: 11324
+ - uid: 8918
components:
- type: Transform
- pos: -53.5,-5.5
+ pos: -64.5,25.5
parent: 2
-- proto: ClosetEmergencyFilledRandom
- entities:
- - uid: 2540
+ - uid: 8919
components:
- type: Transform
- pos: 4.5,-22.5
+ pos: -64.5,24.5
parent: 2
- - uid: 3213
+ - uid: 8920
components:
- type: Transform
- pos: -4.5,-20.5
+ pos: -64.5,23.5
parent: 2
- - uid: 6131
+ - uid: 8929
components:
- type: Transform
- pos: 47.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,31.5
parent: 2
- - uid: 6140
+ - uid: 8931
components:
- type: Transform
- pos: 10.5,-38.5
+ pos: -62.5,27.5
parent: 2
- - uid: 6143
+ - uid: 8938
components:
- type: Transform
- pos: -2.5,-29.5
+ pos: -61.5,26.5
parent: 2
- - uid: 6147
+ - uid: 8941
components:
- type: Transform
- pos: -22.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,34.5
parent: 2
- - uid: 6197
+ - uid: 8942
components:
- type: Transform
- pos: -31.5,1.5
+ pos: -62.5,26.5
parent: 2
- - uid: 6350
+ - uid: 8944
components:
- type: Transform
- pos: 39.5,-10.5
+ pos: -61.5,30.5
parent: 2
- - uid: 11301
+ - uid: 8946
components:
- type: Transform
- pos: -37.5,-32.5
+ pos: -62.5,25.5
parent: 2
- - uid: 13128
+ - uid: 8950
components:
- type: Transform
- pos: -69.5,19.5
+ pos: -63.5,25.5
parent: 2
- - uid: 14564
+ - uid: 8952
components:
- type: Transform
- pos: 4.5,32.5
+ pos: -61.5,28.5
parent: 2
- - uid: 16655
+ - uid: 8954
components:
- type: Transform
- pos: -35.5,15.5
+ pos: -63.5,26.5
parent: 2
- - uid: 19884
+ - uid: 8958
components:
- type: Transform
- pos: 23.5,23.5
+ pos: -58.5,23.5
parent: 2
- - uid: 19885
+ - uid: 8960
components:
- type: Transform
- pos: -1.5,43.5
+ pos: -61.5,29.5
parent: 2
- - uid: 19888
+ - uid: 8962
components:
- type: Transform
- pos: 33.5,44.5
+ pos: -58.5,24.5
parent: 2
- - uid: 19889
+ - uid: 8983
components:
- type: Transform
- pos: 38.5,11.5
+ pos: -62.5,33.5
parent: 2
- - uid: 19890
+ - uid: 8984
components:
- type: Transform
- pos: 53.5,2.5
+ pos: -60.5,33.5
parent: 2
- - uid: 19925
+ - uid: 8989
components:
- type: Transform
- pos: -65.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,36.5
parent: 2
- - uid: 19928
+ - uid: 8991
components:
- type: Transform
- pos: -65.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,35.5
parent: 2
- - uid: 19932
+ - uid: 9311
components:
- type: Transform
- pos: -32.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-28.5
parent: 2
- - uid: 19935
+ - uid: 9649
components:
- type: Transform
- pos: -7.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,-33.5
parent: 2
- - uid: 19941
+ - uid: 9704
components:
- type: Transform
- pos: -45.5,19.5
+ pos: -57.5,39.5
parent: 2
- - uid: 20939
+ - uid: 9733
components:
- type: Transform
- pos: -33.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-53.5
parent: 2
- - uid: 30189
+ - uid: 9734
components:
- type: Transform
- pos: 39.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-42.5
parent: 2
-- proto: ClosetFireFilled
- entities:
- - uid: 365
+ - uid: 9735
components:
- type: Transform
- pos: 39.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-63.5
parent: 2
- - uid: 1765
+ - uid: 9737
components:
- type: Transform
- pos: -31.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-64.5
parent: 2
- - uid: 2618
+ - uid: 9742
components:
- type: Transform
- pos: 4.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-79.5
parent: 2
- - uid: 3074
+ - uid: 9744
components:
- type: Transform
- pos: 54.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-78.5
parent: 2
- - uid: 3930
+ - uid: 9745
components:
- type: Transform
- pos: -35.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-78.5
parent: 2
- - uid: 3995
+ - uid: 9746
components:
- type: Transform
- pos: -4.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-77.5
parent: 2
- - uid: 5103
+ - uid: 9747
components:
- type: Transform
- pos: 39.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-67.5
parent: 2
- - uid: 6128
+ - uid: 9877
components:
- type: Transform
- pos: 47.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,41.5
parent: 2
- - uid: 6141
+ - uid: 9878
components:
- type: Transform
- pos: 9.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,41.5
parent: 2
- - uid: 6142
+ - uid: 9879
components:
- type: Transform
- pos: -1.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,40.5
parent: 2
- - uid: 6146
+ - uid: 9880
components:
- type: Transform
- pos: -21.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,39.5
parent: 2
- - uid: 6152
+ - uid: 9882
components:
- type: Transform
- pos: 65.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -62.5,40.5
parent: 2
- - uid: 8365
+ - uid: 9883
components:
- type: Transform
- pos: -36.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,40.5
parent: 2
- - uid: 13110
+ - uid: 9884
components:
- type: Transform
- pos: -70.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -64.5,40.5
parent: 2
- - uid: 14565
+ - uid: 9885
components:
- type: Transform
- pos: 5.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -65.5,40.5
parent: 2
- - uid: 19883
+ - uid: 9886
components:
- type: Transform
- pos: -1.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,40.5
parent: 2
- - uid: 19886
+ - uid: 9887
components:
- type: Transform
- pos: 23.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,41.5
parent: 2
- - uid: 19887
+ - uid: 9888
components:
- type: Transform
- pos: 34.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,42.5
parent: 2
- - uid: 19924
+ - uid: 9889
components:
- type: Transform
- pos: -64.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,43.5
parent: 2
- - uid: 19929
+ - uid: 9890
components:
- type: Transform
- pos: -65.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,44.5
parent: 2
- - uid: 19933
+ - uid: 9892
components:
- type: Transform
- pos: -32.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,46.5
parent: 2
- - uid: 19934
+ - uid: 9893
components:
- type: Transform
- pos: -7.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,47.5
parent: 2
- - uid: 19943
+ - uid: 9894
components:
- type: Transform
- pos: -45.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,48.5
parent: 2
- - uid: 20940
+ - uid: 9895
components:
- type: Transform
- pos: -33.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,49.5
parent: 2
- - uid: 21053
+ - uid: 9896
components:
- type: Transform
- pos: 39.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,50.5
parent: 2
-- proto: ClosetJanitorFilled
- entities:
- - uid: 15996
+ - uid: 9897
components:
- type: Transform
- pos: -37.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,51.5
parent: 2
- - uid: 18517
+ - uid: 9899
components:
- type: Transform
- pos: -36.488503,22.493122
+ rot: 3.141592653589793 rad
+ pos: -68.5,51.5
parent: 2
-- proto: ClosetL3JanitorFilled
- entities:
- - uid: 15961
+ - uid: 9900
components:
- type: Transform
- pos: -38.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,51.5
parent: 2
-- proto: ClosetL3ScienceFilled
- entities:
- - uid: 3962
+ - uid: 9901
components:
- type: Transform
- pos: 39.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,35.5
parent: 2
-- proto: ClosetL3SecurityFilled
- entities:
- - uid: 22656
+ - uid: 9902
components:
- type: Transform
- pos: -6.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,36.5
parent: 2
-- proto: ClosetL3VirologyFilled
- entities:
- - uid: 22075
+ - uid: 9906
components:
- type: Transform
- pos: -13.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,51.5
parent: 2
-- proto: ClosetMaintenanceFilledRandom
- entities:
- - uid: 6148
+ - uid: 9907
components:
- type: Transform
- pos: -23.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -76.5,51.5
parent: 2
- - uid: 6150
+ - uid: 9908
components:
- type: Transform
- pos: 47.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,51.5
parent: 2
- - uid: 6151
+ - uid: 9910
components:
- type: Transform
- pos: 64.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,51.5
parent: 2
- - uid: 9534
+ - uid: 9948
components:
- type: Transform
- pos: -5.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,41.5
parent: 2
- - uid: 13192
+ - uid: 9949
components:
- type: Transform
- pos: 50.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,41.5
parent: 2
- - uid: 13317
+ - uid: 9952
components:
- type: Transform
- pos: 49.5,-28.5
+ pos: -55.5,41.5
parent: 2
- - uid: 34183
+ - uid: 9953
components:
- type: Transform
- pos: 29.5,46.5
+ pos: -54.5,40.5
parent: 2
- - uid: 36503
+ - uid: 9955
components:
- type: Transform
- pos: -41.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,39.5
parent: 2
- - uid: 36504
+ - uid: 9956
components:
- type: Transform
- pos: -34.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,39.5
parent: 2
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 54
+ - uid: 9962
components:
- type: Transform
- pos: 50.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,39.5
parent: 2
- - uid: 4031
+ - uid: 9964
components:
- type: Transform
- pos: 40.5,23.5
+ pos: -58.5,39.5
parent: 2
-- proto: ClosetSteelBase
- entities:
- - uid: 33677
+ - uid: 9965
components:
- type: Transform
- pos: -35.5,63.5
+ pos: -54.5,41.5
parent: 2
-- proto: ClosetToolFilled
- entities:
- - uid: 34686
+ - uid: 10018
components:
- type: Transform
- pos: 74.5,-8.5
+ pos: -63.5,34.5
parent: 2
-- proto: ClosetWallEmergencyFilledRandom
- entities:
- - uid: 119
+ - uid: 10019
components:
- type: Transform
- pos: -3.5,-49.5
+ pos: -59.5,34.5
parent: 2
- - uid: 6124
+ - uid: 10027
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,27.5
+ pos: -54.5,38.5
parent: 2
- - uid: 6133
+ - uid: 10033
components:
- type: Transform
- pos: 42.5,-25.5
+ pos: -68.5,28.5
parent: 2
- - uid: 9683
+ - uid: 10034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,46.5
+ pos: -68.5,27.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 9684
+ - uid: 10035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,47.5
+ pos: -68.5,26.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 10568
+ - uid: 10036
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,40.5
+ pos: -68.5,25.5
parent: 2
- - uid: 15263
+ - uid: 10037
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,50.5
+ pos: -68.5,24.5
parent: 2
- - uid: 16337
+ - uid: 10038
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,38.5
+ pos: -68.5,23.5
parent: 2
- - uid: 19878
+ - uid: 10039
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,72.5
+ pos: -68.5,22.5
parent: 2
- - uid: 19903
+ - uid: 10040
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-0.5
+ pos: -68.5,21.5
parent: 2
- - uid: 19937
+ - uid: 10041
components:
- type: Transform
- pos: 66.5,-26.5
+ pos: -68.5,20.5
parent: 2
- - uid: 30230
+ - uid: 10042
components:
- type: Transform
- pos: -2.5,-49.5
+ pos: -68.5,19.5
parent: 2
-- proto: ClosetWallFireFilledRandom
- entities:
- - uid: 6125
+ - uid: 10043
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,27.5
+ pos: -67.5,19.5
parent: 2
- - uid: 6132
+ - uid: 10044
components:
- type: Transform
- pos: 41.5,-25.5
+ pos: -66.5,19.5
parent: 2
- - uid: 9570
+ - uid: 10045
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,36.5
+ pos: -65.5,19.5
parent: 2
- - uid: 15259
+ - uid: 10046
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,50.5
+ pos: -65.5,18.5
parent: 2
- - uid: 19876
+ - uid: 10047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,72.5
+ pos: -65.5,17.5
parent: 2
- - uid: 19904
+ - uid: 10048
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,0.5
+ pos: -65.5,16.5
parent: 2
- - uid: 23122
+ - uid: 10049
components:
- type: Transform
- pos: 6.5,-49.5
+ pos: -65.5,15.5
parent: 2
- - uid: 30229
+ - uid: 10050
components:
- type: Transform
- pos: 5.5,-49.5
+ pos: -65.5,14.5
parent: 2
- - uid: 35715
+ - uid: 10051
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,39.5
+ pos: -65.5,13.5
parent: 2
-- proto: ClosetWallMaintenanceFilledRandom
- entities:
- - uid: 12951
+ - uid: 10052
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-1.5
+ pos: -65.5,12.5
parent: 2
-- proto: ClothingBackpackDuffelSurgeryFilled
- entities:
- - uid: 1383
+ - uid: 10053
components:
- type: Transform
- pos: 32.76661,9.703077
+ pos: -65.5,11.5
parent: 2
- - type: GroupExamine
- group:
- - hoverMessage: ""
- contextText: verb-examine-group-other
- icon: /Textures/Interface/examine-star.png
- components:
- - Armor
- - ClothingSpeedModifier
- entries:
- - message: >-
- It provides the following protection:
-
- - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color].
- priority: 0
- component: Armor
- - message: This decreases your running speed by [color=yellow]10%[/color].
- priority: 0
- component: ClothingSpeedModifier
- title: null
- - uid: 4552
+ - uid: 10054
components:
- type: Transform
- pos: 48.72707,44.818375
+ pos: -64.5,11.5
parent: 2
- - uid: 5327
+ - uid: 10055
components:
- type: Transform
- pos: 57.44354,56.71585
+ pos: -64.5,10.5
parent: 2
- - uid: 23418
+ - uid: 10075
components:
- type: Transform
- pos: -17.33978,-0.18008184
+ rot: 1.5707963267948966 rad
+ pos: 33.5,54.5
parent: 2
-- proto: ClothingBeltSalvageWebbing
- entities:
- - uid: 32575
+ - uid: 10122
components:
- type: Transform
- pos: 91.750565,26.7444
+ rot: 1.5707963267948966 rad
+ pos: 33.5,53.5
parent: 2
-- proto: ClothingBeltUtilityEngineering
- entities:
- - uid: 5313
+ - uid: 10514
components:
- type: Transform
- pos: 46.39504,44.59572
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-47.5
parent: 2
-- proto: ClothingCostumeArcDress
- entities:
- - uid: 18045
+ - uid: 10515
components:
- type: Transform
- pos: -35.79783,-28.1693
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-57.5
parent: 2
-- proto: ClothingEyesBlindfold
- entities:
- - uid: 32543
+ - uid: 10516
components:
- type: Transform
- pos: 99.68313,42.249104
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-46.5
parent: 2
-- proto: ClothingEyesGlasses
- entities:
- - uid: 1634
+ - uid: 10618
components:
- type: Transform
- pos: -3.9242487,16.828148
+ pos: -28.5,6.5
parent: 2
- - uid: 14265
+ - uid: 11013
components:
- type: Transform
- pos: 12.774038,48.750267
+ pos: -62.5,-21.5
parent: 2
-- proto: ClothingEyesGlassesChemical
- entities:
- - uid: 3997
+ - uid: 11151
components:
- type: Transform
- pos: 12.514965,-1.2635912
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-38.5
parent: 2
- - uid: 35800
+ - uid: 11166
components:
- type: Transform
- pos: 20.811102,-1.3168378
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-38.5
parent: 2
-- proto: ClothingEyesGlassesMeson
- entities:
- - uid: 5693
+ - uid: 11167
components:
- type: Transform
- pos: 34.45585,46.661957
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-38.5
parent: 2
-- proto: ClothingEyesGlassesSecurity
- entities:
- - uid: 22665
+ - uid: 11169
components:
- type: Transform
- pos: -24.45018,41.289783
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-38.5
parent: 2
- - uid: 22666
+ - uid: 11524
components:
- type: Transform
- pos: -8.48143,32.71166
+ rot: -1.5707963267948966 rad
+ pos: -68.5,-3.5
parent: 2
- - uid: 22667
+ - uid: 11552
components:
- type: Transform
- pos: -10.028305,42.571033
+ rot: -1.5707963267948966 rad
+ pos: -72.5,21.5
parent: 2
-- proto: ClothingEyesHudMedical
- entities:
- - uid: 2056
+ - uid: 11553
components:
- type: Transform
- pos: -11.442047,-10.684356
+ rot: -1.5707963267948966 rad
+ pos: -72.5,20.5
parent: 2
-- proto: ClothingEyesHudSecurity
- entities:
- - uid: 22662
+ - uid: 11554
components:
- type: Transform
- pos: -8.450156,33.008305
+ rot: -1.5707963267948966 rad
+ pos: -72.5,19.5
parent: 2
-- proto: ClothingHandsGlovesBoxingBlue
- entities:
- - uid: 3466
+ - uid: 11555
components:
- type: Transform
- pos: 44.464664,-21.37337
+ rot: -1.5707963267948966 rad
+ pos: -72.5,18.5
parent: 2
-- proto: ClothingHandsGlovesBoxingGreen
- entities:
- - uid: 3469
+ - uid: 11556
components:
- type: Transform
- pos: 44.570133,-21.853838
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-3.5
parent: 2
-- proto: ClothingHandsGlovesBoxingRed
- entities:
- - uid: 3468
+ - uid: 11557
components:
- type: Transform
- pos: 44.652164,-22.228838
+ rot: -1.5707963267948966 rad
+ pos: -66.5,-3.5
parent: 2
-- proto: ClothingHandsGlovesBoxingYellow
- entities:
- - uid: 3470
+ - uid: 11558
components:
- type: Transform
- pos: 44.675602,-24.18587
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-3.5
parent: 2
- - uid: 3471
+ - uid: 11559
components:
- type: Transform
- pos: 44.382633,-22.521807
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-3.5
parent: 2
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 6069
+ - uid: 11560
components:
- type: Transform
- pos: 16.45286,28.010605
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-2.5
parent: 2
- - uid: 6070
+ - uid: 11561
components:
- type: Transform
- pos: 21.503641,28.045761
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-1.5
parent: 2
-- proto: ClothingHandsGlovesCombat
- entities:
- - uid: 36499
+ - uid: 11562
components:
- type: Transform
- pos: 83.55734,57.676487
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-0.5
parent: 2
-- proto: ClothingHandsGlovesLatex
- entities:
- - uid: 2125
+ - uid: 11563
components:
- type: Transform
- pos: 33.68015,9.743554
+ rot: -1.5707963267948966 rad
+ pos: -64.5,0.5
parent: 2
- - uid: 2126
+ - uid: 11564
components:
- type: Transform
- pos: 15.473563,9.955488
+ rot: -1.5707963267948966 rad
+ pos: -64.5,1.5
parent: 2
- - uid: 2127
+ - uid: 11565
components:
- type: Transform
- pos: -5.43925,4.5595484
+ rot: -1.5707963267948966 rad
+ pos: -64.5,2.5
parent: 2
- - uid: 2128
+ - uid: 11566
components:
- type: Transform
- pos: -8.493291,10.130974
+ rot: -1.5707963267948966 rad
+ pos: -64.5,3.5
parent: 2
- - uid: 2130
+ - uid: 11567
components:
- type: Transform
- pos: -28.861816,-0.31772518
+ rot: -1.5707963267948966 rad
+ pos: -64.5,4.5
parent: 2
- - uid: 2131
+ - uid: 11568
components:
- type: Transform
- pos: -22.459894,9.539465
+ rot: -1.5707963267948966 rad
+ pos: -64.5,5.5
parent: 2
- - uid: 2132
+ - uid: 11569
components:
- type: Transform
- pos: -6.516262,-11.391825
+ rot: -1.5707963267948966 rad
+ pos: -64.5,6.5
parent: 2
- - uid: 13039
+ - uid: 11570
components:
- type: Transform
- pos: 12.957554,-11.518689
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-4.5
parent: 2
-- proto: ClothingHandsGlovesLeather
- entities:
- - uid: 18445
+ - uid: 11571
components:
- type: Transform
- pos: -62.48618,2.599772
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-5.5
parent: 2
- - uid: 18483
+ - uid: 11572
components:
- type: Transform
- pos: -62.251804,2.349772
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-6.5
parent: 2
-- proto: ClothingHandsGlovesNitrile
- entities:
- - uid: 2134
+ - uid: 11573
components:
- type: Transform
- pos: -28.387495,9.555864
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-7.5
parent: 2
- - uid: 35799
+ - uid: 11574
components:
- type: Transform
- pos: 15.535261,9.639928
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-8.5
parent: 2
-- proto: ClothingHandsGlovesPowerglove
- entities:
- - uid: 33598
+ - uid: 11575
components:
- type: Transform
- pos: 93.04728,33.326565
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-9.5
parent: 2
-- proto: ClothingHeadBandBotany
- entities:
- - uid: 18484
+ - uid: 11576
components:
- type: Transform
- pos: -62.51743,1.8810221
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-10.5
parent: 2
-- proto: ClothingHeadCourier
- entities:
- - uid: 34975
+ - uid: 11577
components:
- type: Transform
- pos: -7.880703,-25.330961
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-11.5
parent: 2
-- proto: ClothingHeadHatBeret
- entities:
- - uid: 2143
+ - uid: 11578
components:
- type: Transform
- pos: -28.462244,16.706312
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-11.5
parent: 2
- - uid: 23705
+ - uid: 11579
components:
- type: Transform
- pos: -46.69325,-25.221474
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-11.5
parent: 2
-- proto: ClothingHeadHatBeretBrigmedic
- entities:
- - uid: 2144
+ - uid: 11580
components:
- type: Transform
- pos: -22.649956,9.844152
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-11.5
parent: 2
-- proto: ClothingHeadHatBeretSecurity
- entities:
- - uid: 22658
+ - uid: 11581
components:
- type: Transform
- pos: -13.138213,32.662838
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-12.5
parent: 2
- - uid: 22659
+ - uid: 11582
components:
- type: Transform
- pos: -12.911651,32.553463
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-13.5
parent: 2
- - uid: 22660
+ - uid: 11583
components:
- type: Transform
- pos: -12.309531,28.664555
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-14.5
parent: 2
-- proto: ClothingHeadHatBluesoft
- entities:
- - uid: 28747
+ - uid: 11584
components:
- type: Transform
- pos: -46.728405,-25.397255
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-15.5
parent: 2
-- proto: ClothingHeadHatBowlerHat
- entities:
- - uid: 18110
+ - uid: 11585
components:
- type: Transform
- pos: -41.563454,-28.653675
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-16.5
parent: 2
-- proto: ClothingHeadHatCardborg
- entities:
- - uid: 6153
+ - uid: 11586
components:
- type: Transform
- pos: 44.916782,44.70262
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-17.5
parent: 2
-- proto: ClothingHeadHatFedoraBlack
- entities:
- - uid: 20603
+ - uid: 11587
components:
- type: Transform
- pos: -46.341686,-25.326942
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-18.5
parent: 2
-- proto: ClothingHeadHatFezMantis
- entities:
- - uid: 20026
+ - uid: 11588
components:
- type: Transform
- pos: 49.367798,34.06218
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-19.5
parent: 2
-- proto: ClothingHeadHatFlowerCrown
- entities:
- - uid: 30331
+ - uid: 11589
components:
- type: Transform
- pos: 28.985943,18.5628
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-20.5
parent: 2
-- proto: ClothingHeadHatHairflower
- entities:
- - uid: 28229
+ - uid: 11590
components:
- type: Transform
- pos: -50.391586,-26.727682
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-21.5
parent: 2
- - uid: 36391
+ - uid: 11591
components:
- type: Transform
- pos: 82.549065,59.462532
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-22.5
parent: 2
-- proto: ClothingHeadHatPumpkin
- entities:
- - uid: 30326
+ - uid: 11592
components:
- type: Transform
- pos: -6.5801415,-7.241027
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-23.5
parent: 2
-- proto: ClothingHeadHatPurplesoft
- entities:
- - uid: 33600
+ - uid: 11593
components:
- type: Transform
- pos: 83.15367,57.480366
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-24.5
parent: 2
-- proto: ClothingHeadHatSecsoft
- entities:
- - uid: 22661
+ - uid: 11595
components:
- type: Transform
- pos: -12.372031,34.21143
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-26.5
parent: 2
-- proto: ClothingHeadHelmetBone
- entities:
- - uid: 4790
+ - uid: 11597
components:
- type: Transform
- pos: 87.56079,41.157158
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-28.5
parent: 2
-- proto: ClothingHeadHelmetRiot
- entities:
- - uid: 8203
+ - uid: 11599
components:
- type: Transform
- pos: -18.352938,47.849854
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-30.5
parent: 2
- - uid: 28971
+ - uid: 11600
components:
- type: Transform
- pos: -18.707106,47.655407
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-33.5
parent: 2
-- proto: ClothingHeadHelmetScaf
- entities:
- - uid: 33617
+ - uid: 11601
components:
- type: Transform
- pos: 72.773415,61.056877
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-33.5
parent: 2
-- proto: ClothingHeadNurseHat
- entities:
- - uid: 2138
+ - uid: 11602
components:
- type: Transform
- pos: -16.368912,16.692177
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-34.5
parent: 2
- - uid: 2139
+ - uid: 11603
components:
- type: Transform
- pos: -5.9287615,4.7876196
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-35.5
parent: 2
- - uid: 2141
+ - uid: 11604
components:
- type: Transform
- pos: 19.38141,2.515604
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-35.5
parent: 2
- - uid: 2142
+ - uid: 11607
components:
- type: Transform
- pos: 33.7739,9.493554
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-34.5
parent: 2
-- proto: ClothingHeadPaperSackSmile
- entities:
- - uid: 33636
+ - uid: 11618
components:
- type: Transform
- pos: 64.57948,46.52246
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-34.5
parent: 2
-- proto: ClothingHeadSafari
- entities:
- - uid: 33615
+ - uid: 11619
components:
- type: Transform
- pos: 88.63485,62.427803
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-33.5
parent: 2
-- proto: ClothingMaskClown
- entities:
- - uid: 19427
+ - uid: 11620
components:
- type: Transform
- pos: -77.690346,1.3026085
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-35.5
parent: 2
- - uid: 20604
+ - uid: 11621
components:
- type: Transform
- pos: -50.602524,-26.446432
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-34.5
parent: 2
- - uid: 21094
+ - uid: 11622
components:
- type: Transform
- pos: -78.28,-2.5353103
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-34.5
parent: 2
-- proto: ClothingMaskGas
- entities:
- - uid: 6061
+ - uid: 11623
components:
- type: Transform
- pos: 16.382547,26.569199
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-34.5
parent: 2
- - uid: 6062
+ - uid: 11624
components:
- type: Transform
- pos: 16.64036,26.358261
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-34.5
parent: 2
- - uid: 6063
+ - uid: 11625
components:
- type: Transform
- pos: 21.386454,26.733261
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-34.5
parent: 2
- - uid: 6064
+ - uid: 11626
components:
- type: Transform
- pos: 21.679422,26.510605
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-33.5
parent: 2
-- proto: ClothingMaskGasExplorer
- entities:
- - uid: 32576
+ - uid: 11627
components:
- type: Transform
- pos: 92.000565,27.21315
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-35.5
parent: 2
-- proto: ClothingMaskGasSwat
- entities:
- - uid: 8406
+ - uid: 11628
components:
- type: Transform
- pos: -18.727938,47.662354
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-35.5
parent: 2
- - uid: 28884
+ - uid: 11629
components:
- type: Transform
- pos: -18.359882,47.898464
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-33.5
parent: 2
-- proto: ClothingMaskMime
- entities:
- - uid: 33589
+ - uid: 11630
components:
- type: Transform
- pos: 76.78687,38.07537
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-33.5
parent: 2
-- proto: ClothingMaskMuzzle
- entities:
- - uid: 32544
+ - uid: 11631
components:
- type: Transform
- pos: 99.58938,42.842854
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-35.5
parent: 2
-- proto: ClothingMaskPlague
- entities:
- - uid: 5707
+ - uid: 11632
components:
- type: Transform
- pos: 71.31579,29.6757
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-33.5
parent: 2
-- proto: ClothingMaskSterile
- entities:
- - uid: 30453
+ - uid: 11634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.577179,-13.225327
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-35.5
parent: 2
- - uid: 30455
+ - uid: 11638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.561554,-13.490952
+ pos: -46.5,61.5
parent: 2
- - uid: 30456
+ - uid: 11652
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.561554,-13.392293
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-35.5
parent: 2
-- proto: ClothingNeckBling
- entities:
- - uid: 32461
+ - uid: 11669
components:
- type: Transform
- pos: 74.04644,24.697683
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-36.5
parent: 2
-- proto: ClothingNeckCargomedal
- entities:
- - uid: 34632
+ - uid: 11671
components:
- type: Transform
- pos: -30.666866,-24.101736
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-17.5
parent: 2
- - uid: 34633
+ - uid: 11672
components:
- type: Transform
- pos: -30.502804,-24.312674
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-18.5
parent: 2
- - uid: 34634
+ - uid: 11673
components:
- type: Transform
- pos: -30.315304,-24.078299
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-19.5
parent: 2
-- proto: ClothingNeckCloakMiner
- entities:
- - uid: 33590
+ - uid: 11674
components:
- type: Transform
- pos: 91.163445,26.61076
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-20.5
parent: 2
-- proto: ClothingNeckCloakPirateCap
- entities:
- - uid: 22163
+ - uid: 11675
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.502098,-26.641815
+ pos: -33.5,-21.5
parent: 2
- - uid: 22164
+ - uid: 11676
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.564014,-27.77065
+ pos: -33.5,-22.5
parent: 2
- - uid: 26709
+ - uid: 11677
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.493702,-27.559713
+ pos: -33.5,-23.5
parent: 2
- - uid: 26737
+ - uid: 11678
components:
- type: Transform
- pos: -50.728077,-27.606588
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-24.5
parent: 2
- - uid: 33595
+ - uid: 11679
components:
- type: Transform
- pos: 72.53355,41.726055
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-25.5
parent: 2
-- proto: ClothingNeckClownmedal
- entities:
- - uid: 19424
+ - uid: 11680
components:
- type: Transform
- pos: -81.367096,-0.39013824
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-26.5
parent: 2
-- proto: ClothingNeckEngineermedal
- entities:
- - uid: 22684
+ - uid: 11681
components:
- type: Transform
- pos: -58.75131,13.634154
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-27.5
parent: 2
- - uid: 34627
+ - uid: 11682
components:
- type: Transform
- pos: -58.56215,13.674015
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-27.5
parent: 2
- - uid: 34628
+ - uid: 11683
components:
- type: Transform
- pos: -58.74965,13.705265
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-27.5
parent: 2
-- proto: ClothingNeckGoldmedal
- entities:
- - uid: 34639
+ - uid: 11684
components:
- type: Transform
- pos: 4.342853,29.136616
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-27.5
parent: 2
- - uid: 34640
+ - uid: 11685
components:
- type: Transform
- pos: 4.5381656,29.02724
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-27.5
parent: 2
- - uid: 34641
+ - uid: 11686
components:
- type: Transform
- pos: 4.7256656,29.15224
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-27.5
parent: 2
-- proto: ClothingNeckHeadphones
- entities:
- - uid: 1530
+ - uid: 11687
components:
- type: Transform
- pos: -2.3107271,-34.414944
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-27.5
parent: 2
- - uid: 15746
+ - uid: 11688
components:
- type: Transform
- pos: -2.6961436,-34.571194
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-27.5
parent: 2
- - uid: 19882
+ - uid: 11689
components:
- type: Transform
- pos: -2.4669771,-34.477444
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-27.5
parent: 2
-- proto: ClothingNeckMedicalmedal
- entities:
- - uid: 34624
+ - uid: 11690
components:
- type: Transform
- pos: -11.726831,-11.175824
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-28.5
parent: 2
- - uid: 34625
+ - uid: 11691
components:
- type: Transform
- pos: -11.554956,-11.277387
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-28.5
parent: 2
- - uid: 34626
+ - uid: 11861
components:
- type: Transform
- pos: -11.359644,-11.191449
+ pos: -63.5,-21.5
parent: 2
-- proto: ClothingNeckScarfStripedLightBlue
- entities:
- - uid: 5173
+ - uid: 11894
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 54.56397,-10.473785
+ pos: -6.5,-33.5
parent: 2
-- proto: ClothingNeckScarfStripedOrange
- entities:
- - uid: 5166
+ - uid: 11895
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.563965,-14.48941
+ pos: -6.5,-32.5
parent: 2
-- proto: ClothingNeckScarfStripedPurple
- entities:
- - uid: 5170
+ - uid: 11896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.595215,-14.92691
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-31.5
parent: 2
-- proto: ClothingNeckSciencemedal
- entities:
- - uid: 34635
+ - uid: 11897
components:
- type: Transform
- pos: 42.317135,30.747564
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-30.5
parent: 2
- - uid: 34636
+ - uid: 11898
components:
- type: Transform
- pos: 42.774643,30.851824
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-29.5
parent: 2
- - uid: 34637
+ - uid: 12004
components:
- type: Transform
- pos: 42.579895,30.622713
+ pos: -41.5,56.5
parent: 2
-- proto: ClothingNeckSecuritymedal
- entities:
- - uid: 34621
+ - uid: 12032
components:
- type: Transform
- pos: -4.724091,35.60755
+ rot: -1.5707963267948966 rad
+ pos: 86.5,-15.5
parent: 2
- - uid: 34622
+ - uid: 12068
components:
- type: Transform
- pos: -4.442841,35.490364
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-28.5
parent: 2
- - uid: 34623
+ - uid: 12074
components:
- type: Transform
- pos: -4.2162786,35.623177
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-31.5
parent: 2
-- proto: ClothingNeckStethoscope
- entities:
- - uid: 7812
+ - uid: 12083
components:
- type: Transform
- pos: 7.6656265,-7.294763
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-32.5
parent: 2
-- proto: ClothingNeckTieDet
- entities:
- - uid: 30499
+ - uid: 12103
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 3.4690256,48.466957
+ pos: 13.5,-32.5
parent: 2
-- proto: ClothingOuterApronBotanist
- entities:
- - uid: 18486
+ - uid: 12231
components:
- type: Transform
- pos: -49.564304,5.740397
+ rot: 3.141592653589793 rad
+ pos: 10.5,-33.5
parent: 2
- - uid: 18487
+ - uid: 12232
components:
- type: Transform
- pos: -49.32993,5.599772
+ rot: 3.141592653589793 rad
+ pos: 10.5,-32.5
parent: 2
-- proto: ClothingOuterArmorBulletproof
- entities:
- - uid: 16511
+ - uid: 12249
components:
- type: Transform
- pos: -20.666626,45.81591
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-18.5
parent: 2
- - uid: 16512
+ - uid: 12250
components:
- type: Transform
- pos: -20.432251,45.75341
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-19.5
parent: 2
- - uid: 16513
+ - uid: 12251
components:
- type: Transform
- pos: -20.244751,45.862785
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-17.5
parent: 2
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 28953
+ - uid: 12252
components:
- type: Transform
- pos: -18.665438,47.36374
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-19.5
parent: 2
- - uid: 28956
+ - uid: 12254
components:
- type: Transform
- pos: -18.345993,47.56513
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-20.5
parent: 2
-- proto: ClothingOuterClownPriest
- entities:
- - uid: 14112
+ - uid: 12255
components:
- type: Transform
- pos: -78.605934,-2.3478103
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-20.5
parent: 2
-- proto: ClothingOuterCoatBomber
- entities:
- - uid: 5188
+ - uid: 12256
components:
- type: Transform
- rot: -3.141592653589793 rad
- pos: 72.43163,-18.66698
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-21.5
parent: 2
- - uid: 5189
+ - uid: 12257
components:
- type: Transform
- rot: -3.141592653589793 rad
- pos: 72.65178,-18.446829
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-22.5
parent: 2
- - uid: 32547
+ - uid: 12258
components:
- type: Transform
- pos: 76.37279,38.460537
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-23.5
parent: 2
-- proto: ClothingOuterStraightjacket
- entities:
- - uid: 33640
+ - uid: 12259
components:
- type: Transform
- pos: 59.959644,52.83496
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-24.5
parent: 2
-- proto: ClothingOuterWinterCoat
- entities:
- - uid: 5190
+ - uid: 12260
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 73.161026,-18.347553
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-25.5
parent: 2
-- proto: ClothingOuterWinterCoatLong
- entities:
- - uid: 5163
+ - uid: 12261
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 54.548344,-9.45816
+ pos: -1.5,-26.5
parent: 2
- - uid: 5164
+ - uid: 12262
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 54.423344,-9.67691
+ pos: -1.5,-27.5
parent: 2
-- proto: ClothingOuterWinterCoatPlaid
- entities:
- - uid: 5165
+ - uid: 12263
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 54.56397,-10.005035
+ pos: -1.5,-28.5
parent: 2
-- proto: ClothingShoesBling
- entities:
- - uid: 32462
+ - uid: 12264
components:
- type: Transform
- pos: 73.57769,24.650808
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-28.5
parent: 2
-- proto: ClothingShoesBootsMag
- entities:
- - uid: 6049
+ - uid: 12265
components:
- type: Transform
- pos: 16.35911,24.787949
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-28.5
parent: 2
- - uid: 6050
+ - uid: 12266
components:
- type: Transform
- pos: 16.54661,24.600449
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-28.5
parent: 2
- - uid: 6051
+ - uid: 12267
components:
- type: Transform
- pos: 16.288797,23.709824
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-28.5
parent: 2
- - uid: 6052
+ - uid: 12268
components:
- type: Transform
- pos: 16.534891,23.55748
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-28.5
parent: 2
- - uid: 6053
+ - uid: 12270
components:
- type: Transform
- pos: 21.374735,24.77623
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-34.5
parent: 2
- - uid: 6054
+ - uid: 12271
components:
- type: Transform
- pos: 21.597391,24.600449
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-35.5
parent: 2
- - uid: 6055
+ - uid: 12272
components:
- type: Transform
- pos: 21.398172,23.709824
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-36.5
parent: 2
- - uid: 6056
+ - uid: 12273
components:
- type: Transform
- pos: 21.679422,23.510605
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-37.5
parent: 2
-- proto: ClothingUniformJumpsuitHawaiBlack
- entities:
- - uid: 2660
+ - uid: 12274
components:
- type: Transform
- pos: -41.04783,-29.934925
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-37.5
parent: 2
-- proto: ClothingUniformJumpsuitHawaiBlue
- entities:
- - uid: 3111
+ - uid: 12275
components:
- type: Transform
- pos: -35.92283,-27.95055
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-38.5
parent: 2
-- proto: ClothingUniformJumpsuitMonasticRobeDark
- entities:
- - uid: 5708
+ - uid: 12276
components:
- type: Transform
- pos: 71.66735,29.66398
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-38.5
parent: 2
-- proto: ClothingUniformTShirtKhakiPants
- entities:
- - uid: 18085
+ - uid: 12277
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.70408,-28.4818
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-39.5
parent: 2
-- proto: ClownRecorder
- entities:
- - uid: 19425
+ - uid: 12278
components:
- type: Transform
- pos: -77.25276,-0.34442073
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-37.5
parent: 2
-- proto: Cobweb1
- entities:
- - uid: 29767
+ - uid: 12279
components:
- type: Transform
- pos: 82.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-37.5
parent: 2
-- proto: Cobweb2
- entities:
- - uid: 29766
+ - uid: 12280
components:
- type: Transform
- pos: 35.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-37.5
parent: 2
- - uid: 29769
+ - uid: 12281
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-36.5
parent: 2
-- proto: CombatKnife
- entities:
- - uid: 30051
+ - uid: 12282
components:
- type: Transform
- pos: 90.532196,38.513023
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-35.5
parent: 2
- - uid: 32555
+ - uid: 12283
components:
- type: Transform
- pos: 80.44478,63.419872
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-34.5
parent: 2
- - uid: 36046
+ - uid: 12286
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.8261,16.606325
+ pos: 10.5,-31.5
parent: 2
-- proto: ComfyChair
- entities:
- - uid: 111
+ - uid: 12287
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-30.5
parent: 2
- - uid: 378
+ - uid: 12288
components:
- type: Transform
- pos: -4.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-29.5
parent: 2
- - uid: 598
+ - uid: 12299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-28.5
parent: 2
- - uid: 645
+ - uid: 12320
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-18.5
parent: 2
- - uid: 2656
+ - uid: 12321
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,52.5
+ pos: -4.5,-20.5
parent: 2
- - uid: 2719
+ - uid: 12322
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,48.5
+ pos: -3.5,-20.5
parent: 2
- - uid: 2731
+ - uid: 12324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-30.5
parent: 2
- - uid: 2733
+ - uid: 12326
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,47.5
+ pos: 52.5,39.5
parent: 2
- - uid: 2865
+ - uid: 12327
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,48.5
+ pos: 55.5,32.5
parent: 2
- - uid: 4451
+ - uid: 12329
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,58.5
+ pos: 52.5,41.5
parent: 2
- - uid: 4492
+ - uid: 12331
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,29.5
+ pos: 52.5,42.5
parent: 2
- - uid: 5426
+ - uid: 12334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,33.5
+ pos: 51.5,43.5
parent: 2
- - uid: 5436
+ - uid: 12340
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-27.5
parent: 2
- - uid: 5474
+ - uid: 12586
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,25.5
+ pos: 86.5,-16.5
parent: 2
- - uid: 5582
+ - uid: 12591
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,28.5
+ pos: 82.5,-20.5
parent: 2
- - uid: 5587
+ - uid: 12593
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,-12.5
parent: 2
- - uid: 5589
+ - uid: 12595
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-12.5
parent: 2
- - uid: 5591
+ - uid: 12598
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 54.5,30.5
+ pos: 87.5,-15.5
parent: 2
- - uid: 5621
+ - uid: 12681
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-19.5
parent: 2
- - uid: 6564
+ - uid: 12682
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-20.5
+ pos: 46.5,-20.5
parent: 2
- - uid: 6565
+ - uid: 12683
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-21.5
parent: 2
- - uid: 8768
+ - uid: 12684
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,13.5
+ pos: 46.5,-22.5
parent: 2
- - uid: 8818
+ - uid: 12685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-23.5
parent: 2
- - uid: 14031
+ - uid: 12686
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-24.5
parent: 2
- - uid: 14033
+ - uid: 12687
components:
- type: Transform
- pos: 12.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-25.5
parent: 2
- - uid: 14036
+ - uid: 12688
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-26.5
parent: 2
- - uid: 14037
+ - uid: 12689
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,53.5
+ pos: 45.5,-26.5
parent: 2
- - uid: 14040
+ - uid: 12690
components:
- type: Transform
- pos: 13.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-26.5
parent: 2
- - uid: 14053
+ - uid: 12691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-26.5
parent: 2
- - uid: 14062
+ - uid: 12692
components:
- type: Transform
- pos: 11.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-26.5
parent: 2
- - uid: 14074
+ - uid: 12693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-26.5
parent: 2
- - uid: 14079
+ - uid: 12694
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-26.5
parent: 2
- - uid: 14080
+ - uid: 12695
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-27.5
parent: 2
- - uid: 14081
+ - uid: 12696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-28.5
parent: 2
- - uid: 14085
+ - uid: 12697
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,51.5
+ pos: 44.5,-29.5
parent: 2
- - uid: 14188
+ - uid: 12698
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-30.5
parent: 2
- - uid: 15373
+ - uid: 12699
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-31.5
parent: 2
- - uid: 15691
+ - uid: 12700
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.5,41.5
+ pos: 44.5,-32.5
parent: 2
- - uid: 15735
+ - uid: 12701
components:
- type: Transform
- pos: -5.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-33.5
parent: 2
- - uid: 15780
+ - uid: 12702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-33.5
parent: 2
- - uid: 15910
+ - uid: 12703
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,51.5
+ pos: 46.5,-33.5
parent: 2
- - uid: 16579
+ - uid: 12704
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,34.5
+ pos: 47.5,-33.5
parent: 2
- - uid: 29705
+ - uid: 12705
components:
- type: Transform
- pos: 19.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-33.5
parent: 2
- - uid: 29706
+ - uid: 12706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-33.5
parent: 2
- - uid: 29828
+ - uid: 12711
components:
- type: Transform
- pos: 90.5,56.5
+ pos: -66.5,33.5
parent: 2
- - uid: 29829
+ - uid: 12713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 90.5,54.5
+ pos: 46.5,-29.5
parent: 2
-- proto: ComputerAlert
- entities:
- - uid: 14035
+ - uid: 12714
components:
- type: Transform
- pos: 19.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-30.5
parent: 2
-- proto: ComputerAnalysisConsole
- entities:
- - uid: 9280
+ - uid: 12715
components:
- type: Transform
- pos: 40.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-30.5
parent: 2
- - uid: 12731
+ - uid: 12716
components:
- type: Transform
- pos: 44.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-30.5
parent: 2
-- proto: computerBodyScanner
- entities:
- - uid: 1315
+ - uid: 12717
components:
- type: Transform
- pos: 21.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-30.5
parent: 2
-- proto: ComputerBroken
- entities:
- - uid: 5356
+ - uid: 12718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-30.5
parent: 2
- - uid: 5360
+ - uid: 12719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 58.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-30.5
parent: 2
- - uid: 5363
+ - uid: 12720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-30.5
parent: 2
-- proto: ComputerCargoBounty
- entities:
- - uid: 6572
+ - uid: 12721
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,-23.5
+ pos: 59.5,-30.5
parent: 2
-- proto: ComputerCargoOrders
- entities:
- - uid: 2965
+ - uid: 12722
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-30.5
parent: 2
- - uid: 6570
+ - uid: 12723
components:
- type: Transform
- pos: -24.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-30.5
parent: 2
-- proto: ComputerCloningConsole
- entities:
- - uid: 18117
+ - uid: 12724
components:
- type: Transform
- pos: 26.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-30.5
parent: 2
-- proto: ComputerComms
- entities:
- - uid: 14050
+ - uid: 12725
components:
- type: Transform
- pos: 18.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-29.5
parent: 2
- - uid: 14056
+ - uid: 12726
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-28.5
parent: 2
-- proto: ComputerCrewMonitoring
- entities:
- - uid: 1317
+ - uid: 12727
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,5.5
+ pos: 62.5,-29.5
parent: 2
- - uid: 1318
+ - uid: 12728
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,-0.5
+ pos: 63.5,-29.5
parent: 2
- - uid: 1407
+ - uid: 12729
components:
- type: Transform
- pos: 22.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-28.5
parent: 2
- - type: DeviceNetwork
- configurators:
- - 1409
- - uid: 4006
+ - uid: 12733
components:
- type: Transform
- pos: 48.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-28.5
parent: 2
- - uid: 5717
+ - uid: 12734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-28.5
parent: 2
- - uid: 14041
+ - uid: 12735
components:
- type: Transform
- pos: 14.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-28.5
parent: 2
-- proto: ComputerCriminalRecords
- entities:
- - uid: 14032
+ - uid: 12736
components:
- type: Transform
- pos: 22.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-27.5
parent: 2
- - uid: 15393
+ - uid: 12737
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-27.5
parent: 2
- - uid: 15686
+ - uid: 12738
components:
- type: Transform
- pos: -25.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-27.5
parent: 2
-- proto: ComputerId
- entities:
- - uid: 610
+ - uid: 12739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-26.5
parent: 2
- - uid: 858
+ - uid: 12740
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,55.5
+ pos: 69.5,-26.5
parent: 2
- - uid: 1939
+ - uid: 12741
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,27.5
+ pos: 69.5,-25.5
parent: 2
- - uid: 5760
+ - uid: 12742
components:
- type: Transform
- pos: 44.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-24.5
parent: 2
- - uid: 6563
+ - uid: 12743
components:
- type: Transform
- pos: -25.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-24.5
parent: 2
- - uid: 8777
+ - uid: 12744
components:
- type: Transform
- pos: -59.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-23.5
parent: 2
- - uid: 14175
+ - uid: 12745
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-22.5
parent: 2
- - uid: 18233
+ - uid: 12746
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-21.5
parent: 2
-- proto: ComputerMassMedia
- entities:
- - uid: 1552
+ - uid: 12749
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-8.5
+ pos: 71.5,-20.5
parent: 2
-- proto: ComputerMedicalRecords
- entities:
- - uid: 196
+ - uid: 12750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-20.5
parent: 2
- - uid: 429
+ - uid: 12751
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-20.5
parent: 2
- - uid: 466
+ - uid: 12752
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-20.5
parent: 2
- - uid: 467
+ - uid: 12753
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-20.5
parent: 2
- - uid: 4365
+ - uid: 12754
components:
- type: Transform
- pos: 5.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-20.5
parent: 2
- - uid: 5720
+ - uid: 12755
components:
- type: Transform
- pos: -5.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-21.5
parent: 2
- - uid: 5721
+ - uid: 12756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-19.5
parent: 2
- - uid: 8379
+ - uid: 12757
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-18.5
parent: 2
- - uid: 14039
+ - uid: 12758
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,57.5
+ pos: 76.5,-14.5
parent: 2
- - uid: 22074
+ - uid: 12759
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,-4.5
+ pos: 76.5,-13.5
parent: 2
-- proto: ComputerPowerMonitoring
- entities:
- - uid: 8800
+ - uid: 12760
components:
- type: Transform
- pos: -61.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-12.5
parent: 2
- - uid: 8836
+ - uid: 12761
components:
- type: Transform
- pos: -47.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-11.5
parent: 2
- - uid: 13934
+ - uid: 12762
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 14.5,53.5
+ pos: 76.5,-10.5
parent: 2
- - uid: 19091
+ - uid: 12763
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,51.5
+ pos: 77.5,-10.5
parent: 2
-- proto: ComputerRadar
- entities:
- - uid: 435
+ - uid: 12764
components:
- type: Transform
- pos: -49.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-9.5
parent: 2
- - uid: 13951
+ - uid: 12765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-8.5
parent: 2
- - uid: 22599
+ - uid: 12767
components:
- type: Transform
- pos: -30.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-6.5
parent: 2
-- proto: ComputerResearchAndDevelopment
- entities:
- - uid: 4157
+ - uid: 12768
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,26.5
+ pos: 78.5,-8.5
parent: 2
-- proto: ComputerShuttleCargo
- entities:
- - uid: 22357
+ - uid: 12769
components:
- type: Transform
- pos: -31.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-6.5
parent: 2
-- proto: ComputerShuttleSalvage
- entities:
- - uid: 22733
+ - uid: 12770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-5.5
parent: 2
-- proto: ComputerSolarControl
- entities:
- - uid: 9706
+ - uid: 12771
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-4.5
parent: 2
- - uid: 10413
+ - uid: 12772
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-3.5
parent: 2
- - uid: 13469
+ - uid: 12776
components:
- type: Transform
- pos: 56.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-3.5
parent: 2
-- proto: ComputerStationRecords
- entities:
- - uid: 857
+ - uid: 12778
components:
- type: Transform
- pos: 51.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,1.5
parent: 2
- - uid: 1522
+ - uid: 12779
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,2.5
parent: 2
- - uid: 15683
+ - uid: 12780
components:
- type: Transform
- pos: -26.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,3.5
parent: 2
- - uid: 15842
+ - uid: 12781
components:
- type: Transform
- pos: -33.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,3.5
parent: 2
-- proto: ComputerSurveillanceCameraMonitor
- entities:
- - uid: 14054
+ - uid: 12782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,4.5
parent: 2
- - uid: 15728
+ - uid: 12783
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,5.5
parent: 2
-- proto: ComputerSurveillanceWirelessCameraMonitor
- entities:
- - uid: 15791
+ - uid: 12784
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,28.5
+ pos: 53.5,6.5
parent: 2
-- proto: ComputerTechnologyDiskTerminal
- entities:
- - uid: 26245
+ - uid: 12785
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,28.5
+ pos: 53.5,7.5
parent: 2
-- proto: ComputerTelevision
- entities:
- - uid: 612
+ - uid: 12786
components:
- type: Transform
- pos: -6.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,8.5
parent: 2
- - uid: 745
+ - uid: 12787
components:
- type: Transform
- pos: -21.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,9.5
parent: 2
- - uid: 749
+ - uid: 12888
components:
- type: Transform
- pos: -20.5,22.5
+ pos: 49.5,-29.5
parent: 2
- - uid: 942
+ - uid: 12890
components:
- type: Transform
- pos: 56.5,30.5
+ pos: 47.5,-30.5
parent: 2
- - uid: 1534
+ - uid: 12891
components:
- type: Transform
- pos: -60.5,-4.5
+ pos: 49.5,-30.5
parent: 2
- - uid: 2551
+ - uid: 12998
components:
- type: Transform
- pos: -67.5,11.5
+ pos: -66.5,35.5
parent: 2
- - uid: 3281
+ - uid: 13232
components:
- type: Transform
- pos: -86.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-16.5
parent: 2
- - uid: 5682
+ - uid: 13235
components:
- type: Transform
- pos: -96.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,3.5
parent: 2
- - uid: 9049
+ - uid: 13276
components:
- type: Transform
- pos: -80.5,-1.5
+ pos: 80.5,-12.5
parent: 2
- - uid: 9138
+ - uid: 13313
components:
- type: Transform
- pos: -14.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,-12.5
parent: 2
- - uid: 9142
+ - uid: 13329
components:
- type: Transform
- pos: -44.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -70.5,24.5
parent: 2
- - uid: 9143
+ - uid: 13330
components:
- type: Transform
- pos: -9.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,24.5
parent: 2
- - uid: 9150
+ - uid: 13359
components:
- type: Transform
- pos: -0.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-28.5
parent: 2
- - uid: 9315
+ - uid: 13495
components:
- type: Transform
- pos: -25.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-58.5
parent: 2
- - uid: 9317
+ - uid: 13496
components:
- type: Transform
- pos: -34.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-56.5
parent: 2
- - uid: 15228
+ - uid: 13497
components:
- type: Transform
- pos: -18.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-45.5
parent: 2
- - uid: 15769
+ - uid: 13498
components:
- type: Transform
- pos: -8.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-83.5
parent: 2
- - uid: 19443
+ - uid: 13499
components:
- type: Transform
- pos: 39.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-83.5
parent: 2
- - uid: 19444
+ - uid: 13500
components:
- type: Transform
- pos: 58.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-85.5
parent: 2
- - uid: 19445
+ - uid: 13501
components:
- type: Transform
- pos: 69.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-65.5
parent: 2
- - uid: 19447
+ - uid: 13502
components:
- type: Transform
- pos: 32.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-73.5
parent: 2
- - uid: 19448
+ - uid: 13503
components:
- type: Transform
- pos: 10.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-74.5
parent: 2
- - uid: 19449
+ - uid: 13520
components:
- type: Transform
- pos: 14.5,40.5
+ pos: 55.5,-33.5
parent: 2
- - uid: 19450
+ - uid: 13521
components:
- type: Transform
- pos: -5.5,61.5
+ pos: 56.5,-33.5
parent: 2
- - uid: 19451
+ - uid: 13522
components:
- type: Transform
- pos: -18.5,61.5
+ pos: 57.5,-33.5
parent: 2
- - uid: 19456
+ - uid: 13523
components:
- type: Transform
- pos: -97.5,13.5
+ pos: 55.5,-35.5
parent: 2
- - uid: 19458
+ - uid: 13524
components:
- type: Transform
- pos: -79.5,22.5
+ pos: 56.5,-35.5
parent: 2
- - uid: 20189
+ - uid: 13525
components:
- type: Transform
- pos: 24.5,-27.5
+ pos: 57.5,-35.5
parent: 2
- - uid: 21463
+ - uid: 13526
components:
- type: Transform
- pos: -1.5,23.5
+ pos: 56.5,-34.5
parent: 2
- - uid: 22623
+ - uid: 13527
components:
- type: Transform
- pos: -96.5,-1.5
+ pos: 55.5,-36.5
parent: 2
- - uid: 30238
+ - uid: 13528
components:
- type: Transform
- pos: -53.5,27.5
+ pos: 55.5,-37.5
parent: 2
- - uid: 30542
+ - uid: 13529
components:
- type: Transform
- pos: -19.5,22.5
+ pos: 55.5,-38.5
parent: 2
-- proto: ContainmentFieldGenerator
- entities:
- - uid: 18778
+ - uid: 13530
components:
- type: Transform
- pos: -116.5,47.5
+ pos: 56.5,-38.5
parent: 2
- - uid: 18852
+ - uid: 13531
components:
- type: Transform
- anchored: False
- pos: -95.5,48.5
+ pos: 57.5,-37.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - uid: 32151
+ - uid: 13532
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -116.5,55.5
+ pos: 57.5,-38.5
parent: 2
- - uid: 32152
+ - uid: 13533
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -108.5,47.5
+ pos: 57.5,-36.5
parent: 2
- - uid: 32239
+ - uid: 13534
components:
- type: Transform
- anchored: False
- pos: -94.85333,51.008305
+ pos: 56.5,-39.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - uid: 32240
+ - uid: 13550
components:
- type: Transform
- anchored: False
- rot: -0.0002955436648335308 rad
- pos: -96.16446,50.9681
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-80.5
parent: 2
- - type: Physics
- bodyType: Dynamic
-- proto: ConveyorBelt
- entities:
- - uid: 436
+ - uid: 13558
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-40.5
+ pos: 57.5,-31.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 760
+ - uid: 13559
components:
- type: Transform
- pos: -47.5,-44.5
+ pos: 55.5,-31.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - 23220
- - uid: 3542
+ - uid: 13560
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-40.5
+ pos: 55.5,-32.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 5414
+ - uid: 13561
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-40.5
+ pos: 57.5,-32.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 5429
+ - uid: 13651
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-55.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6576
+ - uid: 13652
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,-44.5
+ pos: 56.5,-52.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6616
+ - uid: 13653
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-44.5
+ pos: 56.5,-50.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6621
+ - uid: 13654
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-51.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6623
+ - uid: 13659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-49.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23793
- - uid: 6624
+ - uid: 13722
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-19.5
+ pos: -46.5,63.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23793
- - uid: 6632
+ - uid: 13724
components:
- type: Transform
- pos: -29.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,11.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9074
- - uid: 6650
+ - uid: 13727
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,-44.5
+ pos: -32.5,9.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 6668
+ - uid: 13729
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,-44.5
+ pos: -32.5,8.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6669
+ - uid: 13822
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-29.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6684
+ - uid: 13861
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-39.5
+ pos: -42.5,69.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6685
+ - uid: 13862
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-38.5
+ pos: -46.5,66.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6686
+ - uid: 13958
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,56.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6687
+ - uid: 13959
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,56.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6692
+ - uid: 13976
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-50.5
+ pos: -65.5,34.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8936
- - uid: 6708
+ - uid: 13995
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23793
- - uid: 6710
+ - uid: 14078
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-40.5
+ pos: 4.5,44.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6713
+ - uid: 14199
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,-19.5
+ pos: 34.5,54.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23793
- - uid: 6714
+ - uid: 14245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-40.5
+ pos: -46.5,67.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6717
+ - uid: 14386
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23793
- - uid: 6721
+ - uid: 14401
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,-44.5
+ pos: 17.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6725
+ - uid: 14423
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,-44.5
+ pos: 16.5,16.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 6727
+ - uid: 14568
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6734
+ - uid: 14569
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 6743
+ - uid: 14570
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6744
+ - uid: 14571
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6745
+ - uid: 14572
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6746
+ - uid: 14573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6748
+ - uid: 14574
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6749
+ - uid: 14575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6750
+ - uid: 14576
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6752
+ - uid: 14577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6753
+ - uid: 14578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6755
+ - uid: 14579
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6756
+ - uid: 14580
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -19.5,-40.5
+ pos: 20.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6757
+ - uid: 14581
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6758
+ - uid: 14582
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6772
+ - uid: 14583
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6782
+ - uid: 14584
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-33.5
+ pos: 24.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6783
+ - uid: 14585
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-32.5
+ pos: 25.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6798
+ - uid: 14594
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,-45.5
+ pos: 34.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 9074
- - uid: 6818
+ - uid: 14595
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,34.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6742
- - uid: 6832
+ - uid: 14596
components:
- type: Transform
- pos: -47.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,35.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 8936
- - uid: 6845
+ - uid: 14597
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,36.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6918
+ - uid: 14609
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,45.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6923
+ - uid: 14610
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,46.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6932
+ - uid: 14611
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,47.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 6961
+ - uid: 14612
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-22.5
+ pos: 31.5,48.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 6963
+ - uid: 14613
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-26.5
+ pos: 31.5,49.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 7096
+ - uid: 14614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,50.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 8181
+ - uid: 14615
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-23.5
+ pos: 31.5,51.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 8601
+ - uid: 14637
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,49.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 9035
+ - uid: 14763
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,32.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 9845
+ - uid: 14764
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,31.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 10342
+ - uid: 14765
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,30.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 170
- - uid: 10621
+ - uid: 14766
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,29.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 10622
+ - uid: 14767
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-24.5
+ pos: 24.5,28.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 10624
+ - uid: 14768
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-25.5
+ pos: 24.5,27.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 10627
+ - uid: 14769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 10646
+ - uid: 14770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,25.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 10647
+ - uid: 14771
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-35.5
+ pos: 24.5,24.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 11841
+ - uid: 14772
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,23.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 11849
+ - uid: 14773
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,22.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 11850
+ - uid: 14774
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,27.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 11853
+ - uid: 15156
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-40.5
+ pos: -46.5,69.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 16555
+ - uid: 15198
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,8.5
+ pos: -44.5,69.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 16638
+ - uid: 15862
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,8.5
+ pos: 87.5,-11.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 16645
+ - uid: 15918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,72.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 16654
+ - uid: 15930
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,8.5
+ pos: -32.5,55.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 20561
+ - uid: 15935
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-49.5
+ pos: -46.5,62.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6742
- - uid: 20562
+ - uid: 15960
components:
- type: Transform
- pos: -15.5,-41.5
+ pos: -45.5,69.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 20720
+ - uid: 16017
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 20722
+ - uid: 16018
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-44.5
+ pos: -2.5,36.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 21164
+ - uid: 16019
components:
- type: Transform
- pos: -18.5,-26.5
+ pos: -2.5,35.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 22358
+ - uid: 16020
components:
- type: Transform
- pos: -15.5,-34.5
+ pos: -2.5,34.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 22732
+ - uid: 16021
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,8.5
+ pos: -2.5,33.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 22736
+ - uid: 16022
components:
- type: Transform
- pos: -15.5,-35.5
+ pos: -2.5,32.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 23519
+ - uid: 16023
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,8.5
+ pos: -2.5,31.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
- - uid: 23857
+ - uid: 16024
components:
- type: Transform
- pos: -18.5,-30.5
+ pos: -2.5,30.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 27957
+ - uid: 16025
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-40.5
+ pos: -2.5,29.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 28998
+ - uid: 16361
components:
- type: Transform
- pos: -18.5,-27.5
+ pos: -46.5,68.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 29964
+ - uid: 16367
components:
- type: Transform
- pos: -18.5,-28.5
+ pos: -43.5,69.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 29965
+ - uid: 16405
components:
- type: Transform
- pos: -18.5,-29.5
+ pos: -46.5,60.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 29980
+ - uid: 16530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-38.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 30642
+ - uid: 16531
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,-44.5
+ pos: -41.5,-38.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 30791
+ - uid: 16533
components:
- type: Transform
- pos: -15.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-38.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 31055
+ - uid: 16535
components:
- type: Transform
- pos: -15.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-38.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 31645
+ - uid: 16637
components:
- type: Transform
- pos: -18.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-13.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 31687
+ - uid: 16638
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,-32.5
+ pos: 80.5,-14.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 31688
+ - uid: 16639
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,-40.5
+ pos: 87.5,-20.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31689
+ - uid: 16641
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -49.5,-40.5
+ pos: 85.5,-20.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31690
+ - uid: 16647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-19.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 31776
+ - uid: 16655
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-31.5
+ pos: 53.5,32.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31777
+ - uid: 16702
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-30.5
+ pos: 83.5,-20.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31778
+ - uid: 16850
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31779
+ - uid: 16853
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-31.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 31780
+ - uid: 16854
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-30.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 6779
- - uid: 34056
+ - uid: 16855
components:
- type: Transform
- pos: -15.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-29.5
parent: 2
- - type: DeviceLinkSink
- invokeCounter: 2
- links:
- - 23220
- - uid: 34057
+ - uid: 16920
components:
- type: Transform
- pos: -15.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-17.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34058
+ - uid: 17383
components:
- type: Transform
- pos: -15.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-15.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34059
+ - uid: 17811
components:
- type: Transform
- pos: -15.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34060
+ - uid: 17830
components:
- type: Transform
- pos: -15.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34061
+ - uid: 18197
components:
- type: Transform
- pos: -15.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34062
+ - uid: 18199
components:
- type: Transform
- pos: -15.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34063
+ - uid: 18244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-44.5
+ pos: -25.5,5.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34064
+ - uid: 18357
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,-44.5
+ pos: -49.5,-38.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34065
+ - uid: 18358
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-44.5
+ pos: -22.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34066
+ - uid: 18360
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,-44.5
+ pos: -18.5,-4.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
- - uid: 34067
+ - uid: 18369
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-28.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23220
-- proto: CourierBag
- entities:
- - uid: 22394
+ - uid: 18404
components:
- type: Transform
- pos: -7.2791405,-25.252836
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-38.5
parent: 2
- - uid: 35849
+ - uid: 18512
components:
- type: Transform
- pos: -7.1541405,-25.354399
+ pos: 81.5,-20.5
parent: 2
-- proto: CrateArtifactContainer
- entities:
- - uid: 9231
+ - uid: 18518
components:
- type: Transform
- pos: 34.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-4.5
parent: 2
- - uid: 9540
+ - uid: 18642
components:
- type: Transform
- pos: 35.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,12.5
parent: 2
-- proto: CrateCoffin
- entities:
- - uid: 20954
+ - uid: 18643
components:
- type: Transform
- pos: 88.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,10.5
parent: 2
- - uid: 29265
+ - uid: 18644
components:
- type: Transform
- pos: -66.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,7.5
parent: 2
-- proto: CrateCommandSecure
- entities:
- - uid: 22615
+ - uid: 18645
components:
- type: Transform
- pos: 21.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,6.5
parent: 2
-- proto: CrateEmptySpawner
- entities:
- - uid: 21105
+ - uid: 18987
components:
- type: Transform
- pos: -34.5,-2.5
+ pos: 85.5,-11.5
parent: 2
- - uid: 21106
+ - uid: 18993
components:
- type: Transform
- pos: 36.5,13.5
+ pos: 79.5,-16.5
parent: 2
- - uid: 21107
+ - uid: 18994
components:
- type: Transform
- pos: 78.5,-9.5
+ pos: 79.5,-19.5
parent: 2
- - uid: 21108
+ - uid: 19045
components:
- type: Transform
- pos: 68.5,-28.5
+ pos: 83.5,-11.5
parent: 2
- - uid: 21109
+ - uid: 19046
components:
- type: Transform
- pos: 45.5,-27.5
+ pos: 82.5,-11.5
parent: 2
- - uid: 21110
+ - uid: 19047
components:
- type: Transform
- pos: 11.5,-30.5
+ pos: 81.5,-11.5
parent: 2
- - uid: 21111
+ - uid: 19048
components:
- type: Transform
- pos: 11.5,-31.5
+ pos: 80.5,-11.5
parent: 2
- - uid: 21112
+ - uid: 19049
components:
- type: Transform
- pos: -32.5,-22.5
+ pos: 79.5,-11.5
parent: 2
- - uid: 21113
+ - uid: 19050
components:
- type: Transform
- pos: -62.5,-27.5
+ pos: 79.5,-12.5
parent: 2
- - uid: 21114
+ - uid: 19051
components:
- type: Transform
- pos: -65.5,1.5
+ pos: 85.5,-21.5
parent: 2
-- proto: CrateEngineeringAMEJar
- entities:
- - uid: 8795
+ - uid: 19052
components:
- type: Transform
- pos: -62.5,28.5
+ pos: 87.5,-21.5
parent: 2
-- proto: CrateEngineeringAMEShielding
- entities:
- - uid: 8955
+ - uid: 19056
components:
- type: Transform
- pos: -60.460056,30.546858
+ pos: 79.5,-20.5
parent: 2
- - uid: 8964
+ - uid: 19058
components:
- type: Transform
- pos: -62.5,30.5
+ pos: 81.5,-12.5
parent: 2
-- proto: CrateEngineeringCableBulk
- entities:
- - uid: 8990
+ - uid: 19059
components:
- type: Transform
- pos: -57.5,22.5
+ pos: 88.5,-11.5
parent: 2
-- proto: CrateEngineeringCableHV
- entities:
- - uid: 9855
+ - uid: 19061
components:
- type: Transform
- pos: -66.5,38.5
+ pos: 79.5,-13.5
parent: 2
- - uid: 13517
+ - uid: 19062
components:
- type: Transform
- pos: -65.5,38.5
+ pos: 79.5,-14.5
parent: 2
-- proto: CrateEngineeringElectricalSupplies
- entities:
- - uid: 8970
+ - uid: 19093
components:
- type: Transform
- pos: -58.5,22.5
+ pos: 82.5,-21.5
parent: 2
-- proto: CrateEngineeringSolar
- entities:
- - uid: 8357
+ - uid: 19094
components:
- type: Transform
- pos: -65.5,-28.5
+ pos: 83.5,-21.5
parent: 2
- - uid: 8363
+ - uid: 19095
components:
- type: Transform
- pos: -67.5,-25.5
+ pos: 84.5,-21.5
parent: 2
- - uid: 9850
+ - uid: 19096
components:
- type: Transform
- pos: -60.5,38.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 9851
+ - uid: 19097
components:
- type: Transform
- pos: -61.5,38.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 9852
+ - uid: 19098
components:
- type: Transform
- pos: -62.5,38.5
+ pos: 81.5,-21.5
parent: 2
- - uid: 9853
+ - uid: 19099
components:
- type: Transform
- pos: -63.5,38.5
+ pos: 88.5,-21.5
parent: 2
- - uid: 11229
+ - uid: 19103
components:
- type: Transform
- pos: -66.5,-24.5
+ pos: 86.5,-21.5
parent: 2
- - uid: 13691
+ - uid: 19143
components:
- type: Transform
- pos: 55.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,6.5
parent: 2
- - uid: 35067
+ - uid: 19289
components:
- type: Transform
- pos: 53.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,35.5
parent: 2
- - uid: 35083
+ - uid: 19290
components:
- type: Transform
- pos: 54.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,36.5
parent: 2
- - uid: 35084
+ - uid: 19318
components:
- type: Transform
- pos: 58.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-38.5
parent: 2
-- proto: CrateFilledSpawner
- entities:
- - uid: 6759
+ - uid: 19325
components:
- type: Transform
- pos: 83.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-29.5
parent: 2
- - uid: 19370
+ - uid: 19326
components:
- type: Transform
- pos: -21.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-30.5
parent: 2
- - uid: 19893
+ - uid: 19481
components:
- type: Transform
- pos: 79.5,2.5
+ pos: -5.5,79.5
parent: 2
- - uid: 21030
+ - uid: 19604
components:
- type: Transform
- pos: 36.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-4.5
parent: 2
- - uid: 21078
+ - uid: 19631
components:
- type: Transform
- pos: 35.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-4.5
parent: 2
- - uid: 21079
+ - uid: 19646
components:
- type: Transform
- pos: 10.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-4.5
parent: 2
- - uid: 21081
+ - uid: 19689
components:
- type: Transform
- pos: -45.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-4.5
parent: 2
- - uid: 21082
+ - uid: 19814
components:
- type: Transform
- pos: -1.5,45.5
+ pos: -45.5,56.5
parent: 2
- - uid: 21083
+ - uid: 19828
components:
- type: Transform
- pos: -31.5,10.5
+ pos: -46.5,65.5
parent: 2
- - uid: 21085
+ - uid: 19848
components:
- type: Transform
- pos: -65.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,69.5
parent: 2
- - uid: 21086
+ - uid: 19931
components:
- type: Transform
- pos: -64.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-38.5
parent: 2
- - uid: 21088
+ - uid: 19953
components:
- type: Transform
- pos: -7.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-38.5
parent: 2
- - uid: 22098
+ - uid: 20006
components:
- type: Transform
- pos: -41.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-20.5
parent: 2
- - uid: 24654
+ - uid: 20152
components:
- type: Transform
- pos: 4.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-17.5
parent: 2
- - uid: 25226
+ - uid: 20153
components:
- type: Transform
- pos: -49.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-16.5
parent: 2
- - uid: 27694
+ - uid: 20154
components:
- type: Transform
- pos: 61.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-15.5
parent: 2
- - uid: 28647
+ - uid: 20185
components:
- type: Transform
- pos: 39.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-4.5
parent: 2
- - uid: 32593
+ - uid: 20191
components:
- type: Transform
- pos: 81.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-4.5
parent: 2
- - uid: 33571
+ - uid: 20198
components:
- type: Transform
- pos: 86.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-4.5
parent: 2
- - uid: 33573
+ - uid: 20214
components:
- type: Transform
- pos: 82.5,43.5
+ pos: -44.5,56.5
parent: 2
-- proto: CrateFoodBarSupply
- entities:
- - uid: 5765
+ - uid: 20215
components:
- type: Transform
- pos: 24.5,-25.5
+ pos: 52.5,-31.5
parent: 2
- - uid: 31048
+ - uid: 20223
components:
- type: Transform
- pos: -44.5,65.5
+ pos: 36.5,10.5
parent: 2
-- proto: CrateFoodDinnerware
- entities:
- - uid: 11325
+ - uid: 20279
components:
- type: Transform
- pos: -50.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,16.5
parent: 2
-- proto: CrateFreezer
- entities:
- - uid: 22086
+ - uid: 20289
components:
- type: Transform
- pos: -49.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,16.5
parent: 2
-- proto: CrateFunPlushie
- entities:
- - uid: 34039
+ - uid: 20476
components:
- type: Transform
- pos: -67.5,14.5
+ pos: -68.5,34.5
parent: 2
- - uid: 34040
+ - uid: 20477
components:
- type: Transform
- pos: -67.5,15.5
+ pos: -29.5,2.5
parent: 2
-- proto: CrateHydroponicsSeeds
- entities:
- - uid: 18198
+ - uid: 20480
components:
- type: Transform
- pos: -31.5,60.5
+ pos: -68.5,35.5
parent: 2
-- proto: CrateHydroSecure
- entities:
- - uid: 18444
+ - uid: 20481
components:
- type: Transform
- pos: -54.5,1.5
+ pos: -66.5,34.5
parent: 2
-- proto: CrateLivestock
- entities:
- - uid: 8376
+ - uid: 20483
components:
- type: Transform
- pos: -52.5,-28.5
+ pos: 48.5,-30.5
parent: 2
- - uid: 11332
+ - uid: 20484
components:
- type: Transform
- pos: -52.5,-29.5
+ pos: 50.5,-29.5
parent: 2
- - uid: 22055
+ - uid: 20485
components:
- type: Transform
- pos: -52.5,-27.5
+ pos: 48.5,-29.5
parent: 2
-- proto: CrateMedicalSecure
- entities:
- - uid: 1486
+ - uid: 20486
components:
- type: Transform
- pos: 9.5,11.5
+ pos: 47.5,-29.5
parent: 2
-- proto: CrateMedicalSurgery
- entities:
- - uid: 9052
+ - uid: 20489
components:
- type: Transform
- pos: 33.5,10.5
+ pos: 43.5,13.5
parent: 2
-- proto: CrateNPCHamlet
- entities:
- - uid: 21100
+ - uid: 20507
components:
- type: Transform
- pos: 28.5,48.5
+ pos: -67.5,34.5
parent: 2
-- proto: CrateScienceSecure
- entities:
- - uid: 3992
+ - uid: 20508
components:
- type: Transform
- pos: 34.5,25.5
+ pos: 47.5,-28.5
parent: 2
- - uid: 5312
+ - uid: 20514
components:
- type: Transform
- pos: 34.5,24.5
+ pos: 45.5,12.5
parent: 2
- - type: Lock
- locked: False
-- proto: CrateSecurityNonlethal
- entities:
- - uid: 15490
+ - uid: 20619
components:
- type: Transform
- pos: -18.5,45.5
+ pos: 52.5,43.5
parent: 2
-- proto: CrateSecurityRiot
- entities:
- - uid: 15995
+ - uid: 20694
components:
- type: Transform
- pos: -24.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,55.5
parent: 2
-- proto: CrateServiceJanitorialSupplies
- entities:
- - uid: 1013
+ - uid: 20798
components:
- type: Transform
- pos: 33.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-12.5
parent: 2
-- proto: CrateServicePersonnel
- entities:
- - uid: 5718
+ - uid: 20799
components:
- type: Transform
- pos: 13.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,-12.5
parent: 2
-- proto: CrateTrackingImplants
- entities:
- - uid: 15434
+ - uid: 20801
components:
- type: Transform
- pos: -5.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,-12.5
parent: 2
-- proto: CrateTrashCart
- entities:
- - uid: 8050
+ - uid: 20839
components:
- type: Transform
- pos: -39.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,16.5
parent: 2
-- proto: CrateTrashCartFilled
- entities:
- - uid: 26458
+ - uid: 20840
components:
- type: Transform
- pos: 31.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,15.5
parent: 2
- - uid: 26481
+ - uid: 20841
components:
- type: Transform
- pos: -49.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,14.5
parent: 2
-- proto: CrateTrashCartJani
- entities:
- - uid: 16664
+ - uid: 20842
components:
- type: Transform
- pos: -38.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,13.5
parent: 2
- - uid: 26432
+ - uid: 20853
components:
- type: Transform
- pos: 35.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,6.5
parent: 2
- - uid: 26437
+ - uid: 20861
components:
- type: Transform
- pos: 11.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-1.5
parent: 2
- - uid: 26438
+ - uid: 20862
components:
- type: Transform
- pos: -65.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-2.5
parent: 2
- - uid: 26439
+ - uid: 20891
components:
- type: Transform
- pos: -46.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,17.5
parent: 2
- - uid: 26440
+ - uid: 20892
components:
- type: Transform
- pos: 31.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,16.5
parent: 2
- - uid: 26441
+ - uid: 20893
components:
- type: Transform
- pos: -35.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,15.5
parent: 2
-- proto: CrayonMime
- entities:
- - uid: 3707
+ - uid: 20894
components:
- type: Transform
- pos: -81.752846,1.8026085
+ rot: 1.5707963267948966 rad
+ pos: 37.5,14.5
parent: 2
- - uid: 3926
+ - uid: 20895
components:
- type: Transform
- pos: -81.29972,1.5213585
+ rot: 1.5707963267948966 rad
+ pos: 37.5,13.5
parent: 2
- - uid: 3927
+ - uid: 20896
components:
- type: Transform
- pos: -81.565346,1.6619835
+ rot: 1.5707963267948966 rad
+ pos: 37.5,12.5
parent: 2
-- proto: CrayonRainbow
- entities:
- - uid: 33602
+ - uid: 20897
components:
- type: Transform
- pos: 75.486176,52.188
+ rot: 1.5707963267948966 rad
+ pos: 37.5,11.5
parent: 2
-- proto: Crematorium
- entities:
- - uid: 7783
+ - uid: 20898
components:
- type: Transform
- pos: 69.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,11.5
parent: 2
-- proto: CrewMonitoringServer
- entities:
- - uid: 605
+ - uid: 20903
components:
- type: Transform
- pos: -11.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,9.5
parent: 2
-- proto: CrowbarRed
- entities:
- - uid: 1503
+ - uid: 20904
components:
- type: Transform
- pos: -8.562024,-11.246856
+ rot: 1.5707963267948966 rad
+ pos: 38.5,8.5
parent: 2
- - uid: 1644
+ - uid: 20906
components:
- type: Transform
- pos: 33.541424,5.472056
+ rot: 1.5707963267948966 rad
+ pos: 38.5,6.5
parent: 2
- - uid: 1947
+ - uid: 20907
components:
- type: Transform
- pos: 14.496862,30.623743
+ rot: 1.5707963267948966 rad
+ pos: 38.5,5.5
parent: 2
- - uid: 5592
+ - uid: 20908
components:
- type: Transform
- pos: 43.77388,30.490349
+ rot: 1.5707963267948966 rad
+ pos: 38.5,4.5
parent: 2
- - uid: 5595
+ - uid: 20909
components:
- type: Transform
- pos: 46.555542,34.766357
+ rot: 1.5707963267948966 rad
+ pos: 38.5,3.5
parent: 2
- - uid: 5622
+ - uid: 20910
components:
- type: Transform
- pos: 36.065853,23.428886
+ rot: 1.5707963267948966 rad
+ pos: 38.5,2.5
parent: 2
- - uid: 6065
+ - uid: 20911
components:
- type: Transform
- pos: 16.464579,27.342636
+ rot: 1.5707963267948966 rad
+ pos: 38.5,1.5
parent: 2
- - uid: 6066
+ - uid: 20912
components:
- type: Transform
- pos: 16.628641,27.143417
+ rot: 1.5707963267948966 rad
+ pos: 38.5,0.5
parent: 2
- - uid: 6067
+ - uid: 20913
components:
- type: Transform
- pos: 21.386454,27.436386
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-0.5
parent: 2
- - uid: 6068
+ - uid: 20914
components:
- type: Transform
- pos: 21.585672,27.237167
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-1.5
parent: 2
- - uid: 6864
+ - uid: 20915
components:
- type: Transform
- pos: -28.531511,-23.315823
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-2.5
parent: 2
- - uid: 9605
+ - uid: 20916
components:
- type: Transform
- pos: -54.225883,35.52866
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-3.5
parent: 2
- - uid: 14257
+ - uid: 20917
components:
- type: Transform
- pos: 27.488392,55.664364
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-4.5
parent: 2
- - uid: 27973
+ - uid: 20918
components:
- type: Transform
- pos: -67.44635,34.354824
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-5.5
parent: 2
- - uid: 30530
+ - uid: 20919
components:
- type: Transform
- pos: -7.4310007,18.61997
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-6.5
parent: 2
- - uid: 34983
+ - uid: 20920
components:
- type: Transform
- pos: 34.625328,3.466546
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-7.5
parent: 2
-- proto: CryogenicSleepUnit
- entities:
- - uid: 920
+ - uid: 20921
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-5.5
+ pos: 38.5,-8.5
parent: 2
- - uid: 926
+ - uid: 20922
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-9.5
parent: 2
- - uid: 927
+ - uid: 20923
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-11.5
+ pos: 38.5,-10.5
parent: 2
- - uid: 22030
+ - uid: 20924
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-8.5
+ pos: 38.5,-11.5
parent: 2
- - uid: 22031
+ - uid: 20925
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-12.5
parent: 2
- - uid: 22032
+ - uid: 20958
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,-5.5
+ pos: 37.5,10.5
parent: 2
-- proto: CryogenicSleepUnitSpawnerPrisoner
- entities:
- - uid: 94
+ - uid: 21072
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,61.5
+ pos: -29.5,3.5
parent: 2
- - uid: 425
+ - uid: 21183
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,62.5
+ pos: -62.5,-16.5
parent: 2
-- proto: CryoPod
- entities:
- - uid: 1273
+ - uid: 21184
components:
- type: Transform
- pos: 16.5,15.5
+ pos: -63.5,-16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 1501
+ - uid: 21185
components:
- type: Transform
- pos: 16.5,13.5
+ pos: -64.5,-16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 1512
+ - uid: 21186
components:
- type: Transform
- pos: 20.5,15.5
+ pos: -65.5,-16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 1513
+ - uid: 21194
components:
- type: Transform
- pos: 20.5,13.5
+ pos: 39.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: CryoxadoneBeakerSmall
- entities:
- - uid: 1565
+ - uid: 21196
components:
- type: Transform
- pos: 18.267788,14.886281
+ pos: 48.5,-28.5
parent: 2
- - uid: 35798
+ - uid: 21197
components:
- type: Transform
- pos: 15.363386,10.444615
+ pos: 49.5,-28.5
parent: 2
-- proto: d12Dice
- entities:
- - uid: 23034
+ - uid: 21205
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -36.820965,60.53547
+ pos: 10.5,80.5
parent: 2
-- proto: d6Dice
- entities:
- - uid: 19662
+ - uid: 21206
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -37.883465,59.894844
+ pos: 10.5,79.5
parent: 2
- - uid: 19663
+ - uid: 21210
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.11784,60.12922
+ pos: -38.5,33.5
parent: 2
-- proto: DefaultStationBeacon
- entities:
- - uid: 36471
+ - uid: 21211
components:
- type: Transform
- pos: 61.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,32.5
parent: 2
- - type: NavMapBeacon
- text: Park
- - type: WarpPoint
- location: Park
- - uid: 36473
+ - uid: 21212
components:
- type: Transform
- pos: -84.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,31.5
parent: 2
- - type: NavMapBeacon
- text: Zoo
- - type: WarpPoint
- location: Zoo
- - uid: 36474
+ - uid: 21213
components:
- type: Transform
- pos: 37.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,30.5
parent: 2
- - type: NavMapBeacon
- text: Boxing Ring
- - type: WarpPoint
- location: Boxing Ring
- - uid: 36498
+ - uid: 21214
components:
- type: Transform
- pos: 84.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,29.5
parent: 2
- - type: NavMapBeacon
- text: ER#30!/
- - type: WarpPoint
- location: ER#30!/
-- proto: DefaultStationBeaconAME
- entities:
- - uid: 36476
+ - uid: 21215
components:
- type: Transform
- pos: -61.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,28.5
parent: 2
- - type: NavMapBeacon
- text: AME
- - type: WarpPoint
- location: AME
-- proto: DefaultStationBeaconAnomalyGenerator
- entities:
- - uid: 36477
+ - uid: 21216
components:
- type: Transform
- pos: 46.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,27.5
parent: 2
- - type: NavMapBeacon
- text: Anomaly generator
- - type: WarpPoint
- location: Anomaly Generator
-- proto: DefaultStationBeaconArmory
- entities:
- - uid: 5651
+ - uid: 21217
components:
- type: Transform
- pos: -24.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Armory
- - type: WarpPoint
- location: Armory
-- proto: DefaultStationBeaconArrivals
- entities:
- - uid: 6057
+ - uid: 21218
components:
- type: Transform
- pos: 1.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Arrivals
- - type: WarpPoint
- location: Arrivals
-- proto: DefaultStationBeaconArtifactLab
- entities:
- - uid: 36472
+ - uid: 21219
components:
- type: Transform
- pos: 42.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Xenoarchaelogy
- - type: WarpPoint
- location: Xenoarchaeology
-- proto: DefaultStationBeaconAtmospherics
- entities:
- - uid: 6058
+ - uid: 21220
components:
- type: Transform
- pos: -43.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Atmospherics
- - type: WarpPoint
- location: Atmospherics
-- proto: DefaultStationBeaconBar
- entities:
- - uid: 6059
+ - uid: 21221
components:
- type: Transform
- pos: 17.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Bar
- - type: WarpPoint
- location: Bar
-- proto: DefaultStationBeaconBotany
- entities:
- - uid: 6060
+ - uid: 21222
components:
- type: Transform
- pos: -57.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Botany
- - type: WarpPoint
- location: Botany
-- proto: DefaultStationBeaconBridge
- entities:
- - uid: 6276
+ - uid: 21223
components:
- type: Transform
- pos: 18.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Bridge
- - type: WarpPoint
- location: Bridge
-- proto: DefaultStationBeaconBrig
- entities:
- - uid: 6291
+ - uid: 21224
components:
- type: Transform
- pos: -27.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,25.5
parent: 2
- - type: NavMapBeacon
- text: Brig
- - type: WarpPoint
- location: Brig
-- proto: DefaultStationBeaconCaptainsQuarters
- entities:
- - uid: 6860
+ - uid: 21225
components:
- type: Transform
- pos: 26.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,24.5
parent: 2
- - type: NavMapBeacon
- text: Captain's Quarters
- - type: WarpPoint
- location: Captain's Quarters
-- proto: DefaultStationBeaconCERoom
- entities:
- - uid: 7349
+ - uid: 21226
components:
- type: Transform
- pos: -59.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,23.5
parent: 2
- - type: NavMapBeacon
- text: CE's Room
- - type: WarpPoint
- location: CE's Room
-- proto: DefaultStationBeaconChapel
- entities:
- - uid: 7350
+ - uid: 21227
components:
- type: Transform
- pos: 66.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,22.5
parent: 2
- - type: NavMapBeacon
- text: Church
- - type: WarpPoint
- location: Church
-- proto: DefaultStationBeaconChemistry
- entities:
- - uid: 8461
+ - uid: 21229
components:
- type: Transform
- pos: 18.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,20.5
parent: 2
- - type: NavMapBeacon
- text: Chemistry
- - type: WarpPoint
- location: Chemistry
-- proto: DefaultStationBeaconCMORoom
- entities:
- - uid: 8743
+ - uid: 21230
components:
- type: Transform
- pos: -9.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,19.5
parent: 2
- - type: NavMapBeacon
- text: CMO's Room
- - type: WarpPoint
- location: CMO's Room
-- proto: DefaultStationBeaconCommand
- entities:
- - uid: 36489
+ - uid: 21231
components:
- type: Transform
- pos: 18.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,18.5
parent: 2
- - type: NavMapBeacon
- text: Command
- - type: WarpPoint
- location: Command
-- proto: DefaultStationBeaconCourtroom
- entities:
- - uid: 8817
+ - uid: 21232
components:
- type: Transform
- pos: -8.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Courtroom
- - type: WarpPoint
- location: Courtroom
-- proto: DefaultStationBeaconCryonics
- entities:
- - uid: 36490
+ - uid: 21233
components:
- type: Transform
- pos: 18.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Cryonics
- - type: WarpPoint
- location: Cryonics
-- proto: DefaultStationBeaconDetectiveRoom
- entities:
- - uid: 15095
+ - uid: 21234
components:
- type: Transform
- pos: -34.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Detective's Room
- - type: WarpPoint
- location: Detective's Room
-- proto: DefaultStationBeaconDisposals
- entities:
- - uid: 15288
+ - uid: 21235
components:
- type: Transform
- pos: -38.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Disposals
- - type: WarpPoint
- location: Disposals
-- proto: DefaultStationBeaconEngineering
- entities:
- - uid: 15289
+ - uid: 21236
components:
- type: Transform
- pos: -54.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Engineering
- - type: WarpPoint
- location: Engineering
-- proto: DefaultStationBeaconEvac
- entities:
- - uid: 15310
+ - uid: 21237
components:
- type: Transform
- pos: 1.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,26.5
parent: 2
- - type: NavMapBeacon
- text: Evacuation
- - type: WarpPoint
- location: Evacuation
-- proto: DefaultStationBeaconEVAStorage
- entities:
- - uid: 15815
+ - uid: 21238
components:
- type: Transform
- pos: 19.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,25.5
parent: 2
- - type: NavMapBeacon
- text: EVA Storage
- - type: WarpPoint
- location: EVA Storage
-- proto: DefaultStationBeaconGravGen
- entities:
- - uid: 15938
+ - uid: 21239
components:
- type: Transform
- pos: -60.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,24.5
parent: 2
- - type: NavMapBeacon
- text: Gravity Generator
- - type: WarpPoint
- location: Gravity Generator
-- proto: DefaultStationBeaconHOPOffice
- entities:
- - uid: 16605
+ - uid: 21240
components:
- type: Transform
- pos: 7.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,23.5
parent: 2
- - type: NavMapBeacon
- text: HOP's Office
- - type: WarpPoint
- location: HOP's Office
-- proto: DefaultStationBeaconHOSRoom
- entities:
- - uid: 36492
+ - uid: 21839
components:
- type: Transform
- pos: -6.5,33.5
+ pos: -55.5,-32.5
parent: 2
- - type: NavMapBeacon
- text: HOS's Room
- - type: WarpPoint
- location: HOS's Room
-- proto: DefaultStationBeaconJanitorsCloset
- entities:
- - uid: 23854
+ - uid: 21840
components:
- type: Transform
- pos: -39.5,22.5
+ pos: -55.5,-35.5
parent: 2
- - type: NavMapBeacon
- text: Janitor's Closet
- - type: WarpPoint
- location: Janitor's Closet
-- proto: DefaultStationBeaconKitchen
- entities:
- - uid: 24541
+ - uid: 21841
components:
- type: Transform
- pos: -47.5,-22.5
+ pos: -55.5,-34.5
parent: 2
- - type: NavMapBeacon
- text: Kitchen
- - type: WarpPoint
- location: Kitchen
-- proto: DefaultStationBeaconLawOffice
- entities:
- - uid: 36493
+ - uid: 21952
components:
- type: Transform
- pos: -5.5,59.5
+ pos: -55.5,-33.5
parent: 2
- - type: NavMapBeacon
- text: Lawyer's Office
- - type: WarpPoint
- location: Lawyer's Office
-- proto: DefaultStationBeaconLibrary
- entities:
- - uid: 25741
+ - uid: 21954
components:
- type: Transform
- pos: 56.5,28.5
+ pos: -52.5,-35.5
parent: 2
- - type: NavMapBeacon
- text: Library
- - type: WarpPoint
- location: Library
-- proto: DefaultStationBeaconMedbay
- entities:
- - uid: 25805
+ - uid: 21968
components:
- type: Transform
- pos: 9.5,13.5
+ pos: 5.5,33.5
parent: 2
- - type: NavMapBeacon
- text: Medbay
- - type: WarpPoint
- location: Medbay
-- proto: DefaultStationBeaconMedical
- entities:
- - uid: 26875
+ - uid: 22170
components:
- type: Transform
- pos: 1.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,55.5
parent: 2
- - type: NavMapBeacon
- text: Medical
- - type: WarpPoint
- location: Medical
-- proto: DefaultStationBeaconMorgue
- entities:
- - uid: 28911
+ - uid: 22171
components:
- type: Transform
- pos: 29.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,55.5
parent: 2
- - type: NavMapBeacon
- text: Morgue
- - type: WarpPoint
- location: Morgue
-- proto: DefaultStationBeaconPermaBrig
- entities:
- - uid: 28970
+ - uid: 22173
components:
- type: Transform
- pos: -22.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,55.5
parent: 2
- - type: NavMapBeacon
- text: Psych Ward
- - type: WarpPoint
- location: Psych Ward
-- proto: DefaultStationBeaconQMRoom
- entities:
- - uid: 28973
+ - uid: 22245
components:
- type: Transform
- pos: -27.5,-24.5
+ pos: -106.5,47.5
parent: 2
- - type: NavMapBeacon
- text: LO's Room
- - type: WarpPoint
- location: LO's Room
-- proto: DefaultStationBeaconRDRoom
- entities:
- - uid: 28974
+ - uid: 22246
components:
- type: Transform
- pos: 45.5,29.5
+ pos: -107.5,50.5
parent: 2
- - type: NavMapBeacon
- text: MG's Room
- - type: WarpPoint
- location: MG's Room
-- proto: DefaultStationBeaconRobotics
- entities:
- - uid: 36495
+ - uid: 22247
components:
- type: Transform
- pos: 45.5,43.5
+ pos: -106.5,49.5
parent: 2
- - type: NavMapBeacon
- text: Robotics
- - type: WarpPoint
- location: Robotics
-- proto: DefaultStationBeaconSalvage
- entities:
- - uid: 36496
+ - uid: 22249
components:
- type: Transform
- pos: -10.5,-40.5
+ pos: -107.5,48.5
parent: 2
- - type: NavMapBeacon
- text: Salvage
- - type: WarpPoint
- location: Salvage
-- proto: DefaultStationBeaconScience
- entities:
- - uid: 29723
+ - uid: 22306
components:
- type: Transform
- pos: 29.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-4.5
parent: 2
- - type: NavMapBeacon
- text: Epistemics
- - type: WarpPoint
- location: Epistemics
-- proto: DefaultStationBeaconSecurity
- entities:
- - uid: 29724
+ - uid: 22310
components:
- type: Transform
- pos: -13.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-4.5
parent: 2
- - type: NavMapBeacon
- text: Security
- - type: WarpPoint
- location: Security
-- proto: DefaultStationBeaconSingularity
- entities:
- - uid: 36494
+ - uid: 22381
components:
- type: Transform
- pos: -97.5,51.5
+ pos: -26.5,2.5
parent: 2
- - type: NavMapBeacon
- text: Particle Accelerator
- - type: WarpPoint
- location: Particle Accelerator
-- proto: DefaultStationBeaconSupply
- entities:
- - uid: 36497
+ - uid: 22568
components:
- type: Transform
- pos: -19.5,-32.5
+ pos: 52.5,-29.5
parent: 2
- - type: NavMapBeacon
- text: Logistics
- - type: WarpPoint
- location: Logistics
-- proto: DefaultStationBeaconTechVault
- entities:
- - uid: 36475
+ - uid: 22734
components:
- type: Transform
- pos: -49.5,26.5
+ pos: -64.5,-21.5
parent: 2
- - type: NavMapBeacon
- text: Tech Vault
- - type: WarpPoint
- location: Tech Vault
-- proto: DefaultStationBeaconTelecoms
- entities:
- - uid: 23229
+ - uid: 22797
components:
- type: Transform
- pos: 8.5,60.5
+ pos: -30.5,2.5
parent: 2
- - type: NavMapBeacon
- text: Telecomms
- - type: WarpPoint
- location: Telecomms
-- proto: DefaultStationBeaconTheater
- entities:
- - uid: 31784
+ - uid: 22930
components:
- type: Transform
- pos: -78.5,3.5
+ pos: 43.5,12.5
parent: 2
- - type: NavMapBeacon
- text: Theater
- - type: WarpPoint
- location: Theater
-- proto: DefaultStationBeaconToolRoom
- entities:
- - uid: 31790
+ - uid: 23094
components:
- type: Transform
- pos: -68.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,16.5
parent: 2
- - type: NavMapBeacon
- text: Service Lounge
- - type: WarpPoint
- location: Service Lounge
-- proto: DefaultStationBeaconVault
- entities:
- - uid: 31791
+ - uid: 23126
components:
- type: Transform
- pos: 27.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 88.5,-12.5
parent: 2
- - type: NavMapBeacon
- text: Vault
- - type: WarpPoint
- location: Vault
-- proto: DefaultStationBeaconWardensOffice
- entities:
- - uid: 31793
+ - uid: 23173
components:
- type: Transform
- pos: -24.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-18.5
parent: 2
- - type: NavMapBeacon
- text: Warden's Office
- - type: WarpPoint
- location: Warden's Office
-- proto: DefibrillatorCabinetFilled
- entities:
- - uid: 1003
+ - uid: 23228
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,35.5
parent: 2
- - uid: 3849
+ - uid: 23361
components:
- type: Transform
- pos: 40.5,-21.5
+ pos: 42.5,12.5
parent: 2
- - uid: 6953
+ - uid: 23412
components:
- type: Transform
- pos: -14.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-4.5
parent: 2
- - uid: 14201
+ - uid: 23543
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,49.5
+ pos: 40.5,13.5
parent: 2
- - uid: 20654
+ - uid: 23589
components:
- type: Transform
- pos: -42.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,55.5
parent: 2
- - uid: 35811
+ - uid: 24924
components:
- type: Transform
- pos: 26.5,8.5
+ pos: -25.5,-1.5
parent: 2
-- proto: DeployableBarrier
- entities:
- - uid: 2732
+ - uid: 25077
components:
- type: Transform
- pos: 25.5,46.5
+ pos: -28.5,2.5
parent: 2
- - uid: 15375
+ - uid: 25295
components:
- type: Transform
- pos: 26.5,46.5
+ pos: -68.5,33.5
parent: 2
- - uid: 15376
+ - uid: 25439
components:
- type: Transform
- pos: 24.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-20.5
parent: 2
- - uid: 16492
+ - uid: 25980
components:
- type: Transform
- pos: -26.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,20.5
parent: 2
- - uid: 16508
+ - uid: 25995
components:
- type: Transform
- pos: -22.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,20.5
parent: 2
-- proto: DeskBell
- entities:
- - uid: 61
+ - uid: 26235
components:
- type: Transform
- pos: -1.3602465,-32.409664
+ pos: -26.5,-1.5
parent: 2
- - uid: 102
+ - uid: 26237
components:
- type: Transform
- pos: -4.4393716,6.610856
+ pos: -25.5,1.5
parent: 2
- - uid: 558
+ - uid: 26240
components:
- type: Transform
- pos: -4.427653,-1.2407064
+ rot: 1.5707963267948966 rad
+ pos: 88.5,-20.5
parent: 2
- - uid: 570
+ - uid: 26242
components:
- type: Transform
- pos: -6.3143716,0.63202906
+ pos: -25.5,-0.5
parent: 2
- - uid: 581
+ - uid: 26243
components:
- type: Transform
- pos: -6.3612466,4.6186686
+ pos: -25.5,0.5
parent: 2
- - uid: 1138
+ - uid: 26328
components:
- type: Transform
- pos: 19.834106,-6.375514
+ pos: -67.5,35.5
parent: 2
- - uid: 1143
+ - uid: 26343
components:
- type: Transform
- pos: 17.177856,-6.375514
+ pos: 44.5,14.5
parent: 2
- - uid: 1430
+ - uid: 26345
components:
- type: Transform
- pos: 13.689143,4.6450024
+ pos: 41.5,13.5
parent: 2
- - uid: 1527
+ - uid: 26407
components:
- type: Transform
- pos: 27.060135,-3.4577832
+ pos: 4.5,33.5
parent: 2
- - uid: 1927
+ - uid: 26439
components:
- type: Transform
- pos: 7.647935,26.652452
+ pos: -25.5,6.5
parent: 2
- - uid: 2231
+ - uid: 26542
components:
- type: Transform
- pos: -3.3289967,-34.296383
+ pos: -25.5,4.5
parent: 2
- - uid: 2690
+ - uid: 26569
components:
- type: Transform
- pos: 13.110749,41.62234
+ pos: -25.5,3.5
parent: 2
- - uid: 2957
+ - uid: 26574
components:
- type: Transform
- pos: -14.030302,-22.251932
+ pos: -25.5,2.5
parent: 2
- - uid: 2958
+ - uid: 26738
components:
- type: Transform
- pos: -8.999052,-22.283182
+ pos: 60.5,32.5
parent: 2
- - uid: 3682
+ - uid: 26761
components:
- type: Transform
- pos: -46.456753,17.019638
+ pos: 42.5,14.5
parent: 2
- - uid: 3683
+ - uid: 27561
components:
- type: Transform
- pos: -48.534878,2.972764
+ rot: 1.5707963267948966 rad
+ pos: 32.5,54.5
parent: 2
- - uid: 5258
+ - uid: 27573
components:
- type: Transform
- pos: 28.44021,25.612677
+ pos: 50.5,-33.5
parent: 2
- - uid: 7545
+ - uid: 27700
components:
- type: Transform
- pos: -51.532696,-17.42208
+ rot: 1.5707963267948966 rad
+ pos: 33.5,55.5
parent: 2
- - uid: 7546
+ - uid: 27972
components:
- type: Transform
- pos: -51.474102,-20.269735
+ pos: 7.5,46.5
parent: 2
- - uid: 8403
+ - uid: 28003
components:
- type: Transform
- pos: -69.25393,12.611276
+ rot: -1.5707963267948966 rad
+ pos: -68.5,29.5
parent: 2
- - uid: 15395
+ - uid: 28124
components:
- type: Transform
- pos: -20.215748,27.700657
+ pos: -27.5,6.5
parent: 2
-- proto: DiseaseDiagnoser
- entities:
- - uid: 17116
+ - uid: 28243
components:
- type: Transform
- pos: -14.5,7.5
+ pos: 52.5,34.5
parent: 2
-- proto: DiseaseSwab
- entities:
- - uid: 18080
+ - uid: 28244
components:
- type: Transform
- pos: -17.326876,7.5798235
+ pos: 59.5,32.5
parent: 2
- - uid: 21911
+ - uid: 28369
components:
- type: Transform
- pos: -17.4675,7.5681047
+ pos: 58.5,32.5
parent: 2
- - uid: 21921
+ - uid: 28372
components:
- type: Transform
- pos: -27.287813,7.7321672
+ pos: 52.5,35.5
parent: 2
- - uid: 21925
+ - uid: 28417
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 2
+ - uid: 28418
components:
- type: Transform
- pos: -25.576876,7.509511
+ pos: 61.5,32.5
parent: 2
-- proto: DisposalBend
- entities:
- - uid: 656
+ - uid: 28475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-16.5
+ pos: 57.5,32.5
parent: 2
- - uid: 717
+ - uid: 28612
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-17.5
+ pos: 52.5,40.5
parent: 2
- - uid: 733
+ - uid: 28613
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-15.5
+ pos: 52.5,33.5
parent: 2
- - uid: 735
+ - uid: 28689
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 49.5,-14.5
+ pos: 5.5,45.5
parent: 2
- - uid: 982
+ - uid: 28806
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-16.5
+ pos: -54.5,-35.5
parent: 2
- - uid: 1059
+ - uid: 28811
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-13.5
+ pos: -53.5,-35.5
parent: 2
- - uid: 1088
+ - uid: 28958
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,-15.5
+ pos: -67.5,24.5
parent: 2
- - uid: 2037
+ - uid: 29265
components:
- type: Transform
- pos: 49.5,20.5
+ pos: 51.5,-33.5
parent: 2
- - uid: 2038
+ - uid: 29279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,3.5
+ pos: 86.5,-11.5
parent: 2
- - uid: 2136
+ - uid: 29313
components:
- type: Transform
- pos: 50.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 87.5,-17.5
parent: 2
- - uid: 2149
+ - uid: 29718
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-14.5
+ pos: 34.5,37.5
parent: 2
- - uid: 2152
+ - uid: 29871
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-13.5
+ pos: 34.5,39.5
parent: 2
- - uid: 2291
+ - uid: 29894
components:
- type: Transform
- pos: 39.5,-16.5
+ pos: 34.5,41.5
parent: 2
- - uid: 2293
+ - uid: 29897
components:
- type: Transform
- pos: 38.5,-15.5
+ pos: 34.5,43.5
parent: 2
- - uid: 2296
+ - uid: 29898
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-17.5
+ pos: 32.5,43.5
parent: 2
- - uid: 2301
+ - uid: 29899
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-16.5
+ pos: 31.5,44.5
parent: 2
- - uid: 2909
+ - uid: 29949
components:
- type: Transform
- pos: 15.5,49.5
+ pos: 6.5,33.5
parent: 2
- - uid: 2937
+ - uid: 29953
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-29.5
+ pos: 7.5,33.5
parent: 2
- - uid: 3704
+ - uid: 30387
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-38.5
parent: 2
- - uid: 5226
+ - uid: 30716
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-35.5
+ pos: 34.5,38.5
parent: 2
- - uid: 7081
+ - uid: 30718
components:
- type: Transform
- pos: 30.5,10.5
+ pos: 34.5,40.5
parent: 2
- - uid: 9145
+ - uid: 30729
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: 34.5,42.5
parent: 2
- - uid: 11009
+ - uid: 30735
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-34.5
+ pos: 33.5,43.5
parent: 2
- - uid: 16698
+ - uid: 30736
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: 31.5,43.5
parent: 2
- - uid: 16699
+ - uid: 30760
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,16.5
+ pos: -40.5,56.5
parent: 2
- - uid: 16700
+ - uid: 30761
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,56.5
parent: 2
- - uid: 16732
+ - uid: 30762
components:
- type: Transform
- pos: -10.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,56.5
parent: 2
- - uid: 16844
+ - uid: 30763
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 14.5,-15.5
+ pos: -37.5,56.5
parent: 2
- - uid: 16911
+ - uid: 30764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,56.5
parent: 2
- - uid: 16926
+ - uid: 30765
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,20.5
+ pos: -35.5,56.5
parent: 2
- - uid: 16927
+ - uid: 30766
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,55.5
parent: 2
- - uid: 16928
+ - uid: 31069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,19.5
+ pos: 26.5,33.5
parent: 2
- - uid: 16929
+ - uid: 31074
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,18.5
+ pos: -63.5,36.5
parent: 2
- - uid: 16930
+ - uid: 31078
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,18.5
+ pos: 27.5,33.5
parent: 2
- - uid: 16931
+ - uid: 31080
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,17.5
+ pos: 28.5,33.5
parent: 2
- - uid: 16932
+ - uid: 31081
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,17.5
+ pos: 29.5,33.5
parent: 2
- - uid: 16933
+ - uid: 31082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,16.5
+ pos: 30.5,33.5
parent: 2
- - uid: 16934
+ - uid: 31084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,16.5
+ pos: 31.5,33.5
parent: 2
- - uid: 16935
+ - uid: 31087
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,8.5
+ pos: 32.5,33.5
parent: 2
- - uid: 16936
+ - uid: 31088
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 2
+ - uid: 31748
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,4.5
+ pos: 15.5,16.5
parent: 2
- - uid: 16937
+ - uid: 32345
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-15.5
parent: 2
- - uid: 16938
+ - uid: 32371
components:
- type: Transform
- pos: -45.5,-9.5
+ pos: -105.5,49.5
parent: 2
- - uid: 16939
+ - uid: 32372
components:
- type: Transform
- pos: -44.5,-10.5
+ pos: -105.5,48.5
parent: 2
- - uid: 16940
+ - uid: 32373
components:
- type: Transform
- pos: -43.5,-11.5
+ pos: -106.5,50.5
parent: 2
- - uid: 16941
+ - uid: 33334
components:
- type: Transform
- pos: -42.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,32.5
parent: 2
- - uid: 16942
+ - uid: 33335
components:
- type: Transform
- pos: -41.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,32.5
parent: 2
- - uid: 16943
+ - uid: 33336
components:
- type: Transform
- pos: -39.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,32.5
parent: 2
- - uid: 16944
+ - uid: 33337
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,32.5
parent: 2
- - uid: 16946
+ - uid: 33339
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,32.5
parent: 2
- - uid: 16947
+ - uid: 33340
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,32.5
parent: 2
- - uid: 16948
+ - uid: 33341
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,32.5
parent: 2
- - uid: 16949
+ - uid: 33342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,32.5
parent: 2
- - uid: 16950
+ - uid: 33343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,32.5
parent: 2
- - uid: 16952
+ - uid: 33344
components:
- type: Transform
- pos: -45.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,32.5
parent: 2
- - uid: 16958
+ - uid: 33345
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,33.5
parent: 2
- - uid: 16976
+ - uid: 33346
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,35.5
parent: 2
- - uid: 16977
+ - uid: 33347
components:
- type: Transform
- pos: -50.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,37.5
parent: 2
- - uid: 17001
+ - uid: 33348
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -54.5,39.5
+ pos: 73.5,38.5
parent: 2
- - uid: 17002
+ - uid: 33349
components:
- type: Transform
- pos: -48.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,39.5
parent: 2
- - uid: 17003
+ - uid: 33350
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,39.5
parent: 2
- - uid: 17032
+ - uid: 33351
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,41.5
parent: 2
- - uid: 17034
+ - uid: 33352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,41.5
parent: 2
- - uid: 17035
+ - uid: 33358
components:
- type: Transform
- pos: -46.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,40.5
parent: 2
- - uid: 17083
+ - uid: 33359
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -85.5,9.5
+ pos: 77.5,40.5
parent: 2
- - uid: 17084
+ - uid: 33360
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,39.5
parent: 2
- - uid: 17085
+ - uid: 33361
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -95.5,8.5
+ pos: 76.5,39.5
parent: 2
- - uid: 17086
+ - uid: 33371
components:
- type: Transform
- pos: -84.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,40.5
parent: 2
- - uid: 17112
+ - uid: 33372
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -73.5,9.5
+ pos: 73.5,39.5
parent: 2
- - uid: 17123
+ - uid: 33373
components:
- type: Transform
- pos: -72.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,40.5
parent: 2
- - uid: 17127
+ - uid: 33374
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,40.5
parent: 2
- - uid: 17133
+ - uid: 33375
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,39.5
parent: 2
- - uid: 17194
+ - uid: 33376
components:
- type: Transform
- pos: -2.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,35.5
parent: 2
- - uid: 17196
+ - uid: 33377
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,19.5
+ pos: 72.5,33.5
parent: 2
- - uid: 17197
+ - uid: 33565
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,19.5
+ pos: 77.5,58.5
parent: 2
- - uid: 17198
+ - uid: 33566
components:
- type: Transform
- pos: -35.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,57.5
parent: 2
- - uid: 17199
+ - uid: 33567
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,58.5
parent: 2
- - uid: 17244
+ - uid: 33568
components:
- type: Transform
- pos: -8.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,57.5
parent: 2
- - uid: 17245
+ - uid: 33569
components:
- type: Transform
- pos: -10.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 79.5,58.5
parent: 2
- - uid: 17246
+ - uid: 33570
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 79.5,57.5
parent: 2
- - uid: 17247
+ - uid: 34214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,35.5
+ pos: 44.5,13.5
parent: 2
- - uid: 17248
+ - uid: 34387
components:
- type: Transform
- pos: -11.5,35.5
+ pos: 43.5,14.5
parent: 2
- - uid: 17305
+ - uid: 34388
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,52.5
+ pos: 45.5,13.5
parent: 2
- - uid: 17306
+ - uid: 34390
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,49.5
+ pos: 45.5,14.5
parent: 2
- - uid: 17307
+ - uid: 34837
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,39.5
parent: 2
- - uid: 17308
+ - uid: 34838
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,40.5
parent: 2
- - uid: 17310
+ - uid: 34991
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,39.5
+ pos: 105.5,18.5
parent: 2
- - uid: 17313
+ - uid: 34992
components:
- type: Transform
- pos: 39.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 105.5,17.5
parent: 2
- - uid: 17315
+ - uid: 34993
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 105.5,16.5
parent: 2
- - uid: 17355
+ - uid: 35007
components:
- type: Transform
- pos: 42.5,37.5
+ pos: 103.5,18.5
parent: 2
- - uid: 17357
+ - uid: 35008
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,26.5
+ pos: 104.5,18.5
parent: 2
- - uid: 17372
+ - uid: 35009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,15.5
+ pos: 103.5,17.5
parent: 2
- - uid: 17381
+ - uid: 35010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-20.5
+ pos: 103.5,17.5
parent: 2
- - uid: 17382
+ - uid: 35011
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-24.5
+ pos: 103.5,16.5
parent: 2
- - uid: 17383
+ - uid: 35012
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-30.5
+ pos: 104.5,16.5
parent: 2
- - uid: 17384
+ - uid: 35013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-30.5
+ pos: 104.5,17.5
parent: 2
- - uid: 17398
+ - uid: 35014
components:
- type: Transform
- pos: 41.5,-23.5
+ pos: 104.5,15.5
parent: 2
- - uid: 17399
+ - uid: 35015
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-23.5
+ pos: 103.5,13.5
parent: 2
- - uid: 17455
+ - uid: 35016
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-4.5
+ pos: 103.5,19.5
parent: 2
- - uid: 17491
+ - uid: 35017
components:
- type: Transform
- pos: -3.5,13.5
+ pos: 103.5,21.5
parent: 2
- - uid: 17492
+ - uid: 35018
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,13.5
+ pos: 104.5,20.5
parent: 2
- - uid: 17493
+ - uid: 35019
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,3.5
+ pos: 103.5,15.5
parent: 2
- - uid: 17494
+ - uid: 35020
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-9.5
+ pos: 104.5,14.5
parent: 2
- - uid: 17503
+ - uid: 35075
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: 103.5,20.5
parent: 2
- - uid: 17522
+ - uid: 35524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-35.5
+ pos: -68.5,-34.5
parent: 2
- - uid: 17538
+ - uid: 35532
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-11.5
+ pos: -76.5,-34.5
parent: 2
- - uid: 17564
+ - uid: 35533
components:
- type: Transform
- pos: 17.5,9.5
+ pos: -77.5,-34.5
parent: 2
- - uid: 17586
+ - uid: 35534
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,13.5
+ pos: -80.5,-34.5
parent: 2
- - uid: 17620
+ - uid: 35535
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,6.5
+ pos: -81.5,-34.5
parent: 2
- - uid: 17621
+ - uid: 35536
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,3.5
+ pos: -82.5,-34.5
parent: 2
- - uid: 17623
+ - uid: 35537
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,9.5
+ pos: -86.5,-34.5
parent: 2
- - uid: 17624
+ - uid: 35538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,9.5
+ pos: -88.5,-34.5
parent: 2
- - uid: 17625
+ - uid: 35539
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,10.5
+ pos: -89.5,-34.5
parent: 2
- - uid: 17632
+ - uid: 35540
components:
- type: Transform
- pos: 31.5,6.5
+ pos: -89.5,-35.5
parent: 2
- - uid: 17633
+ - uid: 35541
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-0.5
+ pos: -89.5,-36.5
parent: 2
- - uid: 17652
+ - uid: 35542
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-20.5
+ pos: -89.5,-37.5
parent: 2
- - uid: 17653
+ - uid: 35543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-24.5
+ pos: -89.5,-39.5
parent: 2
- - uid: 17654
+ - uid: 35544
components:
- type: Transform
- pos: -20.5,-24.5
+ pos: -89.5,-40.5
parent: 2
- - uid: 17655
+ - uid: 35545
components:
- type: Transform
- pos: -18.5,-29.5
+ pos: -89.5,-41.5
parent: 2
- - uid: 17656
+ - uid: 35546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-39.5
+ pos: -89.5,-42.5
parent: 2
- - uid: 17699
+ - uid: 35547
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-20.5
+ pos: -89.5,-45.5
parent: 2
- - uid: 17713
+ - uid: 35548
components:
- type: Transform
- pos: -35.5,-24.5
+ pos: -89.5,-50.5
parent: 2
- - uid: 17738
+ - uid: 35549
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-24.5
+ pos: -89.5,-52.5
parent: 2
- - uid: 17739
+ - uid: 35550
components:
- type: Transform
- pos: -36.5,-23.5
+ pos: -89.5,-53.5
parent: 2
- - uid: 17752
+ - uid: 35551
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-23.5
+ pos: -89.5,-54.5
parent: 2
- - uid: 17785
+ - uid: 35552
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-27.5
+ pos: -89.5,-59.5
parent: 2
- - uid: 17786
+ - uid: 35553
components:
- type: Transform
- pos: -29.5,-27.5
+ pos: -89.5,-63.5
parent: 2
- - uid: 18237
+ - uid: 35554
components:
- type: Transform
- pos: -20.5,55.5
+ pos: -89.5,-62.5
parent: 2
- - uid: 18238
+ - uid: 35555
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,55.5
+ pos: -89.5,-65.5
parent: 2
- - uid: 19874
+ - uid: 36948
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,73.5
+ pos: 6.5,46.5
parent: 2
- - uid: 20938
+ - uid: 36950
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,37.5
+ pos: 5.5,46.5
parent: 2
- - uid: 25348
+ - uid: 37026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-28.5
parent: 2
- - uid: 27860
+ - uid: 37260
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,64.5
+ pos: -24.5,2.5
parent: 2
- - uid: 27862
+ - uid: 37332
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,69.5
parent: 2
- - uid: 28600
+ - uid: 37338
components:
- type: Transform
- pos: -26.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,71.5
parent: 2
- - uid: 29042
+ - uid: 37339
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,11.5
+ pos: -38.5,70.5
parent: 2
- - uid: 29198
+ - uid: 37340
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,72.5
parent: 2
- - uid: 35864
+ - uid: 37341
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 32.5,15.5
+ pos: -37.5,71.5
parent: 2
- - uid: 35888
+ - uid: 37342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,70.5
parent: 2
- - uid: 35917
+ - uid: 37343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,72.5
parent: 2
- - uid: 35925
+ - uid: 37344
components:
- type: Transform
- pos: 40.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,71.5
parent: 2
- - uid: 35992
+ - uid: 37345
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,-25.5
+ pos: -36.5,70.5
parent: 2
- - uid: 35998
+ - uid: 37424
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-1.5
+ pos: 32.5,51.5
parent: 2
- - uid: 35999
+ - uid: 37895
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -58.5,3.5
+ pos: 97.5,-13.5
parent: 2
- - uid: 36389
+ - uid: 37896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,-14.5
parent: 2
-- proto: DisposalJunction
- entities:
- - uid: 2908
+ - uid: 37897
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,-15.5
parent: 2
- - uid: 3380
+ - uid: 37900
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,-18.5
parent: 2
- - uid: 9146
+ - uid: 37902
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,-20.5
parent: 2
- - uid: 11646
+ - uid: 37903
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,3.5
+ pos: 99.5,-20.5
parent: 2
- - uid: 16744
+ - uid: 37904
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,-20.5
parent: 2
- - uid: 16751
+ - uid: 37905
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,-20.5
parent: 2
- - uid: 16809
+ - uid: 37906
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,-20.5
parent: 2
- - uid: 16862
+ - uid: 37907
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,-20.5
parent: 2
- - uid: 16889
+ - uid: 37908
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,-15.5
+ pos: 104.5,-20.5
parent: 2
- - uid: 16910
+ - uid: 37909
components:
- type: Transform
- pos: -45.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-19.5
parent: 2
- - uid: 17058
+ - uid: 37910
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-18.5
parent: 2
- - uid: 17072
+ - uid: 37912
components:
- type: Transform
- pos: -84.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-16.5
parent: 2
- - uid: 17147
+ - uid: 37913
components:
- type: Transform
- pos: -46.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-15.5
parent: 2
- - uid: 17201
+ - uid: 37914
components:
- type: Transform
- pos: -15.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-14.5
parent: 2
- - uid: 17235
+ - uid: 37915
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,-13.5
parent: 2
- - uid: 17240
+ - uid: 37916
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 104.5,-12.5
parent: 2
- - uid: 17260
+ - uid: 37919
components:
- type: Transform
- pos: 1.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,-12.5
parent: 2
- - uid: 17309
+ - uid: 37920
components:
- type: Transform
- pos: 19.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,-12.5
parent: 2
- - uid: 17314
+ - uid: 37921
components:
- type: Transform
- pos: 1.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,-12.5
parent: 2
- - uid: 17333
+ - uid: 37922
components:
- type: Transform
- pos: 1.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,-12.5
parent: 2
- - uid: 17353
+ - uid: 37937
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,20.5
+ pos: 88.5,-16.5
parent: 2
- - uid: 17362
+ - uid: 37938
components:
- type: Transform
- pos: -12.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-17.5
parent: 2
- - uid: 17375
+ - uid: 38014
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-28.5
parent: 2
- - uid: 17385
+ - uid: 38025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-28.5
parent: 2
- - uid: 17386
+ - uid: 38026
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-28.5
parent: 2
- - uid: 17400
+ - uid: 38027
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 35.5,-15.5
+ pos: 11.5,-26.5
parent: 2
- - uid: 17479
+ - uid: 38028
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-26.5
parent: 2
- - uid: 17481
+ - uid: 38029
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,20.5
+ pos: 13.5,-26.5
parent: 2
- - uid: 17634
+ - uid: 38030
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,6.5
+ pos: 14.5,-26.5
parent: 2
- - uid: 17636
+ - uid: 38031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,6.5
+ pos: 16.5,-26.5
parent: 2
- - uid: 17637
+ - uid: 38032
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,6.5
+ pos: 17.5,-26.5
parent: 2
- - uid: 17650
+ - uid: 38033
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-25.5
+ pos: 18.5,-26.5
parent: 2
- - uid: 17684
+ - uid: 38034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-27.5
+ pos: 19.5,-26.5
parent: 2
- - uid: 17706
+ - uid: 38035
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-14.5
+ pos: 20.5,-26.5
parent: 2
- - uid: 17758
+ - uid: 38036
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-18.5
+ pos: 21.5,-26.5
parent: 2
- - uid: 35967
+ - uid: 38037
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-30.5
+ pos: 22.5,-26.5
parent: 2
- - uid: 36000
+ - uid: 38038
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,3.5
+ pos: 23.5,-26.5
parent: 2
-- proto: DisposalJunctionFlipped
- entities:
- - uid: 16945
+ - uid: 38039
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-14.5
+ pos: 24.5,-26.5
parent: 2
- - uid: 16951
+ - uid: 38046
components:
- type: Transform
- pos: -45.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,21.5
parent: 2
- - uid: 16959
+ - uid: 38047
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,11.5
+ pos: -75.5,21.5
parent: 2
- - uid: 16991
+ - uid: 38048
components:
- type: Transform
- pos: -54.5,30.5
+ pos: -76.5,21.5
parent: 2
- - uid: 17004
+ - uid: 38049
components:
- type: Transform
- pos: -54.5,22.5
+ pos: -77.5,21.5
parent: 2
- - uid: 17047
+ - uid: 38083
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-29.5
- parent: 2
- - uid: 17126
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,8.5
+ pos: -76.5,18.5
parent: 2
- - uid: 17167
+ - uid: 38084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,17.5
parent: 2
- - uid: 17195
+ - uid: 38085
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,20.5
+ pos: -77.5,17.5
parent: 2
- - uid: 17253
+ - uid: 38086
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,17.5
parent: 2
- - uid: 17254
+ - uid: 38087
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,18.5
parent: 2
- - uid: 17261
+ - uid: 38898
components:
- type: Transform
- pos: 1.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-40.5
parent: 2
- - uid: 17262
+ - uid: 38899
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,39.5
+ pos: 10.5,-41.5
parent: 2
- - uid: 17352
+ - uid: 38901
components:
- type: Transform
- pos: 31.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-42.5
parent: 2
- - uid: 17354
+- proto: Chair
+ entities:
+ - uid: 694
components:
- type: Transform
- pos: 39.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-9.5
parent: 2
- - uid: 17387
+ - uid: 1034
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-24.5
+ pos: -56.5,29.5
parent: 2
- - uid: 17401
+ - uid: 1105
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-15.5
+ pos: -47.5,-17.5
parent: 2
- - uid: 17478
+ - uid: 1107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-4.5
+ pos: -46.5,-16.5
parent: 2
- - uid: 17585
+ - uid: 1111
components:
- type: Transform
- pos: 39.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-18.5
parent: 2
- - uid: 17635
+ - uid: 1213
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,6.5
+ pos: 24.5,-4.5
parent: 2
- - uid: 17649
+ - uid: 1214
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-15.5
+ pos: 24.5,-7.5
parent: 2
- - uid: 17768
+ - uid: 1215
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-17.5
+ pos: 24.5,-10.5
parent: 2
- - uid: 17769
+ - uid: 1551
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,-11.5
parent: 2
-- proto: DisposalMachineFrame
- entities:
- - uid: 7042
+ - uid: 1829
components:
- type: Transform
- pos: -33.5,-38.5
+ pos: 13.5,-19.5
parent: 2
-- proto: DisposalPipe
- entities:
- - uid: 1175
+ - uid: 2341
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-30.5
+ pos: -96.5,21.5
parent: 2
- - uid: 1840
+ - uid: 2734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,32.5
parent: 2
- - uid: 2035
+ - uid: 2735
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,32.5
parent: 2
- - uid: 2036
+ - uid: 2782
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 17.5,-30.5
+ pos: -96.5,-4.5
parent: 2
- - uid: 2137
+ - uid: 2984
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,-30.5
+ pos: -96.5,-10.5
parent: 2
- - uid: 2260
+ - uid: 2986
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 45.5,-17.5
- parent: 2
- - uid: 2262
- components:
- - type: Transform
- pos: 50.5,-12.5
+ pos: -96.5,-8.5
parent: 2
- - uid: 2302
+ - uid: 3053
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,-30.5
+ pos: -96.5,-7.5
parent: 2
- - uid: 2306
+ - uid: 3151
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-30.5
+ pos: 43.5,44.5
parent: 2
- - uid: 2321
+ - uid: 3614
components:
- type: Transform
- pos: -33.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,12.5
parent: 2
- - uid: 2323
+ - uid: 3796
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-30.5
+ pos: -97.5,-4.5
parent: 2
- - uid: 2724
+ - uid: 4445
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,11.5
+ pos: -4.5,58.5
parent: 2
- - uid: 2907
+ - uid: 4552
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-30.5
+ pos: 44.5,44.5
parent: 2
- - uid: 3374
+ - uid: 4576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,20.5
+ pos: -47.5,-32.5
parent: 2
- - uid: 4966
+ - uid: 4577
components:
- type: Transform
- pos: -1.5,1.5
+ pos: -46.5,-32.5
parent: 2
- - uid: 5100
+ - uid: 4578
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-34.5
parent: 2
- - uid: 5117
+ - uid: 4588
components:
- type: Transform
- pos: -1.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-33.5
parent: 2
- - uid: 5399
+ - uid: 4593
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 58.5,53.5
+ pos: -37.5,-35.5
parent: 2
- - uid: 5547
+ - uid: 4595
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,30.5
+ pos: -35.5,-34.5
parent: 2
- - uid: 5548
+ - uid: 4746
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,30.5
+ pos: -37.5,-32.5
parent: 2
- - uid: 5549
+ - uid: 5475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,26.5
parent: 2
- - uid: 5929
+ - uid: 5476
components:
- type: Transform
- pos: -33.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,25.5
parent: 2
- - uid: 6120
+ - uid: 5477
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,24.5
parent: 2
- - uid: 6617
+ - uid: 5758
components:
- type: Transform
- pos: -33.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-31.5
parent: 2
- - uid: 6635
+ - uid: 5759
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,11.5
+ pos: -42.5,-31.5
parent: 2
- - uid: 6653
+ - uid: 5978
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,11.5
+ pos: 42.5,44.5
parent: 2
- - uid: 6873
+ - uid: 6810
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-21.5
parent: 2
- - uid: 6915
+ - uid: 7143
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-21.5
parent: 2
- - uid: 7043
+ - uid: 7146
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,-36.5
+ pos: -43.5,-17.5
parent: 2
- - uid: 7044
+ - uid: 7148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-17.5
parent: 2
- - uid: 7045
+ - uid: 7149
components:
- type: Transform
- pos: -29.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-17.5
parent: 2
- - uid: 7046
+ - uid: 7152
components:
- type: Transform
- pos: -29.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-21.5
parent: 2
- - uid: 9300
+ - uid: 7153
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,-10.5
+ pos: -45.5,-21.5
parent: 2
- - uid: 9301
+ - uid: 7154
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-22.5
parent: 2
- - uid: 9585
+ - uid: 7155
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,-18.5
parent: 2
- - uid: 9586
+ - uid: 7157
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,30.5
+ pos: -42.5,-16.5
parent: 2
- - uid: 9614
+ - uid: 7160
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,30.5
+ pos: -42.5,-20.5
parent: 2
- - uid: 9615
+ - uid: 7161
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,30.5
+ pos: -46.5,-20.5
parent: 2
- - uid: 9616
+ - uid: 7162
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,-22.5
parent: 2
- - uid: 9617
+ - uid: 7175
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,30.5
+ pos: -36.5,-32.5
parent: 2
- - uid: 10648
+ - uid: 8125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,11.5
+ pos: -85.5,-5.5
parent: 2
- - uid: 11254
+ - uid: 8126
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -72.5,8.5
+ pos: -84.5,-5.5
parent: 2
- - uid: 11839
+ - uid: 8132
components:
- type: Transform
- pos: -15.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,11.5
parent: 2
- - uid: 12973
+ - uid: 8133
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,10.5
parent: 2
- - uid: 15193
+ - uid: 8135
components:
- type: Transform
- pos: 1.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,8.5
parent: 2
- - uid: 15858
+ - uid: 8136
components:
- type: Transform
- pos: 14.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,7.5
parent: 2
- - uid: 16280
+ - uid: 8141
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.5,23.5
+ pos: -85.5,22.5
parent: 2
- - uid: 16601
+ - uid: 8142
components:
- type: Transform
- pos: 14.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,22.5
parent: 2
- - uid: 16672
+ - uid: 8143
components:
- type: Transform
- pos: 50.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,22.5
parent: 2
- - uid: 16673
+ - uid: 8144
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,7.5
+ pos: -82.5,22.5
parent: 2
- - uid: 16674
+ - uid: 9005
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,20.5
parent: 2
- - uid: 16675
+ - uid: 9006
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,20.5
parent: 2
- - uid: 16676
+ - uid: 9092
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,4.5
+ pos: -87.5,22.5
parent: 2
- - uid: 16677
+ - uid: 11156
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,3.5
+ pos: 33.5,-10.5
parent: 2
- - uid: 16678
+ - uid: 11202
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,50.5
parent: 2
- - uid: 16679
+ - uid: 11222
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,27.5
parent: 2
- - uid: 16680
+ - uid: 11293
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-34.5
parent: 2
- - uid: 16681
+ - uid: 11298
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-7.5
parent: 2
- - uid: 16682
+ - uid: 11299
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-6.5
parent: 2
- - uid: 16683
+ - uid: 11301
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-33.5
parent: 2
- - uid: 16684
+ - uid: 11326
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,-3.5
+ pos: -47.5,-35.5
parent: 2
- - uid: 16685
+ - uid: 11336
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,-4.5
+ pos: -46.5,-35.5
parent: 2
- - uid: 16688
+ - uid: 11395
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-8.5
+ pos: 33.5,-7.5
parent: 2
- - uid: 16689
+ - uid: 11512
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,-9.5
+ pos: 12.5,-5.5
parent: 2
- - uid: 16691
+ - uid: 11548
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,-11.5
+ pos: 11.5,-5.5
parent: 2
- - uid: 16692
+ - uid: 13001
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,-12.5
+ pos: -67.5,29.5
parent: 2
- - uid: 16693
+ - uid: 13071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-13.5
+ pos: 10.5,-50.5
parent: 2
- - uid: 16694
+ - uid: 13072
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-14.5
+ pos: -7.5,-50.5
parent: 2
- - uid: 16701
+ - uid: 13337
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,26.5
parent: 2
- - uid: 16702
+ - uid: 13338
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,23.5
parent: 2
- - uid: 16704
+ - uid: 13340
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,12.5
+ pos: -83.5,21.5
parent: 2
- - uid: 16705
+ - uid: 13342
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,9.5
parent: 2
- - uid: 16706
+ - uid: 13343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,6.5
parent: 2
- - uid: 16707
+ - uid: 13345
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-6.5
parent: 2
- - uid: 16708
+ - uid: 13346
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-8.5
parent: 2
- - uid: 16709
+ - uid: 13347
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-9.5
parent: 2
- - uid: 16710
+ - uid: 13789
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,19.5
+ pos: 84.5,41.5
parent: 2
- - uid: 16711
+ - uid: 13970
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,20.5
+ pos: 8.5,-50.5
parent: 2
- - uid: 16712
+ - uid: 13971
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,20.5
+ pos: -6.5,-50.5
parent: 2
- - uid: 16713
+ - uid: 13972
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,20.5
+ pos: -5.5,-50.5
parent: 2
- - uid: 16714
+ - uid: 13973
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,20.5
+ pos: 9.5,-50.5
parent: 2
- - uid: 16715
+ - uid: 14286
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,49.5
parent: 2
- - uid: 16716
+ - uid: 15254
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,20.5
+ pos: 4.5,70.5
parent: 2
- - uid: 16717
+ - uid: 15492
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,24.5
parent: 2
- - uid: 16718
+ - uid: 15493
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,24.5
parent: 2
- - uid: 16719
+ - uid: 15494
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,24.5
parent: 2
- - uid: 16720
+ - uid: 15495
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,20.5
+ pos: -30.5,30.5
parent: 2
- - uid: 16721
+ - uid: 15498
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,28.5
parent: 2
- - uid: 16722
+ - uid: 15499
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,28.5
parent: 2
- - uid: 16723
+ - uid: 15514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,59.5
parent: 2
- - uid: 16724
+ - uid: 15546
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,32.5
parent: 2
- - uid: 16725
+ - uid: 15547
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,32.5
parent: 2
- - uid: 16726
+ - uid: 15552
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,20.5
+ pos: -16.5,34.5
parent: 2
- - uid: 16727
+ - uid: 15553
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,21.5
+ pos: -20.5,34.5
parent: 2
- - uid: 16728
+ - uid: 15736
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,24.5
parent: 2
- - uid: 16729
+ - uid: 15737
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,24.5
parent: 2
- - uid: 16730
+ - uid: 15738
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,24.5
parent: 2
- - uid: 16731
+ - uid: 15790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,69.5
parent: 2
- - uid: 16733
+ - uid: 16169
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,51.5
parent: 2
- - uid: 16734
+ - uid: 17750
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-33.5
parent: 2
- - uid: 16735
+ - uid: 17758
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,20.5
+ pos: -38.5,-34.5
parent: 2
- - uid: 16736
+ - uid: 17763
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,20.5
+ pos: -48.5,-33.5
parent: 2
- - uid: 16737
+ - uid: 17834
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,20.5
+ pos: 14.5,-19.5
parent: 2
- - uid: 16738
+ - uid: 18031
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,68.5
parent: 2
- - uid: 16739
+ - uid: 18103
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,70.5
parent: 2
- - uid: 16740
+ - uid: 18246
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,67.5
parent: 2
- - uid: 16741
+ - uid: 18328
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,20.5
+ pos: -7.5,69.5
parent: 2
- - uid: 16742
+ - uid: 18330
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,20.5
+ pos: -11.5,69.5
parent: 2
- - uid: 16743
+ - uid: 18331
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,20.5
+ pos: -9.5,69.5
parent: 2
- - uid: 16745
+ - uid: 18337
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,67.5
parent: 2
- - uid: 16746
+ - uid: 18338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,67.5
parent: 2
- - uid: 16747
+ - uid: 19653
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,20.5
+ pos: -86.5,-4.5
parent: 2
- - uid: 16748
+ - uid: 19977
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,48.5
parent: 2
- - uid: 16749
+ - uid: 21200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,25.5
parent: 2
- - uid: 16750
+ - uid: 21201
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,24.5
parent: 2
- - uid: 16752
+ - uid: 21202
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,23.5
parent: 2
- - uid: 16753
+ - uid: 21203
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,26.5
parent: 2
- - uid: 16754
+ - uid: 25088
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,12.5
parent: 2
- - uid: 16756
+ - uid: 26017
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,50.5
parent: 2
- - uid: 16757
+ - uid: 26319
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,49.5
parent: 2
- - uid: 16758
+ - uid: 26523
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,51.5
parent: 2
- - uid: 16759
+ - uid: 26705
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,20.5
+ pos: 33.5,-4.5
parent: 2
- - uid: 16760
+ - uid: 28959
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,29.5
parent: 2
- - uid: 16761
+ - uid: 29618
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -66.5,30.5
parent: 2
- - uid: 16762
+ - uid: 29719
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,20.5
+ pos: 9.5,71.5
parent: 2
- - uid: 16763
+ - uid: 29895
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,20.5
+ pos: 8.5,71.5
parent: 2
- - uid: 16764
+ - uid: 29896
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,20.5
+ pos: 12.5,71.5
parent: 2
- - uid: 16765
+ - uid: 30064
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,20.5
+ pos: 83.5,40.5
parent: 2
- - uid: 16766
+ - uid: 30237
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,24.5
parent: 2
- - uid: 16767
+ - uid: 30456
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,20.5
+ pos: 15.5,-19.5
parent: 2
- - uid: 16768
+ - uid: 30457
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -67.5,30.5
parent: 2
- - uid: 16769
+ - uid: 30757
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,20.5
+ pos: 7.5,71.5
parent: 2
- - uid: 16770
+ - uid: 30923
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,20.5
+ pos: 11.5,71.5
parent: 2
- - uid: 16771
+ - uid: 32088
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,30.5
parent: 2
- - uid: 16772
+ - uid: 33810
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 34.5,20.5
+ pos: -22.5,-8.5
parent: 2
- - uid: 16773
+ - uid: 33851
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 102.5,60.5
parent: 2
- - uid: 16774
+ - uid: 36394
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,60.5
parent: 2
- - uid: 16775
+ - uid: 36598
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 100.5,60.5
parent: 2
- - uid: 16776
+ - uid: 36903
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,11.5
parent: 2
- - uid: 16777
+ - uid: 36964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,20.5
+ pos: -11.5,30.5
parent: 2
- - uid: 16778
+ - uid: 36965
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,20.5
+ pos: -10.5,30.5
parent: 2
- - uid: 16779
+- proto: ChairFolding
+ entities:
+ - uid: 1587
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,12.5
parent: 2
- - uid: 16780
+ - uid: 1588
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 42.5,20.5
+ pos: -6.5,12.5
parent: 2
- - uid: 16781
+ - uid: 1628
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,11.5
parent: 2
- - uid: 16782
+ - uid: 1629
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 44.5,20.5
+ pos: -6.5,11.5
parent: 2
- - uid: 16783
+ - uid: 1630
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,11.5
parent: 2
- - uid: 16784
+ - uid: 1631
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,20.5
+ pos: -2.5,14.5
parent: 2
- - uid: 16785
+ - uid: 2654
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,20.5
+ pos: -19.5,55.5
parent: 2
- - uid: 16786
+ - uid: 2702
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 48.5,20.5
+ pos: -19.5,57.5
parent: 2
- - uid: 16787
+ - uid: 2703
components:
- type: Transform
- pos: 49.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,56.5
parent: 2
- - uid: 16788
+ - uid: 3416
components:
- type: Transform
- pos: 49.5,18.5
+ pos: 32.5,-24.5
parent: 2
- - uid: 16789
+ - uid: 3418
components:
- type: Transform
- pos: 49.5,16.5
+ pos: 31.5,-24.5
parent: 2
- - uid: 16790
+ - uid: 3444
components:
- type: Transform
- pos: 49.5,15.5
+ pos: 34.5,-24.5
parent: 2
- - uid: 16791
+ - uid: 3445
components:
- type: Transform
- pos: 49.5,14.5
+ pos: 33.5,-24.5
parent: 2
- - uid: 16792
+ - uid: 3446
components:
- type: Transform
- pos: 49.5,13.5
+ pos: 36.5,-25.5
parent: 2
- - uid: 16793
+ - uid: 3447
components:
- type: Transform
- pos: 49.5,12.5
+ pos: 35.5,-24.5
parent: 2
- - uid: 16794
+ - uid: 3448
components:
- type: Transform
- pos: 49.5,11.5
+ pos: 33.5,-25.5
parent: 2
- - uid: 16795
+ - uid: 3449
components:
- type: Transform
- pos: 49.5,10.5
+ pos: 34.5,-25.5
parent: 2
- - uid: 16796
+ - uid: 3451
components:
- type: Transform
- pos: 49.5,9.5
+ pos: 32.5,-25.5
parent: 2
- - uid: 16797
+ - uid: 3454
components:
- type: Transform
- pos: 49.5,8.5
+ pos: 37.5,-24.5
parent: 2
- - uid: 16798
+ - uid: 3455
components:
- type: Transform
- pos: 49.5,7.5
+ pos: 30.5,-25.5
parent: 2
- - uid: 16799
+ - uid: 5135
components:
- type: Transform
- pos: 49.5,6.5
+ pos: 65.5,-7.5
parent: 2
- - uid: 16800
+ - uid: 5137
components:
- type: Transform
- pos: 49.5,5.5
+ pos: 64.5,-7.5
parent: 2
- - uid: 16801
+ - uid: 5141
components:
- type: Transform
- pos: 49.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-9.5
parent: 2
- - uid: 16802
+ - uid: 6156
components:
- type: Transform
- pos: 50.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-6.5
parent: 2
- - uid: 16803
+ - uid: 6423
components:
- type: Transform
- pos: 50.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-5.5
parent: 2
- - uid: 16804
+ - uid: 6619
components:
- type: Transform
- pos: 50.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,59.5
parent: 2
- - uid: 16805
+ - uid: 6622
components:
- type: Transform
- pos: 50.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,58.5
parent: 2
- - uid: 16806
+ - uid: 6689
components:
- type: Transform
- pos: 50.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,59.5
parent: 2
- - uid: 16807
+ - uid: 6831
components:
- type: Transform
- pos: 50.5,-2.5
+ pos: -38.5,61.5
parent: 2
- - uid: 16808
+ - uid: 7033
components:
- type: Transform
- pos: 50.5,-3.5
+ pos: -28.5,-34.5
parent: 2
- - uid: 16810
+ - uid: 7034
components:
- type: Transform
- pos: 50.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-35.5
parent: 2
- - uid: 16811
+ - uid: 7035
components:
- type: Transform
- pos: 50.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,-36.5
parent: 2
- - uid: 16812
+ - uid: 7930
components:
- type: Transform
- pos: 50.5,-9.5
+ pos: 44.5,-34.5
parent: 2
- - uid: 16813
+ - uid: 7934
components:
- type: Transform
- pos: 50.5,-10.5
+ pos: -37.5,61.5
parent: 2
- - uid: 16814
+ - uid: 8297
components:
- type: Transform
- pos: 50.5,-11.5
+ pos: 43.5,-34.5
parent: 2
- - uid: 16815
+ - uid: 9632
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-8.5
+ pos: -36.5,58.5
parent: 2
- - uid: 16816
+ - uid: 12319
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-17.5
+ pos: 48.5,-34.5
parent: 2
- - uid: 16817
+ - uid: 15203
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.5,-17.5
+ pos: -21.5,53.5
parent: 2
- - uid: 16818
+ - uid: 16318
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,53.5
parent: 2
- - uid: 16819
+ - uid: 16652
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,-17.5
+ pos: -39.5,11.5
parent: 2
- - uid: 16820
+ - uid: 17885
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,63.5
parent: 2
- - uid: 16821
+ - uid: 18059
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-15.5
+ pos: -15.5,67.5
parent: 2
- - uid: 16822
+ - uid: 18062
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-15.5
+ pos: -19.5,67.5
parent: 2
- - uid: 16824
+ - uid: 18064
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-15.5
+ pos: -23.5,67.5
parent: 2
- - uid: 16825
+ - uid: 18066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-15.5
+ pos: -27.5,67.5
parent: 2
- - uid: 16826
+ - uid: 18149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,61.5
parent: 2
- - uid: 16827
+ - uid: 18457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-15.5
+ pos: -59.5,-3.5
parent: 2
- - uid: 16828
+ - uid: 18458
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-15.5
+ pos: -58.5,-3.5
parent: 2
- - uid: 16829
+ - uid: 18502
components:
- type: Transform
- pos: 26.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -53.5,-3.5
parent: 2
- - uid: 16830
+ - uid: 18503
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-15.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 16831
+ - uid: 19772
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-15.5
+ pos: -35.5,60.5
parent: 2
- - uid: 16832
+ - uid: 25069
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,-15.5
+ pos: 68.5,21.5
parent: 2
- - uid: 16833
+ - uid: 29272
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,2.5
parent: 2
- - uid: 16834
+ - uid: 31933
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-0.5
parent: 2
- - uid: 16835
+ - uid: 31934
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-1.5
parent: 2
- - uid: 16836
+ - uid: 33527
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-15.5
+ pos: 99.5,18.5
parent: 2
- - uid: 16837
+ - uid: 33528
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-15.5
+ pos: 99.5,17.5
parent: 2
- - uid: 16838
+ - uid: 33529
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,18.5
parent: 2
- - uid: 16839
+ - uid: 33530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,16.5
parent: 2
- - uid: 16840
+ - uid: 33675
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,-15.5
+ pos: -35.5,67.5
parent: 2
- - uid: 16841
+ - uid: 33676
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,67.5
parent: 2
- - uid: 16842
+ - uid: 36459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,83.5
parent: 2
- - uid: 16843
+ - uid: 36460
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,-15.5
+ pos: 59.5,84.5
parent: 2
- - uid: 16845
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 3450
components:
- type: Transform
- pos: 14.5,-16.5
+ pos: 38.52028,-21.96194
parent: 2
- - uid: 16846
+ - uid: 3452
components:
- type: Transform
- pos: 14.5,-17.5
+ pos: 38.543716,-22.383816
parent: 2
- - uid: 16847
+ - uid: 3453
components:
- type: Transform
- pos: 14.5,-18.5
+ pos: 38.555435,-22.16116
parent: 2
- - uid: 16848
+ - uid: 36461
components:
- type: Transform
- pos: 14.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 58.83184,83.77377
parent: 2
- - uid: 16849
+ - uid: 36508
components:
- type: Transform
- pos: 14.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 56.83184,79.6644
parent: 2
- - uid: 16851
+- proto: ChairGreyscale
+ entities:
+ - uid: 24
components:
- type: Transform
- pos: 14.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,9.5
parent: 2
- - uid: 16852
+ - uid: 2126
components:
- type: Transform
- pos: 14.5,-26.5
+ pos: 26.5,5.5
parent: 2
- - uid: 16853
+ - uid: 2266
components:
- type: Transform
- pos: 14.5,-27.5
+ pos: 25.5,5.5
parent: 2
- - uid: 16854
+ - uid: 11647
components:
- type: Transform
- pos: 14.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,15.5
parent: 2
- - uid: 16855
+ - uid: 11851
components:
- type: Transform
- pos: 14.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,13.5
parent: 2
- - uid: 16856
+ - uid: 12062
components:
- type: Transform
- pos: 26.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,11.5
parent: 2
- - uid: 16857
+ - uid: 24065
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-15.5
+ pos: 27.5,5.5
parent: 2
- - uid: 16858
+ - uid: 26173
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,11.5
parent: 2
- - uid: 16859
+ - uid: 27318
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,15.5
parent: 2
- - uid: 16860
+ - uid: 27356
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,9.5
parent: 2
- - uid: 16861
+ - uid: 33924
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,13.5
parent: 2
- - uid: 16863
+- proto: ChairOfficeDark
+ entities:
+ - uid: 464
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-2.5
parent: 2
- - uid: 16864
+ - uid: 465
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-2.5
parent: 2
- - uid: 16865
+ - uid: 628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-8.5
parent: 2
- - uid: 16866
+ - uid: 931
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-15.5
+ pos: -28.5,-8.5
parent: 2
- - uid: 16867
+ - uid: 1122
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,3.5
+ pos: -3.5,-33.5
parent: 2
- - uid: 16868
+ - uid: 1316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 21.52995,3.6676638
parent: 2
- - uid: 16869
+ - uid: 1650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-15.5
+ rot: -3.141592351598195 rad
+ pos: 19.453836,-2.5060267
parent: 2
- - uid: 16870
+ - uid: 1657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,3.5
parent: 2
- - uid: 16871
+ - uid: 1658
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-15.5
+ pos: 13.5,-0.5
parent: 2
- - uid: 16872
+ - uid: 1663
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-15.5
+ pos: 16.5,-5.5
parent: 2
- - uid: 16873
+ - uid: 1664
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-15.5
+ pos: 20.5,-5.5
parent: 2
- - uid: 16874
+ - uid: 1940
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-15.5
+ pos: 7.5,27.5
parent: 2
- - uid: 16875
+ - uid: 2040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,6.5
parent: 2
- - uid: 16876
+ - uid: 4367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-10.5
parent: 2
- - uid: 16877
+ - uid: 4541
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,79.5
parent: 2
- - uid: 16878
+ - uid: 4782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-15.5
+ pos: 4.5,-24.5
parent: 2
- - uid: 16879
+ - uid: 5364
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-15.5
+ pos: 57.5,51.5
parent: 2
- - uid: 16880
+ - uid: 5365
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-15.5
+ pos: 58.5,51.5
parent: 2
- - uid: 16881
+ - uid: 5366
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-15.5
+ pos: 59.5,51.5
parent: 2
- - uid: 16882
+ - uid: 5956
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-15.5
+ pos: 17.5,-20.5
parent: 2
- - uid: 16883
+ - uid: 8265
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,77.5
parent: 2
- - uid: 16884
+ - uid: 8378
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-15.5
+ pos: 7.5,-4.5
parent: 2
- - uid: 16885
+ - uid: 11297
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-7.5
parent: 2
- - uid: 16886
+ - uid: 11967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,11.5
parent: 2
- - uid: 16887
+ - uid: 14038
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,58.5
parent: 2
- - uid: 16888
+ - uid: 14061
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,58.5
parent: 2
- - uid: 16890
+ - uid: 14070
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,58.5
parent: 2
- - uid: 16891
+ - uid: 14174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-15.5
+ pos: 13.5,42.5
parent: 2
- - uid: 16892
+ - uid: 15670
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,50.5
parent: 2
- - uid: 16893
+ - uid: 15901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,5.5
parent: 2
- - uid: 16894
+ - uid: 18909
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,-15.5
+ pos: -103.5,50.5
parent: 2
- - uid: 16895
+ - uid: 18936
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,-14.5
+ pos: -105.5,48.5
parent: 2
- - uid: 16896
+ - uid: 22235
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-7.5
+ pos: -108.5,55.5
parent: 2
- - uid: 16897
+ - uid: 22242
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-6.5
+ pos: -109.5,50.5
parent: 2
- - uid: 16898
+ - uid: 25304
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-5.5
+ pos: 71.5,79.5
parent: 2
- - uid: 16899
+ - uid: 30853
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-4.5
+ pos: 69.5,72.5
parent: 2
- - uid: 16900
+ - uid: 31733
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 21.544285,0.55529165
parent: 2
- - uid: 16901
+ - uid: 32080
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-2.5
+ pos: 94.5,78.5
parent: 2
- - uid: 16902
+ - uid: 32377
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-1.5
+ pos: -104.5,55.5
parent: 2
- - uid: 16903
+ - uid: 33041
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,-0.5
+ pos: 68.5,72.5
parent: 2
- - uid: 16904
+ - uid: 34813
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,0.5
+ pos: -109.5,54.5
parent: 2
- - uid: 16905
+ - uid: 35914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,78.5
+ parent: 2
+ - uid: 36693
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,1.5
+ pos: 83.5,81.5
parent: 2
- - uid: 16906
+ - uid: 36812
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,2.5
+ pos: 70.5,72.5
parent: 2
- - uid: 16908
+ - uid: 38865
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,5.5
+ pos: -21.5,61.5
parent: 2
- - uid: 16909
+ - uid: 38866
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,6.5
+ pos: -20.5,61.5
parent: 2
- - uid: 16912
+- proto: ChairOfficeLight
+ entities:
+ - uid: 1095
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,9.5
+ pos: -15.5,-23.5
parent: 2
- - uid: 16913
+ - uid: 2511
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,10.5
+ pos: 45.5,50.5
parent: 2
- - uid: 16914
+ - uid: 2610
+ components:
+ - type: Transform
+ pos: -49.5,15.5
+ parent: 2
+ - uid: 5212
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,11.5
+ pos: -9.5,-23.5
parent: 2
- - uid: 16915
+ - uid: 5257
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 2
+ - uid: 5412
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,12.5
+ pos: 43.5,50.5
parent: 2
- - uid: 16916
+ - uid: 5416
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,13.5
+ pos: 41.5,50.5
parent: 2
- - uid: 16917
+ - uid: 5521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,47.5
+ parent: 2
+ - uid: 5531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,28.5
+ parent: 2
+ - uid: 5532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,28.5
+ parent: 2
+ - uid: 6523
+ components:
+ - type: Transform
+ pos: -9.5,-27.5
+ parent: 2
+ - uid: 6524
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,14.5
+ pos: -9.5,-30.5
parent: 2
- - uid: 16918
+ - uid: 6525
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,15.5
+ pos: -13.5,-23.5
parent: 2
- - uid: 16919
+ - uid: 6526
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-23.5
parent: 2
- - uid: 16920
+ - uid: 8405
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -42.5,16.5
+ pos: -68.5,13.5
parent: 2
- - uid: 16921
+ - uid: 8834
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,16.5
+ pos: -47.5,17.5
parent: 2
- - uid: 16922
+ - uid: 9151
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -40.5,16.5
+ pos: 49.5,47.5
parent: 2
- - uid: 16923
+ - uid: 9220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,50.5
parent: 2
- - uid: 16924
+ - uid: 14633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,19.5
+ pos: -50.5,15.5
parent: 2
- - uid: 16925
+ - uid: 15402
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.5,19.5
+ pos: -20.5,28.5
parent: 2
- - uid: 16953
+ - uid: 15744
components:
- type: Transform
- pos: -45.5,10.5
+ pos: -48.5,15.5
parent: 2
- - uid: 16954
+ - uid: 18435
components:
- type: Transform
- pos: -45.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,2.5
parent: 2
- - uid: 16955
+ - uid: 25210
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,42.5
parent: 2
- - uid: 16956
+- proto: ChairRitual
+ entities:
+ - uid: 11104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,-6.5
parent: 2
- - uid: 16957
+ - uid: 14356
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,11.5
+ pos: -74.5,-3.5
parent: 2
- - uid: 16963
+ - uid: 14357
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-4.5
parent: 2
- - uid: 16964
+ - uid: 15399
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,-5.5
parent: 2
- - uid: 16965
+ - uid: 17120
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,12.5
+ pos: -72.5,-5.5
parent: 2
- - uid: 16966
+ - uid: 17121
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,13.5
+ pos: -73.5,-6.5
parent: 2
- - uid: 16967
+ - uid: 17802
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,-4.5
parent: 2
- - uid: 16968
+- proto: ChairWood
+ entities:
+ - uid: 253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-14.5
parent: 2
- - uid: 16969
+ - uid: 561
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,16.5
+ pos: -4.5,-8.5
parent: 2
- - uid: 16970
+ - uid: 563
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,17.5
+ pos: -5.5,-8.5
parent: 2
- - uid: 16971
+ - uid: 573
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,18.5
+ pos: -3.5,-8.5
parent: 2
- - uid: 16972
+ - uid: 6083
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,19.5
+ pos: 66.5,8.5
parent: 2
- - uid: 16973
+ - uid: 6084
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,20.5
+ pos: 68.5,8.5
parent: 2
- - uid: 16974
+ - uid: 6607
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-19.5
parent: 2
- - uid: 16978
+ - uid: 6608
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,22.5
+ pos: -27.5,-20.5
parent: 2
- - uid: 16979
+ - uid: 6609
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,22.5
+ pos: -27.5,-21.5
parent: 2
- - uid: 16980
+ - uid: 11170
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,22.5
+ pos: -71.5,5.5
parent: 2
- - uid: 16981
+ - uid: 12402
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,22.5
+ pos: -45.5,0.5
parent: 2
- - uid: 16982
+ - uid: 13114
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,22.5
+ pos: -69.5,22.5
parent: 2
- - uid: 16983
+ - uid: 13133
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -71.5,22.5
parent: 2
- - uid: 16984
+ - uid: 15840
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,55.5
parent: 2
- - uid: 16985
+ - uid: 15841
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,54.5
parent: 2
- - uid: 16986
+ - uid: 15913
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,25.5
+ pos: -14.5,54.5
parent: 2
- - uid: 16987
+ - uid: 15969
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,26.5
+ pos: -13.5,58.5
parent: 2
- - uid: 16988
+ - uid: 15970
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,27.5
+ pos: -12.5,58.5
parent: 2
- - uid: 16989
+ - uid: 16000
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,28.5
+ pos: -12.5,55.5
parent: 2
- - uid: 16990
+ - uid: 16314
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,49.5
parent: 2
- - uid: 16992
+ - uid: 16316
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,48.5
parent: 2
- - uid: 16993
+ - uid: 22124
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,32.5
+ pos: -13.5,55.5
parent: 2
- - uid: 16994
+ - uid: 22125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,33.5
+ pos: -14.5,55.5
parent: 2
- - uid: 16995
+ - uid: 22126
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,34.5
+ pos: -12.5,54.5
parent: 2
- - uid: 16996
+ - uid: 22153
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,35.5
+ pos: -13.5,54.5
parent: 2
- - uid: 16997
+ - uid: 23904
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-2.5
parent: 2
- - uid: 16998
+ - uid: 26715
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -54.5,37.5
+ pos: 65.5,26.5
parent: 2
- - uid: 16999
+ - uid: 27239
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -75.5,4.5
parent: 2
- - uid: 17016
+ - uid: 27819
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,5.5
parent: 2
- - uid: 17017
+ - uid: 30334
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,32.5
+ pos: 29.5,21.5
parent: 2
- - uid: 17018
+ - uid: 30336
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,33.5
+ pos: 27.5,21.5
parent: 2
- - uid: 17019
+ - uid: 30337
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,34.5
+ pos: 28.5,21.5
parent: 2
- - uid: 17020
+ - uid: 30427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-13.5
parent: 2
- - uid: 17021
+ - uid: 30428
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-14.5
parent: 2
- - uid: 17022
+ - uid: 30602
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,37.5
+ pos: -45.5,-0.5
parent: 2
- - uid: 17033
+ - uid: 30608
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-39.5
+ pos: -45.5,-1.5
parent: 2
- - uid: 17036
+ - uid: 34068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,49.5
parent: 2
- - uid: 17037
+ - uid: 37198
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,8.5
+ pos: -11.5,54.5
parent: 2
- - uid: 17038
+ - uid: 37376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,48.5
parent: 2
- - uid: 17039
+- proto: CheapRollerBed
+ entities:
+ - uid: 24849
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,8.5
+ pos: -3.0215487,-2.1961217
parent: 2
- - uid: 17040
+- proto: CheckerBoard
+ entities:
+ - uid: 18504
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,8.5
+ pos: -52.463306,-3.3159504
parent: 2
- - uid: 17041
+- proto: chem_master
+ entities:
+ - uid: 1026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,8.5
+ pos: 14.5,-2.5
parent: 2
- - uid: 17042
+ - uid: 1656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,8.5
+ pos: 18.5,-1.5
parent: 2
- - uid: 17043
+- proto: ChemDispenser
+ entities:
+ - uid: 6376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,8.5
+ pos: 13.5,-2.5
parent: 2
- - uid: 17044
+ - uid: 12212
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,8.5
+ pos: 17.5,-1.5
parent: 2
- - uid: 17045
+- proto: ChemicalPayload
+ entities:
+ - uid: 36047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,8.5
+ pos: 31.597778,16.540527
parent: 2
- - uid: 17046
+- proto: ChemistryEmptyBottle01
+ entities:
+ - uid: 26714
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,8.5
+ pos: 65.3554,30.867294
parent: 2
- - uid: 17048
+ - uid: 36103
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,8.5
+ pos: 72.35279,84.812
parent: 2
- - uid: 17049
+ - uid: 36104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,8.5
+ pos: 72.66529,84.59325
parent: 2
- - uid: 17050
+ - uid: 36117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,8.5
+ pos: 74.337166,85.7495
parent: 2
- - uid: 17051
+- proto: ChemistryHotplate
+ entities:
+ - uid: 1433
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,8.5
+ pos: 20.5,-1.5
parent: 2
- - uid: 17052
+ - uid: 23084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,8.5
+ pos: 12.5,0.5
parent: 2
- - uid: 17053
+ - type: ItemPlacer
+ placedEntities:
+ - 2171
+ - type: PlaceableSurface
+ isPlaceable: False
+- proto: ChessBoard
+ entities:
+ - uid: 15104
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,8.5
+ pos: 26.503761,48.66876
parent: 2
- - uid: 17054
+ - uid: 18125
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,8.5
+ pos: -22.510897,53.567955
parent: 2
- - uid: 17055
+- proto: ChurchOrganInstrument
+ entities:
+ - uid: 22120
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,8.5
+ pos: 67.5,21.5
parent: 2
- - uid: 17056
+- proto: Cigar
+ entities:
+ - uid: 1614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,8.5
+ pos: -7.8759413,9.743548
parent: 2
- - uid: 17057
+ - uid: 10713
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,8.5
+ pos: -18.309834,7.6166625
parent: 2
- - uid: 17059
+ - uid: 16579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,8.5
+ pos: -19.46179,-8.42765
parent: 2
- - uid: 17060
+ - uid: 20202
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,8.5
+ pos: -19.352415,-8.5839
parent: 2
- - uid: 17061
+ - uid: 20601
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-2.5
+ pos: -19.39929,-8.497963
parent: 2
- - uid: 17062
+- proto: Cigarette
+ entities:
+ - uid: 22121
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,8.5
+ pos: 65.775085,30.909584
parent: 2
- - uid: 17063
+ - uid: 25623
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -75.5,8.5
+ pos: 47.137054,24.677122
parent: 2
- - uid: 17064
+ - uid: 31415
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -46.859715,-34.496925
parent: 2
- - uid: 17065
+- proto: CigaretteSpent
+ entities:
+ - uid: 805
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,8.5
+ pos: -11.890192,-41.501385
parent: 2
- - uid: 17066
+ - uid: 4323
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -78.5,8.5
+ pos: 65.89948,30.141405
parent: 2
- - uid: 17067
+ - uid: 4324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 65.94636,29.871874
parent: 2
- - uid: 17068
+ - uid: 4329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,8.5
+ pos: 46.949554,24.829466
parent: 2
- - uid: 17069
+ - uid: 4330
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,8.5
+ pos: 65.5362,30.84453
parent: 2
- - uid: 17070
+ - uid: 7717
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,8.5
+ pos: 28.735868,25.78203
parent: 2
- - uid: 17071
+ - uid: 7722
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 65.969795,30.012499
parent: 2
- - uid: 17074
+ - uid: 9091
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -6.266629,-41.046394
parent: 2
- - uid: 17075
+ - uid: 10651
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,8.5
+ pos: -12.300348,-42.263103
parent: 2
- - uid: 17076
+ - uid: 10652
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,8.5
+ pos: -7.308161,-41.677166
parent: 2
- - uid: 17077
+ - uid: 10654
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -89.5,8.5
+ pos: -12.218317,-40.868572
parent: 2
- - uid: 17078
+ - uid: 20299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,8.5
+ pos: -8.280817,-42.509197
parent: 2
- - uid: 17079
+ - uid: 20301
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,8.5
+ pos: -9.491023,-44.96478
parent: 2
- - uid: 17080
+ - uid: 20302
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,8.5
+ pos: -11.225398,-45.605404
parent: 2
- - uid: 17081
+ - uid: 20303
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,8.5
+ pos: -11.756648,-45.49603
parent: 2
- - uid: 17082
+ - uid: 20304
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -12.136286,-41.72404
parent: 2
- - uid: 17090
+ - uid: 21976
components:
- type: Transform
- pos: -84.5,-1.5
+ pos: -12.124567,-41.337322
parent: 2
- - uid: 17091
+ - uid: 22063
components:
- type: Transform
- pos: -84.5,-0.5
+ pos: 29.134306,25.571093
parent: 2
- - uid: 17092
+ - uid: 22396
components:
- type: Transform
- pos: -84.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -6.516629,-41.202644
parent: 2
- - uid: 17093
+ - uid: 22718
components:
- type: Transform
- pos: -84.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -6.3994417,-41.108894
parent: 2
- - uid: 17094
+ - uid: 23337
components:
- type: Transform
- pos: -84.5,2.5
+ pos: 33.164318,-4.454046
parent: 2
- - uid: 17095
+ - uid: 25399
components:
- type: Transform
- pos: -84.5,3.5
+ pos: 46.844086,24.911497
parent: 2
- - uid: 17096
+ - uid: 26706
components:
- type: Transform
- pos: -84.5,4.5
+ pos: 33.89088,-5.5087333
parent: 2
- - uid: 17097
+ - uid: 27251
components:
- type: Transform
- pos: -84.5,5.5
+ pos: 33.773693,-5.7899833
parent: 2
- - uid: 17098
+ - uid: 27316
components:
- type: Transform
- pos: -84.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 14.846089,11.573013
parent: 2
- - uid: 17099
+ - uid: 27343
components:
- type: Transform
- pos: -84.5,7.5
+ pos: 14.478902,12.479263
parent: 2
- - uid: 17100
+ - uid: 27382
components:
- type: Transform
- pos: -84.5,10.5
+ pos: 14.838277,11.971451
parent: 2
- - uid: 17101
+ - uid: 29178
components:
- type: Transform
- pos: -84.5,11.5
+ pos: 29.251493,25.629686
parent: 2
- - uid: 17102
+ - uid: 31241
components:
- type: Transform
- pos: -84.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -47.12534,-34.090675
parent: 2
- - uid: 17103
+ - uid: 31272
components:
- type: Transform
- pos: -84.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -46.789402,-34.535988
parent: 2
- - uid: 17104
+ - uid: 31273
components:
- type: Transform
- pos: -84.5,14.5
+ pos: -46.578465,-34.4813
parent: 2
- - uid: 17105
+ - uid: 31282
components:
- type: Transform
- pos: -84.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -44.922215,-34.207863
parent: 2
- - uid: 17106
+ - uid: 31283
components:
- type: Transform
- pos: -84.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -48.50034,-34.207863
parent: 2
- - uid: 17107
+ - uid: 31331
components:
- type: Transform
- pos: -84.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -48.351902,-34.207863
parent: 2
- - uid: 17108
+ - uid: 31332
components:
- type: Transform
- pos: -84.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -48.422215,-34.2938
parent: 2
- - uid: 17109
+ - uid: 31333
+ components:
+ - type: Transform
+ pos: -44.773777,-31.489113
+ parent: 2
+ - uid: 31334
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -85.5,19.5
+ pos: -43.015965,-28.332863
parent: 2
- - uid: 17110
+ - uid: 31335
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,7.5
+ pos: -42.945652,-28.653175
parent: 2
- - uid: 17111
+ - uid: 31336
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -41.539402,-24.434425
parent: 2
- - uid: 17134
+ - uid: 31337
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -41.461277,-24.348488
parent: 2
- - uid: 17135
+ - uid: 31338
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -35.320652,-35.739113
parent: 2
- - uid: 17136
+ - uid: 31339
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,52.5
+ pos: -35.180027,-35.7313
parent: 2
- - uid: 17137
+ - uid: 31340
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,52.5
+ pos: -48.117527,-35.6063
parent: 2
- - uid: 17138
+ - uid: 31341
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,52.5
+ pos: -47.930027,-35.754738
parent: 2
- - uid: 17139
+ - uid: 31342
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,53.5
+ pos: -48.101902,-35.848488
parent: 2
- - uid: 17140
+ - uid: 31400
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -48.351902,-35.9188
parent: 2
- - uid: 17141
+ - uid: 32051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,55.5
+ pos: -36.83798,-34.338604
parent: 2
- - uid: 17142
+ - uid: 34835
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,56.5
+ pos: 94.860054,65.51938
parent: 2
- - uid: 17143
+ - uid: 34836
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 94.97724,65.15219
parent: 2
- - uid: 17144
+ - uid: 36627
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 101.08202,60.90204
parent: 2
- - uid: 17145
+ - uid: 36628
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,59.5
+ pos: 101.16796,60.675476
parent: 2
- - uid: 17146
+ - uid: 36629
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,60.5
+ pos: 100.01171,58.68329
parent: 2
- - uid: 17148
+ - uid: 36630
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 99.95702,58.65204
parent: 2
- - uid: 17149
+ - uid: 36631
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 99.839836,58.55829
parent: 2
- - uid: 17150
+ - uid: 36632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,50.5
+ pos: 98.48827,57.18329
parent: 2
- - uid: 17151
+ - uid: 36633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,49.5
+ pos: 98.871086,57.37079
parent: 2
- - uid: 17152
+ - uid: 36634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,48.5
+ pos: 95.59765,58.78485
parent: 2
- - uid: 17153
+ - uid: 36635
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,47.5
+ pos: 103.08202,58.30829
parent: 2
- - uid: 17154
+ - uid: 37586
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,46.5
+ pos: -44.72388,-24.33584
parent: 2
- - uid: 17155
+ - uid: 37587
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,45.5
+ pos: -44.34107,-24.820215
parent: 2
- - uid: 17156
+ - uid: 37588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,44.5
+ pos: -44.41138,-25.015528
parent: 2
- - uid: 17157
+ - uid: 37589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,43.5
+ pos: -40.114506,-25.632715
parent: 2
- - uid: 17158
+ - uid: 38173
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,42.5
+ pos: 2.9454837,5.7208405
parent: 2
- - uid: 17159
+ - uid: 38179
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,41.5
+ pos: 2.8439212,5.947403
parent: 2
- - uid: 17160
+ - uid: 38181
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,40.5
+ pos: 3.2892337,5.8458405
parent: 2
- - uid: 17161
+- proto: CigarGoldCase
+ entities:
+ - uid: 15264
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,38.5
+ pos: 12.139951,48.675068
parent: 2
- - uid: 17162
+- proto: CigarSpent
+ entities:
+ - uid: 27385
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,37.5
+ pos: 34.329052,-4.3861756
parent: 2
- - uid: 17163
+ - uid: 31237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,36.5
+ pos: -46.867527,-34.426613
parent: 2
- - uid: 17164
+ - uid: 31238
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,35.5
+ pos: -43.430027,-31.426613
parent: 2
- - uid: 17165
+ - uid: 31240
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,34.5
+ pos: -45.226902,-34.004738
parent: 2
- - uid: 17166
+ - uid: 34416
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,33.5
+ pos: 94.56318,65.7327
parent: 2
- - uid: 17168
+ - uid: 34834
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,31.5
+ pos: 93.75068,77.860245
parent: 2
- - uid: 17169
+ - uid: 36613
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,30.5
+ pos: 103.06098,60.91201
parent: 2
- - uid: 17170
+ - uid: 36614
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,29.5
+ pos: 100.49848,61.50576
parent: 2
- - uid: 17171
+ - uid: 37585
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,28.5
+ pos: -41.762943,-24.515528
parent: 2
- - uid: 17172
+- proto: CircuitImprinter
+ entities:
+ - uid: 10233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,27.5
+ pos: 29.5,30.5
parent: 2
- - uid: 17173
+- proto: CleanerDispenser
+ entities:
+ - uid: 37706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,9.5
parent: 2
- - uid: 17174
+- proto: CloningConsoleComputerCircuitboard
+ entities:
+ - uid: 7432
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,25.5
+ pos: -51.525253,26.717798
parent: 2
- - uid: 17175
+- proto: CloningPodMachineCircuitboard
+ entities:
+ - uid: 7428
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,24.5
+ pos: -51.400253,26.577173
parent: 2
- - uid: 17176
+- proto: ClosetBombFilled
+ entities:
+ - uid: 3816
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,23.5
+ pos: -8.5,37.5
parent: 2
- - uid: 17177
+ - uid: 4781
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,22.5
+ pos: 6.5,-24.5
parent: 2
- - uid: 17178
+ - uid: 11966
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,21.5
+ pos: 6.5,-25.5
parent: 2
- - uid: 17179
+ - uid: 15793
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,18.5
+ pos: -4.5,37.5
parent: 2
- - uid: 17180
+ - uid: 19734
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,17.5
+ pos: 4.5,66.5
parent: 2
- - uid: 17181
+ - uid: 27794
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,16.5
+ pos: 46.5,46.5
parent: 2
- - uid: 17182
+ - uid: 29716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,15.5
+ pos: 5.5,66.5
parent: 2
- - uid: 17183
+- proto: ClosetChefFilled
+ entities:
+ - uid: 12433
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,14.5
+ pos: -55.5,-18.5
parent: 2
- - uid: 17184
+ - uid: 30615
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,13.5
+ pos: -54.5,-18.5
parent: 2
- - uid: 17185
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 37700
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,12.5
+ pos: -34.5,8.5
parent: 2
- - uid: 17186
+- proto: ClosetL3
+ entities:
+ - uid: 8252
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,11.5
+ pos: 56.5,87.5
parent: 2
- - uid: 17187
+ - uid: 8253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,10.5
+ pos: 57.5,87.5
parent: 2
- - uid: 17188
+- proto: ClosetL3Filled
+ entities:
+ - uid: 8247
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,9.5
+ pos: 58.5,87.5
parent: 2
- - uid: 17189
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 37696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,8.5
+ pos: -35.5,8.5
parent: 2
- - uid: 17190
+- proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 4423
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,7.5
+ pos: 40.5,26.5
parent: 2
- - uid: 17191
+- proto: ClosetL3VirologyFilled
+ entities:
+ - uid: 7271
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,6.5
+ pos: -8.5,5.5
parent: 2
- - uid: 17192
+ - uid: 7273
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,5.5
+ pos: -5.5,5.5
parent: 2
- - uid: 17193
+- proto: ClosetMaintenance
+ entities:
+ - uid: 35700
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,4.5
+ pos: 54.5,85.5
parent: 2
- - uid: 17202
+ - uid: 35702
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,22.5
+ pos: 54.5,83.5
parent: 2
- - uid: 17203
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 35701
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,23.5
+ pos: 54.5,84.5
parent: 2
- - uid: 17204
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 54
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,25.5
+ pos: 50.5,48.5
parent: 2
- - uid: 17205
+ - uid: 4031
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,26.5
+ pos: 40.5,23.5
parent: 2
- - uid: 17206
+ - uid: 29538
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,27.5
+ pos: 86.5,-10.5
parent: 2
- - uid: 17207
+- proto: ClosetSteelBase
+ entities:
+ - uid: 33677
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,28.5
+ pos: -35.5,63.5
parent: 2
- - uid: 17208
+- proto: ClosetToolFilled
+ entities:
+ - uid: 18773
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,29.5
+ pos: 87.5,-22.5
parent: 2
- - uid: 17209
+ - uid: 18776
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,29.5
+ pos: 86.5,-22.5
parent: 2
- - uid: 17210
+ - uid: 34686
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,29.5
+ pos: 74.5,-8.5
parent: 2
- - uid: 17211
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 119
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,29.5
+ pos: -3.5,-49.5
parent: 2
- - uid: 17212
+ - uid: 1864
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,72.5
parent: 2
- - uid: 17213
+ - uid: 3740
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,29.5
+ pos: -3.5,30.5
parent: 2
- - uid: 17214
+ - uid: 4483
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,29.5
+ pos: 71.5,28.5
parent: 2
- - uid: 17215
+ - uid: 4633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,29.5
+ pos: 51.5,45.5
parent: 2
- - uid: 17216
+ - uid: 4807
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,29.5
+ pos: 59.5,34.5
parent: 2
- - uid: 17217
+ - uid: 4938
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,29.5
+ pos: -2.5,-26.5
parent: 2
- - uid: 17218
+ - uid: 5749
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,29.5
+ pos: 5.5,34.5
parent: 2
- - uid: 17219
+ - uid: 5897
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,29.5
+ pos: -75.5,25.5
parent: 2
- - uid: 17220
+ - uid: 5899
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,29.5
+ pos: -66.5,5.5
parent: 2
- - uid: 17221
+ - uid: 6133
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,29.5
+ pos: 42.5,-25.5
parent: 2
- - uid: 17222
+ - uid: 6142
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-20.5
parent: 2
- - uid: 17223
+ - uid: 6148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,22.5
parent: 2
- - uid: 17224
+ - uid: 6152
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,29.5
+ pos: 22.5,24.5
parent: 2
- - uid: 17225
+ - uid: 6914
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-18.5
parent: 2
- - uid: 17226
+ - uid: 7116
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.5,29.5
+ pos: -8.5,-33.5
parent: 2
- - uid: 17227
+ - uid: 7313
components:
- type: Transform
- pos: -35.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,20.5
parent: 2
- - uid: 17228
+ - uid: 8298
components:
- type: Transform
- pos: -35.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-34.5
parent: 2
- - uid: 17229
+ - uid: 9227
components:
- type: Transform
- pos: -35.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,24.5
parent: 2
- - uid: 17230
+ - uid: 14977
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-18.5
parent: 2
- - uid: 17231
+ - uid: 14985
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,24.5
+ pos: 33.5,45.5
parent: 2
- - uid: 17232
+ - uid: 15263
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,50.5
parent: 2
- - uid: 17233
+ - uid: 16034
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,22.5
+ pos: -5.5,72.5
parent: 2
- - uid: 17234
+ - uid: 16039
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,70.5
parent: 2
- - uid: 17237
+ - uid: 18327
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,29.5
+ pos: -1.5,-19.5
parent: 2
- - uid: 17238
+ - uid: 19884
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,29.5
+ pos: -39.5,-36.5
parent: 2
- - uid: 17239
+ - uid: 19903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-0.5
parent: 2
- - uid: 17241
+ - uid: 19928
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,29.5
+ pos: -60.5,-18.5
parent: 2
- - uid: 17242
+ - uid: 19937
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,29.5
+ pos: 66.5,-26.5
parent: 2
- - uid: 17249
+ - uid: 19943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,30.5
+ pos: -45.5,71.5
parent: 2
- - uid: 17250
+ - uid: 20162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,38.5
parent: 2
- - uid: 17251
+ - uid: 26458
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,5.5
parent: 2
- - uid: 17252
+ - uid: 28371
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,3.5
parent: 2
- - uid: 17255
+ - uid: 28419
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-8.5
parent: 2
- - uid: 17256
+ - uid: 28506
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,38.5
+ pos: 38.5,12.5
parent: 2
- - uid: 17257
+ - uid: 28509
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,15.5
parent: 2
- - uid: 17258
+ - uid: 30230
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,40.5
+ pos: -2.5,-49.5
parent: 2
- - uid: 17263
+ - uid: 33628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,52.5
parent: 2
- - uid: 17264
+ - uid: 38891
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,39.5
+ pos: 11.5,-37.5
parent: 2
- - uid: 17265
+- proto: ClosetWallFireFilledRandom
+ entities:
+ - uid: 4082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,31.5
parent: 2
- - uid: 17266
+ - uid: 4501
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,37.5
+ pos: 70.5,28.5
parent: 2
- - uid: 17267
+ - uid: 4505
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,36.5
+ pos: 60.5,34.5
parent: 2
- - uid: 17272
+ - uid: 4942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,23.5
parent: 2
- - uid: 17273
+ - uid: 5765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,23.5
parent: 2
- - uid: 17274
+ - uid: 5901
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-19.5
parent: 2
- - uid: 17275
+ - uid: 5975
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,49.5
+ pos: -8.5,-32.5
parent: 2
- - uid: 17276
+ - uid: 6128
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 14.5,49.5
+ pos: -34.5,25.5
parent: 2
- - uid: 17277
+ - uid: 6131
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,48.5
+ pos: -46.5,19.5
parent: 2
- - uid: 17278
+ - uid: 6132
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,48.5
+ pos: 41.5,-25.5
parent: 2
- - uid: 17279
+ - uid: 6143
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,48.5
+ pos: -3.5,-26.5
parent: 2
- - uid: 17280
+ - uid: 6150
components:
- type: Transform
- pos: 19.5,49.5
+ pos: 4.5,34.5
parent: 2
- - uid: 17281
+ - uid: 6307
components:
- type: Transform
- pos: 19.5,50.5
+ pos: 52.5,45.5
parent: 2
- - uid: 17282
+ - uid: 6759
components:
- type: Transform
- pos: 19.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,0.5
parent: 2
- - uid: 17283
+ - uid: 6887
components:
- type: Transform
- pos: 19.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -66.5,4.5
parent: 2
- - uid: 17284
+ - uid: 7624
components:
- type: Transform
- pos: 19.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-21.5
parent: 2
- - uid: 17285
+ - uid: 7626
components:
- type: Transform
- pos: 19.5,45.5
+ pos: 65.5,-26.5
parent: 2
- - uid: 17286
+ - uid: 8301
components:
- type: Transform
- pos: 19.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-33.5
parent: 2
- - uid: 17287
+ - uid: 9570
components:
- type: Transform
- pos: 19.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,36.5
parent: 2
- - uid: 17288
+ - uid: 14978
components:
- type: Transform
- pos: 19.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-19.5
parent: 2
- - uid: 17289
+ - uid: 14984
components:
- type: Transform
- pos: 19.5,41.5
+ pos: 34.5,45.5
parent: 2
- - uid: 17290
+ - uid: 15259
components:
- type: Transform
- pos: 19.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,50.5
parent: 2
- - uid: 17291
+ - uid: 16033
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,39.5
+ pos: 3.5,71.5
parent: 2
- - uid: 17292
+ - uid: 16040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,72.5
parent: 2
- - uid: 17293
+ - uid: 16055
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,72.5
parent: 2
- - uid: 17294
+ - uid: 19885
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,39.5
+ pos: -40.5,-36.5
parent: 2
- - uid: 17295
+ - uid: 19889
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,14.5
parent: 2
- - uid: 17296
+ - uid: 19904
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,0.5
parent: 2
- - uid: 17297
+ - uid: 19925
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,39.5
+ pos: -60.5,-17.5
parent: 2
- - uid: 17298
+ - uid: 19932
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,39.5
+ pos: -76.5,25.5
parent: 2
- - uid: 17299
+ - uid: 19941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,39.5
+ pos: -46.5,71.5
parent: 2
- - uid: 17300
+ - uid: 20002
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,39.5
+ pos: -35.5,39.5
parent: 2
- - uid: 17301
+ - uid: 21053
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,39.5
+ pos: 40.5,-9.5
parent: 2
- - uid: 17302
+ - uid: 23122
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,39.5
+ pos: 6.5,-49.5
parent: 2
- - uid: 17303
+ - uid: 26847
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,39.5
+ pos: 39.5,12.5
parent: 2
- - uid: 17304
+ - uid: 28502
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,39.5
+ pos: 55.5,4.5
parent: 2
- - uid: 17316
+ - uid: 28505
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,20.5
+ pos: -2.5,-19.5
parent: 2
- - uid: 17320
+ - uid: 28510
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 38.5,46.5
+ pos: -27.5,4.5
parent: 2
- - uid: 17321
+ - uid: 30229
components:
- type: Transform
- pos: 39.5,45.5
+ pos: 5.5,-49.5
parent: 2
- - uid: 17322
+ - uid: 33629
components:
- type: Transform
- pos: 39.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 106.5,52.5
parent: 2
- - uid: 17323
+ - uid: 38892
components:
- type: Transform
- pos: 39.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-38.5
parent: 2
- - uid: 17324
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 5103
components:
- type: Transform
- pos: 39.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-7.5
parent: 2
- - uid: 17325
+ - uid: 6147
components:
- type: Transform
- pos: 39.5,41.5
+ pos: 6.5,34.5
parent: 2
- - uid: 17326
+ - uid: 7628
components:
- type: Transform
- pos: 39.5,40.5
+ pos: 64.5,-26.5
parent: 2
- - uid: 17327
+ - uid: 8769
components:
- type: Transform
- pos: 39.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,21.5
parent: 2
- - uid: 17328
+ - uid: 11982
components:
- type: Transform
- pos: 39.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-27.5
parent: 2
- - uid: 17329
+ - uid: 12951
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-1.5
parent: 2
- - uid: 17330
+ - uid: 14968
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,37.5
+ pos: -4.5,-26.5
parent: 2
- - uid: 17331
+ - uid: 14981
components:
- type: Transform
- pos: 39.5,36.5
+ pos: 35.5,45.5
parent: 2
- - uid: 17332
+ - uid: 19883
components:
- type: Transform
- pos: 39.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-21.5
parent: 2
- - uid: 17334
+ - uid: 19886
components:
- type: Transform
- pos: 39.5,33.5
+ pos: -41.5,-36.5
parent: 2
- - uid: 17335
+ - uid: 19929
components:
- type: Transform
- pos: 39.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-16.5
parent: 2
- - uid: 17336
+ - uid: 19934
components:
- type: Transform
- pos: 39.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,21.5
parent: 2
- - uid: 17337
+ - uid: 19935
components:
- type: Transform
- pos: 39.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,31.5
parent: 2
- - uid: 17338
+ - uid: 19976
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,29.5
+ pos: -44.5,71.5
parent: 2
- - uid: 17339
+ - uid: 27693
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-26.5
parent: 2
- - uid: 17340
+ - uid: 28398
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,8.5
parent: 2
- - uid: 17341
+ - uid: 28503
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 35.5,29.5
+ pos: -27.5,0.5
parent: 2
- - uid: 17342
+ - uid: 32093
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-25.5
parent: 2
- - uid: 17343
+ - uid: 33636
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 105.5,52.5
parent: 2
- - uid: 17344
+- proto: ClothingBackpackDuffelSurgeryFilled
+ entities:
+ - uid: 5327
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,29.5
+ pos: 57.44354,56.71585
parent: 2
- - uid: 17345
+ - uid: 23418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-39.5
+ pos: -17.33978,-0.18008184
parent: 2
- - uid: 17346
+ - uid: 36896
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,27.5
+ pos: 31.541313,13.0964775
parent: 2
- - uid: 17347
+- proto: ClothingBackpackSatchelLeather
+ entities:
+ - uid: 37630
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,25.5
+ pos: 106.75253,54.815357
parent: 2
- - uid: 17348
+- proto: ClothingBeltMartialBlack
+ entities:
+ - uid: 6300
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,24.5
+ pos: 43.650806,-21.489529
parent: 2
- - uid: 17349
+ - uid: 6850
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,23.5
+ pos: 44.472347,-22.625256
parent: 2
- - uid: 17350
+ - uid: 13393
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,22.5
+ pos: 43.93987,-21.552029
parent: 2
- - uid: 17351
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 5313
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,21.5
+ pos: 49.696335,44.70858
parent: 2
- - uid: 17358
+- proto: ClothingCostumeArcDress
+ entities:
+ - uid: 18045
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,26.5
+ pos: -36.03906,-20.560192
parent: 2
- - uid: 17359
+- proto: ClothingEyesGlasses
+ entities:
+ - uid: 1634
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,26.5
+ pos: -3.9242487,16.828148
parent: 2
- - uid: 17360
+ - uid: 14265
components:
- type: Transform
- pos: 53.5,25.5
+ pos: 12.774038,48.750267
parent: 2
- - uid: 17361
+- proto: ClothingEyesGlassesCheapSunglasses
+ entities:
+ - uid: 37854
components:
- type: Transform
- pos: 53.5,24.5
+ pos: -5.596606,21.436089
parent: 2
- - uid: 17363
+ - uid: 37855
components:
- type: Transform
- pos: 53.5,22.5
+ pos: 3.4522948,-24.599058
parent: 2
- - uid: 17364
+ - uid: 37979
components:
- type: Transform
- pos: 53.5,21.5
+ pos: -13.540376,-32.6514
parent: 2
- - uid: 17365
+ - uid: 37980
components:
- type: Transform
- pos: 53.5,20.5
+ pos: -9.497308,-28.619022
parent: 2
- - uid: 17366
+ - uid: 37981
components:
- type: Transform
- pos: 53.5,19.5
+ pos: -9.44262,-28.79871
parent: 2
- - uid: 17367
+- proto: ClothingEyesGlassesChemical
+ entities:
+ - uid: 3997
components:
- type: Transform
- pos: 53.5,18.5
+ pos: 12.283846,0.38149965
parent: 2
- - uid: 17368
+ - uid: 35800
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,17.5
+ pos: 20.811102,-1.3168378
parent: 2
- - uid: 17369
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 5693
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,17.5
+ pos: 34.45585,46.661957
parent: 2
- - uid: 17370
+- proto: ClothingEyesGlassesSecurity
+ entities:
+ - uid: 16486
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,17.5
+ pos: -18.411446,50.03854
parent: 2
- - uid: 17373
+ - uid: 22666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,16.5
+ pos: -8.562149,33.213764
parent: 2
- - uid: 17376
+- proto: ClothingEyesHudBeer
+ entities:
+ - uid: 37576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-30.5
+ pos: -35.49732,-28.093653
parent: 2
- - uid: 17388
+- proto: ClothingEyesHudMedical
+ entities:
+ - uid: 2056
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-20.5
+ pos: -11.442047,-10.684356
parent: 2
- - uid: 17389
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 3466
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-20.5
+ pos: 44.399025,-21.583233
parent: 2
- - uid: 17390
+- proto: ClothingHandsGlovesBoxingGreen
+ entities:
+ - uid: 3469
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-19.5
+ pos: 44.570133,-21.853838
parent: 2
- - uid: 17391
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 3468
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-24.5
+ pos: 44.41766,-21.195568
parent: 2
- - uid: 17392
+- proto: ClothingHandsGlovesBoxingYellow
+ entities:
+ - uid: 3470
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-24.5
+ pos: 44.675602,-24.18587
parent: 2
- - uid: 17393
+ - uid: 3471
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-24.5
+ pos: 44.675472,-21.312756
parent: 2
- - uid: 17394
+- proto: ClothingHandsGlovesColorYellow
+ entities:
+ - uid: 6069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-24.5
+ pos: 16.45286,28.010605
parent: 2
- - uid: 17395
+ - uid: 6070
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-25.5
+ pos: 21.503641,28.045761
parent: 2
- - uid: 17396
+- proto: ClothingHandsGlovesColorYellowUnsulated
+ entities:
+ - uid: 37664
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-25.5
+ pos: 96.189514,77.03694
parent: 2
- - uid: 17402
+- proto: ClothingHandsGlovesLatex
+ entities:
+ - uid: 2125
components:
- type: Transform
- pos: 35.5,-16.5
+ pos: 30.806938,13.494915
parent: 2
- - uid: 17403
+ - uid: 2127
components:
- type: Transform
- pos: 35.5,-17.5
+ pos: 5.621349,4.536171
parent: 2
- - uid: 17404
+ - uid: 2128
components:
- type: Transform
- pos: 35.5,-18.5
+ pos: -8.493291,10.130974
parent: 2
- - uid: 17405
+ - uid: 2130
components:
- type: Transform
- pos: 35.5,-19.5
+ pos: -17.535467,-0.5416125
parent: 2
- - uid: 17406
+ - uid: 2131
components:
- type: Transform
- pos: 35.5,-20.5
+ pos: -22.459894,9.539465
parent: 2
- - uid: 17407
+ - uid: 2132
components:
- type: Transform
- pos: 35.5,-21.5
+ pos: -6.516262,-11.391825
parent: 2
- - uid: 17408
+ - uid: 13039
components:
- type: Transform
- pos: 35.5,-22.5
+ pos: 12.957554,-11.518689
parent: 2
- - uid: 17409
+ - uid: 22258
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-23.5
+ pos: -5.4712806,7.1319513
parent: 2
- - uid: 17410
+- proto: ClothingHandsGlovesLeather
+ entities:
+ - uid: 18445
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-23.5
+ pos: -62.48618,2.599772
parent: 2
- - uid: 17411
+ - uid: 18483
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-23.5
+ pos: -62.251804,2.349772
parent: 2
- - uid: 17412
+- proto: ClothingHandsGlovesNitrile
+ entities:
+ - uid: 2134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-23.5
+ pos: -28.387495,9.555864
parent: 2
- - uid: 17413
+- proto: ClothingHeadBandBotany
+ entities:
+ - uid: 18484
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-23.5
+ pos: -62.51743,1.8810221
parent: 2
- - uid: 17415
+- proto: ClothingHeadCourier
+ entities:
+ - uid: 34975
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-26.5
+ pos: -7.880703,-25.330961
parent: 2
- - uid: 17416
+- proto: ClothingHeadHatBeret
+ entities:
+ - uid: 2143
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-25.5
+ pos: -28.462244,16.706312
parent: 2
- - uid: 17417
+ - uid: 36956
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-24.5
+ pos: -14.57061,36.81366
parent: 2
- - uid: 17418
+ - uid: 36957
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-23.5
+ pos: -9.676958,28.772549
parent: 2
- - uid: 17419
+- proto: ClothingHeadHatBeretBrigmedic
+ entities:
+ - uid: 2144
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-22.5
+ pos: -22.649956,9.844152
parent: 2
- - uid: 17420
+- proto: ClothingHeadHatBeretRND
+ entities:
+ - uid: 20267
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-21.5
+ pos: 29.559177,30.66082
parent: 2
- - uid: 17421
+ - uid: 30490
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-20.5
+ pos: 30.479282,26.829016
parent: 2
- - uid: 17422
+ - uid: 30491
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-19.5
+ pos: 26.401157,28.860266
parent: 2
- - uid: 17423
+ - uid: 30767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-18.5
+ pos: 32.541782,27.993078
parent: 2
- - uid: 17424
+ - uid: 30769
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-17.5
+ pos: 37.565693,30.91917
parent: 2
- - uid: 17425
+ - uid: 30770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-16.5
+ pos: 36.47723,28.989483
parent: 2
- - uid: 17426
+ - uid: 30771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-15.5
+ pos: 46.59096,30.801983
parent: 2
- - uid: 17427
+- proto: ClothingHeadHatBeretSecurity
+ entities:
+ - uid: 22660
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-14.5
+ pos: -14.398735,36.633972
parent: 2
- - uid: 17428
+- proto: ClothingHeadHatBowlerHat
+ entities:
+ - uid: 18110
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-13.5
+ pos: -37.774174,-20.383495
parent: 2
- - uid: 17429
+- proto: ClothingHeadHatCardborg
+ entities:
+ - uid: 6153
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-12.5
+ pos: 49.43753,44.646046
parent: 2
- - uid: 17430
+- proto: ClothingHeadHatCowboyBrown
+ entities:
+ - uid: 4656
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-11.5
+ pos: 21.492971,-36.278564
parent: 2
- - uid: 17431
+- proto: ClothingHeadHatFedoraBlack
+ entities:
+ - uid: 38922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-10.5
+ pos: 3.314615,54.66538
parent: 2
- - uid: 17432
+- proto: ClothingHeadHatFedoraChoc
+ entities:
+ - uid: 38923
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-9.5
+ pos: 3.658365,54.493504
parent: 2
- - uid: 17433
+- proto: ClothingHeadHatFezMantis
+ entities:
+ - uid: 20026
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-8.5
+ pos: 49.367798,34.06218
parent: 2
- - uid: 17434
+- proto: ClothingHeadHatHoodBioScientist
+ entities:
+ - uid: 36499
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-7.5
+ pos: 57.284966,84.9144
parent: 2
- - uid: 17435
+- proto: ClothingHeadHatPumpkin
+ entities:
+ - uid: 30326
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-6.5
+ pos: -6.5801415,-7.241027
parent: 2
- - uid: 17436
+- proto: ClothingHeadHatPwig
+ entities:
+ - uid: 23671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-13.5
+ pos: -13.51554,53.61638
parent: 2
- - uid: 17437
+ - uid: 25047
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-13.5
+ pos: -13.39054,53.53044
parent: 2
- - uid: 17438
+- proto: ClothingHeadHatSecsoft
+ entities:
+ - uid: 22661
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-13.5
+ pos: -11.512896,30.577236
parent: 2
- - uid: 17439
+- proto: ClothingHeadHatUshanka
+ entities:
+ - uid: 36606
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-13.5
+ pos: 93.615585,77.959274
parent: 2
- - uid: 17440
+ - uid: 37665
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-13.5
+ pos: 93.658264,78.732254
parent: 2
- - uid: 17441
+- proto: ClothingHeadHatWelding
+ entities:
+ - uid: 7285
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-13.5
+ pos: -5.2692957,-0.6693927
parent: 2
- - uid: 17442
+- proto: ClothingHeadHelmetBone
+ entities:
+ - uid: 4790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,-13.5
+ pos: 87.56079,41.157158
parent: 2
- - uid: 17443
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 21799
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,-13.5
+ pos: -23.395428,42.7274
parent: 2
- - uid: 17444
+ - uid: 21800
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,-13.5
+ pos: -23.411053,41.4149
parent: 2
- - uid: 17445
+ - uid: 21803
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-13.5
+ pos: -23.55949,41.578964
parent: 2
- - uid: 17446
+- proto: ClothingHeadNurseHat
+ entities:
+ - uid: 2138
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-13.5
+ pos: -16.368912,16.692177
parent: 2
- - uid: 17447
+ - uid: 2139
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-13.5
+ pos: 5.0510364,4.6377335
parent: 2
- - uid: 17448
+ - uid: 2141
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-13.5
+ pos: 19.38141,2.515604
parent: 2
- - uid: 17451
+- proto: ClothingHeadPrisonGuard
+ entities:
+ - uid: 27444
components:
- type: Transform
- pos: 72.5,-0.5
+ pos: -19.29329,60.96895
parent: 2
- - uid: 17452
+ - uid: 28028
components:
- type: Transform
- pos: 72.5,-1.5
+ pos: -19.63704,61.03926
parent: 2
- - uid: 17453
+ - uid: 36830
components:
- type: Transform
- pos: 72.5,-2.5
+ pos: 66.35034,72.10333
parent: 2
- - uid: 17454
+- proto: ClothingMaskClown
+ entities:
+ - uid: 19427
components:
- type: Transform
- pos: 72.5,-3.5
+ pos: -77.690346,1.3026085
parent: 2
- - uid: 17456
+ - uid: 21094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-4.5
+ pos: -78.28,-2.5353103
parent: 2
- - uid: 17457
+- proto: ClothingMaskGas
+ entities:
+ - uid: 6061
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-4.5
+ pos: 16.382547,26.569199
parent: 2
- - uid: 17458
+ - uid: 6062
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-4.5
+ pos: 16.64036,26.358261
parent: 2
- - uid: 17459
+ - uid: 6063
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-4.5
+ pos: 21.386454,26.733261
parent: 2
- - uid: 17460
+ - uid: 6064
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-4.5
+ pos: 21.679422,26.510605
parent: 2
- - uid: 17461
+- proto: ClothingMaskGasSwat
+ entities:
+ - uid: 30890
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-4.5
+ pos: -23.813116,41.6649
parent: 2
- - uid: 17462
+ - uid: 30891
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-4.5
+ pos: -23.680304,41.453964
parent: 2
- - uid: 17463
+ - uid: 30900
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-4.5
+ pos: -23.352179,42.50865
parent: 2
- - uid: 17464
+- proto: ClothingMaskJackal
+ entities:
+ - uid: 14362
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-4.5
+ pos: 30.299225,13.682687
parent: 2
- - uid: 17465
+- proto: ClothingMaskPlague
+ entities:
+ - uid: 5707
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-4.5
+ pos: 71.31579,29.6757
parent: 2
- - uid: 17466
+- proto: ClothingMaskSterile
+ entities:
+ - uid: 12114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-4.5
+ pos: 13.463035,-13.464493
parent: 2
- - uid: 17467
+ - uid: 12115
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-4.5
+ pos: 13.463035,-13.620743
parent: 2
- - uid: 17468
+ - uid: 12975
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 11.580032,-13.346049
parent: 2
- - uid: 17469
+ - uid: 15857
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 11.57222,-13.221049
parent: 2
- - uid: 17470
+ - uid: 19728
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 11.580032,-13.556987
parent: 2
- - uid: 17471
+ - uid: 30455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-4.5
+ pos: 13.44741,-13.26918
parent: 2
- - uid: 17472
+- proto: ClothingNeckCargomedal
+ entities:
+ - uid: 34632
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-4.5
+ pos: -30.666866,-24.101736
parent: 2
- - uid: 17473
+ - uid: 34633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-4.5
+ pos: -30.502804,-24.312674
parent: 2
- - uid: 17474
+ - uid: 34634
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-4.5
+ pos: -30.315304,-24.078299
parent: 2
- - uid: 17475
+- proto: ClothingNeckCloakGoliathCloak
+ entities:
+ - uid: 37628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-4.5
+ pos: 96.782364,77.13681
parent: 2
- - uid: 17476
+- proto: ClothingNeckCloakHerald
+ entities:
+ - uid: 37629
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,-5.5
+ pos: 96.45722,76.76842
parent: 2
- - uid: 17477
+- proto: ClothingNeckClownmedal
+ entities:
+ - uid: 19424
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-5.5
+ pos: -81.367096,-0.39013824
parent: 2
- - uid: 17483
+- proto: ClothingNeckEngineermedal
+ entities:
+ - uid: 22684
components:
- type: Transform
- pos: 11.5,21.5
+ pos: -58.75131,13.634154
parent: 2
- - uid: 17484
+ - uid: 34627
components:
- type: Transform
- pos: 11.5,22.5
+ pos: -58.56215,13.674015
parent: 2
- - uid: 17485
+ - uid: 34628
components:
- type: Transform
- pos: 11.5,23.5
+ pos: -58.74965,13.705265
parent: 2
- - uid: 17486
+- proto: ClothingNeckGoldmedal
+ entities:
+ - uid: 34639
components:
- type: Transform
- pos: 11.5,24.5
+ pos: 4.342853,29.136616
parent: 2
- - uid: 17487
+ - uid: 34640
components:
- type: Transform
- pos: 11.5,25.5
+ pos: 4.5381656,29.02724
parent: 2
- - uid: 17488
+ - uid: 34641
components:
- type: Transform
- pos: 11.5,26.5
+ pos: 4.7256656,29.15224
parent: 2
- - uid: 17495
+- proto: ClothingNeckHeadphones
+ entities:
+ - uid: 1530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-9.5
+ pos: -2.3107271,-34.414944
parent: 2
- - uid: 17497
+ - uid: 15746
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -2.6961436,-34.571194
parent: 2
- - uid: 17498
+ - uid: 19882
components:
- type: Transform
- pos: -4.5,-11.5
+ pos: -2.4669771,-34.477444
parent: 2
- - uid: 17499
+- proto: ClothingNeckMedicalmedal
+ entities:
+ - uid: 34624
components:
- type: Transform
- pos: -4.5,-12.5
+ pos: -11.466457,-10.350972
parent: 2
- - uid: 17500
+ - uid: 34625
components:
- type: Transform
- pos: -4.5,-13.5
+ pos: -11.759426,-10.37441
parent: 2
- - uid: 17501
+ - uid: 34626
components:
- type: Transform
- pos: -4.5,-14.5
+ pos: -11.618801,-10.444722
parent: 2
- - uid: 17504
+- proto: ClothingNeckScarfStripedLightBlue
+ entities:
+ - uid: 5173
components:
- type: Transform
- pos: 1.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 54.56397,-10.473785
parent: 2
- - uid: 17505
+- proto: ClothingNeckScarfStripedOrange
+ entities:
+ - uid: 5166
components:
- type: Transform
- pos: 1.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 69.563965,-14.48941
parent: 2
- - uid: 17506
+- proto: ClothingNeckScarfStripedPurple
+ entities:
+ - uid: 5170
components:
- type: Transform
- pos: 1.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 69.595215,-14.92691
parent: 2
- - uid: 17507
+- proto: ClothingNeckSciencemedal
+ entities:
+ - uid: 34635
components:
- type: Transform
- pos: 1.5,-19.5
+ pos: 46.422413,30.067749
parent: 2
- - uid: 17508
+ - uid: 34636
components:
- type: Transform
- pos: 1.5,-20.5
+ pos: 46.5396,29.731812
parent: 2
- - uid: 17509
+ - uid: 34637
components:
- type: Transform
- pos: 1.5,-21.5
+ pos: 46.680225,29.973999
parent: 2
- - uid: 17510
+- proto: ClothingNeckSecuritymedal
+ entities:
+ - uid: 34621
components:
- type: Transform
- pos: 1.5,-22.5
+ pos: -4.724091,35.60755
parent: 2
- - uid: 17511
+ - uid: 34622
components:
- type: Transform
- pos: 1.5,-23.5
+ pos: -4.442841,35.490364
parent: 2
- - uid: 17512
+ - uid: 34623
components:
- type: Transform
- pos: 1.5,-24.5
+ pos: -4.2162786,35.623177
parent: 2
- - uid: 17513
+- proto: ClothingNeckStethoscope
+ entities:
+ - uid: 7812
components:
- type: Transform
- pos: 1.5,-25.5
+ pos: 7.6656265,-7.294763
parent: 2
- - uid: 17514
+- proto: ClothingNeckTieDet
+ entities:
+ - uid: 30499
components:
- type: Transform
- pos: 1.5,-26.5
+ pos: 3.4630525,53.620914
parent: 2
- - uid: 17515
+- proto: ClothingNeckTieSci
+ entities:
+ - uid: 36502
components:
- type: Transform
- pos: 1.5,-27.5
+ pos: 55.628716,84.02377
parent: 2
- - uid: 17516
+ - uid: 36589
components:
- type: Transform
- pos: 1.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 56.935844,81.81337
parent: 2
- - uid: 17517
+- proto: ClothingOuterApronBotanist
+ entities:
+ - uid: 18486
components:
- type: Transform
- pos: 1.5,-29.5
+ pos: -49.564304,5.740397
parent: 2
- - uid: 17518
+ - uid: 18487
components:
- type: Transform
- pos: 1.5,-30.5
+ pos: -49.32993,5.599772
parent: 2
- - uid: 17519
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 21798
components:
- type: Transform
- pos: 1.5,-31.5
+ pos: -23.414679,41.63365
parent: 2
- - uid: 17520
+ - uid: 30892
components:
- type: Transform
- pos: 1.5,-32.5
+ pos: -23.813116,42.65709
parent: 2
- - uid: 17521
+ - uid: 30893
components:
- type: Transform
- pos: 1.5,-33.5
+ pos: -23.672491,42.4774
parent: 2
- - uid: 17524
+- proto: ClothingOuterClownPriest
+ entities:
+ - uid: 14112
components:
- type: Transform
- pos: 1.5,-34.5
+ pos: -78.605934,-2.3478103
parent: 2
- - uid: 17525
+- proto: ClothingOuterCoatBomber
+ entities:
+ - uid: 5188
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-35.5
+ rot: -3.141592653589793 rad
+ pos: 72.43163,-18.66698
parent: 2
- - uid: 17526
+ - uid: 5189
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-35.5
+ rot: -3.141592653589793 rad
+ pos: 72.65178,-18.446829
parent: 2
- - uid: 17527
+- proto: ClothingOuterCoatLab
+ entities:
+ - uid: 20077
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 36.387253,5.672612
parent: 2
- - uid: 17528
+ - uid: 20186
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 36.621628,5.5554247
parent: 2
- - uid: 17529
+- proto: ClothingOuterStraightjacket
+ entities:
+ - uid: 33640
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-35.5
+ pos: 59.959644,52.83496
parent: 2
- - uid: 17539
+- proto: ClothingOuterWinterCoat
+ entities:
+ - uid: 5190
components:
- type: Transform
- pos: 29.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 73.161026,-18.347553
parent: 2
- - uid: 17540
+- proto: ClothingOuterWinterCoatLong
+ entities:
+ - uid: 5163
components:
- type: Transform
- pos: 29.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 54.548344,-9.45816
parent: 2
- - uid: 17541
+ - uid: 5164
components:
- type: Transform
- pos: 29.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 54.423344,-9.67691
parent: 2
- - uid: 17542
+- proto: ClothingOuterWinterCoatPlaid
+ entities:
+ - uid: 5165
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 54.56397,-10.005035
parent: 2
- - uid: 17543
+- proto: ClothingShoesBootsCowboyBrown
+ entities:
+ - uid: 2091
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-0.5
+ pos: 19.594534,-36.270752
parent: 2
- - uid: 17544
+- proto: ClothingShoesBootsMag
+ entities:
+ - uid: 6049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-0.5
+ pos: 16.35911,24.787949
parent: 2
- - uid: 17545
+ - uid: 6050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-0.5
+ pos: 16.54661,24.600449
parent: 2
- - uid: 17546
+ - uid: 6051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,0.5
+ pos: 16.288797,23.709824
parent: 2
- - uid: 17547
+ - uid: 6052
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,1.5
+ pos: 16.534891,23.55748
parent: 2
- - uid: 17548
+ - uid: 6053
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,2.5
+ pos: 21.374735,24.77623
parent: 2
- - uid: 17549
+ - uid: 6054
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,3.5
+ pos: 21.597391,24.600449
parent: 2
- - uid: 17550
+ - uid: 6055
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,4.5
+ pos: 21.398172,23.709824
parent: 2
- - uid: 17551
+ - uid: 6056
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,5.5
+ pos: 21.679422,23.510605
parent: 2
- - uid: 17552
+- proto: ClothingUniformJumpskirtPrisoner
+ entities:
+ - uid: 19819
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,6.5
+ pos: 72.93937,63.251156
parent: 2
- - uid: 17553
+- proto: ClothingUniformJumpskirtScientist
+ entities:
+ - uid: 36503
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,6.5
+ pos: 54.941216,85.6644
parent: 2
- - uid: 17554
+- proto: ClothingUniformJumpsuitHawaiBlack
+ entities:
+ - uid: 2660
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,6.5
+ pos: -37.856205,-20.172558
parent: 2
- - uid: 17555
+- proto: ClothingUniformJumpsuitHawaiBlue
+ entities:
+ - uid: 3111
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,6.5
+ pos: -35.898434,-20.314098
parent: 2
- - uid: 17556
+- proto: ClothingUniformJumpsuitMonasticRobeDark
+ entities:
+ - uid: 5708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,6.5
+ pos: 71.66735,29.66398
parent: 2
- - uid: 17557
+- proto: ClothingUniformMartialGi
+ entities:
+ - uid: 689
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,6.5
+ pos: 44.299244,-24.325466
parent: 2
- - uid: 17558
+ - uid: 690
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,6.5
+ pos: 42.59612,-21.489529
parent: 2
- - uid: 17559
+ - uid: 13237
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,6.5
+ pos: 42.369556,-21.489529
parent: 2
- - uid: 17560
+- proto: ClothingUniformTShirtKhakiPants
+ entities:
+ - uid: 18085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,6.5
+ pos: -36.063236,-18.36787
parent: 2
- - uid: 17561
+- proto: ClownRecorder
+ entities:
+ - uid: 19425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,6.5
+ pos: -77.25276,-0.34442073
parent: 2
- - uid: 17562
+- proto: Cobweb1
+ entities:
+ - uid: 6935
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,26.5
parent: 2
- - uid: 17563
+ - uid: 6939
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,6.5
+ pos: 88.5,19.5
parent: 2
- - uid: 17565
+ - uid: 37600
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,6.5
+ pos: -33.5,-30.5
parent: 2
- - uid: 17566
+ - uid: 37601
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,6.5
+ pos: -25.5,-30.5
parent: 2
- - uid: 17567
+ - uid: 37602
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-28.5
parent: 2
- - uid: 17568
+- proto: Cobweb2
+ entities:
+ - uid: 6942
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,6.5
+ pos: 86.5,27.5
parent: 2
- - uid: 17569
+ - uid: 29766
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,6.5
+ pos: 35.5,44.5
parent: 2
- - uid: 17570
+ - uid: 29769
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,5.5
+ pos: 31.5,43.5
parent: 2
- - uid: 17571
+ - uid: 37603
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,4.5
+ pos: -30.5,-30.5
parent: 2
- - uid: 17572
+ - uid: 37604
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,3.5
+ pos: -25.5,-34.5
parent: 2
- - uid: 17573
+ - uid: 37605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-38.5
parent: 2
- - uid: 17574
+- proto: CombatKnife
+ entities:
+ - uid: 36046
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,3.5
+ pos: 31.519653,16.720215
parent: 2
- - uid: 17575
+- proto: ComfyChair
+ entities:
+ - uid: 111
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-24.5
parent: 2
- - uid: 17576
+ - uid: 378
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,3.5
+ pos: -4.5,-6.5
parent: 2
- - uid: 17577
+ - uid: 598
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,3.5
+ pos: -10.5,-10.5
parent: 2
- - uid: 17578
+ - uid: 2656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,52.5
parent: 2
- - uid: 17580
+ - uid: 2719
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,48.5
parent: 2
- - uid: 17582
+ - uid: 2731
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,3.5
+ pos: 14.5,47.5
parent: 2
- - uid: 17583
+ - uid: 2733
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,47.5
parent: 2
- - uid: 17584
+ - uid: 2865
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,48.5
parent: 2
- - uid: 17587
+ - uid: 4451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,58.5
parent: 2
- - uid: 17588
+ - uid: 4492
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,3.5
+ pos: 63.5,29.5
parent: 2
- - uid: 17589
+ - uid: 5426
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,33.5
parent: 2
- - uid: 17590
+ - uid: 5436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,29.5
parent: 2
- - uid: 17591
+ - uid: 5474
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,25.5
parent: 2
- - uid: 17592
+ - uid: 5582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,28.5
parent: 2
- - uid: 17593
+ - uid: 5587
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,27.5
parent: 2
- - uid: 17594
+ - uid: 5589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,30.5
parent: 2
- - uid: 17595
+ - uid: 5591
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,30.5
parent: 2
- - uid: 17596
+ - uid: 5621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,27.5
parent: 2
- - uid: 17597
+ - uid: 6564
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-20.5
parent: 2
- - uid: 17598
+ - uid: 6565
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,11.5
+ pos: -25.5,-24.5
parent: 2
- - uid: 17599
+ - uid: 8818
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,12.5
+ pos: -58.5,12.5
parent: 2
- - uid: 17600
+ - uid: 14031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,57.5
parent: 2
- - uid: 17601
+ - uid: 14033
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,13.5
+ pos: 12.5,49.5
parent: 2
- - uid: 17602
+ - uid: 14036
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,13.5
+ pos: 15.5,53.5
parent: 2
- - uid: 17603
+ - uid: 14037
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,53.5
parent: 2
- - uid: 17604
+ - uid: 14040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,13.5
+ pos: 13.5,49.5
parent: 2
- - uid: 17605
+ - uid: 14053
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,57.5
parent: 2
- - uid: 17606
+ - uid: 14062
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,13.5
+ pos: 11.5,49.5
parent: 2
- - uid: 17607
+ - uid: 14074
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,12.5
+ pos: 18.5,55.5
parent: 2
- - uid: 17608
+ - uid: 14079
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,11.5
+ pos: 12.5,46.5
parent: 2
- - uid: 17609
+ - uid: 14080
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,10.5
+ pos: 11.5,46.5
parent: 2
- - uid: 17610
+ - uid: 14081
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,14.5
+ pos: 13.5,46.5
parent: 2
- - uid: 17611
+ - uid: 14085
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,51.5
parent: 2
- - uid: 17612
+ - uid: 14188
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,48.5
parent: 2
- - uid: 17613
+ - uid: 15373
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,48.5
parent: 2
- - uid: 17614
+ - uid: 15735
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,10.5
+ pos: -5.5,26.5
parent: 2
- - uid: 17615
+ - uid: 15780
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,33.5
parent: 2
- - uid: 17616
+ - uid: 20671
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,8.5
+ pos: -14.5,-8.5
parent: 2
- - uid: 17617
+ - uid: 29705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,7.5
+ pos: 19.5,48.5
parent: 2
- - uid: 17622
+ - uid: 29706
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,46.5
parent: 2
- - uid: 17626
+- proto: ComputerAlert
+ entities:
+ - uid: 14035
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,3.5
+ pos: 19.5,59.5
parent: 2
- - uid: 17627
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 9280
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,10.5
+ pos: 40.5,51.5
parent: 2
- - uid: 17628
+ - uid: 12731
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,10.5
+ pos: 44.5,51.5
parent: 2
- - uid: 17629
+- proto: computerBodyScanner
+ entities:
+ - uid: 30335
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,10.5
+ pos: 22.5,0.5
parent: 2
- - uid: 17630
+- proto: ComputerBroken
+ entities:
+ - uid: 1279
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,8.5
+ pos: -102.5,48.5
parent: 2
- - uid: 17631
+ - uid: 1699
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,7.5
+ pos: 63.5,44.5
parent: 2
- - uid: 17639
+ - uid: 2331
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,42.5
parent: 2
- - uid: 17640
+ - uid: 3145
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,8.5
+ pos: 63.5,40.5
parent: 2
- - uid: 17641
+ - uid: 4749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,5.5
+ pos: 94.5,79.5
parent: 2
- - uid: 17642
+ - uid: 5356
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,4.5
+ pos: 57.5,50.5
parent: 2
- - uid: 17643
+ - uid: 5363
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,3.5
+ pos: 59.5,50.5
parent: 2
- - uid: 17644
+ - uid: 6802
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-46.5
parent: 2
- - uid: 17645
+ - uid: 8157
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,2.5
+ pos: 70.5,80.5
parent: 2
- - uid: 17646
+ - uid: 18672
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,-13.5
parent: 2
- - uid: 17657
+ - uid: 22227
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -104.5,48.5
parent: 2
- - uid: 17659
+ - uid: 22228
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-39.5
+ pos: -109.5,56.5
parent: 2
- - uid: 17660
+ - uid: 22233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-16.5
+ pos: -104.5,56.5
parent: 2
- - uid: 17661
+ - uid: 29787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-17.5
+ pos: 71.5,80.5
parent: 2
- - uid: 17662
+ - uid: 32376
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-18.5
+ pos: -108.5,56.5
parent: 2
- - uid: 17663
+ - uid: 32823
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-19.5
+ pos: 69.5,73.5
parent: 2
- - uid: 17664
+ - uid: 33083
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-20.5
+ pos: 70.5,73.5
parent: 2
- - uid: 17665
+ - uid: 33084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-20.5
+ pos: 68.5,73.5
parent: 2
- - uid: 17666
+ - uid: 34988
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 105.5,18.5
parent: 2
- - uid: 17667
+ - uid: 36118
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,78.5
parent: 2
- - uid: 17668
+ - uid: 36119
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,79.5
parent: 2
- - uid: 17669
+ - uid: 36393
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-20.5
+ pos: 103.5,61.5
parent: 2
- - uid: 17670
+ - uid: 36692
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-20.5
+ pos: 83.5,82.5
parent: 2
- - uid: 17671
+- proto: ComputerCargoBounty
+ entities:
+ - uid: 6572
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,-20.5
+ pos: -16.5,-23.5
parent: 2
- - uid: 17672
+- proto: ComputerCargoOrders
+ entities:
+ - uid: 2965
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-23.5
parent: 2
- - uid: 17673
+ - uid: 6570
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-20.5
+ pos: -24.5,-23.5
parent: 2
- - uid: 17674
+- proto: ComputerCloningConsole
+ entities:
+ - uid: 27402
components:
- type: Transform
- pos: -22.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,3.5
parent: 2
- - uid: 17675
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28451:
+ - MedicalScannerSender: MedicalScannerReceiver
+ - CloningPodSender: MedicalScannerReceiver
+ 28435:
+ - MedicalScannerSender: CloningPodReceiver
+ - CloningPodSender: CloningPodReceiver
+- proto: ComputerComms
+ entities:
+ - uid: 14050
components:
- type: Transform
- pos: -22.5,-22.5
+ pos: 18.5,59.5
parent: 2
- - uid: 17676
+ - uid: 14056
components:
- type: Transform
- pos: -22.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,50.5
parent: 2
- - uid: 17677
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 4006
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-24.5
+ pos: 48.5,34.5
parent: 2
- - uid: 17678
+ - uid: 5717
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-25.5
+ pos: 8.5,27.5
parent: 2
- - uid: 17679
+ - uid: 5928
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,-25.5
+ pos: 6.5,5.5
parent: 2
- - uid: 17680
+ - uid: 14041
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-25.5
+ pos: 14.5,58.5
parent: 2
- - uid: 17681
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 2463
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-25.5
+ pos: -1.5,43.5
parent: 2
- - uid: 17682
+ - uid: 14032
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-25.5
+ pos: 22.5,58.5
parent: 2
- - uid: 17683
+ - uid: 15393
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-25.5
+ pos: -19.5,28.5
parent: 2
- - uid: 17685
+ - uid: 22532
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-26.5
+ pos: 4.5,-21.5
parent: 2
- - uid: 17686
+ - uid: 28878
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-27.5
+ pos: -20.5,51.5
parent: 2
- - uid: 17687
+- proto: ComputerId
+ entities:
+ - uid: 610
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,-28.5
+ pos: -10.5,-11.5
parent: 2
- - uid: 17688
+ - uid: 858
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,-29.5
+ pos: 17.5,55.5
parent: 2
- - uid: 17689
+ - uid: 1939
components:
- type: Transform
- pos: -18.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,27.5
parent: 2
- - uid: 17690
+ - uid: 5760
components:
- type: Transform
- pos: -18.5,-31.5
+ pos: 44.5,30.5
parent: 2
- - uid: 17691
+ - uid: 6563
components:
- type: Transform
- pos: -18.5,-32.5
+ pos: -25.5,-23.5
parent: 2
- - uid: 17692
+ - uid: 8777
components:
- type: Transform
- pos: -18.5,-33.5
+ pos: -59.5,13.5
parent: 2
- - uid: 17693
+ - uid: 14175
components:
- type: Transform
- pos: -18.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,42.5
parent: 2
- - uid: 17694
+ - uid: 18233
components:
- type: Transform
- pos: -18.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,32.5
parent: 2
- - uid: 17695
+- proto: ComputerMassMedia
+ entities:
+ - uid: 1552
components:
- type: Transform
- pos: -18.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-8.5
parent: 2
- - uid: 17696
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 196
components:
- type: Transform
- pos: -18.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-7.5
parent: 2
- - uid: 17697
+ - uid: 466
components:
- type: Transform
- pos: -18.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-2.5
parent: 2
- - uid: 17698
+ - uid: 467
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,-39.5
+ pos: -16.5,-2.5
parent: 2
- - uid: 17700
+ - uid: 4365
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-38.5
+ pos: 5.5,-9.5
parent: 2
- - uid: 17701
+ - uid: 8379
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-7.5
parent: 2
- - uid: 17702
+ - uid: 14039
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,57.5
parent: 2
- - uid: 17714
+ - uid: 18018
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-17.5
+ pos: 4.5,7.5
parent: 2
- - uid: 17715
+ - uid: 22074
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-4.5
parent: 2
- - uid: 17716
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 8737
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,-17.5
+ pos: -47.5,15.5
parent: 2
- - uid: 17717
+ - uid: 8800
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,-17.5
+ pos: -61.5,32.5
parent: 2
- - uid: 17718
+ - uid: 12436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-21.5
parent: 2
- - uid: 17719
+ - uid: 12594
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,-13.5
parent: 2
- - uid: 17720
+ - uid: 13934
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,53.5
parent: 2
- - uid: 17721
+ - uid: 19201
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-17.5
+ pos: 87.5,-19.5
parent: 2
- - uid: 17722
+- proto: ComputerRadar
+ entities:
+ - uid: 6359
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-46.5
parent: 2
- - uid: 17723
+ - uid: 6809
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-46.5
parent: 2
- - uid: 17724
+ - uid: 13951
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,52.5
parent: 2
- - uid: 17725
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 4157
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,26.5
parent: 2
- - uid: 17726
+- proto: ComputerShuttleCargo
+ entities:
+ - uid: 6849
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-46.5
parent: 2
- - uid: 17727
+- proto: ComputerShuttleSalvage
+ entities:
+ - uid: 38139
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,-23.5
+ pos: -6.5,-44.5
parent: 2
- - uid: 17728
+- proto: ComputerSolarControl
+ entities:
+ - uid: 9706
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,-23.5
+ pos: -60.5,40.5
parent: 2
- - uid: 17729
+ - uid: 10413
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -47.5,-23.5
+ pos: -64.5,-34.5
parent: 2
- - uid: 17730
+ - uid: 13469
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-23.5
+ pos: 56.5,-37.5
parent: 2
- - uid: 17731
+- proto: ComputerStationRecords
+ entities:
+ - uid: 857
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-23.5
+ pos: 51.5,28.5
parent: 2
- - uid: 17732
+ - uid: 1522
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-23.5
+ pos: 19.5,55.5
parent: 2
- - uid: 17733
+ - uid: 5537
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-9.5
parent: 2
- - uid: 17734
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 5750
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-25.5
parent: 2
- - uid: 17735
+ - uid: 5932
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,28.5
parent: 2
- - uid: 17736
+ - uid: 6409
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,41.5
parent: 2
- - uid: 17737
+ - uid: 8814
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-23.5
+ pos: 18.5,56.5
parent: 2
- - uid: 17740
+ - uid: 11224
components:
- type: Transform
- pos: -35.5,-25.5
+ pos: 6.5,62.5
parent: 2
- - uid: 17741
+ - uid: 14054
components:
- type: Transform
- pos: -35.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,57.5
parent: 2
- - uid: 17742
+ - uid: 15641
components:
- type: Transform
- pos: -35.5,-27.5
+ pos: -19.5,51.5
parent: 2
- - uid: 17743
+ - uid: 35724
components:
- type: Transform
- pos: -35.5,-28.5
+ pos: 5.5,62.5
parent: 2
- - uid: 17744
+- proto: ComputerSurveillanceWirelessCameraMonitor
+ entities:
+ - uid: 17657
components:
- type: Transform
- pos: -35.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,58.5
parent: 2
- - uid: 17746
+ - uid: 18324
components:
- type: Transform
- pos: -43.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-9.5
parent: 2
- - uid: 17747
+ - uid: 38841
components:
- type: Transform
- pos: -43.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,58.5
parent: 2
- - uid: 17748
+- proto: ComputerTechnologyDiskTerminal
+ entities:
+ - uid: 26245
components:
- type: Transform
- pos: -43.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,28.5
parent: 2
- - uid: 17749
+- proto: ComputerTelevision
+ entities:
+ - uid: 612
components:
- type: Transform
- pos: -43.5,-25.5
+ pos: -6.5,-6.5
parent: 2
- - uid: 17750
+ - uid: 745
components:
- type: Transform
- pos: -43.5,-24.5
+ pos: -21.5,22.5
parent: 2
- - uid: 17751
+ - uid: 749
components:
- type: Transform
- pos: -52.5,-24.5
+ pos: -20.5,22.5
parent: 2
- - uid: 17753
+ - uid: 942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-14.5
+ pos: 56.5,30.5
parent: 2
- - uid: 17754
+ - uid: 1534
components:
- type: Transform
- pos: -44.5,-15.5
+ pos: -60.5,-4.5
parent: 2
- - uid: 17755
+ - uid: 2551
components:
- type: Transform
- pos: -44.5,-16.5
+ pos: -67.5,11.5
parent: 2
- - uid: 17756
+ - uid: 3281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-14.5
+ pos: -86.5,-2.5
parent: 2
- - uid: 17757
+ - uid: 5682
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-14.5
+ pos: -96.5,29.5
parent: 2
- - uid: 17759
+ - uid: 9049
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-19.5
+ pos: -80.5,-1.5
parent: 2
- - uid: 17760
+ - uid: 9138
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-20.5
+ pos: -14.5,-30.5
parent: 2
- - uid: 17761
+ - uid: 9142
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-21.5
+ pos: -44.5,-19.5
parent: 2
- - uid: 17762
+ - uid: 9143
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-22.5
+ pos: -9.5,-18.5
parent: 2
- - uid: 17763
+ - uid: 9150
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-18.5
+ pos: -0.5,-31.5
parent: 2
- - uid: 17764
+ - uid: 9315
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-18.5
+ pos: -25.5,-9.5
parent: 2
- - uid: 17765
+ - uid: 15769
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-18.5
+ pos: -8.5,26.5
parent: 2
- - uid: 17766
+ - uid: 19443
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-18.5
+ pos: 39.5,-25.5
parent: 2
- - uid: 17767
+ - uid: 19444
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-18.5
+ pos: 58.5,-38.5
parent: 2
- - uid: 17771
+ - uid: 19447
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: 32.5,24.5
parent: 2
- - uid: 17772
+ - uid: 19448
components:
- type: Transform
- pos: -33.5,-17.5
+ pos: 10.5,50.5
parent: 2
- - uid: 17773
+ - uid: 19449
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: 14.5,40.5
parent: 2
- - uid: 17774
+ - uid: 19450
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -5.5,61.5
parent: 2
- - uid: 17775
+ - uid: 19456
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: -97.5,13.5
parent: 2
- - uid: 17776
+ - uid: 19458
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: -79.5,22.5
parent: 2
- - uid: 17777
+ - uid: 21463
components:
- type: Transform
- pos: -33.5,-22.5
+ pos: -1.5,23.5
parent: 2
- - uid: 17778
+ - uid: 22623
components:
- type: Transform
- pos: -33.5,-23.5
+ pos: -96.5,-1.5
parent: 2
- - uid: 17779
+ - uid: 30238
components:
- type: Transform
- pos: -33.5,-24.5
+ pos: -53.5,27.5
parent: 2
- - uid: 17780
+ - uid: 30542
components:
- type: Transform
- pos: -33.5,-25.5
+ pos: -19.5,22.5
parent: 2
- - uid: 17781
+ - uid: 38862
components:
- type: Transform
- pos: -33.5,-26.5
+ pos: -18.5,58.5
parent: 2
- - uid: 17782
+- proto: ContainmentFieldGenerator
+ entities:
+ - uid: 8191
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-27.5
+ pos: 65.5,44.5
parent: 2
- - uid: 17783
+ - uid: 8192
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-27.5
+ pos: 64.5,43.5
parent: 2
- - uid: 18243
+ - uid: 28048
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,44.5
parent: 2
- - uid: 18245
+ - uid: 32177
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,57.5
+ anchored: False
+ pos: 108.94252,-22.656994
parent: 2
- - uid: 18247
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 32178
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,55.5
+ pos: 105.5,-20.5
parent: 2
- - uid: 18248
+ - uid: 32240
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,55.5
+ anchored: False
+ rot: 0.6052636504173279 rad
+ pos: 107.91734,-10.484854
parent: 2
- - uid: 18249
+ - type: Physics
+ bodyType: Dynamic
+ - uid: 32246
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,55.5
+ pos: 97.5,-12.5
parent: 2
- - uid: 18250
+- proto: ConveyorBelt
+ entities:
+ - uid: 812
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,55.5
+ pos: -19.5,-18.5
parent: 2
- - uid: 18251
+ - uid: 1096
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,55.5
+ pos: -18.5,-35.5
parent: 2
- - uid: 18253
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 1113
components:
- type: Transform
- pos: -26.5,56.5
+ pos: -18.5,-33.5
parent: 2
- - uid: 18318
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 1153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,62.5
+ pos: -18.5,-38.5
parent: 2
- - uid: 18319
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 1303
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,62.5
+ pos: -18.5,-34.5
parent: 2
- - uid: 18320
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 1335
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,62.5
+ pos: -18.5,-36.5
parent: 2
- - uid: 18321
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 1443
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,62.5
+ pos: -18.5,-39.5
parent: 2
- - uid: 18325
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 2261
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,62.5
- parent: 2
- - uid: 18353
- components:
- - type: Transform
- pos: 10.5,15.5
+ pos: -31.5,-40.5
parent: 2
- - uid: 18377
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 2315
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -44.5,62.5
+ pos: -29.5,-40.5
parent: 2
- - uid: 18378
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 2326
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -40.5,62.5
+ pos: -32.5,-40.5
parent: 2
- - uid: 18390
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 2395
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,62.5
+ pos: -30.5,-40.5
parent: 2
- - uid: 18393
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 2925
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -42.5,62.5
+ pos: -18.5,-18.5
parent: 2
- - uid: 18394
+ - uid: 2961
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -43.5,62.5
+ pos: -26.5,-40.5
parent: 2
- - uid: 18396
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 3282
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,53.5
+ pos: -27.5,-40.5
parent: 2
- - uid: 18397
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 3338
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,62.5
+ pos: -28.5,-40.5
parent: 2
- - uid: 18548
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 3493
components:
- type: Transform
- pos: -20.5,54.5
+ pos: -18.5,-46.5
parent: 2
- - uid: 19669
+ - type: DeviceLinkSink
+ links:
+ - 11872
+ - uid: 6358
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,64.5
+ pos: -18.5,-41.5
parent: 2
- - uid: 19672
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 6620
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-18.5
parent: 2
- - uid: 19777
+ - uid: 6705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,64.5
+ pos: -18.5,-47.5
parent: 2
- - uid: 19861
+ - type: DeviceLinkSink
+ links:
+ - 11872
+ - uid: 6733
components:
- type: Transform
- pos: -11.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-41.5
parent: 2
- - uid: 19862
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 6781
components:
- type: Transform
- pos: 1.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-18.5
parent: 2
- - uid: 19863
+ - uid: 6782
components:
- type: Transform
- pos: 1.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-33.5
parent: 2
- - uid: 19864
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 6783
components:
- type: Transform
- pos: 1.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-32.5
parent: 2
- - uid: 19865
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 6866
components:
- type: Transform
- pos: 1.5,67.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-38.5
parent: 2
- - uid: 19866
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 6961
components:
- type: Transform
- pos: 1.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-22.5
parent: 2
- - uid: 19867
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 6963
components:
- type: Transform
- pos: 1.5,69.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-26.5
parent: 2
- - uid: 19868
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 8181
components:
- type: Transform
- pos: 1.5,70.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-23.5
parent: 2
- - uid: 19869
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 8182
components:
- type: Transform
- pos: 1.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-37.5
parent: 2
- - uid: 19870
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 9598
components:
- type: Transform
- pos: 1.5,72.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-46.5
parent: 2
- - uid: 19871
+ - type: DeviceLinkSink
+ links:
+ - 11344
+ - uid: 10338
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-48.5
parent: 2
- - uid: 19872
+ - type: DeviceLinkSink
+ links:
+ - 11344
+ - uid: 10622
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-24.5
parent: 2
- - uid: 20572
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 10624
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-25.5
parent: 2
- - uid: 22355
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 10647
components:
- type: Transform
- pos: -26.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-35.5
parent: 2
- - uid: 22363
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 11171
components:
- type: Transform
- pos: -26.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-39.5
parent: 2
- - uid: 22364
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 11645
components:
- type: Transform
- pos: -26.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-49.5
parent: 2
- - uid: 22474
+ - type: DeviceLinkSink
+ links:
+ - 11344
+ - uid: 11837
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,62.5
+ pos: -18.5,-48.5
parent: 2
- - uid: 22570
+ - type: DeviceLinkSink
+ links:
+ - 11872
+ - uid: 11875
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,64.5
+ pos: -18.5,-49.5
parent: 2
- - uid: 22766
+ - type: DeviceLinkSink
+ links:
+ - 11872
+ - uid: 13752
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,2.5
parent: 2
- - uid: 22767
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 13753
components:
- type: Transform
- pos: -26.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,2.5
parent: 2
- - uid: 22844
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 13755
components:
- type: Transform
- pos: -26.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,2.5
parent: 2
- - uid: 23037
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 13760
components:
- type: Transform
- pos: -26.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,2.5
parent: 2
- - uid: 23041
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 16629
components:
- type: Transform
- pos: -26.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-47.5
parent: 2
- - uid: 23044
+ - type: DeviceLinkSink
+ links:
+ - 11344
+ - uid: 16640
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-36.5
parent: 2
- - uid: 27833
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 19089
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,2.5
parent: 2
- - uid: 29981
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 19091
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.5,11.5
+ pos: -37.5,2.5
parent: 2
- - uid: 30917
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 19128
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,64.5
+ pos: -34.5,2.5
parent: 2
- - uid: 30918
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 21018
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,28.5
+ pos: -18.5,-37.5
parent: 2
- - uid: 31085
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 21164
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,63.5
+ pos: -18.5,-26.5
parent: 2
- - uid: 31105
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 22862
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,64.5
+ pos: -18.5,-32.5
parent: 2
- - uid: 31732
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 23544
components:
- type: Transform
- pos: -39.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-40.5
parent: 2
- - uid: 34044
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 23857
components:
- type: Transform
- pos: -1.5,0.5
+ pos: -18.5,-30.5
parent: 2
- - uid: 34045
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 26697
components:
- type: Transform
- pos: -1.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-40.5
parent: 2
- - uid: 34046
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 27301
components:
- type: Transform
- pos: -1.5,-1.5
+ pos: -18.5,-40.5
parent: 2
- - uid: 35865
+ - type: DeviceLinkSink
+ links:
+ - 20721
+ - uid: 28201
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,15.5
+ pos: -25.5,-40.5
parent: 2
- - uid: 35866
+ - type: DeviceLinkSink
+ links:
+ - 3283
+ - uid: 28205
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,13.5
+ pos: -15.5,-18.5
parent: 2
- - uid: 35867
+ - uid: 28998
components:
- type: Transform
- pos: 32.5,14.5
+ pos: -18.5,-27.5
parent: 2
- - uid: 35882
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 29725
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,2.5
parent: 2
- - uid: 35883
+ - type: DeviceLinkSink
+ links:
+ - 38734
+ - uid: 29964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,32.5
+ pos: -18.5,-28.5
parent: 2
- - uid: 35884
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 29965
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,32.5
+ pos: -18.5,-29.5
parent: 2
- - uid: 35885
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 29980
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-34.5
parent: 2
- - uid: 35886
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 31645
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,32.5
+ pos: -18.5,-31.5
parent: 2
- - uid: 35889
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ links:
+ - 20721
+ - uid: 31776
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-31.5
parent: 2
- - uid: 35890
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 31777
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-30.5
parent: 2
- - uid: 35891
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 31778
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-29.5
parent: 2
- - uid: 35892
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 31779
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-28.5
parent: 2
- - uid: 35893
+ - type: DeviceLinkSink
+ links:
+ - 28204
+ - uid: 31780
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-27.5
parent: 2
- - uid: 35894
+ - type: DeviceLinkSink
+ links:
+ - 28204
+- proto: CourierBag
+ entities:
+ - uid: 22394
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,36.5
+ pos: -7.2791405,-25.252836
parent: 2
- - uid: 35895
+ - uid: 35849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,36.5
+ pos: -7.1541405,-25.354399
parent: 2
- - uid: 35897
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 9231
components:
- type: Transform
- pos: -20.5,38.5
+ pos: 34.5,51.5
parent: 2
- - uid: 35898
+ - uid: 9540
components:
- type: Transform
- pos: -20.5,37.5
+ pos: 35.5,51.5
parent: 2
- - uid: 35900
+- proto: CrateCoffin
+ entities:
+ - uid: 20954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,61.5
+ pos: 88.5,37.5
parent: 2
- - uid: 35901
+ - uid: 37606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,61.5
+ pos: -30.5,-37.5
parent: 2
- - uid: 35902
+- proto: CrateCommandSecure
+ entities:
+ - uid: 22615
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,61.5
+ pos: 21.5,58.5
parent: 2
- - uid: 35903
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 20286
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,61.5
+ pos: -20.5,37.5
parent: 2
- - uid: 35916
+- proto: CrateEmptySpawner
+ entities:
+ - uid: 2239
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,28.5
+ pos: 43.5,-27.5
parent: 2
- - uid: 35918
+ - uid: 6774
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,34.5
+ pos: -21.5,-43.5
parent: 2
- - uid: 35919
+ - uid: 12444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,34.5
+ pos: 11.5,-32.5
parent: 2
- - uid: 35920
+ - uid: 21105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,34.5
+ pos: -34.5,-2.5
parent: 2
- - uid: 35921
+ - uid: 21106
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,34.5
+ pos: 36.5,13.5
parent: 2
- - uid: 35922
+ - uid: 21108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,34.5
+ pos: 68.5,-28.5
parent: 2
- - uid: 35923
+ - uid: 21112
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,34.5
+ pos: -32.5,-22.5
parent: 2
- - uid: 35924
+ - uid: 21113
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,34.5
+ pos: -62.5,-27.5
parent: 2
- - uid: 35946
+ - uid: 21114
components:
- type: Transform
- pos: -49.5,12.5
+ pos: -65.5,1.5
parent: 2
- - uid: 35947
+ - uid: 33826
components:
- type: Transform
- pos: -49.5,13.5
+ pos: -22.5,-5.5
parent: 2
- - uid: 35948
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 8795
components:
- type: Transform
- pos: -49.5,14.5
+ pos: -62.5,28.5
parent: 2
- - uid: 35949
+- proto: CrateEngineeringAMEShielding
+ entities:
+ - uid: 8955
components:
- type: Transform
- pos: -49.5,15.5
+ pos: -60.460056,30.546858
parent: 2
- - uid: 35952
+ - uid: 8964
components:
- type: Transform
- pos: -58.5,9.5
+ pos: -62.5,30.5
parent: 2
- - uid: 35953
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 8990
components:
- type: Transform
- pos: -58.5,10.5
+ pos: -57.5,22.5
parent: 2
- - uid: 35963
+- proto: CrateEngineeringCableHV
+ entities:
+ - uid: 9855
components:
- type: Transform
- pos: 25.5,-26.5
+ pos: -66.5,38.5
parent: 2
- - uid: 35964
+ - uid: 13517
components:
- type: Transform
- pos: 25.5,-27.5
+ pos: -65.5,38.5
parent: 2
- - uid: 35965
+- proto: CrateEngineeringElectricalSupplies
+ entities:
+ - uid: 8970
components:
- type: Transform
- pos: 25.5,-28.5
+ pos: -58.5,22.5
parent: 2
- - uid: 35966
+- proto: CrateEngineeringSolar
+ entities:
+ - uid: 8357
components:
- type: Transform
- pos: 25.5,-29.5
+ pos: -65.5,-28.5
parent: 2
- - uid: 35974
+ - uid: 8363
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-39.5
+ pos: -67.5,-25.5
parent: 2
- - uid: 35993
+ - uid: 9850
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-25.5
+ pos: -60.5,38.5
parent: 2
- - uid: 35994
+ - uid: 9851
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-25.5
+ pos: -61.5,38.5
parent: 2
- - uid: 35995
+ - uid: 9852
components:
- type: Transform
- pos: -30.5,-26.5
+ pos: -62.5,38.5
parent: 2
- - uid: 36002
+ - uid: 9853
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-0.5
+ pos: -63.5,38.5
parent: 2
- - uid: 36003
+ - uid: 11229
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,0.5
+ pos: -66.5,-24.5
parent: 2
- - uid: 36004
+ - uid: 13691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,1.5
+ pos: 55.5,-40.5
parent: 2
- - uid: 36005
+ - uid: 20503
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,2.5
+ pos: 53.5,-36.5
parent: 2
- - uid: 36006
+ - uid: 35083
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,3.5
+ pos: 54.5,-39.5
parent: 2
- - uid: 36007
+ - uid: 35084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,3.5
+ pos: 58.5,-39.5
parent: 2
- - uid: 36008
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 2024
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,3.5
+ pos: -46.5,-38.5
parent: 2
- - uid: 36009
+ - uid: 4789
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,3.5
+ pos: 5.5,-27.5
parent: 2
- - uid: 36010
+ - uid: 6412
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,3.5
+ pos: 35.5,43.5
parent: 2
- - uid: 36011
+ - uid: 9334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,3.5
+ pos: -13.5,-5.5
parent: 2
- - uid: 36012
+ - uid: 13234
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,3.5
+ pos: 78.5,3.5
parent: 2
- - uid: 36013
+ - uid: 16006
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,3.5
+ pos: -1.5,31.5
parent: 2
- - uid: 36014
+ - uid: 20927
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,3.5
+ pos: -53.5,-36.5
parent: 2
- - uid: 36015
+ - uid: 21030
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,3.5
+ pos: 36.5,14.5
parent: 2
- - uid: 36018
+ - uid: 21079
components:
- type: Transform
- pos: -69.5,14.5
+ pos: 10.5,32.5
parent: 2
- - uid: 36019
+ - uid: 21081
components:
- type: Transform
- pos: -69.5,13.5
+ pos: -45.5,27.5
parent: 2
- - uid: 36020
+ - uid: 21083
components:
- type: Transform
- pos: -69.5,12.5
+ pos: -31.5,10.5
parent: 2
- - uid: 36021
+ - uid: 21085
components:
- type: Transform
- pos: -69.5,11.5
+ pos: -65.5,2.5
parent: 2
- - uid: 36022
+ - uid: 21086
components:
- type: Transform
- pos: -69.5,10.5
+ pos: -64.5,-18.5
parent: 2
- - uid: 36023
+ - uid: 21088
components:
- type: Transform
- pos: -69.5,9.5
+ pos: -7.5,-35.5
parent: 2
- - uid: 36028
+ - uid: 25260
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-14.5
+ pos: -21.5,-18.5
parent: 2
- - uid: 36029
+ - uid: 27505
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-13.5
+ pos: -19.5,-44.5
parent: 2
- - uid: 36030
+ - uid: 27694
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-12.5
+ pos: 61.5,-31.5
parent: 2
- - uid: 36387
+ - uid: 28647
components:
- type: Transform
- pos: -39.5,9.5
+ pos: 39.5,0.5
parent: 2
- - uid: 36388
+ - uid: 36746
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,8.5
+ pos: 61.5,74.5
parent: 2
-- proto: DisposalPipeBroken
- entities:
- - uid: 5387
+ - uid: 36750
components:
- type: Transform
- pos: 58.5,54.5
+ pos: 102.5,74.5
parent: 2
- - uid: 7047
+ - uid: 36751
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-32.5
+ pos: 103.5,59.5
parent: 2
- - uid: 7048
+ - uid: 36752
components:
- type: Transform
- pos: -29.5,-32.5
+ pos: 83.5,41.5
parent: 2
- - uid: 7049
+ - uid: 36753
components:
- type: Transform
- pos: -29.5,-30.5
+ pos: 71.5,43.5
parent: 2
- - uid: 7050
+ - uid: 36754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-34.5
+ pos: 93.5,16.5
parent: 2
- - uid: 7051
+- proto: CrateFoodBarSupply
+ entities:
+ - uid: 12398
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-36.5
+ pos: -37.5,-26.5
parent: 2
- - uid: 7052
+- proto: CrateFoodDinnerware
+ entities:
+ - uid: 6309
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-36.5
+ pos: -49.5,-11.5
parent: 2
- - uid: 7054
+- proto: CrateFreezer
+ entities:
+ - uid: 23538
components:
- type: Transform
- pos: -33.5,-37.5
+ pos: -50.5,-11.5
parent: 2
-- proto: DisposalTrunk
+- proto: CrateFunPlushie
entities:
- - uid: 2289
+ - uid: 34039
components:
- type: Transform
- pos: 10.5,16.5
+ pos: -67.5,14.5
parent: 2
- - uid: 2390
+ - uid: 34040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-1.5
+ pos: -67.5,15.5
parent: 2
- - uid: 2553
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 4253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-10.5
+ pos: -31.5,61.5
parent: 2
- - uid: 3379
+- proto: CrateHydroSecure
+ entities:
+ - uid: 18444
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-11.5
+ pos: -54.5,1.5
parent: 2
- - uid: 3556
+- proto: CrateLivestock
+ entities:
+ - uid: 3090
components:
- type: Transform
- pos: 14.5,22.5
+ pos: -52.5,-5.5
parent: 2
- - uid: 7053
+ - uid: 6304
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-38.5
+ pos: -55.5,-5.5
parent: 2
- - uid: 10219
+ - uid: 33078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,37.5
+ pos: 61.5,80.5
parent: 2
- - uid: 11260
+ - uid: 36749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-29.5
+ pos: 83.5,80.5
parent: 2
- - uid: 16961
+- proto: CrateMedicalSecure
+ entities:
+ - uid: 17887
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,11.5
+ pos: 17.5,9.5
parent: 2
- - uid: 16962
+- proto: CrateNPCHamlet
+ entities:
+ - uid: 30921
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,20.5
+ pos: 13.5,50.5
parent: 2
- - uid: 17000
+- proto: CrateScienceSecure
+ entities:
+ - uid: 3992
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,39.5
+ pos: 34.5,25.5
parent: 2
- - uid: 17087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,6.5
- parent: 2
- - uid: 17088
+ - uid: 5312
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,19.5
+ pos: 34.5,24.5
parent: 2
- - uid: 17089
+ - type: Lock
+ locked: False
+- proto: CrateSecurityNonlethal
+ entities:
+ - uid: 15914
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-2.5
+ pos: -7.5,43.5
parent: 2
- - uid: 17124
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 1013
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,11.5
+ pos: 33.5,-2.5
parent: 2
- - uid: 17128
+- proto: CrateServicePersonnel
+ entities:
+ - uid: 5718
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,33.5
+ pos: 13.5,27.5
parent: 2
- - uid: 17129
+- proto: CrayonMime
+ entities:
+ - uid: 3707
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,24.5
+ pos: -81.752846,1.8026085
parent: 2
- - uid: 17130
+ - uid: 3926
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,24.5
+ pos: -81.29972,1.5213585
parent: 2
- - uid: 17131
+ - uid: 3927
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,39.5
+ pos: -81.565346,1.6619835
parent: 2
- - uid: 17132
+- proto: Crematorium
+ entities:
+ - uid: 7783
components:
- type: Transform
- pos: -2.5,55.5
+ pos: 69.5,30.5
parent: 2
- - uid: 17243
+- proto: CrewMonitoringServer
+ entities:
+ - uid: 6823
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,28.5
+ pos: -6.5,-2.5
parent: 2
- - uid: 17259
+ - type: SingletonDeviceNetServer
+ active: False
+ available: False
+- proto: CrowbarRed
+ entities:
+ - uid: 650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,39.5
+ pos: -32.509914,33.68365
parent: 2
- - uid: 17268
+ - uid: 1503
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,35.5
+ pos: -8.562024,-11.246856
parent: 2
- - uid: 17269
+ - uid: 1644
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,52.5
+ pos: 33.541424,5.472056
parent: 2
- - uid: 17271
+ - uid: 1947
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,52.5
+ pos: 14.496862,30.623743
parent: 2
- - uid: 17312
+ - uid: 2061
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 37.5,46.5
+ pos: -6.3369417,-40.460457
parent: 2
- - uid: 17318
+ - uid: 5592
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,26.5
+ pos: 43.77388,30.490349
parent: 2
- - uid: 17319
+ - uid: 5595
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,36.5
+ pos: 46.555542,34.766357
parent: 2
- - uid: 17356
+ - uid: 5622
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,26.5
+ pos: 36.065853,23.428886
parent: 2
- - uid: 17374
+ - uid: 6065
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,15.5
+ pos: 16.464579,27.342636
parent: 2
- - uid: 17377
+ - uid: 6066
components:
- type: Transform
- pos: 26.5,-27.5
+ pos: 16.628641,27.143417
parent: 2
- - uid: 17378
+ - uid: 6067
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-25.5
+ pos: 21.386454,27.436386
parent: 2
- - uid: 17379
+ - uid: 6068
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-25.5
+ pos: 21.585672,27.237167
parent: 2
- - uid: 17380
+ - uid: 6864
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: -28.531511,-23.315823
parent: 2
- - uid: 17397
+ - uid: 14257
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,-24.5
+ pos: 27.488392,55.664364
parent: 2
- - uid: 17414
+ - uid: 30530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-27.5
+ pos: -7.4310007,18.61997
parent: 2
- - uid: 17449
+ - uid: 33684
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-13.5
+ pos: -11.020447,31.584354
parent: 2
- - uid: 17450
+ - uid: 34983
components:
- type: Transform
- pos: 72.5,0.5
+ pos: 33.450867,5.6835036
parent: 2
- - uid: 17490
+ - uid: 36626
components:
- type: Transform
- pos: 11.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 99.61327,60.97235
parent: 2
- - uid: 17523
+ - uid: 37614
components:
- type: Transform
- pos: 7.5,-34.5
+ pos: -35.38185,-26.814552
parent: 2
- - uid: 17530
+- proto: CryogenicSleepUnit
+ entities:
+ - uid: 920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-5.5
parent: 2
- - uid: 17531
+ - uid: 926
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-11.5
parent: 2
- - uid: 17533
+ - uid: 927
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,9.5
+ pos: 23.5,-11.5
parent: 2
- - uid: 17534
+ - uid: 22030
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-8.5
parent: 2
- - uid: 17535
+ - uid: 22031
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,-0.5
+ pos: 34.5,-8.5
parent: 2
- - uid: 17536
+ - uid: 22032
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-11.5
+ pos: 34.5,-5.5
parent: 2
- - uid: 17537
+- proto: CryogenicSleepUnitSpawnerPrisoner
+ entities:
+ - uid: 94
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,2.5
+ pos: -13.5,61.5
parent: 2
- - uid: 17647
+ - uid: 425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,62.5
parent: 2
- - uid: 17707
+- proto: CryoPod
+ entities:
+ - uid: 1166
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-14.5
+ pos: 12.5,18.5
parent: 2
- - uid: 17708
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 1274
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-18.5
+ pos: 14.5,18.5
parent: 2
- - uid: 17709
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 1278
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-17.5
+ pos: 16.5,18.5
parent: 2
- - uid: 17710
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 38220
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-25.5
+ pos: -107.5,52.5
parent: 2
- - uid: 17712
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: CryoxadoneBeakerSmall
+ entities:
+ - uid: 27321
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-30.5
+ pos: 13.665293,18.666935
parent: 2
- - uid: 19305
+ - uid: 31762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,53.5
+ pos: 13.462168,18.846622
parent: 2
- - uid: 19517
+- proto: CultAltarSpawner
+ entities:
+ - uid: 37649
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-39.5
+ pos: -102.5,-67.5
parent: 2
- - uid: 19762
+- proto: CurtainsBlack
+ entities:
+ - uid: 6550
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,13.5
+ pos: 68.5,9.5
parent: 2
- - uid: 19763
+- proto: CurtainsBlackOpen
+ entities:
+ - uid: 6577
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,15.5
+ pos: 66.5,28.5
parent: 2
- - uid: 19873
+ - uid: 7650
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,73.5
+ pos: 66.5,9.5
parent: 2
- - uid: 28736
+ - uid: 8444
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.5,28.5
+ pos: 68.5,28.5
parent: 2
- - uid: 31781
+- proto: CurtainsBlueOpen
+ entities:
+ - uid: 11874
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-34.5
+ pos: -14.5,-12.5
parent: 2
- - uid: 35887
+ - uid: 13116
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-12.5
parent: 2
- - uid: 35896
+- proto: CurtainsCyanOpen
+ entities:
+ - uid: 7726
components:
- type: Transform
- pos: -20.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-3.5
parent: 2
- - uid: 35904
+ - uid: 8268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-3.5
parent: 2
- - uid: 35907
+ - uid: 9656
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,34.5
+ pos: -1.5,-6.5
parent: 2
- - uid: 35950
+ - uid: 9659
components:
- type: Transform
- pos: -49.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-5.5
parent: 2
- - uid: 35954
+ - uid: 10716
components:
- type: Transform
- pos: -58.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-12.5
parent: 2
- - uid: 35962
+ - uid: 10719
components:
- type: Transform
- pos: 25.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-12.5
parent: 2
- - uid: 35996
+ - uid: 14185
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-25.5
+ pos: -1.5,-7.5
parent: 2
- - uid: 36001
+- proto: CurtainsGreenOpen
+ entities:
+ - uid: 7646
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-12.5
parent: 2
- - uid: 36017
+ - uid: 7648
components:
- type: Transform
- pos: -69.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-12.5
parent: 2
- - uid: 36027
+- proto: CurtainsOrangeOpen
+ entities:
+ - uid: 4439
components:
- type: Transform
- pos: -9.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-17.5
parent: 2
-- proto: DisposalUnit
- entities:
- - uid: 1361
+ - uid: 6081
components:
- type: Transform
- pos: 36.5,-0.5
+ pos: -57.5,10.5
parent: 2
- - uid: 1362
+ - uid: 6082
components:
- type: Transform
- pos: 30.5,9.5
+ pos: -59.5,10.5
parent: 2
- - uid: 1487
+ - uid: 6269
components:
- type: Transform
- pos: 12.5,2.5
+ pos: -58.5,14.5
parent: 2
- - uid: 1591
+ - uid: 6717
components:
- type: Transform
- pos: -3.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-34.5
parent: 2
- - uid: 1710
+ - uid: 6816
components:
- type: Transform
- pos: -1.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-33.5
parent: 2
- - uid: 1827
+ - uid: 7507
components:
- type: Transform
- pos: 30.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-17.5
parent: 2
- - uid: 1828
+ - uid: 7509
components:
- type: Transform
- pos: 16.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-23.5
parent: 2
- - uid: 1977
+ - uid: 7516
components:
- type: Transform
- pos: 11.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-24.5
parent: 2
- - uid: 2556
+ - uid: 8335
components:
- type: Transform
- pos: -2.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-12.5
parent: 2
- - uid: 2652
+ - uid: 8339
components:
- type: Transform
- pos: -57.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-18.5
parent: 2
- - uid: 2730
+ - uid: 8342
components:
- type: Transform
- pos: 26.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-19.5
parent: 2
- - uid: 3550
+ - uid: 8643
components:
- type: Transform
- pos: -56.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-22.5
parent: 2
- - uid: 3773
+ - uid: 8747
components:
- type: Transform
- pos: 41.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-22.5
parent: 2
- - uid: 3774
+ - uid: 11225
components:
- type: Transform
- pos: 17.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
parent: 2
- - uid: 3776
+ - uid: 22668
components:
- type: Transform
- pos: 9.5,-25.5
+ pos: -58.5,10.5
parent: 2
- - uid: 3777
+ - uid: 22679
components:
- type: Transform
- pos: 17.5,-18.5
+ pos: -59.5,14.5
parent: 2
- - uid: 4493
+ - uid: 22789
components:
- type: Transform
- pos: 52.5,15.5
+ pos: -57.5,14.5
parent: 2
- - uid: 5138
+ - uid: 37732
components:
- type: Transform
- pos: 69.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-17.5
parent: 2
- - uid: 5139
+- proto: CurtainsPurpleOpen
+ entities:
+ - uid: 6817
components:
- type: Transform
- pos: 54.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,22.5
parent: 2
- - uid: 5140
+ - uid: 6941
components:
- type: Transform
- pos: 72.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,27.5
parent: 2
- - uid: 5149
+ - uid: 8757
components:
- type: Transform
- pos: 37.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,22.5
parent: 2
- - uid: 5219
+ - uid: 8760
components:
- type: Transform
- pos: 42.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,22.5
parent: 2
- - uid: 5248
+ - uid: 8826
components:
- type: Transform
- pos: 32.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,22.5
parent: 2
- - uid: 5699
+ - uid: 8827
components:
- type: Transform
- pos: 56.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,22.5
parent: 2
- - uid: 6567
+ - uid: 13864
components:
- type: Transform
- pos: -12.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,22.5
parent: 2
- - uid: 7135
+ - uid: 13872
components:
- type: Transform
- pos: -38.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,22.5
parent: 2
- - uid: 7164
+ - uid: 14011
components:
- type: Transform
- pos: -46.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,22.5
parent: 2
- - uid: 7560
+ - uid: 14012
components:
- type: Transform
- pos: -52.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,22.5
parent: 2
- - uid: 7562
+ - uid: 14013
components:
- type: Transform
- pos: -35.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,27.5
parent: 2
- - uid: 8408
+ - uid: 14014
components:
- type: Transform
- pos: -73.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,27.5
parent: 2
- - uid: 8409
+ - uid: 14017
components:
- type: Transform
- pos: -86.5,19.5
+ pos: 41.5,33.5
parent: 2
- - uid: 8410
+ - uid: 14052
components:
- type: Transform
- pos: -95.5,6.5
+ pos: 41.5,30.5
parent: 2
- - uid: 8411
+ - uid: 21815
components:
- type: Transform
- pos: -82.5,-2.5
+ pos: 41.5,34.5
parent: 2
- - uid: 8935
+- proto: CurtainsRedOpen
+ entities:
+ - uid: 4580
components:
- type: Transform
- pos: -47.5,20.5
+ pos: -7.5,22.5
parent: 2
- - uid: 9007
+ - uid: 4745
components:
- type: Transform
- pos: -51.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,34.5
parent: 2
- - uid: 9332
+ - uid: 5419
components:
- type: Transform
- pos: 14.5,22.5
+ pos: -5.5,22.5
parent: 2
- - uid: 9624
+ - uid: 22466
components:
- type: Transform
- pos: -40.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,33.5
parent: 2
- - uid: 11265
+ - uid: 23267
components:
- type: Transform
- pos: -43.5,-29.5
+ pos: -6.5,22.5
parent: 2
- - uid: 11840
+ - uid: 23582
components:
- type: Transform
- pos: -14.5,-34.5
+ pos: -4.5,22.5
parent: 2
- - uid: 12975
+- proto: d12Dice
+ entities:
+ - uid: 23034
components:
- type: Transform
- pos: 24.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -36.820965,60.53547
parent: 2
- - uid: 13083
+- proto: d6Dice
+ entities:
+ - uid: 19662
components:
- type: Transform
- pos: 7.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -37.883465,59.894844
parent: 2
- - uid: 13977
+ - uid: 19663
components:
- type: Transform
- pos: 12.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -38.11784,60.12922
parent: 2
- - uid: 14179
+ - uid: 31230
components:
- type: Transform
- pos: 4.5,35.5
+ pos: -46.758152,-33.965675
parent: 2
- - uid: 15528
+ - uid: 31231
components:
- type: Transform
- pos: -18.5,24.5
+ pos: -47.59409,-33.51255
parent: 2
- - uid: 15594
+- proto: Dart
+ entities:
+ - uid: 34343
components:
- type: Transform
- pos: -8.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -45.753265,-35.049603
parent: 2
- - uid: 15770
+ - uid: 34346
components:
- type: Transform
- pos: -11.5,24.5
+ pos: -49.97476,-32.018353
parent: 2
- - uid: 15929
+- proto: DartBlue
+ entities:
+ - uid: 34342
components:
- type: Transform
- pos: -2.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -50.060696,-31.79179
parent: 2
- - uid: 16079
+ - uid: 37616
components:
- type: Transform
- pos: -10.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -47.81828,-31.08799
parent: 2
- - uid: 16313
+- proto: DartPurple
+ entities:
+ - uid: 37612
components:
- type: Transform
- pos: -18.5,53.5
+ pos: -48.31828,-30.283302
parent: 2
- - uid: 16587
+ - uid: 37615
components:
- type: Transform
- pos: -36.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -49.76359,-31.002052
parent: 2
- - uid: 16975
+- proto: DartYellow
+ entities:
+ - uid: 34344
components:
- type: Transform
- pos: -53.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -38.146633,-34.362103
parent: 2
- - uid: 17270
+ - uid: 37620
components:
- type: Transform
- pos: 20.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -50.052654,-31.291115
parent: 2
- - uid: 17489
+ - uid: 37623
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: -47.207165,-33.35701
parent: 2
- - uid: 18395
+- proto: DefaultStationBeacon
+ entities:
+ - uid: 36471
components:
- type: Transform
- pos: 10.5,16.5
+ pos: 61.5,-6.5
parent: 2
- - uid: 19858
+ - type: NavMapBeacon
+ text: Park
+ - type: WarpPoint
+ location: Park
+ - uid: 36473
components:
- type: Transform
- pos: 4.5,73.5
+ pos: -84.5,8.5
parent: 2
- - uid: 23853
+ - type: NavMapBeacon
+ text: Zoo
+ - type: WarpPoint
+ location: Zoo
+ - uid: 36474
components:
- type: Transform
- pos: -9.5,-39.5
+ pos: 37.5,-26.5
parent: 2
- - uid: 27390
+ - type: NavMapBeacon
+ text: Boxing Ring
+ - type: WarpPoint
+ location: Boxing Ring
+- proto: DefaultStationBeaconAME
+ entities:
+ - uid: 36476
components:
- type: Transform
- pos: 25.5,-25.5
+ pos: -61.5,31.5
parent: 2
- - uid: 28680
+ - type: NavMapBeacon
+ text: AME
+ - type: WarpPoint
+ location: AME
+- proto: DefaultStationBeaconAnomalyGenerator
+ entities:
+ - uid: 36477
components:
- type: Transform
- pos: -20.5,39.5
+ pos: 46.5,38.5
parent: 2
- - uid: 30653
+ - type: NavMapBeacon
+ text: Anomaly generator
+ - type: WarpPoint
+ location: Anomaly Generator
+- proto: DefaultStationBeaconArmory
+ entities:
+ - uid: 10265
components:
- type: Transform
- pos: -4.5,32.5
+ pos: -26.5,39.5
parent: 2
- - uid: 30667
+- proto: DefaultStationBeaconArrivals
+ entities:
+ - uid: 6057
components:
- type: Transform
- pos: 43.5,28.5
+ pos: 1.5,-42.5
parent: 2
- - uid: 30668
+ - type: NavMapBeacon
+ text: Arrivals
+ - type: WarpPoint
+ location: Arrivals
+- proto: DefaultStationBeaconArtifactLab
+ entities:
+ - uid: 36472
components:
- type: Transform
- pos: -9.5,-11.5
+ pos: 42.5,48.5
parent: 2
- - uid: 30717
+ - type: NavMapBeacon
+ text: Xenoarchaelogy
+ - type: WarpPoint
+ location: Xenoarchaeology
+- proto: DefaultStationBeaconAtmospherics
+ entities:
+ - uid: 6058
components:
- type: Transform
- pos: -3.5,61.5
+ pos: -43.5,42.5
parent: 2
- - uid: 30747
+ - type: NavMapBeacon
+ text: Atmospherics
+ - type: WarpPoint
+ location: Atmospherics
+- proto: DefaultStationBeaconBotany
+ entities:
+ - uid: 6060
components:
- type: Transform
- pos: 47.5,34.5
+ pos: -57.5,0.5
parent: 2
- - uid: 30753
+ - type: NavMapBeacon
+ text: Botany
+ - type: WarpPoint
+ location: Botany
+- proto: DefaultStationBeaconBridge
+ entities:
+ - uid: 6276
components:
- type: Transform
- pos: -49.5,16.5
+ pos: 18.5,53.5
parent: 2
- - uid: 30755
+ - type: NavMapBeacon
+ text: Bridge
+ - type: WarpPoint
+ location: Bridge
+- proto: DefaultStationBeaconBrig
+ entities:
+ - uid: 6291
components:
- type: Transform
- pos: -58.5,11.5
+ pos: -27.5,29.5
parent: 2
- - uid: 30793
+ - type: NavMapBeacon
+ text: Brig
+ - type: WarpPoint
+ location: Brig
+- proto: DefaultStationBeaconCaptainsQuarters
+ entities:
+ - uid: 10234
components:
- type: Transform
- pos: -27.5,-25.5
+ pos: 27.5,50.5
parent: 2
- - uid: 30796
+- proto: DefaultStationBeaconCERoom
+ entities:
+ - uid: 7349
components:
- type: Transform
- pos: -54.5,2.5
+ pos: -59.5,12.5
parent: 2
- - uid: 30803
+ - type: NavMapBeacon
+ text: CE's Room
+ - type: WarpPoint
+ location: CE's Room
+- proto: DefaultStationBeaconChapel
+ entities:
+ - uid: 7350
components:
- type: Transform
- pos: -69.5,15.5
+ pos: 66.5,17.5
parent: 2
-- proto: DisposalYJunction
+ - type: NavMapBeacon
+ text: Church
+ - type: WarpPoint
+ location: Church
+- proto: DefaultStationBeaconChemistry
entities:
- - uid: 2317
+ - uid: 8461
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,11.5
+ pos: 18.5,-4.5
parent: 2
- - uid: 16695
+ - type: NavMapBeacon
+ text: Chemistry
+ - type: WarpPoint
+ location: Chemistry
+- proto: DefaultStationBeaconCMORoom
+ entities:
+ - uid: 8743
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-15.5
+ pos: -9.5,-9.5
parent: 2
- - uid: 16696
+ - type: NavMapBeacon
+ text: CMO's Room
+ - type: WarpPoint
+ location: CMO's Room
+- proto: DefaultStationBeaconCommand
+ entities:
+ - uid: 36489
components:
- type: Transform
- pos: -32.5,20.5
+ pos: 18.5,42.5
parent: 2
- - uid: 16907
+ - type: NavMapBeacon
+ text: Command
+ - type: WarpPoint
+ location: Command
+- proto: DefaultStationBeaconCourtroom
+ entities:
+ - uid: 8817
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-39.5
+ pos: -8.5,53.5
parent: 2
- - uid: 17073
+ - type: NavMapBeacon
+ text: Courtroom
+ - type: WarpPoint
+ location: Courtroom
+- proto: DefaultStationBeaconCryosleep
+ entities:
+ - uid: 38712
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,8.5
+ pos: 27.5,-8.5
parent: 2
- - uid: 17200
+- proto: DefaultStationBeaconDetectiveRoom
+ entities:
+ - uid: 15095
components:
- type: Transform
- pos: -15.5,29.5
+ pos: -34.5,34.5
parent: 2
- - uid: 17371
+ - type: NavMapBeacon
+ text: Detective's Room
+ - type: WarpPoint
+ location: Detective's Room
+ - uid: 20633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,17.5
+ pos: -21.5,-9.5
parent: 2
- - uid: 17638
+- proto: DefaultStationBeaconDisposals
+ entities:
+ - uid: 37692
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,3.5
+ pos: -38.5,3.5
parent: 2
- - uid: 17770
+- proto: DefaultStationBeaconEngineering
+ entities:
+ - uid: 15289
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-23.5
+ pos: -54.5,19.5
parent: 2
-- proto: DogBed
+ - type: NavMapBeacon
+ text: Engineering
+ - type: WarpPoint
+ location: Engineering
+- proto: DefaultStationBeaconEscapePod
entities:
- - uid: 619
+ - uid: 38713
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -64.5,-17.5
parent: 2
- - uid: 1963
+ - uid: 38714
components:
- type: Transform
- pos: 12.5,29.5
+ pos: 46.5,-34.5
parent: 2
- - uid: 5715
+ - uid: 38715
components:
- type: Transform
- pos: 43.5,25.5
+ pos: 80.5,0.5
parent: 2
- - uid: 5731
+- proto: DefaultStationBeaconEvac
+ entities:
+ - uid: 15310
components:
- type: Transform
- pos: 23.5,10.5
+ pos: 1.5,76.5
parent: 2
- - uid: 5736
+ - type: NavMapBeacon
+ text: Evacuation
+ - type: WarpPoint
+ location: Evacuation
+- proto: DefaultStationBeaconEVAStorage
+ entities:
+ - uid: 15815
components:
- type: Transform
- pos: 48.5,29.5
+ pos: 19.5,26.5
parent: 2
- - uid: 6111
+ - type: NavMapBeacon
+ text: EVA Storage
+ - type: WarpPoint
+ location: EVA Storage
+- proto: DefaultStationBeaconGravGen
+ entities:
+ - uid: 15938
components:
- type: Transform
- pos: 54.5,28.5
+ pos: -60.5,16.5
parent: 2
- - uid: 6421
+ - type: NavMapBeacon
+ text: Gravity Generator
+ - type: WarpPoint
+ location: Gravity Generator
+- proto: DefaultStationBeaconHOPOffice
+ entities:
+ - uid: 16605
components:
- type: Transform
- pos: 80.5,-7.5
+ pos: 7.5,29.5
parent: 2
- - uid: 8371
+ - type: NavMapBeacon
+ text: HOP's Office
+ - type: WarpPoint
+ location: HOP's Office
+- proto: DefaultStationBeaconHOSRoom
+ entities:
+ - uid: 36492
components:
- type: Transform
- pos: -55.5,-28.5
+ pos: -6.5,33.5
parent: 2
- - uid: 8372
+ - type: NavMapBeacon
+ text: HOS's Room
+ - type: WarpPoint
+ location: HOS's Room
+- proto: DefaultStationBeaconJanitorsCloset
+ entities:
+ - uid: 19179
components:
- type: Transform
- pos: -56.5,-28.5
+ pos: -38.5,11.5
parent: 2
- - uid: 15266
+- proto: DefaultStationBeaconKitchen
+ entities:
+ - uid: 24541
components:
- type: Transform
- pos: 25.5,50.5
+ pos: -47.5,-22.5
parent: 2
- - uid: 15697
+ - type: NavMapBeacon
+ text: Kitchen
+ - type: WarpPoint
+ location: Kitchen
+- proto: DefaultStationBeaconLawOffice
+ entities:
+ - uid: 36493
components:
- type: Transform
- pos: -9.5,25.5
+ pos: -5.5,59.5
parent: 2
- - uid: 15976
+ - type: NavMapBeacon
+ text: Lawyer's Office
+ - type: WarpPoint
+ location: Lawyer's Office
+- proto: DefaultStationBeaconLibrary
+ entities:
+ - uid: 25741
components:
- type: Transform
- pos: -22.5,41.5
+ pos: 56.5,28.5
parent: 2
- - uid: 19373
+ - type: NavMapBeacon
+ text: Library
+ - type: WarpPoint
+ location: Library
+- proto: DefaultStationBeaconMedical
+ entities:
+ - uid: 26875
components:
- type: Transform
- pos: -25.5,-20.5
+ pos: 1.5,2.5
parent: 2
- - uid: 22277
+ - type: NavMapBeacon
+ text: Medical
+ - type: WarpPoint
+ location: Medical
+- proto: DefaultStationBeaconMorgue
+ entities:
+ - uid: 31754
components:
- type: Transform
- pos: 29.5,28.5
+ pos: 27.5,12.5
parent: 2
- - uid: 32569
+- proto: DefaultStationBeaconPermaBrig
+ entities:
+ - uid: 28970
components:
- type: Transform
- pos: 74.5,64.5
+ pos: -22.5,63.5
parent: 2
-- proto: DonkpocketBoxSpawner
+ - type: NavMapBeacon
+ text: Psych Ward
+ - type: WarpPoint
+ location: Psych Ward
+- proto: DefaultStationBeaconQMRoom
entities:
- - uid: 9085
+ - uid: 28973
components:
- type: Transform
- pos: -47.5,22.5
+ pos: -27.5,-24.5
parent: 2
- - uid: 9086
+ - type: NavMapBeacon
+ text: LO's Room
+ - type: WarpPoint
+ location: LO's Room
+- proto: DefaultStationBeaconRDRoom
+ entities:
+ - uid: 28974
components:
- type: Transform
- pos: -16.5,-28.5
+ pos: 45.5,29.5
parent: 2
- - uid: 15605
+ - type: NavMapBeacon
+ text: MG's Room
+ - type: WarpPoint
+ location: MG's Room
+- proto: DefaultStationBeaconRobotics
+ entities:
+ - uid: 36495
components:
- type: Transform
- pos: -11.5,28.5
+ pos: 45.5,43.5
parent: 2
- - uid: 18089
+ - type: NavMapBeacon
+ text: Robotics
+ - type: WarpPoint
+ location: Robotics
+- proto: DefaultStationBeaconSalvage
+ entities:
+ - uid: 36496
components:
- type: Transform
- pos: -18.5,57.5
+ pos: -10.5,-40.5
parent: 2
- - uid: 18454
+ - type: NavMapBeacon
+ text: Salvage
+ - type: WarpPoint
+ location: Salvage
+- proto: DefaultStationBeaconScience
+ entities:
+ - uid: 29723
components:
- type: Transform
- pos: -61.5,-1.5
+ pos: 29.5,28.5
parent: 2
- - uid: 32539
+ - type: NavMapBeacon
+ text: Epistemics
+ - type: WarpPoint
+ location: Epistemics
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 10270
components:
- type: Transform
- pos: 98.5,33.5
+ pos: -20.5,29.5
parent: 2
- - uid: 32590
+- proto: DefaultStationBeaconSecurityCheckpoint
+ entities:
+ - uid: 5896
components:
- type: Transform
- pos: 99.5,33.5
+ pos: 7.5,-22.5
parent: 2
-- proto: DoubleEmergencyNitrogenTankFilled
+- proto: DefaultStationBeaconSingularity
entities:
- - uid: 578
+ - uid: 19233
components:
- type: Transform
- pos: 21.385355,25.859453
+ pos: 87.5,-16.5
parent: 2
- - uid: 2985
+- proto: DefaultStationBeaconSupply
+ entities:
+ - uid: 19852
components:
- type: Transform
- pos: 21.542994,25.51156
+ pos: -20.5,-32.5
parent: 2
-- proto: DoubleEmergencyOxygenTankFilled
+- proto: DefaultStationBeaconTechVault
entities:
- - uid: 2991
+ - uid: 36475
components:
- type: Transform
- pos: 16.386623,25.897505
+ pos: -49.5,26.5
parent: 2
- - uid: 5520
+ - type: NavMapBeacon
+ text: Tech Vault
+ - type: WarpPoint
+ location: Tech Vault
+- proto: DefaultStationBeaconTheater
+ entities:
+ - uid: 31784
components:
- type: Transform
- pos: 16.544262,25.620277
+ pos: -78.5,3.5
parent: 2
-- proto: DresserCaptainFilled
+ - type: NavMapBeacon
+ text: Theater
+ - type: WarpPoint
+ location: Theater
+- proto: DefaultStationBeaconToolRoom
entities:
- - uid: 15701
+ - uid: 31790
components:
- type: Transform
- pos: 22.5,50.5
+ pos: -68.5,1.5
parent: 2
-- proto: DresserChiefEngineerFilled
+ - type: NavMapBeacon
+ text: Service Lounge
+ - type: WarpPoint
+ location: Service Lounge
+- proto: DefaultStationBeaconVault
entities:
- - uid: 15372
+ - uid: 31791
components:
- type: Transform
- pos: -62.5,11.5
+ pos: 27.5,38.5
parent: 2
-- proto: DresserChiefMedicalOfficerFilled
+ - type: NavMapBeacon
+ text: Vault
+ - type: WarpPoint
+ location: Vault
+- proto: DefaultStationBeaconWardensOffice
entities:
- - uid: 7857
+ - uid: 28956
components:
- type: Transform
- pos: -8.5,-11.5
+ pos: -20.5,49.5
parent: 2
-- proto: DresserFilled
+- proto: DefibrillatorCabinetFilled
entities:
- - uid: 4763
+ - uid: 3849
components:
- type: Transform
- pos: -75.5,0.5
+ pos: 40.5,-21.5
parent: 2
- - uid: 5434
+ - uid: 6953
components:
- type: Transform
- pos: 46.5,34.5
+ pos: -14.5,-32.5
parent: 2
- - uid: 10014
+ - uid: 14201
components:
- type: Transform
- pos: -79.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,49.5
parent: 2
- - uid: 11256
+ - uid: 33935
components:
- type: Transform
- pos: -71.5,0.5
+ pos: 7.5,17.5
parent: 2
- - uid: 22088
+ - uid: 35950
components:
- type: Transform
- pos: 65.5,30.5
- parent: 2
- - uid: 32591
+ rot: 3.141592653589793 rad
+ pos: -43.5,57.5
+ parent: 2
+ - uid: 36763
components:
- type: Transform
- pos: 72.5,42.5
+ pos: 29.5,8.5
parent: 2
-- proto: DresserHeadOfPersonnelFilled
+- proto: DeployableBarrier
entities:
- - uid: 7327
+ - uid: 14165
components:
- type: Transform
- pos: 14.5,28.5
+ pos: -5.5,37.5
parent: 2
-- proto: DresserHeadOfSecurityFilled
- entities:
- - uid: 22292
+ - uid: 14166
components:
- type: Transform
- pos: -4.5,35.5
+ pos: -7.5,37.5
parent: 2
-- proto: DresserQuarterMasterFilled
- entities:
- - uid: 15112
+ - uid: 14171
components:
- type: Transform
- pos: -25.5,-25.5
+ pos: -6.5,37.5
parent: 2
-- proto: DresserResearchDirectorFilled
- entities:
- - uid: 8811
+ - uid: 14882
components:
- type: Transform
- pos: 49.5,30.5
+ pos: 24.5,46.5
parent: 2
-- proto: DresserWardenFilled
- entities:
- - uid: 29655
+ - uid: 31945
components:
- type: Transform
- pos: -30.5,42.5
+ pos: -16.5,46.5
parent: 2
-- proto: DrinkAleGlass
- entities:
- - uid: 5911
+ - uid: 38837
components:
- type: Transform
- pos: 15.356108,-32.217487
+ pos: 23.5,46.5
parent: 2
- - uid: 5914
+ - uid: 38838
components:
- type: Transform
- pos: 16.408997,-27.678394
+ pos: 29.5,45.5
parent: 2
-- proto: DrinkBananaHonkGlass
+- proto: DeskBell
entities:
- - uid: 5915
+ - uid: 61
components:
- type: Transform
- pos: 20.166368,-32.38155
+ pos: -1.3602465,-32.409664
parent: 2
-- proto: DrinkBeerglass
- entities:
- - uid: 6878
+ - uid: 102
components:
- type: Transform
- pos: -11.582957,-42.05465
+ pos: 3.4338489,5.520546
parent: 2
- - uid: 6880
+ - uid: 1138
components:
- type: Transform
- pos: -11.395457,-42.171837
+ pos: 19.834106,-6.375514
parent: 2
- - uid: 19606
+ - uid: 1143
components:
- type: Transform
- pos: -37.258465,60.332344
+ pos: 17.177856,-6.375514
parent: 2
-- proto: DrinkBloodyMaryGlass
- entities:
- - uid: 5893
+ - uid: 1430
components:
- type: Transform
- pos: 20.547514,-29.182331
+ pos: 13.689143,4.6450024
parent: 2
-- proto: DrinkBottleBeer
- entities:
- - uid: 8355
+ - uid: 1527
components:
- type: Transform
- pos: -73.29047,3.1253412
+ pos: 27.060135,-3.4577832
parent: 2
- - uid: 11272
+ - uid: 1927
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.10297,2.6331537
+ pos: 7.647935,26.652452
parent: 2
- - uid: 11273
+ - uid: 2231
components:
- type: Transform
- pos: -73.14984,3.0315912
+ pos: -3.3289967,-34.296383
parent: 2
-- proto: DrinkBottleWine
- entities:
- - uid: 4381
+ - uid: 2690
components:
- type: Transform
- pos: 61.698837,24.84039
+ pos: 13.110749,41.62234
parent: 2
- - uid: 4382
+ - uid: 2957
components:
- type: Transform
- pos: 61.948837,24.887264
+ pos: -14.030302,-22.251932
parent: 2
- - uid: 9325
+ - uid: 2958
components:
- type: Transform
- pos: 55.7811,10.768181
+ pos: -8.999052,-22.283182
parent: 2
- - uid: 30032
+ - uid: 3683
components:
- type: Transform
- pos: 91.68901,18.844994
+ pos: -48.534878,2.972764
parent: 2
-- proto: DrinkBubbleTeaGlass
- entities:
- - uid: 3357
+ - uid: 5258
components:
- type: Transform
- pos: 20.172514,-29.264362
+ pos: 28.44021,25.612677
parent: 2
- - uid: 5892
+ - uid: 7422
components:
- type: Transform
- pos: 25.715483,-29.065144
+ pos: -49.705414,14.664018
parent: 2
- - uid: 7585
+ - uid: 7545
components:
- type: Transform
- pos: -42.676247,-17.17277
+ pos: -51.532696,-17.42208
parent: 2
-- proto: DrinkCartonMilk
- entities:
- - uid: 1127
+ - uid: 7546
components:
- type: Transform
- pos: -56.96867,-27.349045
+ pos: -51.474102,-20.269735
parent: 2
- - uid: 8370
+ - uid: 8403
components:
- type: Transform
- pos: -57.2382,-27.243576
+ pos: -69.25393,12.611276
parent: 2
-- proto: DrinkChampagneBottleFull
- entities:
- - uid: 27408
+ - uid: 12095
components:
- type: Transform
- pos: 34.67687,-10.322123
+ pos: 3.5756717,-24.22921
parent: 2
-- proto: DrinkChocolateGlass
- entities:
- - uid: 16533
+ - uid: 15395
components:
- type: Transform
- pos: -25.277435,7.837277
+ pos: -20.215748,27.700657
parent: 2
- - uid: 16535
+ - uid: 37661
components:
- type: Transform
- pos: -19.359467,7.6146207
+ pos: -0.4217875,42.462593
parent: 2
-- proto: DrinkCoffee
+- proto: DiseaseDiagnoser
entities:
- - uid: 1589
+ - uid: 7274
components:
- type: Transform
- pos: -8.423184,11.754102
+ pos: -7.5,7.5
parent: 2
- - uid: 1590
+- proto: DiseaseSwab
+ entities:
+ - uid: 18080
components:
- type: Transform
- pos: -8.688809,11.863477
+ pos: -14.427854,7.5229125
parent: 2
- - uid: 2082
+ - uid: 21911
components:
- type: Transform
- pos: -22.18132,-9.106619
+ pos: -14.224729,7.4916625
parent: 2
- - uid: 5564
+- proto: DisposalBend
+ entities:
+ - uid: 656
components:
- type: Transform
- pos: -53.211754,25.91696
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-16.5
parent: 2
- - uid: 5733
+ - uid: 717
components:
- type: Transform
- pos: 46.65273,25.025793
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-17.5
parent: 2
- - uid: 6876
+ - uid: 733
components:
- type: Transform
- pos: -9.496035,-25.091621
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-15.5
parent: 2
- - uid: 6877
+ - uid: 735
components:
- type: Transform
- pos: -28.145683,-20.579903
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-14.5
parent: 2
- - uid: 14134
+ - uid: 982
components:
- type: Transform
- pos: 13.325816,48.755283
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-16.5
parent: 2
- - uid: 14135
+ - uid: 1059
components:
- type: Transform
- pos: 11.747691,47.70841
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-13.5
parent: 2
- - uid: 14283
+ - uid: 1088
components:
- type: Transform
- pos: 13.624886,47.71295
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-15.5
parent: 2
- - uid: 15745
+ - uid: 1344
components:
- type: Transform
- pos: -5.7781143,25.839651
+ rot: 1.5707963267948966 rad
+ pos: 10.5,12.5
parent: 2
- - uid: 27962
+ - uid: 1349
components:
- type: Transform
- pos: 19.7411,47.67416
+ pos: 17.5,12.5
parent: 2
-- proto: DrinkCoffeeLiqueurBottleFull
- entities:
- - uid: 14025
+ - uid: 2037
components:
- type: Transform
- pos: 8.778941,54.849033
+ pos: 49.5,20.5
parent: 2
-- proto: DrinkCoffeeLiqueurGlass
- entities:
- - uid: 14132
+ - uid: 2038
components:
- type: Transform
- pos: 8.075816,54.911533
+ rot: 3.141592653589793 rad
+ pos: 49.5,3.5
parent: 2
- - uid: 30514
+ - uid: 2136
components:
- type: Transform
- pos: 0.65781116,66.89836
+ pos: 50.5,3.5
parent: 2
-- proto: DrinkColaCanEmpty
- entities:
- - uid: 7101
+ - uid: 2149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.80446,-20.25893
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-14.5
parent: 2
- - uid: 7102
+ - uid: 2152
components:
- type: Transform
- pos: 31.945086,-18.680805
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-13.5
parent: 2
- - uid: 7109
+ - uid: 2291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.11696,-18.88393
+ pos: 39.5,-16.5
parent: 2
- - uid: 7415
+ - uid: 2293
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.379618,-18.97768
+ pos: 38.5,-15.5
parent: 2
- - uid: 9636
+ - uid: 2296
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.926493,-21.555805
+ rot: 3.141592653589793 rad
+ pos: 39.5,-17.5
parent: 2
-- proto: DrinkDetFlask
- entities:
- - uid: 14091
+ - uid: 2301
components:
- type: Transform
- pos: -32.655514,35.41943
+ rot: 3.141592653589793 rad
+ pos: 38.5,-16.5
parent: 2
-- proto: DrinkEmeraldGlass
- entities:
- - uid: 14026
+ - uid: 2909
components:
- type: Transform
- pos: 6.560191,55.08341
+ pos: 15.5,49.5
parent: 2
-- proto: DrinkFlask
- entities:
- - uid: 14195
+ - uid: 3704
components:
- type: Transform
- pos: 13.633378,48.80755
+ rot: 3.141592653589793 rad
+ pos: -33.5,-7.5
parent: 2
-- proto: DrinkFlaskBar
- entities:
- - uid: 863
+ - uid: 5226
components:
- type: Transform
- pos: 14.628693,30.63074
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-35.5
parent: 2
-- proto: DrinkGinGlass
- entities:
- - uid: 15106
+ - uid: 6199
components:
- type: Transform
- pos: 26.706886,48.66876
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-21.5
parent: 2
-- proto: DrinkGlass
- entities:
- - uid: 36449
+ - uid: 6247
components:
- type: Transform
- pos: 34.385204,-10.30129
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-23.5
parent: 2
-- proto: DrinkGlassWhite
- entities:
- - uid: 23766
+ - uid: 9145
components:
- type: Transform
- pos: -57.320232,-27.442795
+ pos: -29.5,-10.5
parent: 2
-- proto: DrinkGoldenCup
- entities:
- - uid: 32557
+ - uid: 11976
components:
- type: Transform
- pos: 83.53129,71.6956
+ rot: 3.141592653589793 rad
+ pos: 15.5,-15.5
parent: 2
-- proto: DrinkGrapeCan
- entities:
- - uid: 6901
+ - uid: 16698
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.61003,-3.506958
+ pos: -32.5,-7.5
parent: 2
- - uid: 7248
+ - uid: 16732
components:
- type: Transform
- pos: 31.386068,-17.274555
+ pos: -10.5,24.5
parent: 2
- - uid: 19810
+ - uid: 16911
components:
- type: Transform
- pos: 19.886068,-17.399555
+ rot: 3.141592653589793 rad
+ pos: -46.5,-9.5
parent: 2
-- proto: DrinkGreenTeaGlass
- entities:
- - uid: 934
+ - uid: 16926
components:
- type: Transform
- pos: -72.31412,5.791229
+ rot: 1.5707963267948966 rad
+ pos: -33.5,20.5
parent: 2
-- proto: DrinkHosFlask
- entities:
- - uid: 14196
+ - uid: 16927
components:
- type: Transform
- pos: 6.149003,47.854424
+ rot: -1.5707963267948966 rad
+ pos: -33.5,19.5
parent: 2
-- proto: DrinkHotCoco
- entities:
- - uid: 5148
+ - uid: 16928
components:
- type: Transform
- pos: 71.64327,-18.151184
+ rot: 1.5707963267948966 rad
+ pos: -36.5,19.5
parent: 2
- - uid: 5154
+ - uid: 16929
components:
- type: Transform
- pos: 71.56515,-18.44806
+ rot: -1.5707963267948966 rad
+ pos: -36.5,18.5
parent: 2
- - uid: 5174
+ - uid: 16930
components:
- type: Transform
- pos: 69.51709,-15.36441
+ rot: 1.5707963267948966 rad
+ pos: -37.5,18.5
parent: 2
- - uid: 5175
+ - uid: 16931
components:
- type: Transform
- pos: 71.9089,-18.35431
+ rot: -1.5707963267948966 rad
+ pos: -37.5,17.5
parent: 2
- - uid: 6875
+ - uid: 16932
components:
- type: Transform
- pos: -16.307503,-29.685396
+ rot: 1.5707963267948966 rad
+ pos: -39.5,17.5
parent: 2
-- proto: DrinkIceCreamGlass
- entities:
- - uid: 14271
+ - uid: 16933
components:
- type: Transform
- pos: 6.9146633,54.812767
+ rot: -1.5707963267948966 rad
+ pos: -39.5,16.5
parent: 2
-- proto: DrinkIrishCarBomb
- entities:
- - uid: 36050
+ - uid: 16934
components:
- type: Transform
- pos: 29.42272,16.837929
+ rot: 1.5707963267948966 rad
+ pos: -44.5,16.5
parent: 2
- - uid: 36393
+ - uid: 16935
components:
- type: Transform
- pos: 83.59416,59.63084
+ rot: -1.5707963267948966 rad
+ pos: -44.5,8.5
parent: 2
-- proto: DrinkMartiniGlass
- entities:
- - uid: 3393
+ - uid: 16936
components:
- type: Transform
- pos: 16.705872,-28.490894
+ rot: -1.5707963267948966 rad
+ pos: -45.5,4.5
parent: 2
- - uid: 3775
+ - uid: 16937
components:
- type: Transform
- pos: 19.305326,-32.11202
+ rot: 1.5707963267948966 rad
+ pos: -46.5,4.5
parent: 2
- - uid: 5761
+ - uid: 16938
components:
- type: Transform
- pos: 21.684233,-28.44405
+ pos: -45.5,-9.5
parent: 2
- - uid: 5889
+ - uid: 16939
components:
- type: Transform
- pos: 14.254545,-32.533894
+ pos: -44.5,-10.5
parent: 2
- - uid: 5891
+ - uid: 16940
components:
- type: Transform
- pos: 18.543608,-29.158894
+ pos: -43.5,-11.5
parent: 2
- - uid: 6874
+ - uid: 16941
components:
- type: Transform
- pos: -16.682503,-29.451021
+ pos: -42.5,-12.5
parent: 2
- - uid: 20194
+ - uid: 16942
components:
- type: Transform
- pos: 26.585108,-29.578442
+ pos: -41.5,-13.5
parent: 2
-- proto: DrinkMelonLiquorBottleFull
- entities:
- - uid: 14024
+ - uid: 16943
components:
- type: Transform
- pos: 8.513316,54.77091
+ pos: -39.5,-14.5
parent: 2
-- proto: DrinkMugOne
- entities:
- - uid: 1372
+ - uid: 16944
components:
- type: Transform
- pos: -28.767122,-9.249852
+ rot: 3.141592653589793 rad
+ pos: -39.5,-15.5
parent: 2
-- proto: DrinkOrangeCreamiceGlass
- entities:
- - uid: 33592
+ - uid: 16946
components:
- type: Transform
- pos: 78.69534,44.817745
+ rot: 3.141592653589793 rad
+ pos: -42.5,-13.5
parent: 2
-- proto: DrinkRootBeerCan
- entities:
- - uid: 6902
+ - uid: 16947
components:
- type: Transform
- pos: 49.539467,-21.352646
+ rot: 3.141592653589793 rad
+ pos: -43.5,-12.5
parent: 2
-- proto: DrinkRumBottleFull
- entities:
- - uid: 19403
+ - uid: 16948
components:
- type: Transform
- pos: 26.240528,37.993225
+ rot: 3.141592653589793 rad
+ pos: -44.5,-11.5
parent: 2
-- proto: DrinkSakeBottleFull
- entities:
- - uid: 33616
+ - uid: 16949
components:
- type: Transform
- pos: 88.19735,62.896553
+ rot: 3.141592653589793 rad
+ pos: -45.5,-10.5
parent: 2
-- proto: DrinkShaker
- entities:
- - uid: 5752
+ - uid: 16950
components:
- type: Transform
- pos: 17.921667,-29.255095
+ rot: 3.141592653589793 rad
+ pos: -84.5,-2.5
parent: 2
- - uid: 5755
+ - uid: 16952
components:
- type: Transform
- pos: 20.288855,-23.337126
+ pos: -45.5,11.5
parent: 2
- - uid: 5756
+ - uid: 16958
components:
- type: Transform
- pos: 20.52323,-23.524626
+ rot: -1.5707963267948966 rad
+ pos: 16.5,2.5
parent: 2
- - uid: 5757
+ - uid: 16976
components:
- type: Transform
- pos: 20.628698,-23.1965
+ rot: 3.141592653589793 rad
+ pos: -54.5,12.5
parent: 2
- - uid: 7113
+ - uid: 16977
components:
- type: Transform
- pos: -37.171097,-18.25424
+ pos: -50.5,12.5
parent: 2
-- proto: DrinkShinyFlask
- entities:
- - uid: 14183
+ - uid: 17002
components:
- type: Transform
- pos: 6.4358735,55.832787
+ pos: -48.5,22.5
parent: 2
-- proto: DrinkShotGlass
- entities:
- - uid: 3610
+ - uid: 17003
components:
- type: Transform
- pos: 16.440247,-28.13152
+ rot: 3.141592653589793 rad
+ pos: -48.5,20.5
parent: 2
- - uid: 3632
+ - uid: 17032
components:
- type: Transform
- pos: 19.471497,-29.44402
+ rot: -1.5707963267948966 rad
+ pos: -42.5,30.5
parent: 2
- - uid: 3701
+ - uid: 17034
components:
- type: Transform
- pos: 17.408997,-29.44402
+ rot: 3.141592653589793 rad
+ pos: -46.5,7.5
parent: 2
- - uid: 3703
+ - uid: 17035
components:
- type: Transform
- pos: 14.940248,-33.459644
+ pos: -46.5,8.5
parent: 2
- - uid: 3711
+ - uid: 17083
components:
- type: Transform
- pos: 21.424622,-28.63152
+ rot: 1.5707963267948966 rad
+ pos: -85.5,9.5
parent: 2
- - uid: 3712
+ - uid: 17084
components:
- type: Transform
- pos: 19.955872,-32.209644
+ rot: -1.5707963267948966 rad
+ pos: -85.5,8.5
parent: 2
- - uid: 3762
+ - uid: 17085
components:
- type: Transform
- pos: 20.658997,-29.490894
+ rot: 1.5707963267948966 rad
+ pos: -95.5,8.5
parent: 2
- - uid: 3949
+ - uid: 17086
components:
- type: Transform
- pos: 15.408998,-32.740894
+ pos: -84.5,19.5
parent: 2
- - uid: 3996
+ - uid: 17112
components:
- type: Transform
- pos: 52.481697,21.912735
+ rot: 1.5707963267948966 rad
+ pos: -73.5,9.5
parent: 2
- - uid: 4236
+ - uid: 17123
components:
- type: Transform
- pos: 14.674623,-33.35027
+ pos: -72.5,11.5
parent: 2
- - uid: 4391
+ - uid: 17127
components:
- type: Transform
- pos: 59.659588,24.648193
+ rot: -1.5707963267948966 rad
+ pos: -72.5,9.5
parent: 2
- - uid: 4392
+ - uid: 17133
components:
- type: Transform
- pos: 55.722088,24.710693
+ rot: 3.141592653589793 rad
+ pos: -2.5,52.5
parent: 2
- - uid: 4393
+ - uid: 17194
components:
- type: Transform
- pos: 55.293804,24.667433
+ pos: -2.5,-9.5
parent: 2
- - uid: 4394
+ - uid: 17196
components:
- type: Transform
- pos: 56.261337,10.434139
+ rot: 1.5707963267948966 rad
+ pos: 1.5,19.5
parent: 2
- - uid: 4395
+ - uid: 17197
components:
- type: Transform
- pos: 56.136337,10.684139
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
parent: 2
- - uid: 4396
+ - uid: 17198
components:
- type: Transform
- pos: 62.230087,24.68414
+ pos: -35.5,33.5
parent: 2
- - uid: 4397
+ - uid: 17199
components:
- type: Transform
- pos: 64.54259,24.74664
+ rot: 3.141592653589793 rad
+ pos: -35.5,29.5
parent: 2
- - uid: 4398
+ - uid: 17244
components:
- type: Transform
- pos: 64.12071,24.856014
+ pos: -8.5,29.5
parent: 2
- - uid: 4399
+ - uid: 17245
components:
- type: Transform
- pos: 64.30821,24.512264
+ pos: -10.5,40.5
parent: 2
- - uid: 8477
+ - uid: 17246
components:
- type: Transform
- pos: 26.444483,-29.406567
+ rot: 1.5707963267948966 rad
+ pos: -12.5,40.5
parent: 2
- - uid: 9311
+ - uid: 17247
components:
- type: Transform
- pos: 17.690247,-29.28777
+ rot: 3.141592653589793 rad
+ pos: -12.5,35.5
parent: 2
- - uid: 14184
+ - uid: 17248
components:
- type: Transform
- pos: 7.865423,54.562023
+ pos: -11.5,35.5
parent: 2
- - uid: 14221
+ - uid: 17305
components:
- type: Transform
- pos: 7.662298,54.7339
+ rot: 1.5707963267948966 rad
+ pos: 11.5,52.5
parent: 2
- - uid: 14222
+ - uid: 17306
components:
- type: Transform
- pos: 7.521673,54.4839
+ rot: 3.141592653589793 rad
+ pos: 11.5,49.5
parent: 2
- - uid: 14223
+ - uid: 17307
components:
- type: Transform
- pos: 11.740423,54.718273
+ rot: 3.141592653589793 rad
+ pos: 15.5,48.5
parent: 2
- - uid: 14224
+ - uid: 17308
components:
- type: Transform
- pos: 13.268022,56.144814
+ rot: 1.5707963267948966 rad
+ pos: 19.5,52.5
parent: 2
- - uid: 14225
+ - uid: 17310
components:
- type: Transform
- pos: 6.427923,47.812023
+ rot: -1.5707963267948966 rad
+ pos: 19.5,39.5
parent: 2
- - uid: 14226
+ - uid: 17313
components:
- type: Transform
- pos: 6.427923,55.39015
+ pos: 39.5,46.5
parent: 2
- - uid: 19368
+ - uid: 17315
components:
- type: Transform
- pos: 64.0311,10.580681
+ rot: 1.5707963267948966 rad
+ pos: 31.5,29.5
parent: 2
-- proto: DrinkSpaceGlue
- entities:
- - uid: 32540
+ - uid: 17355
components:
- type: Transform
- pos: 75.06014,51.931
+ pos: 42.5,37.5
parent: 2
- - uid: 32541
+ - uid: 17357
components:
- type: Transform
- pos: 75.90389,51.884125
+ rot: 1.5707963267948966 rad
+ pos: 53.5,26.5
parent: 2
-- proto: DrinkSpaceLube
- entities:
- - uid: 32578
+ - uid: 17372
components:
- type: Transform
- pos: 75.475296,51.602375
+ rot: -1.5707963267948966 rad
+ pos: 53.5,15.5
parent: 2
-- proto: DrinkTeacup
- entities:
- - uid: 5933
+ - uid: 17398
components:
- type: Transform
- pos: 20.530474,-17.354877
+ pos: 41.5,-23.5
parent: 2
-- proto: DrinkVacuumFlask
- entities:
- - uid: 6505
+ - uid: 17399
components:
- type: Transform
- pos: -8.82696,-42.28728
+ rot: 3.141592653589793 rad
+ pos: 35.5,-23.5
parent: 2
- - uid: 6871
+ - uid: 17455
components:
- type: Transform
- pos: -8.592585,-42.439625
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-4.5
parent: 2
- - uid: 6872
+ - uid: 17491
components:
- type: Transform
- pos: -8.54571,-42.184708
+ pos: -3.5,13.5
parent: 2
- - uid: 14182
+ - uid: 17492
components:
- type: Transform
- pos: 6.6379967,47.71356
+ rot: 1.5707963267948966 rad
+ pos: -11.5,13.5
parent: 2
- - uid: 14186
+ - uid: 17493
components:
- type: Transform
- pos: 13.372372,55.322933
+ rot: 3.141592653589793 rad
+ pos: -11.5,3.5
parent: 2
- - uid: 14187
+ - uid: 17494
components:
- type: Transform
- pos: 20.809872,59.729183
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-9.5
parent: 2
-- proto: DrinkVodkaGlass
- entities:
- - uid: 6879
+ - uid: 17503
components:
- type: Transform
- pos: -10.293895,-42.24215
+ pos: 1.5,-15.5
parent: 2
-- proto: DrinkVodkaMartiniGlass
- entities:
- - uid: 19446
+ - uid: 17522
components:
- type: Transform
- pos: -36.364998,67.9886
+ rot: 3.141592653589793 rad
+ pos: 1.5,-35.5
parent: 2
-- proto: DrinkWaterBottleFull
- entities:
- - uid: 2157
+ - uid: 17538
components:
- type: Transform
- pos: -2.2029438,13.313014
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-11.5
parent: 2
- - uid: 2158
+ - uid: 17586
components:
- type: Transform
- pos: -2.097475,13.078639
+ rot: 3.141592653589793 rad
+ pos: 32.5,13.5
parent: 2
- - uid: 2159
+ - uid: 17620
components:
- type: Transform
- pos: -5.7420063,12.234889
+ rot: 1.5707963267948966 rad
+ pos: 9.5,6.5
parent: 2
- - uid: 2160
+ - uid: 17621
components:
- type: Transform
- pos: -16.607666,16.851425
+ rot: -1.5707963267948966 rad
+ pos: 9.5,3.5
parent: 2
- - uid: 2161
+ - uid: 17632
components:
- type: Transform
- pos: -22.659609,-0.2937311
+ pos: 31.5,6.5
parent: 2
- - uid: 2162
+ - uid: 17633
components:
- type: Transform
- pos: -4.463586,-2.0509818
+ rot: 3.141592653589793 rad
+ pos: 31.5,-0.5
parent: 2
- - uid: 2163
+ - uid: 17652
components:
- type: Transform
- pos: -6.0312343,-7.1332846
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-20.5
parent: 2
- - uid: 2164
+ - uid: 17653
components:
- type: Transform
- pos: 23.681442,-7.3176365
+ rot: 3.141592653589793 rad
+ pos: -22.5,-24.5
parent: 2
- - uid: 2166
+ - uid: 17654
components:
- type: Transform
- pos: 19.27308,-1.0794085
+ pos: -20.5,-24.5
parent: 2
- - uid: 6882
+ - uid: 17699
components:
- type: Transform
- pos: -16.211864,-27.754347
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-20.5
parent: 2
- - uid: 6883
+ - uid: 17752
components:
- type: Transform
- pos: -16.422802,-27.63716
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-23.5
parent: 2
- - uid: 6884
+ - uid: 17785
components:
- type: Transform
- pos: -30.24727,-23.149424
+ rot: 3.141592653589793 rad
+ pos: -33.5,-27.5
parent: 2
- - uid: 6885
+ - uid: 17786
components:
- type: Transform
- pos: -13.363295,-10.307895
+ pos: -29.5,-27.5
parent: 2
- - uid: 6886
+ - uid: 18237
components:
- type: Transform
- pos: -8.402737,11.953521
+ pos: -20.5,55.5
parent: 2
- - uid: 6888
+ - uid: 18238
components:
- type: Transform
- pos: 12.2770405,0.7638488
+ rot: 3.141592653589793 rad
+ pos: -26.5,55.5
parent: 2
- - uid: 6889
+ - uid: 18713
components:
- type: Transform
- pos: 35.883076,23.934422
+ rot: -1.5707963267948966 rad
+ pos: -32.5,6.5
parent: 2
- - uid: 6890
+ - uid: 19874
components:
- type: Transform
- pos: 36.058857,23.910984
+ rot: 1.5707963267948966 rad
+ pos: 1.5,73.5
parent: 2
- - uid: 6891
+ - uid: 20938
components:
- type: Transform
- pos: 42.369057,40.080235
+ rot: 1.5707963267948966 rad
+ pos: -42.5,37.5
parent: 2
- - uid: 6894
+ - uid: 22397
components:
- type: Transform
- pos: 66.69813,18.38042
+ rot: 1.5707963267948966 rad
+ pos: -54.5,40.5
parent: 2
- - uid: 6900
+ - uid: 25348
components:
- type: Transform
- pos: 59.38189,-3.319458
+ rot: -1.5707963267948966 rad
+ pos: -35.5,62.5
parent: 2
- - uid: 6903
+ - uid: 27862
components:
- type: Transform
- pos: 42.32843,-21.096277
+ rot: 3.141592653589793 rad
+ pos: -48.5,62.5
parent: 2
- - uid: 6904
+ - uid: 28600
components:
- type: Transform
- pos: 42.492493,-21.049402
+ pos: -26.5,64.5
parent: 2
- - uid: 6905
+ - uid: 29198
components:
- type: Transform
- pos: 43.312805,-21.143152
+ rot: 3.141592653589793 rad
+ pos: -20.5,53.5
parent: 2
- - uid: 9087
+ - uid: 30162
components:
- type: Transform
- pos: -47.531506,23.29641
+ rot: 1.5707963267948966 rad
+ pos: 72.5,42.5
parent: 2
- - uid: 9088
+ - uid: 34968
components:
- type: Transform
- pos: -47.26588,23.249535
+ rot: 1.5707963267948966 rad
+ pos: -42.5,6.5
parent: 2
- - uid: 9529
+ - uid: 35476
components:
- type: Transform
- pos: 50.701126,47.789406
+ rot: 3.141592653589793 rad
+ pos: -42.5,2.5
parent: 2
- - uid: 9530
+ - uid: 35527
components:
- type: Transform
- pos: 35.149734,46.89878
+ pos: 103.5,17.5
parent: 2
- - uid: 9531
+ - uid: 35530
components:
- type: Transform
- pos: 50.513626,47.94175
+ rot: -1.5707963267948966 rad
+ pos: 103.5,12.5
parent: 2
- - uid: 13075
+ - uid: 35560
components:
- type: Transform
- pos: 6.675859,-34.26175
+ rot: 1.5707963267948966 rad
+ pos: 96.5,11.5
parent: 2
- - uid: 15602
+ - uid: 35781
components:
- type: Transform
- pos: -11.415034,28.934925
+ rot: 1.5707963267948966 rad
+ pos: 77.5,68.5
parent: 2
- - uid: 15603
+ - uid: 35782
components:
- type: Transform
- pos: -11.243159,28.747425
+ rot: -1.5707963267948966 rad
+ pos: 77.5,67.5
parent: 2
- - uid: 15604
+ - uid: 35864
components:
- type: Transform
- pos: -12.540034,28.716175
+ rot: 1.5707963267948966 rad
+ pos: 32.5,15.5
parent: 2
- - uid: 16536
+ - uid: 35917
components:
- type: Transform
- pos: -27.632904,7.696652
+ rot: 3.141592653589793 rad
+ pos: 40.5,28.5
parent: 2
- - uid: 16538
+ - uid: 35925
components:
- type: Transform
- pos: -21.457123,7.696652
+ pos: 40.5,29.5
parent: 2
- - uid: 16548
+ - uid: 35992
components:
- type: Transform
- pos: -17.519623,7.8958707
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-25.5
parent: 2
- - uid: 16628
+ - uid: 35998
components:
- type: Transform
- pos: -5.199568,59.644547
+ rot: 3.141592653589793 rad
+ pos: -58.5,-1.5
parent: 2
- - uid: 19397
+ - uid: 35999
components:
- type: Transform
- pos: -10.076005,43.08696
+ rot: 1.5707963267948966 rad
+ pos: -58.5,3.5
parent: 2
- - uid: 19398
+ - uid: 36511
components:
- type: Transform
- pos: -10.06038,42.96196
+ pos: 57.5,78.5
parent: 2
- - uid: 20021
+ - uid: 36527
components:
- type: Transform
- pos: -58.629147,-4.080635
+ rot: 3.141592653589793 rad
+ pos: 57.5,60.5
parent: 2
- - uid: 20022
+- proto: DisposalJunction
+ entities:
+ - uid: 2908
components:
- type: Transform
- pos: -58.42602,-4.268135
+ rot: -1.5707963267948966 rad
+ pos: -15.5,20.5
parent: 2
- - uid: 20023
+ - uid: 3380
components:
- type: Transform
- pos: -73.270096,15.050253
+ rot: -1.5707963267948966 rad
+ pos: 14.5,20.5
parent: 2
- - uid: 20024
+ - uid: 6203
components:
- type: Transform
- pos: -78.09299,3.5815034
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-23.5
parent: 2
- - uid: 20025
+ - uid: 7121
components:
- type: Transform
- pos: -78.29879,3.6008067
+ rot: 3.141592653589793 rad
+ pos: -44.5,-21.5
parent: 2
-- proto: DrinkWaterCup
- entities:
- - uid: 675
+ - uid: 9146
components:
- type: Transform
- pos: -13.379791,-10.14272
+ rot: 3.141592653589793 rad
+ pos: -32.5,-10.5
parent: 2
- - uid: 1620
+ - uid: 11646
components:
- type: Transform
- pos: -7.3726897,9.759173
+ rot: 1.5707963267948966 rad
+ pos: -1.5,3.5
parent: 2
- - uid: 1637
+ - uid: 15678
components:
- type: Transform
- pos: -7.5680027,9.610736
+ pos: 1.5,23.5
parent: 2
- - uid: 2073
+ - uid: 16744
components:
- type: Transform
- pos: -13.614166,-10.283345
+ rot: -1.5707963267948966 rad
+ pos: 1.5,20.5
parent: 2
- - uid: 5440
+ - uid: 16751
components:
- type: Transform
- pos: 35.471233,30.825348
+ rot: -1.5707963267948966 rad
+ pos: 39.5,29.5
parent: 2
- - uid: 5441
+ - uid: 16809
components:
- type: Transform
- pos: 35.729046,30.673004
+ rot: 3.141592653589793 rad
+ pos: 50.5,-4.5
parent: 2
- - uid: 5442
+ - uid: 16862
components:
- type: Transform
- pos: 35.49467,30.544098
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-15.5
parent: 2
- - uid: 6637
+ - uid: 16889
components:
- type: Transform
- pos: -12.421077,-27.249714
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-15.5
parent: 2
- - uid: 6638
+ - uid: 16910
components:
- type: Transform
- pos: -12.655452,-27.273151
+ pos: -45.5,7.5
parent: 2
- - uid: 6639
+ - uid: 17058
components:
- type: Transform
- pos: -12.549983,-27.437214
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-15.5
parent: 2
- - uid: 9036
+ - uid: 17072
components:
- type: Transform
- pos: -56.348553,30.539604
+ pos: -84.5,9.5
parent: 2
- - uid: 9037
+ - uid: 17147
components:
- type: Transform
- pos: -56.661053,30.58648
+ pos: -46.5,3.5
parent: 2
- - uid: 9038
+ - uid: 17201
components:
- type: Transform
- pos: -56.504265,30.409359
+ pos: -15.5,24.5
parent: 2
- - uid: 13074
+ - uid: 17235
components:
- type: Transform
- pos: 6.3845396,-34.20579
+ rot: -1.5707963267948966 rad
+ pos: -10.5,20.5
parent: 2
- - uid: 13350
+ - uid: 17240
components:
- type: Transform
- pos: -73.455475,14.607613
+ rot: -1.5707963267948966 rad
+ pos: -11.5,29.5
parent: 2
- - uid: 14107
+ - uid: 17260
components:
- type: Transform
- pos: -73.62735,14.732613
+ pos: 1.5,52.5
parent: 2
- - uid: 15598
+ - uid: 17309
components:
- type: Transform
- pos: -9.336909,30.747425
+ pos: 19.5,48.5
parent: 2
- - uid: 15599
+ - uid: 17314
components:
- type: Transform
- pos: -9.540034,30.591175
+ pos: 1.5,61.5
parent: 2
- - uid: 15744
+ - uid: 17333
components:
- type: Transform
- pos: -4.489052,25.480276
+ pos: 1.5,32.5
parent: 2
- - uid: 15924
+ - uid: 17353
components:
- type: Transform
- pos: -2.5945816,48.763306
+ rot: -1.5707963267948966 rad
+ pos: 31.5,20.5
parent: 2
- - uid: 15925
+ - uid: 17375
components:
- type: Transform
- pos: -2.3445816,48.73987
+ rot: 3.141592653589793 rad
+ pos: 49.5,17.5
parent: 2
- - uid: 15926
+ - uid: 17400
components:
- type: Transform
- pos: -2.4852066,48.56018
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-15.5
parent: 2
- - uid: 16364
+ - uid: 17479
components:
- type: Transform
- pos: -18.673878,57.73209
+ rot: 3.141592653589793 rad
+ pos: 54.5,-13.5
parent: 2
- - uid: 16365
+ - uid: 17481
components:
- type: Transform
- pos: -18.528044,57.898758
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
parent: 2
- - uid: 16366
+ - uid: 17634
components:
- type: Transform
- pos: -18.605991,57.426407
+ rot: -1.5707963267948966 rad
+ pos: 17.5,6.5
parent: 2
- - uid: 18450
+ - uid: 17636
components:
- type: Transform
- pos: -62.57993,-2.9988308
+ rot: -1.5707963267948966 rad
+ pos: 25.5,6.5
parent: 2
- - uid: 18451
+ - uid: 17637
components:
- type: Transform
- pos: -62.36118,-3.2019558
+ rot: -1.5707963267948966 rad
+ pos: 10.5,6.5
parent: 2
- - uid: 18452
+ - uid: 17650
components:
- type: Transform
- pos: -62.470554,-1.4050808
+ rot: 3.141592653589793 rad
+ pos: -20.5,-25.5
parent: 2
-- proto: DrinkWhiskeyBottleFull
- entities:
- - uid: 14216
+ - uid: 17684
components:
- type: Transform
- pos: 11.267387,54.929844
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-27.5
parent: 2
- - uid: 14217
+ - uid: 17706
components:
- type: Transform
- pos: 13.580522,56.44169
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-14.5
parent: 2
-- proto: DrinkWhiskeyColaGlass
- entities:
- - uid: 23494
+ - uid: 36000
components:
- type: Transform
- pos: 86.330376,54.81678
+ rot: 1.5707963267948966 rad
+ pos: -54.5,3.5
parent: 2
- - uid: 35856
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 7087
components:
- type: Transform
- pos: -49.338078,12.820272
+ rot: 3.141592653589793 rad
+ pos: -44.5,-18.5
parent: 2
-- proto: DrinkWhiskeyGlass
- entities:
- - uid: 5430
+ - uid: 8766
components:
- type: Transform
- pos: 49.604153,34.24876
+ rot: 1.5707963267948966 rad
+ pos: -35.5,19.5
parent: 2
- - uid: 14218
+ - uid: 8767
components:
- type: Transform
- pos: 13.611772,56.00419
+ rot: 1.5707963267948966 rad
+ pos: -51.5,12.5
parent: 2
-- proto: DrinkWineGlass
- entities:
- - uid: 343
+ - uid: 16945
components:
- type: Transform
- pos: 64.3436,10.877556
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-14.5
parent: 2
- - uid: 1091
+ - uid: 16951
components:
- type: Transform
- pos: 64.542046,10.599171
+ pos: -45.5,8.5
parent: 2
- - uid: 4386
+ - uid: 16959
components:
- type: Transform
- pos: 63.386337,24.731014
+ rot: 1.5707963267948966 rad
+ pos: -50.5,11.5
parent: 2
- - uid: 30031
+ - uid: 16991
components:
- type: Transform
- pos: 91.360886,18.469994
+ pos: -54.5,30.5
parent: 2
- - uid: 30035
+ - uid: 17004
components:
- type: Transform
- pos: 91.767136,16.985619
+ pos: -54.5,22.5
parent: 2
-- proto: Dropper
- entities:
- - uid: 2102
+ - uid: 17126
components:
- type: Transform
- pos: 20.067673,-1.2282081
+ rot: 1.5707963267948966 rad
+ pos: -73.5,8.5
parent: 2
- - uid: 2103
+ - uid: 17195
components:
- type: Transform
- pos: 20.161423,-1.3571143
+ rot: -1.5707963267948966 rad
+ pos: 2.5,20.5
parent: 2
- - uid: 2194
+ - uid: 17253
components:
- type: Transform
- pos: 15.63699,-10.653372
+ rot: 1.5707963267948966 rad
+ pos: -58.5,8.5
parent: 2
- - uid: 2195
+ - uid: 17254
components:
- type: Transform
- pos: 15.519802,-10.536184
+ rot: 1.5707963267948966 rad
+ pos: -69.5,8.5
parent: 2
- - uid: 5281
+ - uid: 17261
components:
- type: Transform
- pos: 26.24058,29.633816
+ pos: 1.5,39.5
parent: 2
- - uid: 5282
+ - uid: 17262
components:
- type: Transform
- pos: 42.38003,40.259502
+ rot: -1.5707963267948966 rad
+ pos: 4.5,39.5
parent: 2
- - uid: 8881
+ - uid: 17352
components:
- type: Transform
- pos: 12.421215,-0.5865078
+ pos: 31.5,26.5
parent: 2
-- proto: EmergencyLight
- entities:
- - uid: 1028
+ - uid: 17354
+ components:
+ - type: Transform
+ pos: 39.5,37.5
+ parent: 2
+ - uid: 17401
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,-34.5
+ pos: 29.5,-15.5
parent: 2
- - uid: 1210
+ - uid: 17478
components:
- type: Transform
- pos: 35.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-4.5
parent: 2
- - uid: 2523
+ - uid: 17585
components:
- type: Transform
- pos: -1.5,-20.5
+ pos: 39.5,34.5
parent: 2
- - uid: 2848
+ - uid: 17635
components:
- type: Transform
- pos: -68.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,6.5
parent: 2
- - uid: 3033
+ - uid: 17649
components:
- type: Transform
- pos: -96.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-15.5
parent: 2
- - uid: 3061
+ - uid: 18990
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,6.5
parent: 2
- - uid: 3069
+ - uid: 20211
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-44.5
+ pos: -35.5,64.5
parent: 2
- - uid: 4130
+- proto: DisposalMachineFrame
+ entities:
+ - uid: 7042
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-14.5
+ pos: -33.5,-38.5
parent: 2
- - uid: 4378
+- proto: DisposalPipe
+ entities:
+ - uid: 17
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-21.5
parent: 2
- - uid: 5703
+ - uid: 128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,12.5
parent: 2
- - uid: 6285
+ - uid: 441
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,23.5
+ pos: -39.5,6.5
parent: 2
- - uid: 7268
+ - uid: 1289
components:
- type: Transform
- pos: -106.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,6.5
parent: 2
- - uid: 7514
+ - uid: 1570
components:
- type: Transform
- pos: 3.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,10.5
parent: 2
- - uid: 7713
+ - uid: 1613
components:
- type: Transform
- pos: -4.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,10.5
parent: 2
- - uid: 7885
+ - uid: 1769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,11.5
parent: 2
- - uid: 7886
+ - uid: 1779
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -96.5,4.5
+ pos: 10.5,9.5
parent: 2
- - uid: 8030
+ - uid: 2142
components:
- type: Transform
- pos: -72.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,6.5
parent: 2
- - uid: 8366
+ - uid: 2260
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,-34.5
+ pos: 45.5,-17.5
parent: 2
- - uid: 9152
+ - uid: 2262
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,1.5
+ pos: 50.5,-12.5
parent: 2
- - uid: 11400
+ - uid: 2393
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-15.5
+ pos: -54.5,39.5
parent: 2
- - uid: 11407
+ - uid: 3374
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,20.5
parent: 2
- - uid: 11471
+ - uid: 4462
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 69.5,13.5
+ pos: -45.5,-18.5
parent: 2
- - uid: 11472
+ - uid: 4500
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 69.5,21.5
+ pos: -46.5,-18.5
parent: 2
- - uid: 13587
+ - uid: 4791
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,42.5
+ pos: -50.5,-25.5
parent: 2
- - uid: 14092
+ - uid: 4793
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 46.5,36.5
+ pos: -50.5,-24.5
parent: 2
- - uid: 14278
+ - uid: 4966
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,26.5
+ pos: -1.5,1.5
parent: 2
- - uid: 15143
+ - uid: 5100
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,30.5
parent: 2
- - uid: 15145
+ - uid: 5117
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-16.5
+ pos: -1.5,2.5
parent: 2
- - uid: 15147
+ - uid: 5399
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-16.5
+ pos: 58.5,53.5
parent: 2
- - uid: 15149
+ - uid: 5547
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,13.5
+ pos: -49.5,30.5
parent: 2
- - uid: 15151
+ - uid: 5548
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,30.5
parent: 2
- - uid: 15153
+ - uid: 5549
components:
- type: Transform
- pos: 10.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,30.5
parent: 2
- - uid: 15158
+ - uid: 5929
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,11.5
+ pos: -33.5,-5.5
parent: 2
- - uid: 15160
+ - uid: 6120
components:
- type: Transform
- pos: 26.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,20.5
parent: 2
- - uid: 15171
+ - uid: 6617
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,7.5
+ pos: -33.5,-6.5
parent: 2
- - uid: 15174
+ - uid: 6784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-0.5
+ pos: -20.5,-29.5
parent: 2
- - uid: 15184
+ - uid: 6786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-11.5
+ pos: -20.5,-31.5
parent: 2
- - uid: 15186
+ - uid: 6787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-11.5
+ pos: -20.5,-30.5
parent: 2
- - uid: 15187
+ - uid: 6791
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,0.5
+ pos: -20.5,-32.5
parent: 2
- - uid: 15188
+ - uid: 6792
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-44.5
+ pos: -20.5,-33.5
parent: 2
- - uid: 15189
+ - uid: 6793
components:
- type: Transform
- pos: -14.5,-33.5
+ pos: -20.5,-35.5
parent: 2
- - uid: 15190
+ - uid: 6794
components:
- type: Transform
- pos: -35.5,-40.5
+ pos: -20.5,-34.5
parent: 2
- - uid: 15191
+ - uid: 6873
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,30.5
parent: 2
- - uid: 15192
+ - uid: 6915
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-24.5
+ pos: -13.5,-25.5
parent: 2
- - uid: 15199
+ - uid: 7043
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-44.5
+ pos: -32.5,-36.5
parent: 2
- - uid: 15216
+ - uid: 7044
components:
- type: Transform
- pos: -8.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-36.5
parent: 2
- - uid: 15218
+ - uid: 7045
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,15.5
+ pos: -29.5,-33.5
parent: 2
- - uid: 15220
+ - uid: 7046
components:
- type: Transform
- pos: -77.5,1.5
+ pos: -29.5,-31.5
parent: 2
- - uid: 15221
+ - uid: 7199
components:
- type: Transform
- pos: -81.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-17.5
parent: 2
- - uid: 15225
+ - uid: 7288
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -73.5,3.5
+ pos: -41.5,-21.5
parent: 2
- - uid: 15232
+ - uid: 8742
components:
- type: Transform
- pos: -61.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,16.5
parent: 2
- - uid: 15236
+ - uid: 8772
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,29.5
- parent: 2
- - uid: 15239
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,46.5
+ pos: -51.5,14.5
parent: 2
- - uid: 15241
+ - uid: 8788
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,29.5
+ pos: -51.5,13.5
parent: 2
- - uid: 15639
+ - uid: 8820
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,11.5
parent: 2
- - uid: 15718
+ - uid: 9300
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-10.5
parent: 2
- - uid: 15719
+ - uid: 9301
components:
- type: Transform
- pos: -61.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-10.5
parent: 2
- - uid: 15903
+ - uid: 9585
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,30.5
parent: 2
- - uid: 15954
+ - uid: 9586
components:
- type: Transform
- pos: 64.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,30.5
parent: 2
- - uid: 15955
+ - uid: 9614
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 64.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,30.5
parent: 2
- - uid: 15956
+ - uid: 9615
components:
- type: Transform
- pos: 49.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,30.5
parent: 2
- - uid: 15957
+ - uid: 9616
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 63.5,29.5
+ pos: -45.5,30.5
parent: 2
- - uid: 15998
+ - uid: 9617
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,30.5
parent: 2
- - uid: 17834
+ - uid: 10271
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-16.5
+ pos: -12.5,36.5
parent: 2
- - uid: 17841
+ - uid: 10714
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-31.5
+ pos: -50.5,-27.5
parent: 2
- - uid: 17842
+ - uid: 11254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -72.5,8.5
parent: 2
- - uid: 17863
+ - uid: 11391
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-21.5
parent: 2
- - uid: 17870
+ - uid: 11484
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-21.5
+ pos: -50.5,-32.5
parent: 2
- - uid: 18187
+ - uid: 12054
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,32.5
+ pos: 15.5,-14.5
parent: 2
- - uid: 19284
+ - uid: 12973
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 24.5,49.5
+ pos: 31.5,28.5
parent: 2
- - uid: 19653
+ - uid: 13012
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,59.5
+ pos: -52.5,-24.5
parent: 2
- - uid: 20034
+ - uid: 13737
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,15.5
parent: 2
- - uid: 21933
+ - uid: 13741
components:
- type: Transform
- pos: -51.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,14.5
parent: 2
- - uid: 22059
+ - uid: 13744
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,11.5
parent: 2
- - uid: 22083
+ - uid: 13745
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,8.5
parent: 2
- - uid: 22534
+ - uid: 15193
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,21.5
+ pos: 1.5,63.5
parent: 2
- - uid: 23012
+ - uid: 15238
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,23.5
parent: 2
- - uid: 23013
+ - uid: 16280
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -38.5,56.5
+ pos: 53.5,23.5
parent: 2
- - uid: 23069
+ - uid: 16394
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,9.5
+ pos: -33.5,1.5
parent: 2
- - uid: 23096
+ - uid: 16601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,9.5
+ pos: 14.5,21.5
parent: 2
- - uid: 23099
+ - uid: 16606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-0.5
parent: 2
- - uid: 23103
+ - uid: 16672
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,1.5
+ pos: 50.5,-6.5
parent: 2
- - uid: 23112
+ - uid: 16675
components:
- type: Transform
- pos: -28.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,5.5
parent: 2
- - uid: 23118
+ - uid: 16676
components:
- type: Transform
- pos: -16.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,4.5
parent: 2
- - uid: 23125
+ - uid: 16677
components:
- type: Transform
- pos: -22.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,3.5
parent: 2
- - uid: 23131
+ - uid: 16682
components:
- type: Transform
- pos: -18.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-1.5
parent: 2
- - uid: 23173
+ - uid: 16683
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
parent: 2
- - uid: 23369
+ - uid: 16684
components:
- type: Transform
- pos: -27.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-3.5
parent: 2
- - uid: 28469
+ - uid: 16685
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -23.5,36.5
+ pos: -33.5,-4.5
parent: 2
- - uid: 28796
+ - uid: 16688
components:
- type: Transform
- pos: -9.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-8.5
parent: 2
- - uid: 28798
+ - uid: 16689
components:
- type: Transform
- pos: -18.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-9.5
parent: 2
- - uid: 28799
+ - uid: 16691
components:
- type: Transform
- pos: -28.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-11.5
parent: 2
- - uid: 28800
+ - uid: 16692
components:
- type: Transform
- pos: -33.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-12.5
parent: 2
- - uid: 28801
+ - uid: 16693
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-13.5
parent: 2
- - uid: 28802
+ - uid: 16694
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-14.5
parent: 2
- - uid: 28803
+ - uid: 16708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,17.5
parent: 2
- - uid: 28804
+ - uid: 16709
components:
- type: Transform
- pos: -28.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,18.5
parent: 2
- - uid: 28807
+ - uid: 16710
components:
- type: Transform
- pos: -26.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,19.5
parent: 2
- - uid: 28808
+ - uid: 16711
components:
- type: Transform
- pos: -23.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,20.5
parent: 2
- - uid: 28809
+ - uid: 16712
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,20.5
parent: 2
- - uid: 28810
+ - uid: 16713
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,20.5
parent: 2
- - uid: 28812
+ - uid: 16714
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,-4.5
+ pos: -28.5,20.5
parent: 2
- - uid: 28814
+ - uid: 16715
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,20.5
parent: 2
- - uid: 28815
+ - uid: 16716
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,20.5
parent: 2
- - uid: 28816
+ - uid: 16717
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,20.5
parent: 2
- - uid: 28819
+ - uid: 16718
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,20.5
parent: 2
- - uid: 28820
+ - uid: 16719
components:
- type: Transform
- pos: 5.5,78.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,20.5
parent: 2
- - uid: 28821
+ - uid: 16720
components:
- type: Transform
- pos: -2.5,78.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,20.5
parent: 2
- - uid: 28830
+ - uid: 16721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,20.5
parent: 2
- - uid: 28831
+ - uid: 16722
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,20.5
parent: 2
- - uid: 28832
+ - uid: 16723
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,20.5
parent: 2
- - uid: 28833
+ - uid: 16724
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,20.5
parent: 2
- - uid: 28834
+ - uid: 16725
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,20.5
parent: 2
- - uid: 28836
+ - uid: 16726
components:
- type: Transform
- pos: -29.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,20.5
parent: 2
- - uid: 28839
+ - uid: 16727
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,63.5
+ pos: -15.5,21.5
parent: 2
- - uid: 28841
+ - uid: 16728
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,20.5
parent: 2
- - uid: 28842
+ - uid: 16729
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,20.5
parent: 2
- - uid: 28843
+ - uid: 16730
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,56.5
+ pos: -12.5,20.5
parent: 2
- - uid: 28844
+ - uid: 16731
components:
- type: Transform
- pos: -12.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,20.5
parent: 2
- - uid: 28845
+ - uid: 16733
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,20.5
parent: 2
- - uid: 28846
+ - uid: 16734
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,20.5
parent: 2
- - uid: 28847
+ - uid: 16735
components:
- type: Transform
- pos: -3.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,20.5
parent: 2
- - uid: 28848
+ - uid: 16736
components:
- type: Transform
- pos: -5.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,20.5
parent: 2
- - uid: 28850
+ - uid: 16737
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,52.5
+ pos: -5.5,20.5
parent: 2
- - uid: 28851
+ - uid: 16738
components:
- type: Transform
- pos: 16.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,20.5
parent: 2
- - uid: 28852
+ - uid: 16739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,20.5
parent: 2
- - uid: 28856
+ - uid: 16740
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,20.5
parent: 2
- - uid: 28858
+ - uid: 16741
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,20.5
parent: 2
- - uid: 28859
+ - uid: 16742
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,20.5
parent: 2
- - uid: 28860
+ - uid: 16743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,20.5
parent: 2
- - uid: 28861
+ - uid: 16745
components:
- type: Transform
- pos: 13.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,20.5
parent: 2
- - uid: 28862
+ - uid: 16746
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,20.5
parent: 2
- - uid: 28863
+ - uid: 16747
components:
- type: Transform
- pos: 15.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,20.5
parent: 2
- - uid: 28864
+ - uid: 16748
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,40.5
+ pos: 6.5,20.5
parent: 2
- - uid: 28865
+ - uid: 16749
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,40.5
+ pos: 7.5,20.5
parent: 2
- - uid: 28866
+ - uid: 16750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,20.5
parent: 2
- - uid: 28867
+ - uid: 16752
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,20.5
parent: 2
- - uid: 28868
+ - uid: 16753
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,27.5
+ pos: 12.5,20.5
parent: 2
- - uid: 28869
+ - uid: 16754
components:
- type: Transform
- pos: 23.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,20.5
parent: 2
- - uid: 28870
+ - uid: 16756
components:
- type: Transform
- pos: 30.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,20.5
parent: 2
- - uid: 28871
+ - uid: 16757
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 34.5,38.5
+ pos: 17.5,20.5
parent: 2
- - uid: 28872
+ - uid: 16758
components:
- type: Transform
- pos: 33.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,20.5
parent: 2
- - uid: 28873
+ - uid: 16759
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 31.5,47.5
+ pos: 19.5,20.5
parent: 2
- - uid: 28874
+ - uid: 16760
components:
- type: Transform
- pos: 32.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,20.5
parent: 2
- - uid: 28875
+ - uid: 16761
components:
- type: Transform
- pos: 38.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,20.5
parent: 2
- - uid: 28876
+ - uid: 16762
components:
- type: Transform
- pos: 46.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,20.5
parent: 2
- - uid: 28879
+ - uid: 16763
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,20.5
parent: 2
- - uid: 28880
+ - uid: 16764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,20.5
parent: 2
- - uid: 28881
+ - uid: 16765
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,20.5
parent: 2
- - uid: 28882
+ - uid: 16766
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,20.5
parent: 2
- - uid: 28883
+ - uid: 16767
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,20.5
parent: 2
- - uid: 28888
+ - uid: 16768
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,20.5
parent: 2
- - uid: 28889
+ - uid: 16769
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,20.5
parent: 2
- - uid: 28890
+ - uid: 16770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,20.5
parent: 2
- - uid: 28893
+ - uid: 16771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,20.5
parent: 2
- - uid: 28896
+ - uid: 16772
components:
- type: Transform
- pos: 36.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,20.5
parent: 2
- - uid: 28897
+ - uid: 16773
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 37.5,34.5
+ pos: 35.5,20.5
parent: 2
- - uid: 28898
+ - uid: 16774
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 37.5,42.5
+ pos: 36.5,20.5
parent: 2
- - uid: 28899
+ - uid: 16775
components:
- type: Transform
- pos: 29.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,20.5
parent: 2
- - uid: 28904
+ - uid: 16776
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,20.5
parent: 2
- - uid: 28905
+ - uid: 16777
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,20.5
parent: 2
- - uid: 28906
+ - uid: 16778
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,20.5
parent: 2
- - uid: 28915
+ - uid: 16779
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,20.5
parent: 2
- - uid: 28922
+ - uid: 16780
components:
- type: Transform
- pos: -35.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,20.5
parent: 2
- - uid: 28923
+ - uid: 16781
components:
- type: Transform
- pos: -43.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,20.5
parent: 2
- - uid: 28924
+ - uid: 16782
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,20.5
parent: 2
- - uid: 28928
+ - uid: 16783
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,19.5
+ pos: 45.5,20.5
parent: 2
- - uid: 28931
+ - uid: 16784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,20.5
parent: 2
- - uid: 28932
+ - uid: 16785
components:
- type: Transform
- pos: -31.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,20.5
parent: 2
- - uid: 28933
+ - uid: 16786
components:
- type: Transform
- pos: -22.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,20.5
parent: 2
- - uid: 28935
+ - uid: 16787
components:
- type: Transform
- pos: -3.5,21.5
+ pos: 49.5,19.5
parent: 2
- - uid: 28936
+ - uid: 16788
components:
- type: Transform
- pos: 10.5,25.5
+ pos: 49.5,18.5
parent: 2
- - uid: 28937
+ - uid: 16789
components:
- type: Transform
- pos: 6.5,30.5
+ pos: 49.5,16.5
parent: 2
- - uid: 28938
+ - uid: 16790
components:
- type: Transform
- pos: 13.5,30.5
+ pos: 49.5,15.5
parent: 2
- - uid: 28939
+ - uid: 16791
components:
- type: Transform
- pos: 19.5,30.5
+ pos: 49.5,14.5
parent: 2
- - uid: 28943
+ - uid: 16792
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,14.5
+ pos: 49.5,13.5
parent: 2
- - uid: 28946
+ - uid: 16793
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,9.5
+ pos: 49.5,12.5
parent: 2
- - uid: 28947
+ - uid: 16794
components:
- type: Transform
- pos: 12.5,7.5
+ pos: 49.5,11.5
parent: 2
- - uid: 28948
+ - uid: 16795
components:
- type: Transform
- pos: 20.5,7.5
+ pos: 49.5,10.5
parent: 2
- - uid: 28949
+ - uid: 16796
components:
- type: Transform
- pos: 27.5,7.5
+ pos: 49.5,9.5
parent: 2
- - uid: 28954
+ - uid: 16797
components:
- type: Transform
- pos: 31.5,16.5
+ pos: 49.5,8.5
parent: 2
- - uid: 28957
+ - uid: 16798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,12.5
+ pos: 49.5,7.5
parent: 2
- - uid: 28958
+ - uid: 16799
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,14.5
+ pos: 49.5,6.5
parent: 2
- - uid: 28959
+ - uid: 16800
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,14.5
+ pos: 49.5,5.5
parent: 2
- - uid: 28962
+ - uid: 16801
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-10.5
+ pos: 49.5,4.5
parent: 2
- - uid: 28964
+ - uid: 16802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-4.5
+ pos: 50.5,2.5
parent: 2
- - uid: 28965
+ - uid: 16803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,2.5
+ pos: 50.5,1.5
parent: 2
- - uid: 28976
+ - uid: 16804
components:
- type: Transform
- pos: 27.5,-1.5
+ pos: 50.5,0.5
parent: 2
- - uid: 28977
+ - uid: 16805
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,2.5
+ pos: 50.5,-0.5
parent: 2
- - uid: 28978
+ - uid: 16806
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,0.5
+ pos: 50.5,-1.5
parent: 2
- - uid: 28983
+ - uid: 16807
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-5.5
+ pos: 50.5,-2.5
parent: 2
- - uid: 28989
+ - uid: 16808
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-4.5
+ pos: 50.5,-3.5
parent: 2
- - uid: 28990
+ - uid: 16810
components:
- type: Transform
- pos: -9.5,-18.5
+ pos: 50.5,-7.5
parent: 2
- - uid: 28991
+ - uid: 16811
components:
- type: Transform
- pos: -18.5,-18.5
+ pos: 50.5,-8.5
parent: 2
- - uid: 28992
+ - uid: 16812
components:
- type: Transform
- pos: -28.5,-18.5
+ pos: 50.5,-9.5
parent: 2
- - uid: 28993
+ - uid: 16813
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-24.5
+ pos: 50.5,-10.5
parent: 2
- - uid: 29000
+ - uid: 16814
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-28.5
+ pos: 50.5,-11.5
parent: 2
- - uid: 29002
+ - uid: 16815
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-8.5
parent: 2
- - uid: 29003
+ - uid: 16816
components:
- type: Transform
- pos: -16.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-17.5
parent: 2
- - uid: 29005
+ - uid: 16817
components:
- type: Transform
- pos: -2.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-17.5
parent: 2
- - uid: 29006
+ - uid: 16818
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-33.5
+ pos: 42.5,-17.5
parent: 2
- - uid: 29007
+ - uid: 16819
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-38.5
+ pos: 41.5,-17.5
parent: 2
- - uid: 29008
+ - uid: 16820
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-17.5
parent: 2
- - uid: 29009
+ - uid: 16821
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,-38.5
+ pos: 37.5,-15.5
parent: 2
- - uid: 29010
+ - uid: 16822
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-37.5
+ pos: 36.5,-15.5
parent: 2
- - uid: 29014
+ - uid: 16823
components:
- type: Transform
- pos: 8.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,9.5
parent: 2
- - uid: 29015
+ - uid: 16824
components:
- type: Transform
- pos: -5.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-15.5
parent: 2
- - uid: 29020
+ - uid: 16825
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-44.5
+ pos: 33.5,-15.5
parent: 2
- - uid: 29023
+ - uid: 16826
components:
- type: Transform
- pos: 19.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-15.5
parent: 2
- - uid: 29027
+ - uid: 16827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-15.5
parent: 2
- - uid: 29028
+ - uid: 16828
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,-24.5
+ pos: 30.5,-15.5
parent: 2
- - uid: 29029
+ - uid: 16830
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-25.5
+ pos: 28.5,-15.5
parent: 2
- - uid: 29031
+ - uid: 16831
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,-32.5
+ pos: 27.5,-15.5
parent: 2
- - uid: 29032
+ - uid: 16832
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-15.5
parent: 2
- - uid: 29033
+ - uid: 16833
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-15.5
parent: 2
- - uid: 29034
+ - uid: 16834
components:
- type: Transform
- pos: 10.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-15.5
parent: 2
- - uid: 29035
+ - uid: 16835
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-15.5
parent: 2
- - uid: 29036
+ - uid: 16836
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-15.5
parent: 2
- - uid: 29037
+ - uid: 16837
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-15.5
parent: 2
- - uid: 29038
+ - uid: 16838
components:
- type: Transform
- pos: 10.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-15.5
parent: 2
- - uid: 29043
+ - uid: 16839
components:
- type: Transform
- pos: -22.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-15.5
parent: 2
- - uid: 29046
+ - uid: 16840
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -55.5,-34.5
+ pos: 18.5,-15.5
parent: 2
- - uid: 29047
+ - uid: 16841
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -62.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-15.5
parent: 2
- - uid: 29048
+ - uid: 16842
components:
- type: Transform
- pos: -59.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-15.5
parent: 2
- - uid: 29049
+ - uid: 16857
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-26.5
+ pos: 0.5,-15.5
parent: 2
- - uid: 29050
+ - uid: 16858
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-19.5
+ pos: -0.5,-15.5
parent: 2
- - uid: 29051
+ - uid: 16859
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-15.5
parent: 2
- - uid: 29052
+ - uid: 16860
components:
- type: Transform
- pos: -62.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-15.5
parent: 2
- - uid: 29053
+ - uid: 16861
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-15.5
parent: 2
- - uid: 29054
+ - uid: 16863
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,-8.5
+ pos: -5.5,-15.5
parent: 2
- - uid: 29055
+ - uid: 16864
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,-1.5
+ pos: -6.5,-15.5
parent: 2
- - uid: 29056
+ - uid: 16865
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,4.5
+ pos: -7.5,-15.5
parent: 2
- - uid: 29059
+ - uid: 16866
components:
- type: Transform
- pos: -68.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-15.5
parent: 2
- - uid: 29063
+ - uid: 16867
components:
- type: Transform
- pos: -81.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,3.5
parent: 2
- - uid: 29064
+ - uid: 16868
components:
- type: Transform
- pos: -75.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-15.5
parent: 2
- - uid: 29065
+ - uid: 16869
components:
- type: Transform
- pos: -75.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-15.5
parent: 2
- - uid: 29066
+ - uid: 16870
components:
- type: Transform
- pos: -70.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-15.5
parent: 2
- - uid: 29067
+ - uid: 16871
components:
- type: Transform
- pos: -71.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-15.5
parent: 2
- - uid: 29069
+ - uid: 16872
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -64.5,12.5
+ pos: -15.5,-15.5
parent: 2
- - uid: 29070
+ - uid: 16873
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,17.5
+ pos: -16.5,-15.5
parent: 2
- - uid: 29071
+ - uid: 16874
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,23.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 29072
+ - uid: 16875
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -66.5,30.5
+ pos: -18.5,-15.5
parent: 2
- - uid: 29073
+ - uid: 16876
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,33.5
+ pos: -19.5,-15.5
parent: 2
- - uid: 29074
+ - uid: 16877
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,36.5
+ pos: -20.5,-15.5
parent: 2
- - uid: 29077
+ - uid: 16878
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-15.5
parent: 2
- - uid: 29078
+ - uid: 16879
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,40.5
+ pos: -22.5,-15.5
parent: 2
- - uid: 29080
+ - uid: 16880
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -62.5,42.5
+ pos: -23.5,-15.5
parent: 2
- - uid: 29081
+ - uid: 16881
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-15.5
parent: 2
- - uid: 29092
+ - uid: 16882
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-15.5
parent: 2
- - uid: 29093
+ - uid: 16883
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,33.5
+ pos: -26.5,-15.5
parent: 2
- - uid: 29096
+ - uid: 16884
components:
- type: Transform
- pos: -44.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-15.5
parent: 2
- - uid: 29097
+ - uid: 16885
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,29.5
+ pos: -28.5,-15.5
parent: 2
- - uid: 29098
+ - uid: 16886
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,33.5
+ pos: -29.5,-15.5
parent: 2
- - uid: 29099
+ - uid: 16887
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,33.5
+ pos: -30.5,-15.5
parent: 2
- - uid: 29101
+ - uid: 16888
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,27.5
+ pos: -31.5,-15.5
parent: 2
- - uid: 29102
+ - uid: 16890
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-15.5
parent: 2
- - uid: 29103
+ - uid: 16891
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-15.5
parent: 2
- - uid: 29104
+ - uid: 16892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-15.5
parent: 2
- - uid: 29105
+ - uid: 16893
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-15.5
parent: 2
- - uid: 29106
+ - uid: 16894
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-15.5
parent: 2
- - uid: 29107
+ - uid: 16895
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,33.5
+ pos: -40.5,-14.5
parent: 2
- - uid: 29108
+ - uid: 16896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-7.5
parent: 2
- - uid: 29109
+ - uid: 16897
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,29.5
+ pos: -46.5,-6.5
parent: 2
- - uid: 29110
+ - uid: 16898
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,24.5
+ pos: -46.5,-5.5
parent: 2
- - uid: 29111
+ - uid: 16899
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-4.5
parent: 2
- - uid: 29113
+ - uid: 16900
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-3.5
parent: 2
- - uid: 29114
+ - uid: 16901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-2.5
parent: 2
- - uid: 29115
+ - uid: 16902
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-1.5
parent: 2
- - uid: 29116
+ - uid: 16903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,38.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-0.5
parent: 2
- - uid: 29118
+ - uid: 16904
components:
- type: Transform
- pos: -4.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,0.5
parent: 2
- - uid: 29119
+ - uid: 16905
components:
- type: Transform
- pos: -14.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,1.5
parent: 2
- - uid: 29120
+ - uid: 16906
components:
- type: Transform
- pos: -22.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,2.5
parent: 2
- - uid: 29123
+ - uid: 16908
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -19.5,44.5
+ pos: -45.5,5.5
parent: 2
- - uid: 29124
+ - uid: 16909
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,6.5
parent: 2
- - uid: 29126
+ - uid: 16912
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,9.5
parent: 2
- - uid: 29127
+ - uid: 16913
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,10.5
parent: 2
- - uid: 29128
+ - uid: 16914
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,11.5
parent: 2
- - uid: 29131
+ - uid: 16915
components:
- type: Transform
- pos: -22.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,12.5
parent: 2
- - uid: 29132
+ - uid: 16916
components:
- type: Transform
- pos: -30.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,13.5
parent: 2
- - uid: 29133
+ - uid: 16917
components:
- type: Transform
- pos: -9.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,14.5
parent: 2
- - uid: 29135
+ - uid: 16918
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,15.5
parent: 2
- - uid: 29136
+ - uid: 16919
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -63.5,33.5
+ pos: -43.5,16.5
parent: 2
- - uid: 29137
+ - uid: 16921
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,16.5
parent: 2
- - uid: 29138
+ - uid: 16922
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -65.5,25.5
+ pos: -40.5,16.5
parent: 2
- - uid: 29139
+ - uid: 16923
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,17.5
parent: 2
- - uid: 29140
+ - uid: 16925
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,19.5
parent: 2
- - uid: 29141
+ - uid: 16953
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,26.5
+ pos: -45.5,10.5
parent: 2
- - uid: 29142
+ - uid: 16954
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,18.5
+ pos: -45.5,9.5
parent: 2
- - uid: 29143
+ - uid: 16955
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,11.5
parent: 2
- - uid: 29144
+ - uid: 16956
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,11.5
parent: 2
- - uid: 29145
+ - uid: 16957
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,11.5
parent: 2
- - uid: 29146
+ - uid: 16964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,12.5
parent: 2
- - uid: 29148
+ - uid: 16965
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,15.5
+ pos: -53.5,12.5
parent: 2
- - uid: 29149
+ - uid: 16966
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,7.5
+ pos: -54.5,13.5
parent: 2
- - uid: 29150
+ - uid: 16967
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,6.5
+ pos: -54.5,14.5
parent: 2
- - uid: 29151
+ - uid: 16968
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -93.5,7.5
- parent: 2
- - uid: 29160
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,12.5
+ pos: -54.5,15.5
parent: 2
- - uid: 29161
+ - uid: 16969
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,16.5
parent: 2
- - uid: 29195
+ - uid: 16970
components:
- type: Transform
- pos: 54.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,17.5
parent: 2
- - uid: 29197
+ - uid: 16971
components:
- type: Transform
- pos: -59.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,18.5
parent: 2
- - uid: 29203
+ - uid: 16972
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,19.5
parent: 2
- - uid: 29207
+ - uid: 16973
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -57.5,-12.5
+ pos: -54.5,20.5
parent: 2
- - uid: 29208
+ - uid: 16974
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,21.5
parent: 2
- - uid: 29209
+ - uid: 16978
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,-31.5
+ pos: -53.5,22.5
parent: 2
- - uid: 29211
+ - uid: 16979
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,-29.5
- parent: 2
- - uid: 29215
- components:
- - type: Transform
- pos: 30.5,-23.5
- parent: 2
- - uid: 29216
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-32.5
+ pos: -52.5,22.5
parent: 2
- - uid: 29218
+ - uid: 16980
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 39.5,-27.5
+ pos: -51.5,22.5
parent: 2
- - uid: 29219
+ - uid: 16981
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,-28.5
+ pos: -50.5,22.5
parent: 2
- - uid: 29220
+ - uid: 16982
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,-23.5
+ pos: -49.5,22.5
parent: 2
- - uid: 29221
+ - uid: 16983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,21.5
parent: 2
- - uid: 29222
+ - uid: 16984
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,23.5
parent: 2
- - uid: 29223
+ - uid: 16985
components:
- type: Transform
- pos: 46.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,24.5
parent: 2
- - uid: 29224
+ - uid: 16986
components:
- type: Transform
- pos: 53.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,25.5
parent: 2
- - uid: 29225
+ - uid: 16987
components:
- type: Transform
- pos: 61.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,26.5
parent: 2
- - uid: 29226
+ - uid: 16988
components:
- type: Transform
- pos: 68.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,27.5
parent: 2
- - uid: 29227
+ - uid: 16989
components:
- type: Transform
- pos: 73.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,28.5
parent: 2
- - uid: 29228
+ - uid: 16990
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 77.5,-17.5
+ pos: -54.5,29.5
parent: 2
- - uid: 29230
+ - uid: 16992
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,31.5
parent: 2
- - uid: 29231
+ - uid: 16993
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,32.5
parent: 2
- - uid: 29232
+ - uid: 16994
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,33.5
parent: 2
- - uid: 29233
+ - uid: 16995
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,34.5
parent: 2
- - uid: 29234
+ - uid: 16996
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 69.5,-8.5
+ pos: -54.5,35.5
parent: 2
- - uid: 29236
+ - uid: 16997
components:
- type: Transform
- pos: 74.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,36.5
parent: 2
- - uid: 29239
+ - uid: 16998
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 59.5,-27.5
+ pos: -54.5,37.5
parent: 2
- - uid: 29241
+ - uid: 16999
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,38.5
parent: 2
- - uid: 29242
+ - uid: 17016
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,31.5
parent: 2
- - uid: 29243
+ - uid: 17017
components:
- type: Transform
- pos: 55.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,32.5
parent: 2
- - uid: 29244
+ - uid: 17018
components:
- type: Transform
- pos: 65.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,33.5
parent: 2
- - uid: 29246
+ - uid: 17019
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 54.5,10.5
+ pos: -42.5,34.5
parent: 2
- - uid: 29251
+ - uid: 17020
components:
- type: Transform
- pos: 54.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,35.5
parent: 2
- - uid: 29254
+ - uid: 17021
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,36.5
parent: 2
- - uid: 29258
+ - uid: 17022
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,37.5
parent: 2
- - uid: 29424
+ - uid: 17036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,8.5
parent: 2
- - uid: 32448
+ - uid: 17037
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,8.5
parent: 2
- - uid: 32685
+ - uid: 17038
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,8.5
parent: 2
-- proto: EmergencyMedipen
- entities:
- - uid: 2117
+ - uid: 17039
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.7093115,14.024433
+ rot: -1.5707963267948966 rad
+ pos: -50.5,8.5
parent: 2
- - uid: 2118
+ - uid: 17040
components:
- type: Transform
- pos: -3.3698382,-11.567606
+ rot: -1.5707963267948966 rad
+ pos: -51.5,8.5
parent: 2
- - uid: 2119
+ - uid: 17041
components:
- type: Transform
- pos: -3.5456195,-11.298075
+ rot: -1.5707963267948966 rad
+ pos: -52.5,8.5
parent: 2
-- proto: EmergencyRollerBed
- entities:
- - uid: 2047
+ - uid: 17042
components:
- type: Transform
- pos: 8.560314,14.182974
+ rot: -1.5707963267948966 rad
+ pos: -53.5,8.5
parent: 2
- - uid: 2048
+ - uid: 17043
components:
- type: Transform
- pos: 8.572033,13.74938
+ rot: -1.5707963267948966 rad
+ pos: -54.5,8.5
parent: 2
- - uid: 2049
+ - uid: 17044
components:
- type: Transform
- pos: 8.593545,13.269189
+ rot: -1.5707963267948966 rad
+ pos: -55.5,8.5
parent: 2
- - uid: 33612
+ - uid: 17045
components:
- type: Transform
- pos: 84.70249,52.24365
+ rot: -1.5707963267948966 rad
+ pos: -56.5,8.5
parent: 2
-- proto: EmergencyRollerBedSpawnFolded
- entities:
- - uid: 2041
+ - uid: 17046
components:
- type: Transform
- pos: 35.82994,7.8261476
+ rot: -1.5707963267948966 rad
+ pos: -57.5,8.5
parent: 2
- - uid: 2043
+ - uid: 17048
components:
- type: Transform
- pos: 35.775253,7.662085
+ rot: -1.5707963267948966 rad
+ pos: -59.5,8.5
parent: 2
- - uid: 2282
+ - uid: 17049
components:
- type: Transform
- pos: -2.9590409,-32.09426
+ rot: -1.5707963267948966 rad
+ pos: -60.5,8.5
parent: 2
- - uid: 7094
+ - uid: 17050
components:
- type: Transform
- pos: -2.386812,-32.11878
+ rot: -1.5707963267948966 rad
+ pos: -61.5,8.5
parent: 2
- - uid: 18043
+ - uid: 17051
components:
- type: Transform
- pos: -42.790806,60.730595
+ rot: -1.5707963267948966 rad
+ pos: -62.5,8.5
parent: 2
- - uid: 18044
+ - uid: 17052
components:
- type: Transform
- pos: -42.384556,60.68372
+ rot: -1.5707963267948966 rad
+ pos: -63.5,8.5
parent: 2
-- proto: Emitter
- entities:
- - uid: 18914
+ - uid: 17053
components:
- type: Transform
- pos: -116.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,8.5
parent: 2
- - uid: 18915
+ - uid: 17054
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,47.5
+ pos: -65.5,8.5
parent: 2
- - uid: 32234
+ - uid: 17055
components:
- type: Transform
- anchored: False
- rot: 2.4289329022159234 rad
- pos: -94.045944,49.229107
+ rot: -1.5707963267948966 rad
+ pos: -66.5,8.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - type: PowerConsumer
- drawRate: 1
- - uid: 32235
+ - uid: 17056
components:
- type: Transform
- anchored: False
- rot: -0.9452105769279857 rad
- pos: -94.28863,53.41432
+ rot: -1.5707963267948966 rad
+ pos: -67.5,8.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - type: PowerConsumer
- drawRate: 1
- - uid: 32236
+ - uid: 17057
components:
- type: Transform
- anchored: False
- rot: 1.876025036969457 rad
- pos: -96.37966,49.730766
+ rot: -1.5707963267948966 rad
+ pos: -68.5,8.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - type: PowerConsumer
- drawRate: 1
- - uid: 32237
+ - uid: 17059
components:
- type: Transform
- anchored: False
- rot: 1.2664615998662199 rad
- pos: -94.490555,48.734154
+ rot: -1.5707963267948966 rad
+ pos: -70.5,8.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - type: PowerConsumer
- drawRate: 1
- - uid: 32238
+ - uid: 17060
components:
- type: Transform
- anchored: False
- rot: 0.13435010512801604 rad
- pos: -95.67606,49.609516
+ rot: -1.5707963267948966 rad
+ pos: -71.5,8.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - type: PowerConsumer
- drawRate: 1
-- proto: EncryptionKeyBinary
- entities:
- - uid: 19802
- components:
- - type: Transform
- parent: 19758
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCargo
- entities:
- - uid: 19881
- components:
- - type: Transform
- parent: 19880
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommand
- entities:
- - uid: 19820
+ - uid: 17061
components:
- type: Transform
- parent: 19817
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyCommon
- entities:
- - uid: 18389
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-2.5
+ parent: 2
+ - uid: 17062
components:
- type: Transform
- parent: 18387
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyEngineering
- entities:
- - uid: 19816
+ rot: -1.5707963267948966 rad
+ pos: -74.5,8.5
+ parent: 2
+ - uid: 17063
components:
- type: Transform
- parent: 19811
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyMedical
- entities:
- - uid: 20200
+ rot: -1.5707963267948966 rad
+ pos: -75.5,8.5
+ parent: 2
+ - uid: 17064
components:
- type: Transform
- parent: 20193
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyScience
- entities:
- - uid: 19801
+ rot: -1.5707963267948966 rad
+ pos: -76.5,8.5
+ parent: 2
+ - uid: 17065
components:
- type: Transform
- parent: 19758
- - type: Physics
- canCollide: False
-- proto: EncryptionKeySecurity
- entities:
- - uid: 22281
+ rot: -1.5707963267948966 rad
+ pos: -77.5,8.5
+ parent: 2
+ - uid: 17066
components:
- type: Transform
- parent: 22280
- - type: Physics
- canCollide: False
-- proto: EncryptionKeyService
- entities:
- - uid: 19850
+ rot: -1.5707963267948966 rad
+ pos: -78.5,8.5
+ parent: 2
+ - uid: 17067
components:
- type: Transform
- parent: 19849
- - type: Physics
- canCollide: False
-- proto: EpinephrineChemistryBottle
- entities:
- - uid: 1578
+ rot: -1.5707963267948966 rad
+ pos: -79.5,8.5
+ parent: 2
+ - uid: 17068
components:
- type: Transform
- pos: 9.358466,14.62549
+ rot: -1.5707963267948966 rad
+ pos: -80.5,8.5
parent: 2
- - uid: 1579
+ - uid: 17069
components:
- type: Transform
- pos: 9.475654,14.422365
+ rot: -1.5707963267948966 rad
+ pos: -81.5,8.5
parent: 2
-- proto: ExosuitFabricator
- entities:
- - uid: 19977
+ - uid: 17070
components:
- type: Transform
- pos: 43.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,8.5
parent: 2
-- proto: ExtinguisherCabinetFilled
- entities:
- - uid: 1119
+ - uid: 17071
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,40.5
+ pos: -83.5,8.5
parent: 2
- - uid: 2106
+ - uid: 17074
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,10.5
+ pos: -86.5,8.5
parent: 2
- - uid: 2107
+ - uid: 17075
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,8.5
parent: 2
- - uid: 2108
+ - uid: 17076
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,8.5
parent: 2
- - uid: 2109
+ - uid: 17077
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,13.5
+ pos: -89.5,8.5
parent: 2
- - uid: 2110
+ - uid: 17078
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 35.5,12.5
+ pos: -90.5,8.5
parent: 2
- - uid: 2111
+ - uid: 17079
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 17.5,0.5
+ pos: -91.5,8.5
parent: 2
- - uid: 2113
+ - uid: 17080
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-8.5
+ pos: -92.5,8.5
parent: 2
- - uid: 2115
+ - uid: 17081
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-5.5
+ pos: -93.5,8.5
parent: 2
- - uid: 2835
+ - uid: 17082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,8.5
parent: 2
- - uid: 5687
+ - uid: 17090
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,35.5
+ pos: -84.5,-1.5
parent: 2
- - uid: 5688
+ - uid: 17091
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,31.5
+ pos: -84.5,-0.5
parent: 2
- - uid: 5689
+ - uid: 17092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,27.5
+ pos: -84.5,0.5
parent: 2
- - uid: 5690
+ - uid: 17093
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,22.5
+ pos: -84.5,1.5
parent: 2
- - uid: 5691
+ - uid: 17094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 41.5,24.5
+ pos: -84.5,2.5
parent: 2
- - uid: 5692
+ - uid: 17095
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 61.5,51.5
+ pos: -84.5,3.5
parent: 2
- - uid: 6134
+ - uid: 17096
components:
- type: Transform
- pos: 18.5,-24.5
+ pos: -84.5,4.5
parent: 2
- - uid: 6135
+ - uid: 17097
components:
- type: Transform
- pos: 12.5,-33.5
+ pos: -84.5,5.5
parent: 2
- - uid: 6136
+ - uid: 17098
components:
- type: Transform
- pos: 37.5,-20.5
+ pos: -84.5,6.5
parent: 2
- - uid: 6137
+ - uid: 17099
components:
- type: Transform
- pos: 40.5,-33.5
+ pos: -84.5,7.5
parent: 2
- - uid: 6954
+ - uid: 17100
components:
- type: Transform
- pos: -20.5,-37.5
+ pos: -84.5,10.5
parent: 2
- - uid: 6956
+ - uid: 17101
components:
- type: Transform
- pos: -11.5,-24.5
+ pos: -84.5,11.5
parent: 2
- - uid: 6957
+ - uid: 17102
components:
- type: Transform
- pos: -23.5,-21.5
+ pos: -84.5,12.5
parent: 2
- - uid: 14202
+ - uid: 17103
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,53.5
+ pos: -84.5,13.5
parent: 2
- - uid: 14203
+ - uid: 17104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,50.5
+ pos: -84.5,14.5
parent: 2
- - uid: 14204
+ - uid: 17105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,42.5
+ pos: -84.5,15.5
parent: 2
- - uid: 18084
+ - uid: 17106
components:
- type: Transform
- pos: -12.5,67.5
+ pos: -84.5,16.5
parent: 2
- - uid: 18091
+ - uid: 17107
components:
- type: Transform
- pos: -3.5,57.5
+ pos: -84.5,17.5
parent: 2
- - uid: 18092
+ - uid: 17108
components:
- type: Transform
- pos: -17.5,38.5
+ pos: -84.5,18.5
parent: 2
- - uid: 18094
+ - uid: 17109
components:
- type: Transform
- pos: -3.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,19.5
parent: 2
- - uid: 18095
+ - uid: 17110
components:
- type: Transform
- pos: -28.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,7.5
parent: 2
- - uid: 28787
+ - uid: 17111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,10.5
parent: 2
- - uid: 30577
+ - uid: 17134
components:
- type: Transform
- pos: -18.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,54.5
parent: 2
- - uid: 30963
+ - uid: 17135
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,53.5
parent: 2
-- proto: FaxMachineBase
- entities:
- - uid: 1019
+ - uid: 17136
components:
- type: Transform
- pos: 18.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,52.5
parent: 2
- - type: FaxMachine
- name: Chemistry
- - uid: 3273
+ - uid: 17137
components:
- type: Transform
- pos: -7.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,52.5
parent: 2
- - type: FaxMachine
- name: Hospital
- - uid: 3277
+ - uid: 17138
components:
- type: Transform
- pos: -14.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,52.5
parent: 2
- - type: FaxMachine
- name: Courtroom
- - uid: 3279
+ - uid: 17139
components:
- type: Transform
- pos: 4.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,53.5
parent: 2
- - type: FaxMachine
- name: HoP
- - uid: 3314
+ - uid: 17140
components:
- type: Transform
- pos: -59.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,54.5
parent: 2
- - type: FaxMachine
- name: Botany
- - uid: 5484
+ - uid: 17141
components:
- type: Transform
- pos: 36.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,55.5
parent: 2
- - uid: 5597
+ - uid: 17142
components:
- type: Transform
- pos: 52.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,56.5
parent: 2
- - type: FaxMachine
- name: Library
- - uid: 6535
+ - uid: 17143
components:
- type: Transform
- pos: -6.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,57.5
parent: 2
- - type: FaxMachine
- name: Mailroom
- - uid: 7118
+ - uid: 17144
components:
- type: Transform
- pos: -14.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,58.5
parent: 2
- - type: FaxMachine
- name: Logistics
- - uid: 7967
+ - uid: 17145
components:
- type: Transform
- pos: -19.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,59.5
parent: 2
- - type: FaxMachine
- name: Perma
- - uid: 8019
+ - uid: 17146
components:
- type: Transform
- pos: -24.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,60.5
parent: 2
- - type: FaxMachine
- name: Warden
- - uid: 9101
+ - uid: 17148
components:
- type: Transform
- pos: -49.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,62.5
parent: 2
- - type: FaxMachine
- name: Atmospherics
- - uid: 13321
+ - uid: 17149
components:
- type: Transform
- pos: -73.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,51.5
parent: 2
- - type: FaxMachine
- name: Zoo
- - uid: 15601
+ - uid: 17150
components:
- type: Transform
- pos: -9.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,50.5
parent: 2
- - type: FaxMachine
- name: Security
- - uid: 16625
+ - uid: 17151
components:
- type: Transform
- pos: -6.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,49.5
parent: 2
- - type: FaxMachine
- name: Lawyer
- - uid: 22265
+ - uid: 17152
components:
- type: Transform
- pos: -6.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,48.5
parent: 2
- - type: FaxMachine
- name: Salvage
- - uid: 23284
+ - uid: 17153
components:
- type: Transform
- pos: -27.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,47.5
parent: 2
- - type: FaxMachine
- name: Head of Logistics
- - uid: 23440
+ - uid: 17154
components:
- type: Transform
- pos: -3.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,46.5
parent: 2
- - type: FaxMachine
- name: Arrivals
- - uid: 23769
+ - uid: 17155
components:
- type: Transform
- pos: -52.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,45.5
parent: 2
- - type: FaxMachine
- name: Food Court
- - uid: 29698
+ - uid: 17156
components:
- type: Transform
- pos: -77.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,44.5
parent: 2
- - type: FaxMachine
- name: Honkroom
- - uid: 29699
+ - uid: 17157
components:
- type: Transform
- pos: -57.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,43.5
parent: 2
- - type: FaxMachine
- name: Chief Engineer
- - uid: 29702
+ - uid: 17158
components:
- type: Transform
- pos: -32.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,42.5
parent: 2
- - type: FaxMachine
- name: Detective
- - uid: 29703
+ - uid: 17159
components:
- type: Transform
- pos: -8.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,41.5
parent: 2
- - type: FaxMachine
- name: Head of Security
- - uid: 29720
+ - uid: 17160
components:
- type: Transform
- pos: 46.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,40.5
parent: 2
- - type: FaxMachine
- name: Forensic Mantis
- - uid: 29722
+ - uid: 17161
components:
- type: Transform
- pos: -11.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,38.5
parent: 2
- - type: FaxMachine
- name: CMO
- - uid: 29726
+ - uid: 17162
components:
- type: Transform
- pos: -42.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,37.5
parent: 2
- - type: FaxMachine
- name: Janitor
- - uid: 29727
+ - uid: 17163
components:
- type: Transform
- pos: 26.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,36.5
parent: 2
- - type: FaxMachine
- name: Bar
- - uid: 30756
+ - uid: 17164
components:
- type: Transform
- pos: 46.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,35.5
parent: 2
- - type: FaxMachine
- name: MG
-- proto: FaxMachineCaptain
- entities:
- - uid: 15124
+ - uid: 17165
components:
- type: Transform
- pos: 29.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,34.5
parent: 2
- - type: FaxMachine
- name: Captain
-- proto: FenceMetalBroken
- entities:
- - uid: 5386
+ - uid: 17166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,33.5
parent: 2
-- proto: filingCabinet
- entities:
- - uid: 15685
+ - uid: 17168
components:
- type: Transform
- pos: -20.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,31.5
parent: 2
-- proto: filingCabinetDrawer
- entities:
- - uid: 8767
+ - uid: 17169
components:
- type: Transform
- pos: -51.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,30.5
parent: 2
- - uid: 14178
+ - uid: 17170
components:
- type: Transform
- pos: 10.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,29.5
parent: 2
-- proto: filingCabinetDrawerRandom
- entities:
- - uid: 623
+ - uid: 17171
components:
- type: Transform
- pos: -6.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,28.5
parent: 2
- - uid: 669
+ - uid: 17172
components:
- type: Transform
- pos: -19.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,27.5
parent: 2
- - uid: 670
+ - uid: 17173
components:
- type: Transform
- pos: -17.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,26.5
parent: 2
- - uid: 1555
+ - uid: 17174
components:
- type: Transform
- pos: -26.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,25.5
parent: 2
- - uid: 2066
+ - uid: 17175
components:
- type: Transform
- pos: -7.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,24.5
parent: 2
- - uid: 5485
+ - uid: 17177
components:
- type: Transform
- pos: 30.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,22.5
parent: 2
- - uid: 6612
+ - uid: 17178
components:
- type: Transform
- pos: -30.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,21.5
parent: 2
- - uid: 6613
+ - uid: 17179
components:
- type: Transform
- pos: -24.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,18.5
parent: 2
- - uid: 9149
+ - uid: 17180
components:
- type: Transform
- pos: 50.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,17.5
parent: 2
- - uid: 12954
+ - uid: 17181
components:
- type: Transform
- pos: 50.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,16.5
parent: 2
- - uid: 15751
+ - uid: 17182
components:
- type: Transform
- pos: -6.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,15.5
parent: 2
- - uid: 15752
+ - uid: 17183
components:
- type: Transform
- pos: -5.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,14.5
parent: 2
-- proto: filingCabinetRandom
- entities:
- - uid: 14180
+ - uid: 17184
components:
- type: Transform
- pos: 9.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,13.5
parent: 2
-- proto: FireAlarm
- entities:
- - uid: 11
+ - uid: 17185
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,12.5
parent: 2
- - type: DeviceList
- devices:
- - 2609
- - 2610
- - 2611
- - 4642
- - 4212
- - 5244
- - 7752
- - 18373
- - 18374
- - 18375
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 1061
+ - uid: 17186
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-3.5
+ pos: 1.5,11.5
parent: 2
- - type: DeviceList
- devices:
- - 214
- - 221
- - 218
- - 384
- - 390
- - 258
- - 260
- - 68
- - 65
- - 66
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2712
+ - uid: 17187
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,10.5
parent: 2
- - type: DeviceList
- devices:
- - 2606
- - 2208
- - 14015
- - 14020
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2789
+ - uid: 17188
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,17.5
+ pos: 1.5,9.5
parent: 2
- - type: DeviceList
- devices:
- - 2010
- - 2008
- - 2007
- - 3976
- - 781
- - 788
- - 789
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4723
+ - uid: 17189
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,8.5
parent: 2
- - type: DeviceList
- devices:
- - 3359
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 8994
+ - uid: 17190
components:
- type: Transform
- pos: 9.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,7.5
parent: 2
- - type: DeviceList
- devices:
- - 13917
- - 13918
- - 27453
- - 27454
- - 2636
- - 2634
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 15932
+ - uid: 17191
components:
- type: Transform
- pos: 7.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,6.5
parent: 2
- - type: DeviceList
- devices:
- - 13914
- - 13915
- - 13917
- - 13918
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 15934
+ - uid: 17192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,5.5
parent: 2
- - type: DeviceList
- devices:
- - 15917
- - 16288
- - 16331
- - 16289
- - 15643
- - 15539
- - 15538
- - 15415
- - 15297
- - 15296
- - 15295
- - 27457
- - 27456
- - 27455
- - 15596
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 22791
+ - uid: 17193
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,4.5
parent: 2
- - type: DeviceList
- devices:
- - 2018
- - 2019
- - 148
- - 144
- - 1178
- - 1079
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23619
+ - uid: 17202
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,17.5
+ pos: -15.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23668
+ - uid: 17203
components:
- type: Transform
- pos: -60.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,23.5
parent: 2
- - type: DeviceList
- devices:
- - 7640
- - 17859
- - 5723
- - 8703
- - 8702
- - 8701
- - 7671
- - 7673
- - 3834
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23670
+ - uid: 17204
components:
- type: Transform
- pos: -79.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,25.5
parent: 2
- - type: DeviceList
- devices:
- - 4218
- - 4242
- - 3709
- - 9197
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23672
+ - uid: 17205
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -97.5,2.5
+ pos: -15.5,26.5
parent: 2
- - type: DeviceList
- devices:
- - 7751
- - 2603
- - 7753
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23673
+ - uid: 17206
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,27.5
parent: 2
- - type: DeviceList
- devices:
- - 7748
- - 7749
- - 7750
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23674
+ - uid: 17207
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,28.5
parent: 2
- - type: DeviceList
- devices:
- - 7671
- - 7673
- - 3834
- - 7675
- - 8183
- - 7674
- - 7682
- - 1505
- - 27441
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23675
+ - uid: 17208
components:
- type: Transform
- pos: -58.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 18464
- - 18463
- - 28750
- - 28751
- - 7416
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23676
+ - uid: 17209
components:
- type: Transform
- pos: 3.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 1870
- - 1871
- - 1860
- - 1861
- - 1859
- - 1866
- - 1867
- - 221
- - 218
- - 214
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23677
+ - uid: 17210
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,43.5
+ pos: -18.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 1859
- - 1860
- - 1861
- - 13915
- - 13914
- - 2609
- - 2610
- - 2611
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23678
+ - uid: 17211
components:
- type: Transform
- pos: -4.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 15721
- - 4212
- - 4642
- - 15917
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23679
+ - uid: 17212
components:
- type: Transform
- pos: -12.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23681
+ - uid: 17213
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 18373
- - 18374
- - 18375
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23683
+ - uid: 17214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 14170
- - 14173
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23684
+ - uid: 17215
components:
- type: Transform
- pos: 20.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 2634
- - 2636
- - 2869
- - 2606
- - 2208
- - 14170
- - 14173
- - 2681
- - 14122
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23685
+ - uid: 17216
components:
- type: Transform
- pos: 22.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 2681
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23687
+ - uid: 17217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 4377
- - 4376
- - 4375
- - 5704
- - 9340
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23689
+ - uid: 17218
components:
- type: Transform
- pos: 68.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23690
+ - uid: 17219
components:
- type: Transform
- pos: 37.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 3892
- - 3424
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23691
+ - uid: 17220
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,-26.5
+ pos: -28.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 1097
- - 3172
- - 3365
- - 3358
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23692
+ - uid: 17221
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 2904
- - 2923
- - 6955
- - 28782
- - 28783
- - 763
- - 766
- - 765
- - 5250
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23694
+ - uid: 17222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 6945
- - 7529
- - 7530
- - 7889
- - 5062
- - 7110
- - 2353
- - 7180
- - 5194
- - 3568
- - 7107
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23695
+ - uid: 17223
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -48.5,-1.5
+ pos: -31.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23696
+ - uid: 17224
components:
- type: Transform
- pos: -57.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 7192
- - 7190
- - 7225
- - 7235
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23697
+ - uid: 17225
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,21.5
+ pos: -33.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 9082
- - 9081
- - 8874
- - 8873
- - 7638
- - 3680
- - 8857
- - 8783
- - 8763
- - 7640
- - 17859
- - 5723
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 24823
+ - uid: 17226
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 14.5,-7.5
+ pos: -34.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 152
- - 153
- - 155
- - 154
- - 1661
- - 2014
- - 2015
- - 2016
- - 2017
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25202
+ - uid: 17227
components:
- type: Transform
- pos: -22.5,27.5
+ pos: -35.5,30.5
parent: 2
- - type: DeviceList
- devices:
- - 9552
- - 9216
- - 9255
- - 15295
- - 15296
- - 15297
- - 27457
- - 27456
- - 27455
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25228
+ - uid: 17228
components:
- type: Transform
- pos: -8.5,22.5
+ pos: -35.5,31.5
parent: 2
- - type: DeviceList
- devices:
- - 9548
- - 9255
- - 9216
- - 9552
- - 1866
- - 1867
- - 25215
- - 25214
- - 25216
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25235
+ - uid: 17229
components:
- type: Transform
- pos: -87.5,-2.5
+ pos: -35.5,32.5
parent: 2
- - type: DeviceList
- devices:
- - 7745
- - 7747
- - 7746
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25237
+ - uid: 17230
components:
- type: Transform
- pos: -8.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,24.5
parent: 2
- - type: DeviceList
- devices:
- - 15596
- - 15597
- - 9548
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 27410
+ - uid: 17231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,24.5
+ parent: 2
+ - uid: 17232
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.5,4.5
+ pos: -10.5,23.5
parent: 2
- - type: DeviceList
- devices:
- - 1489
- - 1441
- - 384
- - 390
- - 1012
- - 1080
- - 2012
- - 2013
- - 1494
- - 1495
- - 1496
- - 1395
- - 883
- - 1082
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28620
+ - uid: 17233
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,-22.5
+ pos: -10.5,22.5
parent: 2
- - type: DeviceList
- devices:
- - 774
- - 777
- - 3365
- - 3424
- - 3531
- - 27445
- - 27446
- - 27447
- - 27448
- - 27449
- - 27450
- - 27452
- - 27451
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28621
+ - uid: 17234
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 23.5,-25.5
+ pos: -10.5,21.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28623
+ - uid: 17237
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 1862
- - 1863
- - 1864
- - 2462
- - 2463
- - 2461
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28628
+ - uid: 17238
components:
- type: Transform
- pos: 45.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 25295
- - 25296
- - 25297
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28629
+ - uid: 17239
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 63.5,-31.5
+ pos: -12.5,29.5
parent: 2
- - type: DeviceList
- devices:
- - 25295
- - 25296
- - 25297
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28630
+ - uid: 17241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,29.5
+ parent: 2
+ - uid: 17242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,29.5
+ parent: 2
+ - uid: 17249
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 79.5,-7.5
+ pos: -11.5,30.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28631
+ - uid: 17250
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 78.5,-12.5
+ pos: -11.5,34.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28632
+ - uid: 17251
components:
- type: Transform
- pos: 52.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,33.5
parent: 2
- - type: DeviceList
- devices:
- - 2251
- - 5704
- - 26
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28634
+ - uid: 17252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,32.5
parent: 2
- - type: DeviceList
- devices:
- - 3889
- - 3881
- - 3899
- - 3898
- - 3879
- - 3877
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28635
+ - uid: 17255
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.5,-9.5
+ pos: -12.5,37.5
parent: 2
- - type: DeviceList
- devices:
- - 3889
- - 3881
- - 3899
- - 3898
- - 3879
- - 3877
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28636
+ - uid: 17256
components:
- type: Transform
- pos: 76.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 3889
- - 3881
- - 3899
- - 3898
- - 3879
- - 3877
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28638
+ - uid: 17257
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,39.5
parent: 2
- - type: DeviceList
- devices:
- - 25217
- - 25218
- - 25219
- - 3877
- - 3879
- - 3898
- - 3899
- - 3881
- - 3889
- - 25213
- - 25212
- - 25211
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28639
+ - uid: 17258
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 37.5,-17.5
+ pos: -11.5,40.5
parent: 2
- - type: DeviceList
- devices:
- - 1874
- - 1875
- - 25217
- - 25218
- - 25219
- - 3892
- - 777
- - 774
- - 1097
- - 27445
- - 27446
- - 27447
- - 27448
- - 27449
- - 27450
- - 27452
- - 27451
- - 152
- - 153
- - 155
- - 154
- - 148
- - 144
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28640
+ - uid: 17263
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,39.5
parent: 2
- - type: DeviceList
- devices:
- - 1874
- - 1875
- - 25217
- - 25218
- - 25219
- - 3892
- - 777
- - 774
- - 1097
- - 27445
- - 27446
- - 27447
- - 27448
- - 27449
- - 27450
- - 27452
- - 27451
- - 152
- - 153
- - 155
- - 154
- - 148
- - 144
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28643
+ - uid: 17264
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,39.5
parent: 2
- - type: DeviceList
- devices:
- - 4377
- - 4376
- - 4375
- - 2237
- - 25209
- - 25208
- - 25207
- - 25211
- - 25212
- - 25213
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28648
+ - uid: 17265
components:
- type: Transform
- pos: 27.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,38.5
parent: 2
- - type: DeviceList
- devices:
- - 27460
- - 27459
- - 27458
- - 3438
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28649
+ - uid: 17266
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,37.5
parent: 2
- - type: DeviceList
- devices:
- - 3976
- - 2205
- - 27460
- - 27459
- - 27458
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28650
+ - uid: 17267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,36.5
parent: 2
- - type: DeviceList
- devices:
- - 4107
- - 3359
- - 2259
- - 3853
- - 2203
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28651
+ - uid: 17272
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,51.5
parent: 2
- - type: DeviceList
- devices:
- - 2259
- - 2510
- - 9224
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28652
+ - uid: 17273
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,50.5
parent: 2
- - type: DeviceList
- devices:
- - 4107
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28653
+ - uid: 17274
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,23.5
+ pos: 12.5,49.5
parent: 2
- - type: DeviceList
- devices:
- - 3906
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28657
+ - uid: 17275
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,49.5
parent: 2
- - type: DeviceList
- devices:
- - 14015
- - 14020
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28702
+ - uid: 17276
components:
- type: Transform
- pos: 11.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,49.5
parent: 2
- - type: DeviceList
- devices:
- - 2648
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28734
+ - uid: 17277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,48.5
parent: 2
- - type: DeviceList
- devices:
- - 9083
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28739
+ - uid: 17278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,48.5
parent: 2
- - type: DeviceList
- devices:
- - 8873
- - 8874
- - 24108
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28756
+ - uid: 17279
components:
- type: Transform
- pos: -44.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,48.5
parent: 2
- - type: DeviceList
- devices:
- - 6945
- - 7529
- - 7530
- - 7889
- - 5062
- - 7110
- - 2353
- - 7180
- - 5194
- - 3568
- - 7107
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28780
+ - uid: 17280
components:
- type: Transform
- pos: -24.5,-12.5
+ pos: 19.5,49.5
parent: 2
- - type: DeviceList
- devices:
- - 3080
- - 7107
- - 3568
- - 84
- - 2147
- - 766
- - 765
- - 763
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28781
+ - uid: 17281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-22.5
+ pos: 19.5,50.5
parent: 2
- - type: DeviceList
- devices:
- - 6553
- - 2904
- - 2923
- - 6955
- - 28782
- - 28783
- - 6628
- - 6498
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28788
+ - uid: 17282
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-36.5
+ pos: 19.5,51.5
parent: 2
- - type: DeviceList
- devices:
- - 6628
- - 6630
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28793
+ - uid: 17283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,11.5
+ pos: 19.5,47.5
parent: 2
- - type: DeviceList
- devices:
- - 345
- - 346
- - 542
- - 541
- - 548
- - 547
- - 549
- - 550
- - 546
- - 545
- - 544
- - 543
- - 1685
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 29427
+ - uid: 17284
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-7.5
+ pos: 19.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: FireAxeCabinetFilled
- entities:
- - uid: 9568
+ - uid: 17285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,36.5
+ pos: 19.5,45.5
parent: 2
- - uid: 14200
+ - uid: 17286
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,51.5
+ pos: 19.5,44.5
parent: 2
-- proto: Firelock
- entities:
- - uid: 19643
+ - uid: 17287
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-12.5
+ pos: 19.5,43.5
parent: 2
- - uid: 19652
+ - uid: 17288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,59.5
+ pos: 19.5,42.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22291
- - uid: 19818
+ - uid: 17289
components:
- type: Transform
- pos: 9.5,17.5
+ pos: 19.5,41.5
parent: 2
- - uid: 20876
+ - uid: 17290
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-12.5
+ pos: 19.5,40.5
parent: 2
- - uid: 22929
+ - uid: 17291
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,39.5
parent: 2
- - uid: 23231
+ - uid: 17292
components:
- type: Transform
- pos: 4.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,39.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22348
- - uid: 27176
+ - uid: 17293
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,39.5
parent: 2
-- proto: FirelockEdge
- entities:
- - uid: 3702
+ - uid: 17294
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,39.5
parent: 2
- - uid: 3827
+ - uid: 17295
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,39.5
parent: 2
-- proto: FirelockGlass
- entities:
- - uid: 26
+ - uid: 17296
components:
- type: Transform
- pos: 50.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,39.5
parent: 2
- - uid: 65
+ - uid: 17297
components:
- type: Transform
- pos: 1.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,39.5
parent: 2
- - uid: 66
+ - uid: 17298
components:
- type: Transform
- pos: 2.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,39.5
parent: 2
- - uid: 68
+ - uid: 17299
components:
- type: Transform
- pos: 0.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,39.5
parent: 2
- - uid: 84
+ - uid: 17300
components:
- type: Transform
- pos: -5.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,39.5
parent: 2
- - uid: 96
+ - uid: 17301
components:
- type: Transform
- pos: -53.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,39.5
parent: 2
- - uid: 101
+ - uid: 17302
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,39.5
parent: 2
- - uid: 144
+ - uid: 17303
components:
- type: Transform
- pos: 29.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,39.5
parent: 2
- - uid: 148
+ - uid: 17304
components:
- type: Transform
- pos: 28.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,39.5
parent: 2
- - uid: 152
+ - uid: 17316
components:
- type: Transform
- pos: 16.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,20.5
parent: 2
- - uid: 153
+ - uid: 17320
components:
- type: Transform
- pos: 17.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,46.5
parent: 2
- - uid: 154
+ - uid: 17321
components:
- type: Transform
- pos: 20.5,-12.5
+ pos: 39.5,45.5
parent: 2
- - uid: 155
+ - uid: 17322
components:
- type: Transform
- pos: 19.5,-12.5
+ pos: 39.5,44.5
parent: 2
- - uid: 212
+ - uid: 17323
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-5.5
+ pos: 39.5,43.5
parent: 2
- - uid: 214
+ - uid: 17324
components:
- type: Transform
- pos: 0.5,8.5
+ pos: 39.5,42.5
parent: 2
- - uid: 218
+ - uid: 17325
components:
- type: Transform
- pos: 2.5,8.5
+ pos: 39.5,41.5
parent: 2
- - uid: 221
+ - uid: 17326
components:
- type: Transform
- pos: 1.5,8.5
+ pos: 39.5,40.5
parent: 2
- - uid: 258
+ - uid: 17327
components:
- type: Transform
- pos: -9.5,1.5
+ pos: 39.5,39.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 260
+ - uid: 17328
components:
- type: Transform
- pos: -9.5,3.5
+ pos: 39.5,38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 300
+ - uid: 17329
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,37.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - 69
- - uid: 317
+ - uid: 17330
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,37.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25231
- - 25232
- - uid: 345
+ - uid: 17331
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,8.5
+ pos: 39.5,36.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 346
+ - uid: 17332
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,8.5
+ pos: 39.5,35.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 361
+ - uid: 17334
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,4.5
+ pos: 39.5,33.5
parent: 2
- - uid: 384
+ - uid: 17335
components:
- type: Transform
- pos: 7.5,3.5
+ pos: 39.5,32.5
parent: 2
- - uid: 390
+ - uid: 17336
components:
- type: Transform
- pos: 7.5,1.5
+ pos: 39.5,31.5
parent: 2
- - uid: 395
+ - uid: 17337
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-1.5
+ pos: 39.5,30.5
parent: 2
- - uid: 396
+ - uid: 17338
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 443
+ - uid: 17339
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,-30.5
+ pos: 37.5,29.5
parent: 2
- - uid: 541
+ - uid: 17340
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,29.5
parent: 2
- - uid: 542
+ - uid: 17341
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,29.5
parent: 2
- - uid: 543
+ - uid: 17342
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,29.5
parent: 2
- - uid: 544
+ - uid: 17343
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,29.5
parent: 2
- - uid: 545
+ - uid: 17344
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,29.5
parent: 2
- - uid: 546
+ - uid: 17346
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,27.5
parent: 2
- - uid: 547
+ - uid: 17347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,25.5
parent: 2
- - uid: 548
+ - uid: 17348
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,24.5
parent: 2
- - uid: 549
+ - uid: 17349
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,23.5
parent: 2
- - uid: 550
+ - uid: 17350
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,22.5
parent: 2
- - uid: 580
+ - uid: 17351
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,-6.5
+ pos: 31.5,21.5
parent: 2
- - uid: 583
+ - uid: 17358
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,26.5
parent: 2
- - uid: 592
+ - uid: 17359
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,26.5
parent: 2
- - uid: 681
+ - uid: 17360
components:
- type: Transform
- pos: -11.5,-3.5
+ pos: 53.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 682
+ - uid: 17361
components:
- type: Transform
- pos: -10.5,-3.5
+ pos: 53.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - uid: 763
+ - uid: 17363
components:
- type: Transform
- pos: -12.5,-17.5
+ pos: 53.5,22.5
parent: 2
- - uid: 765
+ - uid: 17364
components:
- type: Transform
- pos: -11.5,-17.5
+ pos: 53.5,21.5
parent: 2
- - uid: 766
+ - uid: 17365
components:
- type: Transform
- pos: -10.5,-17.5
+ pos: 53.5,20.5
parent: 2
- - uid: 774
+ - uid: 17366
components:
- type: Transform
- pos: 24.5,-17.5
+ pos: 53.5,19.5
parent: 2
- - uid: 777
+ - uid: 17367
components:
- type: Transform
- pos: 25.5,-17.5
+ pos: 53.5,18.5
parent: 2
- - uid: 781
+ - uid: 17368
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,17.5
+ pos: 52.5,17.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 788
+ - uid: 17369
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 32.5,17.5
+ pos: 51.5,17.5
parent: 2
- - uid: 789
+ - uid: 17370
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,17.5
+ pos: 50.5,17.5
parent: 2
- - uid: 852
+ - uid: 17373
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,27.5
+ pos: 53.5,16.5
parent: 2
- - uid: 883
+ - uid: 17402
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,8.5
+ pos: 35.5,-16.5
parent: 2
- - uid: 915
+ - uid: 17403
components:
- type: Transform
- pos: -24.5,-5.5
+ pos: 35.5,-17.5
parent: 2
- - uid: 962
+ - uid: 17404
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,11.5
+ pos: 35.5,-18.5
parent: 2
- - uid: 968
+ - uid: 17405
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,0.5
+ pos: 35.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25283
- - uid: 1012
+ - uid: 17406
components:
- type: Transform
- pos: 16.5,4.5
+ pos: 35.5,-20.5
parent: 2
- - uid: 1076
+ - uid: 17407
components:
- type: Transform
- pos: 32.5,-1.5
+ pos: 35.5,-21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 6298
- - uid: 1079
+ - uid: 17408
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 35.5,-22.5
parent: 2
- - uid: 1080
+ - uid: 17409
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-23.5
parent: 2
- - uid: 1082
+ - uid: 17410
components:
- type: Transform
- pos: 32.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-23.5
parent: 2
- - uid: 1097
+ - uid: 17411
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-23.5
parent: 2
- - uid: 1124
+ - uid: 17412
components:
- type: Transform
- pos: 37.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-23.5
parent: 2
- - uid: 1178
+ - uid: 17413
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-3.5
+ pos: 40.5,-23.5
parent: 2
- - uid: 1207
+ - uid: 17415
components:
- type: Transform
- pos: 73.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-26.5
parent: 2
- - uid: 1209
+ - uid: 17416
components:
- type: Transform
- pos: 97.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-25.5
parent: 2
- - uid: 1211
+ - uid: 17417
components:
- type: Transform
- pos: 78.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-24.5
parent: 2
- - uid: 1248
+ - uid: 17418
components:
- type: Transform
- pos: 69.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-23.5
parent: 2
- - uid: 1249
+ - uid: 17419
components:
- type: Transform
- pos: 67.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-22.5
parent: 2
- - uid: 1250
+ - uid: 17420
components:
- type: Transform
- pos: 63.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-21.5
parent: 2
- - uid: 1313
+ - uid: 17421
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 23.5,2.5
+ pos: 54.5,-20.5
parent: 2
- - uid: 1316
+ - uid: 17422
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 23.5,1.5
+ pos: 54.5,-19.5
parent: 2
- - uid: 1347
+ - uid: 17423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-18.5
parent: 2
- - uid: 1348
+ - uid: 17424
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-17.5
parent: 2
- - uid: 1373
+ - uid: 17425
components:
- type: Transform
- pos: 64.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-16.5
parent: 2
- - uid: 1375
+ - uid: 17426
components:
- type: Transform
- pos: 68.5,55.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-15.5
parent: 2
- - uid: 1395
+ - uid: 17427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-14.5
+ parent: 2
+ - uid: 17428
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,4.5
+ pos: 68.5,-13.5
parent: 2
- - uid: 1441
+ - uid: 17429
components:
- type: Transform
- pos: 8.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-12.5
parent: 2
- - uid: 1489
+ - uid: 17430
components:
- type: Transform
- pos: 10.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-11.5
parent: 2
- - uid: 1494
+ - uid: 17431
components:
- type: Transform
- pos: 17.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-10.5
parent: 2
- - uid: 1495
+ - uid: 17432
components:
- type: Transform
- pos: 18.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-9.5
parent: 2
- - uid: 1496
+ - uid: 17433
components:
- type: Transform
- pos: 19.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-8.5
parent: 2
- - uid: 1505
+ - uid: 17434
components:
- type: Transform
- pos: -69.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-7.5
parent: 2
- - uid: 1531
+ - uid: 17435
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,-1.5
+ pos: 54.5,-6.5
parent: 2
- - uid: 1661
+ - uid: 17436
components:
- type: Transform
- pos: 15.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-13.5
parent: 2
- - uid: 1685
+ - uid: 17437
components:
- type: Transform
- pos: -14.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-13.5
parent: 2
- - uid: 1845
+ - uid: 17438
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 1849
+ - uid: 17439
components:
- type: Transform
- pos: 3.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-13.5
parent: 2
- - uid: 1859
+ - uid: 17440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-13.5
parent: 2
- - uid: 1860
+ - uid: 17441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-13.5
parent: 2
- - uid: 1861
+ - uid: 17442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-13.5
parent: 2
- - uid: 1862
+ - uid: 17443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-13.5
parent: 2
- - uid: 1863
+ - uid: 17444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,-13.5
parent: 2
- - uid: 1864
+ - uid: 17445
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-13.5
parent: 2
- - uid: 1866
+ - uid: 17446
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 1867
+ - uid: 17447
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 1870
+ - uid: 17448
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 1871
+ - uid: 17451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,19.5
+ pos: 72.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 1874
+ - uid: 17452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-14.5
+ pos: 72.5,-1.5
parent: 2
- - uid: 1875
+ - uid: 17453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-15.5
+ pos: 72.5,-2.5
parent: 2
- - uid: 1878
+ - uid: 17454
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-14.5
+ pos: 72.5,-3.5
parent: 2
- - uid: 1879
+ - uid: 17456
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-15.5
+ pos: 61.5,-4.5
parent: 2
- - uid: 1967
+ - uid: 17457
components:
- type: Transform
- pos: -0.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-4.5
parent: 2
- - uid: 2006
+ - uid: 17458
components:
- type: Transform
- pos: 15.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-4.5
parent: 2
- - uid: 2007
+ - uid: 17459
components:
- type: Transform
- pos: 17.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-4.5
parent: 2
- - uid: 2008
+ - uid: 17460
components:
- type: Transform
- pos: 12.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-4.5
parent: 2
- - uid: 2009
+ - uid: 17461
components:
- type: Transform
- pos: 10.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-4.5
parent: 2
- - uid: 2010
+ - uid: 17462
components:
- type: Transform
- pos: 7.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-4.5
parent: 2
- - uid: 2012
+ - uid: 17463
components:
- type: Transform
- pos: 13.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-4.5
parent: 2
- - uid: 2013
+ - uid: 17464
components:
- type: Transform
- pos: 12.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-4.5
parent: 2
- - uid: 2014
+ - uid: 17465
components:
- type: Transform
- pos: 16.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-4.5
parent: 2
- - uid: 2015
+ - uid: 17466
components:
- type: Transform
- pos: 17.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-4.5
parent: 2
- - uid: 2016
+ - uid: 17467
components:
- type: Transform
- pos: 19.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-4.5
parent: 2
- - uid: 2017
+ - uid: 17468
components:
- type: Transform
- pos: 20.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-4.5
parent: 2
- - uid: 2018
+ - uid: 17469
components:
- type: Transform
- pos: 26.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-4.5
parent: 2
- - uid: 2019
+ - uid: 17470
components:
- type: Transform
- pos: 27.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-4.5
parent: 2
- - uid: 2020
+ - uid: 17471
components:
- type: Transform
- pos: -4.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-4.5
parent: 2
- - uid: 2021
+ - uid: 17472
components:
- type: Transform
- pos: -4.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-4.5
parent: 2
- - uid: 2022
+ - uid: 17473
components:
- type: Transform
- pos: -4.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-4.5
parent: 2
- - uid: 2023
+ - uid: 17474
components:
- type: Transform
- pos: -5.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-4.5
parent: 2
- - uid: 2024
+ - uid: 17475
components:
- type: Transform
- pos: -6.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-4.5
parent: 2
- - uid: 2025
+ - uid: 17476
components:
- type: Transform
- pos: -7.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,-5.5
parent: 2
- - uid: 2026
+ - uid: 17477
components:
- type: Transform
- pos: -7.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-5.5
parent: 2
- - uid: 2027
+ - uid: 17483
components:
- type: Transform
- pos: -6.5,0.5
+ pos: 11.5,21.5
parent: 2
- - uid: 2028
+ - uid: 17484
components:
- type: Transform
- pos: -5.5,0.5
+ pos: 11.5,22.5
parent: 2
- - uid: 2029
+ - uid: 17485
components:
- type: Transform
- pos: -4.5,-0.5
+ pos: 11.5,23.5
parent: 2
- - uid: 2030
+ - uid: 17486
components:
- type: Transform
- pos: -4.5,-1.5
+ pos: 11.5,24.5
parent: 2
- - uid: 2031
+ - uid: 17487
components:
- type: Transform
- pos: -4.5,-2.5
+ pos: 11.5,25.5
parent: 2
- - uid: 2069
+ - uid: 17488
components:
- type: Transform
- pos: -6.5,-3.5
+ pos: 11.5,26.5
parent: 2
- - uid: 2147
+ - uid: 17495
components:
- type: Transform
- pos: -4.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-9.5
parent: 2
- - uid: 2184
+ - uid: 17497
components:
- type: Transform
- pos: -0.5,44.5
+ pos: -4.5,-10.5
parent: 2
- - uid: 2203
+ - uid: 17498
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,31.5
+ pos: -4.5,-11.5
parent: 2
- - uid: 2205
+ - uid: 17499
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,25.5
+ pos: -4.5,-12.5
parent: 2
- - uid: 2208
+ - uid: 17500
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,48.5
+ pos: -4.5,-13.5
parent: 2
- - uid: 2237
+ - uid: 17501
components:
- type: Transform
- pos: 43.5,22.5
+ pos: -4.5,-14.5
parent: 2
- - uid: 2245
+ - uid: 17504
components:
- type: Transform
- pos: -0.5,-28.5
+ pos: 1.5,-16.5
parent: 2
- - uid: 2251
+ - uid: 17505
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,31.5
+ pos: 1.5,-17.5
parent: 2
- - uid: 2252
+ - uid: 17506
components:
- type: Transform
- pos: 53.5,9.5
+ pos: 1.5,-18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25300
- - uid: 2259
+ - uid: 17507
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,45.5
+ pos: 1.5,-19.5
parent: 2
- - uid: 2353
+ - uid: 17508
components:
- type: Transform
- pos: -46.5,-6.5
+ pos: 1.5,-20.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - 25244
- - uid: 2461
+ - uid: 17509
components:
- type: Transform
- pos: 0.5,-30.5
+ pos: 1.5,-21.5
parent: 2
- - uid: 2462
+ - uid: 17510
components:
- type: Transform
- pos: 2.5,-30.5
+ pos: 1.5,-22.5
parent: 2
- - uid: 2463
+ - uid: 17511
components:
- type: Transform
- pos: 1.5,-30.5
+ pos: 1.5,-23.5
parent: 2
- - uid: 2464
+ - uid: 17512
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,43.5
+ pos: 1.5,-24.5
parent: 2
- - uid: 2510
+ - uid: 17513
components:
- type: Transform
- pos: 37.5,50.5
+ pos: 1.5,-25.5
parent: 2
- - uid: 2603
+ - uid: 17514
components:
- type: Transform
- pos: -94.5,8.5
+ pos: 1.5,-26.5
parent: 2
- - uid: 2606
+ - uid: 17515
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,47.5
+ pos: 1.5,-27.5
parent: 2
- - uid: 2609
+ - uid: 17516
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,46.5
+ pos: 1.5,-28.5
parent: 2
- - uid: 2610
+ - uid: 17517
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,46.5
+ pos: 1.5,-29.5
parent: 2
- - uid: 2611
+ - uid: 17518
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,46.5
+ pos: 1.5,-30.5
parent: 2
- - uid: 2634
+ - uid: 17519
components:
- type: Transform
- pos: 15.5,39.5
+ pos: 1.5,-31.5
parent: 2
- - uid: 2636
+ - uid: 17520
components:
- type: Transform
- pos: 15.5,38.5
+ pos: 1.5,-32.5
parent: 2
- - uid: 2648
+ - uid: 17521
components:
- type: Transform
- pos: 9.5,-13.5
+ pos: 1.5,-33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28702
- - uid: 2681
+ - uid: 17524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,49.5
+ pos: 1.5,-34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4870
- - uid: 2822
+ - uid: 17525
components:
- type: Transform
- pos: -3.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-35.5
parent: 2
- - uid: 2869
+ - uid: 17526
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-35.5
parent: 2
- - uid: 2904
+ - uid: 17527
components:
- type: Transform
- pos: -17.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-35.5
parent: 2
- - uid: 2923
+ - uid: 17528
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-21.5
+ pos: 5.5,-35.5
parent: 2
- - uid: 3052
+ - uid: 17529
components:
- type: Transform
- pos: 38.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-35.5
parent: 2
- - uid: 3080
+ - uid: 17539
components:
- type: Transform
- pos: -25.5,-17.5
+ pos: 29.5,-12.5
parent: 2
- - uid: 3086
+ - uid: 17540
components:
- type: Transform
- pos: -54.5,-9.5
+ pos: 29.5,-13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4313
- - uid: 3092
+ - uid: 17541
components:
- type: Transform
- pos: -53.5,-9.5
+ pos: 29.5,-14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4313
- - uid: 3172
+ - uid: 17542
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-0.5
parent: 2
- - uid: 3217
+ - uid: 17543
components:
- type: Transform
- pos: 18.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-0.5
parent: 2
- - uid: 3349
+ - uid: 17544
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-0.5
parent: 2
- - uid: 3358
+ - uid: 17545
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-0.5
parent: 2
- - uid: 3359
+ - uid: 17546
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 41.5,43.5
+ pos: 31.5,0.5
parent: 2
- - uid: 3365
+ - uid: 17547
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-20.5
+ pos: 31.5,1.5
parent: 2
- - uid: 3382
+ - uid: 17548
components:
- type: Transform
- pos: -16.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 3424
+ - uid: 17549
components:
- type: Transform
- pos: 29.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
parent: 2
- - uid: 3438
+ - uid: 17550
components:
- type: Transform
- pos: 33.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,4.5
parent: 2
- - uid: 3531
+ - uid: 17551
components:
- type: Transform
- pos: 25.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,5.5
parent: 2
- - uid: 3568
+ - uid: 17552
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 3680
+ - uid: 17553
components:
- type: Transform
- pos: -56.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,6.5
parent: 2
- - uid: 3709
+ - uid: 17554
components:
- type: Transform
- pos: -76.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,6.5
parent: 2
- - uid: 3724
+ - uid: 17555
components:
- type: Transform
- pos: -85.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 3734
+ - uid: 17556
components:
- type: Transform
- pos: -23.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,6.5
parent: 2
- - uid: 3758
+ - uid: 17557
components:
- type: Transform
- pos: -39.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,6.5
parent: 2
- - uid: 3800
+ - uid: 17558
components:
- type: Transform
- pos: -87.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 3801
+ - uid: 17559
components:
- type: Transform
- pos: -87.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 3815
+ - uid: 17562
components:
- type: Transform
- pos: -14.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- - uid: 3834
+ - uid: 17563
components:
- type: Transform
- pos: -66.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,6.5
parent: 2
- - uid: 3853
+ - uid: 17565
components:
- type: Transform
- pos: 41.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,6.5
parent: 2
- - uid: 3872
+ - uid: 17566
components:
- type: Transform
- pos: -87.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 3877
+ - uid: 17567
components:
- type: Transform
- pos: 52.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,6.5
parent: 2
- - uid: 3879
+ - uid: 17568
components:
- type: Transform
- pos: 52.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,6.5
parent: 2
- - uid: 3881
+ - uid: 17569
components:
- type: Transform
- pos: 52.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,6.5
parent: 2
- - uid: 3889
+ - uid: 17570
components:
- type: Transform
- pos: 52.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,5.5
parent: 2
- - uid: 3892
+ - uid: 17571
components:
- type: Transform
- pos: 35.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,4.5
parent: 2
- - uid: 3898
+ - uid: 17572
components:
- type: Transform
- pos: 52.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,3.5
parent: 2
- - uid: 3899
+ - uid: 17573
components:
- type: Transform
- pos: 52.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,3.5
parent: 2
- - uid: 3906
+ - uid: 17574
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,3.5
parent: 2
- - uid: 3976
+ - uid: 17575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 4059
+ - uid: 17576
components:
- type: Transform
- pos: 41.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30925
- - uid: 4069
+ - uid: 17577
components:
- type: Transform
- pos: 48.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30925
- - uid: 4107
+ - uid: 17578
components:
- type: Transform
- pos: 41.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,3.5
parent: 2
- - uid: 4212
+ - uid: 17580
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,3.5
parent: 2
- - uid: 4218
+ - uid: 17582
components:
- type: Transform
- pos: -78.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22045
- - uid: 4242
+ - uid: 17583
components:
- type: Transform
- pos: -77.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22045
- - uid: 4375
+ - uid: 17584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,3.5
parent: 2
- - uid: 4376
+ - uid: 17587
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,3.5
parent: 2
- - uid: 4377
+ - uid: 17588
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,3.5
parent: 2
- - uid: 4642
+ - uid: 17589
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,3.5
parent: 2
- - uid: 5062
+ - uid: 17590
components:
- type: Transform
- pos: -51.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 5194
+ - uid: 17591
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-10.5
+ pos: -11.5,4.5
parent: 2
- - uid: 5244
+ - uid: 17592
components:
- type: Transform
- pos: -2.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,5.5
parent: 2
- - uid: 5250
+ - uid: 17593
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-22.5
+ pos: -11.5,6.5
parent: 2
- - uid: 5704
+ - uid: 17594
components:
- type: Transform
- pos: 53.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,7.5
parent: 2
- - uid: 5723
+ - uid: 17595
components:
- type: Transform
- pos: -53.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,8.5
parent: 2
- - uid: 6318
+ - uid: 17596
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,9.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - uid: 6493
+ - uid: 17597
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,10.5
parent: 2
- - uid: 6498
+ - uid: 17598
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,11.5
parent: 2
- - uid: 6553
+ - uid: 17599
components:
- type: Transform
- pos: -23.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,12.5
parent: 2
- - uid: 6554
+ - uid: 17600
components:
- type: Transform
- pos: -29.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,13.5
parent: 2
- - uid: 6628
+ - uid: 17601
components:
- type: Transform
- pos: -20.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 400
- - uid: 6630
+ - uid: 17602
components:
- type: Transform
- pos: -18.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,13.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- - 400
- - uid: 6682
+ - uid: 17603
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 38.5,7.5
+ pos: -7.5,13.5
parent: 2
- - uid: 6945
+ - uid: 17604
components:
- type: Transform
- pos: -51.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,13.5
parent: 2
- - uid: 6955
+ - uid: 17605
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-22.5
+ pos: -5.5,13.5
parent: 2
- - uid: 6974
+ - uid: 17606
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-38.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,13.5
parent: 2
- - uid: 7107
+ - uid: 17607
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 7110
+ - uid: 17608
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -47.5,-6.5
+ pos: -3.5,11.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - 25244
- - uid: 7180
+ - uid: 17609
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,-6.5
+ pos: -3.5,10.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - 25244
- - uid: 7189
+ - uid: 17616
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,8.5
parent: 2
- - uid: 7190
+ - uid: 17617
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-13.5
+ pos: 10.5,7.5
parent: 2
- - uid: 7192
+ - uid: 17626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 17630
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -59.5,-13.5
+ pos: 25.5,8.5
parent: 2
- - uid: 7225
+ - uid: 17631
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -57.5,-15.5
+ pos: 25.5,7.5
parent: 2
- - uid: 7235
+ - uid: 17639
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -57.5,-20.5
+ pos: 17.5,7.5
parent: 2
- - uid: 7416
+ - uid: 17640
components:
- type: Transform
- pos: -48.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,8.5
parent: 2
- - uid: 7529
+ - uid: 17641
components:
- type: Transform
- pos: -51.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 7530
+ - uid: 17642
components:
- type: Transform
- pos: -51.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,4.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 7638
+ - uid: 17643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,3.5
parent: 2
- - uid: 7640
+ - uid: 17644
components:
- type: Transform
- pos: -55.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,2.5
parent: 2
- - uid: 7671
+ - uid: 17645
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,2.5
parent: 2
- - uid: 7673
+ - uid: 17646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,2.5
parent: 2
- - uid: 7674
+ - uid: 17660
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-16.5
parent: 2
- - uid: 7675
+ - uid: 17661
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-17.5
parent: 2
- - uid: 7682
+ - uid: 17662
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-18.5
parent: 2
- - uid: 7745
+ - uid: 17663
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-19.5
parent: 2
- - uid: 7746
+ - uid: 17664
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-20.5
parent: 2
- - uid: 7747
+ - uid: 17665
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-20.5
parent: 2
- - uid: 7748
+ - uid: 17666
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-20.5
parent: 2
- - uid: 7749
+ - uid: 17667
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-20.5
parent: 2
- - uid: 7750
+ - uid: 17668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-20.5
parent: 2
- - uid: 7751
+ - uid: 17669
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-20.5
parent: 2
- - uid: 7752
+ - uid: 17670
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,64.5
+ pos: -18.5,-20.5
parent: 2
- - uid: 7753
+ - uid: 17671
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-20.5
parent: 2
- - uid: 7889
+ - uid: 17672
components:
- type: Transform
- pos: -51.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-20.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - uid: 7913
+ - uid: 17673
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-20.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7914
+ - uid: 17674
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,11.5
+ pos: -22.5,-21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7915
+ - uid: 17675
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,9.5
+ pos: -22.5,-22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7916
+ - uid: 17676
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,8.5
+ pos: -22.5,-23.5
parent: 2
- - uid: 7917
+ - uid: 17677
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -81.5,7.5
+ pos: -21.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7918
+ - uid: 17678
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -83.5,5.5
+ pos: -19.5,-25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7919
+ - uid: 17679
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -84.5,5.5
+ pos: -18.5,-25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 7920
+ - uid: 17680
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -85.5,5.5
+ pos: -17.5,-25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - uid: 8183
+ - uid: 17681
components:
- type: Transform
- pos: -74.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-25.5
parent: 2
- - uid: 8230
+ - uid: 17682
components:
- type: Transform
- pos: 79.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-25.5
parent: 2
- - uid: 8231
+ - uid: 17683
components:
- type: Transform
- pos: 63.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-25.5
parent: 2
- - uid: 8234
+ - uid: 17685
components:
- type: Transform
- pos: 58.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-26.5
parent: 2
- - uid: 8235
+ - uid: 17686
components:
- type: Transform
- pos: 66.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-27.5
parent: 2
- - uid: 8236
+ - uid: 17687
components:
- type: Transform
- pos: 57.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-28.5
parent: 2
- - uid: 8237
+ - uid: 17725
components:
- type: Transform
- pos: 71.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-23.5
parent: 2
- - uid: 8362
+ - uid: 17727
components:
- type: Transform
- pos: -48.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-23.5
parent: 2
- - uid: 8459
+ - uid: 17728
components:
- type: Transform
- pos: 30.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-23.5
parent: 2
- - uid: 8646
+ - uid: 17729
components:
- type: Transform
- pos: -48.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-23.5
parent: 2
- - uid: 8659
+ - uid: 17730
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 39.5,7.5
+ pos: -46.5,-23.5
parent: 2
- - uid: 8701
+ - uid: 17731
components:
- type: Transform
- pos: -48.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-23.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - uid: 8702
+ - uid: 17743
components:
- type: Transform
- pos: -48.5,8.5
+ pos: -50.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - uid: 8703
+ - uid: 17753
components:
- type: Transform
- pos: -48.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - uid: 8704
+ - uid: 17754
components:
- type: Transform
- pos: -46.5,11.5
+ pos: -44.5,-15.5
parent: 2
- - uid: 8763
+ - uid: 17755
components:
- type: Transform
- pos: -56.5,12.5
+ pos: -44.5,-16.5
parent: 2
- - uid: 8783
+ - uid: 17756
components:
- type: Transform
- pos: -52.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-14.5
parent: 2
- - uid: 8840
+ - uid: 17757
components:
- type: Transform
- pos: -48.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-14.5
parent: 2
- - uid: 8857
+ - uid: 17759
components:
- type: Transform
- pos: -52.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-19.5
parent: 2
- - uid: 8873
+ - uid: 17760
components:
- type: Transform
- pos: -56.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-20.5
parent: 2
- - uid: 8874
+ - uid: 17762
components:
- type: Transform
- pos: -56.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-22.5
parent: 2
- - uid: 9081
+ - uid: 17771
components:
- type: Transform
- pos: -54.5,32.5
+ pos: -33.5,-16.5
parent: 2
- - uid: 9082
+ - uid: 17772
components:
- type: Transform
- pos: -43.5,32.5
+ pos: -33.5,-17.5
parent: 2
- - uid: 9083
+ - uid: 17773
components:
- type: Transform
- pos: -43.5,36.5
+ pos: -33.5,-18.5
parent: 2
- - uid: 9084
+ - uid: 17774
components:
- type: Transform
- pos: -54.5,38.5
+ pos: -33.5,-19.5
parent: 2
- - uid: 9197
+ - uid: 17775
components:
- type: Transform
- pos: -80.5,2.5
+ pos: -33.5,-20.5
parent: 2
- - uid: 9216
+ - uid: 17776
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,23.5
+ pos: -33.5,-21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 9224
+ - uid: 17777
components:
- type: Transform
- pos: 47.5,50.5
+ pos: -33.5,-22.5
parent: 2
- - uid: 9230
+ - uid: 17778
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,49.5
+ pos: -33.5,-23.5
parent: 2
- - uid: 9255
+ - uid: 17779
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,23.5
+ pos: -33.5,-24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 9340
+ - uid: 17780
components:
- type: Transform
- pos: 66.5,25.5
+ pos: -33.5,-25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23957
- - uid: 9548
+ - uid: 17781
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,23.5
+ pos: -33.5,-26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 9552
+ - uid: 17782
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,23.5
+ pos: -32.5,-27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 11389
+ - uid: 17783
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25331
- - 69
- - uid: 11856
+ - uid: 18243
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,-36.5
+ pos: -30.5,64.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- - 400
- - uid: 13001
+ - uid: 18245
components:
- type: Transform
- pos: 38.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,57.5
parent: 2
- - uid: 13368
+ - uid: 18247
components:
- type: Transform
- pos: 92.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,55.5
parent: 2
- - uid: 13386
+ - uid: 18248
components:
- type: Transform
- pos: 67.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,55.5
parent: 2
- - uid: 13387
+ - uid: 18249
components:
- type: Transform
- pos: 81.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,55.5
parent: 2
- - uid: 13442
+ - uid: 18250
components:
- type: Transform
- pos: 91.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,55.5
parent: 2
- - uid: 13454
+ - uid: 18251
components:
- type: Transform
- pos: 78.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,55.5
parent: 2
- - uid: 13588
+ - uid: 18253
components:
- type: Transform
- pos: 71.5,54.5
+ pos: -26.5,56.5
parent: 2
- - uid: 13614
+ - uid: 18318
components:
- type: Transform
- pos: 73.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,62.5
parent: 2
- - uid: 13662
+ - uid: 18319
components:
- type: Transform
- pos: 94.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,62.5
parent: 2
- - uid: 13673
+ - uid: 18320
components:
- type: Transform
- pos: 91.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,62.5
parent: 2
- - uid: 13689
+ - uid: 18321
components:
- type: Transform
- pos: 93.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,62.5
parent: 2
- - uid: 13704
+ - uid: 18325
components:
- type: Transform
- pos: 83.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,62.5
parent: 2
- - uid: 13865
+ - uid: 18377
components:
- type: Transform
- pos: 32.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,62.5
parent: 2
- - uid: 13914
+ - uid: 18378
components:
- type: Transform
- pos: 3.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,62.5
parent: 2
- - uid: 13915
+ - uid: 18390
components:
- type: Transform
- pos: 3.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,62.5
parent: 2
- - uid: 13917
+ - uid: 18393
components:
- type: Transform
- pos: 8.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,62.5
parent: 2
- - uid: 13918
+ - uid: 18394
components:
- type: Transform
- pos: 8.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,62.5
parent: 2
- - uid: 14015
+ - uid: 18396
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,53.5
parent: 2
- - uid: 14020
+ - uid: 18397
components:
- type: Transform
- pos: 8.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,62.5
parent: 2
- - uid: 14105
+ - uid: 18548
components:
- type: Transform
- pos: 27.5,40.5
+ pos: -20.5,54.5
parent: 2
- - uid: 14122
+ - uid: 18646
components:
- type: Transform
- pos: 20.5,45.5
- parent: 2
- - uid: 14170
- components:
- - type: Transform
- pos: 17.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,13.5
parent: 2
- - uid: 14173
+ - uid: 18647
components:
- type: Transform
- pos: 19.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,9.5
parent: 2
- - uid: 14198
+ - uid: 18648
components:
- type: Transform
- pos: 31.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,7.5
parent: 2
- - uid: 15163
+ - uid: 18718
components:
- type: Transform
- pos: 54.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25300
- - uid: 15258
+ - uid: 18723
components:
- type: Transform
- pos: -3.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,10.5
parent: 2
- - uid: 15295
+ - uid: 18758
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,15.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 15296
+ - uid: 18827
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,16.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 15297
+ - uid: 19133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,16.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 15415
+ - uid: 19135
components:
- type: Transform
- pos: -23.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 15503
+ - uid: 19137
components:
- type: Transform
- pos: -35.5,32.5
+ pos: -42.5,4.5
parent: 2
- - uid: 15520
+ - uid: 19138
components:
- type: Transform
- pos: -31.5,29.5
+ pos: -42.5,5.5
parent: 2
- - uid: 15538
+ - uid: 19141
components:
- type: Transform
- pos: -21.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,6.5
parent: 2
- - uid: 15539
+ - uid: 19153
components:
- type: Transform
- pos: -17.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,6.5
parent: 2
- - uid: 15596
+ - uid: 19154
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,29.5
+ pos: -36.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 15597
+ - uid: 19155
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,31.5
+ pos: -38.5,6.5
parent: 2
- - uid: 15610
+ - uid: 19337
components:
- type: Transform
- pos: -21.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,0.5
parent: 2
- - uid: 15643
+ - uid: 19669
components:
- type: Transform
- pos: -15.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,64.5
parent: 2
- - uid: 15721
+ - uid: 19672
components:
- type: Transform
- pos: -9.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,64.5
parent: 2
- - uid: 15826
+ - uid: 19777
components:
- type: Transform
- pos: -23.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,64.5
parent: 2
- - uid: 15917
+ - uid: 19861
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,46.5
+ pos: -11.5,31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 16004
+ - uid: 19862
components:
- type: Transform
- pos: -3.5,45.5
+ pos: 1.5,64.5
parent: 2
- - uid: 16288
+ - uid: 19863
components:
- type: Transform
- pos: -11.5,44.5
+ pos: 1.5,65.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 16289
+ - uid: 19864
components:
- type: Transform
- pos: -11.5,40.5
+ pos: 1.5,66.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 16309
+ - uid: 19865
components:
- type: Transform
- pos: -5.5,64.5
+ pos: 1.5,67.5
parent: 2
- - uid: 16311
+ - uid: 19866
components:
- type: Transform
- pos: -5.5,63.5
+ pos: 1.5,68.5
parent: 2
- - uid: 16312
+ - uid: 19867
components:
- type: Transform
- pos: -9.5,64.5
+ pos: 1.5,69.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - uid: 16315
+ - uid: 19868
components:
- type: Transform
- pos: -9.5,63.5
+ pos: 1.5,70.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - uid: 16331
+ - uid: 19869
components:
- type: Transform
- pos: -11.5,41.5
+ pos: 1.5,71.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 16370
+ - uid: 19870
components:
- type: Transform
- pos: -6.5,71.5
+ pos: 1.5,72.5
parent: 2
- - uid: 16390
+ - uid: 19871
components:
- type: Transform
- pos: -6.5,70.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,73.5
parent: 2
- - uid: 16411
+ - uid: 19872
components:
- type: Transform
- pos: -17.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,73.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - uid: 16611
+ - uid: 20572
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,3.5
parent: 2
- - uid: 16648
+ - uid: 20603
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,11.5
+ pos: -50.5,-31.5
parent: 2
- - uid: 17030
+ - uid: 21080
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,37.5
+ pos: 103.5,14.5
parent: 2
- - uid: 17859
+ - uid: 21176
components:
- type: Transform
- pos: -54.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-21.5
parent: 2
- - uid: 18112
+ - uid: 21920
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-21.5
parent: 2
- - uid: 18373
+ - uid: 22355
components:
- type: Transform
- pos: 0.5,72.5
+ pos: -26.5,59.5
parent: 2
- - uid: 18374
+ - uid: 22363
components:
- type: Transform
- pos: 1.5,72.5
+ pos: -26.5,57.5
parent: 2
- - uid: 18375
+ - uid: 22364
components:
- type: Transform
- pos: 2.5,72.5
+ pos: -26.5,60.5
parent: 2
- - uid: 18463
+ - uid: 22474
components:
- type: Transform
- pos: -60.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,62.5
parent: 2
- - uid: 18464
+ - uid: 22570
components:
- type: Transform
- pos: -59.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,64.5
parent: 2
- - uid: 19630
+ - uid: 22744
components:
- type: Transform
- pos: 3.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,2.5
parent: 2
- - uid: 19656
+ - uid: 22766
components:
- type: Transform
- pos: 6.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,64.5
parent: 2
- - uid: 19778
+ - uid: 22767
components:
- type: Transform
- pos: 12.5,65.5
+ pos: -26.5,63.5
parent: 2
- - uid: 20930
+ - uid: 22826
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,4.5
+ pos: -50.5,-28.5
parent: 2
- - uid: 21910
+ - uid: 22827
components:
- type: Transform
- pos: -14.5,4.5
+ pos: -50.5,-30.5
parent: 2
- - uid: 22460
+ - uid: 22844
components:
- type: Transform
- pos: -90.5,-4.5
+ pos: -26.5,62.5
parent: 2
- - uid: 23234
+ - uid: 23037
components:
- type: Transform
- pos: 0.5,57.5
+ pos: -26.5,61.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - uid: 23235
+ - uid: 23041
components:
- type: Transform
- pos: 1.5,57.5
+ pos: -26.5,58.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - uid: 23236
+ - uid: 23044
components:
- type: Transform
- pos: 2.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,64.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - uid: 23460
+ - uid: 23174
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-24.5
+ pos: -33.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25331
- - 69
- - uid: 24108
+ - uid: 23288
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,34.5
+ pos: -35.5,20.5
parent: 2
- - uid: 25207
+ - uid: 23750
components:
- type: Transform
- pos: 40.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 25208
+ - uid: 23751
components:
- type: Transform
- pos: 40.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 25209
+ - uid: 26628
components:
- type: Transform
- pos: 40.5,20.5
+ pos: -20.5,-37.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - uid: 25211
+ - uid: 26700
components:
- type: Transform
- pos: 48.5,8.5
+ pos: -20.5,-36.5
parent: 2
- - uid: 25212
+ - uid: 27833
components:
- type: Transform
- pos: 49.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,63.5
parent: 2
- - uid: 25213
+ - uid: 28195
components:
- type: Transform
- pos: 50.5,8.5
+ pos: -20.5,-38.5
parent: 2
- - uid: 25214
+ - uid: 29275
components:
- type: Transform
- pos: -35.5,19.5
+ pos: -42.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - uid: 25215
+ - uid: 29979
components:
- type: Transform
- pos: -35.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - 17901
- - uid: 25216
+ - uid: 29982
components:
- type: Transform
- pos: -35.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - 17901
- - uid: 25217
+ - uid: 30051
components:
- type: Transform
- pos: 49.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-18.5
parent: 2
- - uid: 25218
+ - uid: 30087
components:
- type: Transform
- pos: 50.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-18.5
parent: 2
- - uid: 25219
+ - uid: 30130
components:
- type: Transform
- pos: 51.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,9.5
parent: 2
- - uid: 25295
+ - uid: 30156
components:
- type: Transform
- pos: 52.5,-29.5
+ pos: 72.5,37.5
parent: 2
- - uid: 25296
+ - uid: 30157
components:
- type: Transform
- pos: 52.5,-30.5
+ pos: 72.5,36.5
parent: 2
- - uid: 25297
+ - uid: 30161
components:
- type: Transform
- pos: 52.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,41.5
parent: 2
- - uid: 25322
+ - uid: 30176
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -62.5,-23.5
+ pos: -47.5,-18.5
parent: 2
- - uid: 25323
+ - uid: 30917
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-23.5
+ pos: -34.5,64.5
parent: 2
- - uid: 25324
+ - uid: 30918
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-29.5
+ pos: 42.5,28.5
parent: 2
- - uid: 25325
+ - uid: 31085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,63.5
parent: 2
- - uid: 25326
+ - uid: 31105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,64.5
parent: 2
- - type: Door
- secondsUntilStateChange: -152841.45
- - uid: 26372
+ - uid: 32061
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,-29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25231
- - 25232
- - uid: 26376
+ - uid: 34044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,3.5
+ pos: -1.5,0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22045
- - uid: 26679
+ - uid: 34045
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-3.5
+ pos: -1.5,-0.5
parent: 2
- - uid: 26711
+ - uid: 34046
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-24.5
+ pos: -1.5,-1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - 69
- - uid: 26753
+ - uid: 34060
components:
- type: Transform
- pos: -90.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,11.5
parent: 2
- - uid: 27441
+ - uid: 35529
components:
- type: Transform
- pos: -68.5,12.5
+ pos: 103.5,13.5
parent: 2
- - uid: 27444
+ - uid: 35531
components:
- type: Transform
- pos: -46.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 102.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - uid: 27445
+ - uid: 35557
components:
- type: Transform
- pos: 18.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,11.5
parent: 2
- - uid: 27446
+ - uid: 35738
components:
- type: Transform
- pos: 19.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,49.5
parent: 2
- - uid: 27447
+ - uid: 35773
components:
- type: Transform
- pos: 20.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,68.5
parent: 2
- - uid: 27448
+ - uid: 35774
components:
- type: Transform
- pos: 21.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 84.5,68.5
parent: 2
- - uid: 27449
+ - uid: 35775
components:
- type: Transform
- pos: 28.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 83.5,68.5
parent: 2
- - uid: 27450
+ - uid: 35776
components:
- type: Transform
- pos: 29.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 82.5,68.5
parent: 2
- - uid: 27451
+ - uid: 35777
components:
- type: Transform
- pos: 30.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,68.5
parent: 2
- - uid: 27452
+ - uid: 35778
components:
- type: Transform
- pos: 31.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,68.5
parent: 2
- - uid: 27453
+ - uid: 35779
components:
- type: Transform
- pos: 12.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 79.5,68.5
parent: 2
- - uid: 27454
+ - uid: 35780
components:
- type: Transform
- pos: 13.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,68.5
parent: 2
- - uid: 27455
+ - uid: 35786
components:
- type: Transform
- pos: -21.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,65.5
parent: 2
- - uid: 27456
+ - uid: 35787
components:
- type: Transform
- pos: -20.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,65.5
parent: 2
- - uid: 27457
+ - uid: 35788
components:
- type: Transform
- pos: -19.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,65.5
parent: 2
- - uid: 27458
+ - uid: 35865
components:
- type: Transform
- pos: 27.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,15.5
parent: 2
- - uid: 27459
+ - uid: 35866
components:
- type: Transform
- pos: 28.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,13.5
parent: 2
- - uid: 27460
+ - uid: 35867
components:
- type: Transform
- pos: 29.5,25.5
+ pos: 32.5,14.5
parent: 2
- - uid: 27461
+ - uid: 35882
components:
- type: Transform
- pos: 41.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30925
- - uid: 27484
+ - uid: 35883
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,32.5
parent: 2
- - uid: 28750
+ - uid: 35884
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,3.5
+ pos: -1.5,32.5
parent: 2
- - uid: 28751
+ - uid: 35885
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,2.5
+ pos: -0.5,32.5
parent: 2
- - uid: 28782
+ - uid: 35886
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-22.5
+ pos: 0.5,32.5
parent: 2
- - uid: 28783
+ - uid: 35900
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,-22.5
+ pos: -2.5,61.5
parent: 2
- - uid: 28784
+ - uid: 35901
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-22.5
+ pos: -1.5,61.5
parent: 2
- - uid: 28785
+ - uid: 35902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-22.5
+ pos: -0.5,61.5
parent: 2
- - uid: 28792
+ - uid: 35903
components:
- type: Transform
- pos: -33.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,61.5
parent: 2
- - uid: 29022
+ - uid: 35916
components:
- type: Transform
- pos: -34.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22291
- - uid: 29024
+ - uid: 35918
components:
- type: Transform
- pos: -28.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - uid: 29025
+ - uid: 35919
components:
- type: Transform
- pos: -28.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - uid: 29026
+ - uid: 35920
components:
- type: Transform
- pos: -24.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - uid: 29030
+ - uid: 35921
components:
- type: Transform
- pos: -28.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - 22291
- - uid: 29085
+ - uid: 35922
components:
- type: Transform
- pos: 70.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25298
- - 29087
- - uid: 29086
+ - uid: 35923
components:
- type: Transform
- pos: 70.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25298
- - 29087
- - uid: 31106
+ - uid: 35924
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,70.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,34.5
parent: 2
- - uid: 34663
+ - uid: 35952
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-6.5
+ pos: -58.5,9.5
parent: 2
-- proto: Fireplace
- entities:
- - uid: 615
+ - uid: 35953
components:
- type: Transform
- pos: -9.5,-7.5
+ pos: -58.5,10.5
parent: 2
- - uid: 1964
+ - uid: 35993
components:
- type: Transform
- pos: 12.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-25.5
parent: 2
- - uid: 2072
+ - uid: 35994
components:
- type: Transform
- pos: -14.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-25.5
parent: 2
- - uid: 2727
+ - uid: 35995
components:
- type: Transform
- pos: 51.5,30.5
+ pos: -30.5,-26.5
parent: 2
- - uid: 15114
+ - uid: 36002
components:
- type: Transform
- pos: 25.5,52.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-0.5
parent: 2
- - uid: 15740
+ - uid: 36003
components:
- type: Transform
- pos: -9.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,0.5
parent: 2
- - uid: 17794
+ - uid: 36004
components:
- type: Transform
- pos: -4.5,61.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,1.5
parent: 2
-- proto: Flare
- entities:
- - uid: 30053
+ - uid: 36005
components:
- type: Transform
- pos: 83.49072,41.44527
+ rot: 3.141592653589793 rad
+ pos: -58.5,2.5
parent: 2
-- proto: Flash
- entities:
- - uid: 19393
+ - uid: 36006
components:
- type: Transform
- pos: -10.46663,42.821335
+ rot: 1.5707963267948966 rad
+ pos: -57.5,3.5
parent: 2
- - uid: 19394
+ - uid: 36007
components:
- type: Transform
- pos: -10.326005,42.61821
+ rot: 1.5707963267948966 rad
+ pos: -56.5,3.5
parent: 2
-- proto: FlashlightLantern
- entities:
- - uid: 5655
+ - uid: 36008
components:
- type: Transform
- pos: 50.584522,40.648224
+ rot: 1.5707963267948966 rad
+ pos: -55.5,3.5
parent: 2
- - uid: 5658
+ - uid: 36009
components:
- type: Transform
- pos: 26.46736,30.484562
+ rot: 1.5707963267948966 rad
+ pos: -53.5,3.5
parent: 2
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 2568
- - type: ActionsContainer
- - uid: 7937
+ - uid: 36010
components:
- type: Transform
- pos: -42.70451,20.179436
+ rot: 1.5707963267948966 rad
+ pos: -52.5,3.5
parent: 2
- - type: HandheldLight
- toggleActionEntity: 16291
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 16291
- - type: ActionsContainer
- - uid: 8031
+ - uid: 36011
components:
- type: Transform
- pos: -42.35034,20.408602
+ rot: 1.5707963267948966 rad
+ pos: -51.5,3.5
parent: 2
- - type: HandheldLight
- toggleActionEntity: 16335
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 16335
- - type: ActionsContainer
- - uid: 9601
+ - uid: 36012
components:
- type: Transform
- pos: -54.99137,35.80237
+ rot: 1.5707963267948966 rad
+ pos: -50.5,3.5
parent: 2
- - uid: 9602
+ - uid: 36013
components:
- type: Transform
- pos: -54.839027,35.68518
+ rot: 1.5707963267948966 rad
+ pos: -49.5,3.5
parent: 2
- - uid: 14261
+ - uid: 36014
components:
- type: Transform
- pos: 27.644642,55.55499
+ rot: 1.5707963267948966 rad
+ pos: -48.5,3.5
parent: 2
- - uid: 30610
+ - uid: 36015
components:
- type: Transform
- pos: -45.437443,-3.1956656
+ rot: 1.5707963267948966 rad
+ pos: -47.5,3.5
parent: 2
- - uid: 30614
+ - uid: 36018
components:
- type: Transform
- pos: -45.570255,-2.984728
+ pos: -69.5,14.5
parent: 2
-- proto: FlashlightSeclite
- entities:
- - uid: 14212
+ - uid: 36019
components:
- type: Transform
- pos: 21.424639,59.735928
+ pos: -69.5,13.5
parent: 2
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 4259
- - type: ActionsContainer
- - uid: 15583
+ - uid: 36020
components:
- type: Transform
- pos: -13.556711,33.367783
+ pos: -69.5,12.5
parent: 2
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- actions: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 15584
- - type: ActionsContainer
- - uid: 15585
+ - uid: 36021
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.604605,28.665703
+ pos: -69.5,11.5
parent: 2
- - uid: 15586
+ - uid: 36022
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.354605,28.681328
+ pos: -69.5,10.5
parent: 2
- - uid: 15689
+ - uid: 36023
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.440928,40.531944
+ pos: -69.5,9.5
parent: 2
- - uid: 33618
+ - uid: 36028
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 95.26899,55.80704
+ rot: 3.141592653589793 rad
+ pos: -9.5,-14.5
parent: 2
-- proto: FloodlightBroken
- entities:
- - uid: 5388
+ - uid: 36029
components:
- type: Transform
- pos: 60.631596,52.83645
+ rot: 3.141592653589793 rad
+ pos: -9.5,-13.5
parent: 2
- - uid: 5389
+ - uid: 36030
components:
- type: Transform
- pos: 58.49097,57.27395
+ rot: 3.141592653589793 rad
+ pos: -9.5,-12.5
parent: 2
- - uid: 5390
+ - uid: 36512
components:
- type: Transform
- pos: 60.61597,57.164574
+ pos: 57.5,77.5
parent: 2
- - uid: 7068
+ - uid: 36513
components:
- type: Transform
- pos: -29.247585,-35.76096
+ pos: 57.5,76.5
parent: 2
-- proto: FloorDrain
- entities:
- - uid: 324
+ - uid: 36514
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-30.5
+ pos: 57.5,75.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1021
+ - uid: 36515
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-2.5
+ pos: 57.5,74.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1344
+ - uid: 36516
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,12.5
+ pos: 57.5,73.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1358
+ - uid: 36517
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,12.5
+ pos: 57.5,72.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1636
+ - uid: 36518
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,9.5
+ pos: 57.5,71.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1770
+ - uid: 36519
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,1.5
+ pos: 57.5,70.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 1783
+ - uid: 36520
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,9.5
+ pos: 57.5,69.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 2722
+ - uid: 36521
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-25.5
+ pos: 57.5,68.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 3322
+ - uid: 36522
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-25.5
+ pos: 57.5,67.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 3377
+ - uid: 36523
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-25.5
+ pos: 57.5,66.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 4030
+ - uid: 36524
components:
- type: Transform
- pos: 48.5,43.5
+ pos: 57.5,65.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 5722
+ - uid: 36525
components:
- type: Transform
- pos: 23.5,-1.5
+ pos: 57.5,64.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 7310
+ - uid: 36529
components:
- type: Transform
- pos: -59.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,60.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 7598
+ - uid: 36725
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,-17.5
+ pos: 82.5,83.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 7599
+ - uid: 36726
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -56.5,-24.5
+ pos: 82.5,84.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 8352
+ - uid: 36847
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,71.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 11476
+ - uid: 36848
components:
- type: Transform
- pos: -21.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,71.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 11477
+ - uid: 36849
components:
- type: Transform
- pos: -27.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,71.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13011
+ - uid: 36850
components:
- type: Transform
- pos: 72.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,71.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13068
+- proto: DisposalPipeBroken
+ entities:
+ - uid: 2523
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,46.5
+ pos: 72.5,38.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13088
+ - uid: 5387
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,51.5
+ pos: 58.5,54.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 13118
+ - uid: 7047
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 47.5,51.5
+ pos: -29.5,-32.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18111
+ - uid: 7048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,57.5
+ pos: -29.5,-32.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18511
+ - uid: 7049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,24.5
+ pos: -29.5,-30.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 18512
+ - uid: 7050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,-34.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 20927
+ - uid: 7051
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,6.5
+ pos: -30.5,-36.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 23463
+ - uid: 7052
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-36.5
parent: 2
- - type: Fixtures
- fixtures: {}
- - uid: 28666
+ - uid: 7054
components:
- type: Transform
- pos: -15.5,-1.5
+ pos: -33.5,-37.5
parent: 2
- - type: Fixtures
- fixtures: {}
-- proto: FloorWaterEntity
- entities:
- - uid: 4141
+ - uid: 30158
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -84.5,25.5
+ pos: 72.5,35.5
parent: 2
- - uid: 4146
+ - uid: 30160
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -84.5,24.5
+ pos: 72.5,40.5
parent: 2
- - uid: 4150
+ - uid: 30163
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,42.5
parent: 2
- - uid: 4158
+ - uid: 35528
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,17.5
parent: 2
- - uid: 6265
+ - uid: 35556
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,12.5
parent: 2
- - uid: 7210
+ - uid: 35558
components:
- type: Transform
- pos: -104.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 100.5,11.5
parent: 2
- - uid: 7219
+ - uid: 35559
components:
- type: Transform
- pos: -104.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,11.5
parent: 2
- - uid: 7255
+ - uid: 35561
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -103.5,10.5
+ pos: 97.5,11.5
parent: 2
- - uid: 7256
+ - uid: 35562
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,10.5
parent: 2
- - uid: 7257
+ - uid: 35739
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -104.5,8.5
+ pos: 87.5,49.5
parent: 2
- - uid: 7258
+ - uid: 35783
components:
- type: Transform
- pos: -104.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,67.5
parent: 2
- - uid: 7341
+ - uid: 35784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -80.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,65.5
parent: 2
- - uid: 7372
+ - uid: 35785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,65.5
parent: 2
- - uid: 7374
+ - uid: 36526
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -89.5,28.5
+ pos: 57.5,63.5
parent: 2
- - uid: 7459
+ - uid: 36528
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,28.5
+ pos: 57.5,61.5
parent: 2
- - uid: 7660
+ - uid: 36530
components:
- type: Transform
- pos: -70.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,60.5
parent: 2
- - uid: 7672
+ - uid: 36851
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,71.5
parent: 2
- - uid: 7769
+- proto: DisposalTrunk
+ entities:
+ - uid: 334
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -105.5,6.5
+ pos: -20.5,-39.5
parent: 2
- - uid: 7773
+ - uid: 1437
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,12.5
parent: 2
- - uid: 7775
+ - uid: 2390
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-1.5
parent: 2
- - uid: 7779
+ - uid: 2553
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -101.5,12.5
+ pos: -2.5,-10.5
parent: 2
- - uid: 7785
+ - uid: 3379
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -102.5,12.5
+ pos: -29.5,-11.5
parent: 2
- - uid: 8480
+ - uid: 3417
components:
- type: Transform
- pos: -105.5,5.5
+ pos: -48.5,65.5
parent: 2
- - uid: 8483
+ - uid: 3508
components:
- type: Transform
- pos: -106.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,12.5
parent: 2
- - uid: 8484
+ - uid: 3547
components:
- type: Transform
- pos: -107.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-18.5
parent: 2
- - uid: 8486
+ - uid: 3556
components:
- type: Transform
- pos: -86.5,30.5
+ pos: 14.5,22.5
parent: 2
- - uid: 8487
+ - uid: 3858
components:
- type: Transform
- pos: -106.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,40.5
parent: 2
- - uid: 8488
+ - uid: 6206
components:
- type: Transform
- pos: -105.5,4.5
+ pos: -38.5,-20.5
parent: 2
- - uid: 8489
+ - uid: 7053
components:
- type: Transform
- pos: -105.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-38.5
parent: 2
- - uid: 8491
+ - uid: 8773
components:
- type: Transform
- pos: -103.5,3.5
+ pos: -51.5,15.5
parent: 2
- - uid: 8492
+ - uid: 10219
components:
- type: Transform
- pos: -103.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,37.5
parent: 2
- - uid: 8493
+ - uid: 12059
components:
- type: Transform
- pos: -103.5,13.5
+ pos: 15.5,-13.5
parent: 2
- - uid: 8494
+ - uid: 15127
components:
- type: Transform
- pos: -103.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,23.5
parent: 2
- - uid: 8495
+ - uid: 16961
components:
- type: Transform
- pos: -102.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,11.5
parent: 2
- - uid: 8496
+ - uid: 16962
components:
- type: Transform
- pos: -101.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,20.5
parent: 2
- - uid: 8497
+ - uid: 17087
components:
- type: Transform
- pos: -101.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,6.5
parent: 2
- - uid: 8501
+ - uid: 17088
components:
- type: Transform
- pos: -105.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -86.5,19.5
parent: 2
- - uid: 8504
+ - uid: 17089
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -105.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-2.5
parent: 2
- - uid: 8507
+ - uid: 17124
components:
- type: Transform
- pos: -103.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -73.5,11.5
parent: 2
- - uid: 8509
+ - uid: 17128
components:
- type: Transform
- pos: -103.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,33.5
parent: 2
- - uid: 8512
+ - uid: 17129
components:
- type: Transform
- pos: -86.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,24.5
parent: 2
- - uid: 8514
+ - uid: 17130
components:
- type: Transform
- pos: -86.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,24.5
parent: 2
- - uid: 8515
+ - uid: 17131
components:
- type: Transform
- pos: -86.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,39.5
parent: 2
- - uid: 8516
+ - uid: 17132
components:
- type: Transform
- pos: -86.5,25.5
+ pos: -2.5,55.5
parent: 2
- - uid: 8517
+ - uid: 17243
components:
- type: Transform
- pos: -86.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,28.5
parent: 2
- - uid: 8518
+ - uid: 17259
components:
- type: Transform
- pos: -85.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,39.5
parent: 2
- - uid: 8520
+ - uid: 17268
components:
- type: Transform
- pos: -85.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,35.5
parent: 2
- - uid: 8521
+ - uid: 17269
components:
- type: Transform
- pos: -85.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,52.5
parent: 2
- - uid: 8522
+ - uid: 17271
components:
- type: Transform
- pos: -85.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,52.5
parent: 2
- - uid: 8523
+ - uid: 17312
components:
- type: Transform
- pos: -85.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,46.5
parent: 2
- - uid: 8532
+ - uid: 17318
components:
- type: Transform
- pos: -83.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,26.5
parent: 2
- - uid: 8534
+ - uid: 17319
components:
- type: Transform
- pos: -83.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,36.5
parent: 2
- - uid: 8535
+ - uid: 17345
components:
- type: Transform
- pos: -83.5,26.5
+ pos: 25.5,10.5
parent: 2
- - uid: 8536
+ - uid: 17356
components:
- type: Transform
- pos: -83.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,26.5
parent: 2
- - uid: 8537
+ - uid: 17374
components:
- type: Transform
- pos: -83.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,15.5
parent: 2
- - uid: 8539
+ - uid: 17397
components:
- type: Transform
- pos: -82.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 41.5,-24.5
parent: 2
- - uid: 8540
+ - uid: 17414
components:
- type: Transform
- pos: -82.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,-27.5
parent: 2
- - uid: 8542
+ - uid: 17449
components:
- type: Transform
- pos: -82.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-13.5
parent: 2
- - uid: 8543
+ - uid: 17450
components:
- type: Transform
- pos: -82.5,26.5
+ pos: 72.5,0.5
parent: 2
- - uid: 8544
+ - uid: 17490
components:
- type: Transform
- pos: -82.5,25.5
+ pos: 11.5,27.5
parent: 2
- - uid: 8545
+ - uid: 17523
components:
- type: Transform
- pos: -82.5,24.5
+ pos: 7.5,-34.5
parent: 2
- - uid: 8546
+ - uid: 17530
components:
- type: Transform
- pos: -81.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,9.5
parent: 2
- - uid: 8547
+ - uid: 17531
components:
- type: Transform
- pos: -81.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-2.5
parent: 2
- - uid: 8549
+ - uid: 17535
components:
- type: Transform
- pos: -81.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-0.5
parent: 2
- - uid: 8550
+ - uid: 17536
components:
- type: Transform
- pos: -81.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-11.5
parent: 2
- - uid: 8551
+ - uid: 17537
components:
- type: Transform
- pos: -81.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,2.5
parent: 2
- - uid: 8552
+ - uid: 17647
components:
- type: Transform
- pos: -81.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-25.5
parent: 2
- - uid: 8553
+ - uid: 17707
components:
- type: Transform
- pos: -80.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-14.5
parent: 2
- - uid: 8554
+ - uid: 17710
components:
- type: Transform
- pos: -80.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-25.5
parent: 2
- - uid: 8556
+ - uid: 19088
components:
- type: Transform
- pos: -80.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,2.5
parent: 2
- - uid: 8557
+ - uid: 19305
components:
- type: Transform
- pos: -80.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,53.5
parent: 2
- - uid: 8558
+ - uid: 19762
components:
- type: Transform
- pos: -80.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,13.5
parent: 2
- - uid: 8559
+ - uid: 19763
components:
- type: Transform
- pos: -80.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,15.5
parent: 2
- - uid: 8560
+ - uid: 19873
components:
- type: Transform
- pos: -79.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,73.5
parent: 2
- - uid: 8562
+ - uid: 23368
components:
- type: Transform
- pos: -79.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,-33.5
parent: 2
- - uid: 8563
+ - uid: 26286
components:
- type: Transform
- pos: -79.5,26.5
+ pos: -35.5,21.5
parent: 2
- - uid: 8564
+ - uid: 28736
components:
- type: Transform
- pos: -79.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,28.5
parent: 2
- - uid: 8565
+ - uid: 35737
components:
- type: Transform
- pos: -79.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,49.5
parent: 2
- - uid: 8566
+ - uid: 35772
components:
- type: Transform
- pos: -78.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 86.5,68.5
parent: 2
- - uid: 8567
+ - uid: 35887
components:
- type: Transform
- pos: -78.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,32.5
parent: 2
- - uid: 8568
+ - uid: 35904
components:
- type: Transform
- pos: -78.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,61.5
parent: 2
- - uid: 8569
+ - uid: 35907
components:
- type: Transform
- pos: -78.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,34.5
parent: 2
- - uid: 8570
+ - uid: 35954
components:
- type: Transform
- pos: -87.5,30.5
+ pos: -58.5,11.5
parent: 2
- - uid: 8571
+ - uid: 35996
components:
- type: Transform
- pos: -87.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-25.5
parent: 2
- - uid: 8573
+ - uid: 36001
components:
- type: Transform
- pos: -87.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,2.5
parent: 2
- - uid: 8574
+ - uid: 36017
components:
- type: Transform
- pos: -87.5,26.5
+ pos: -69.5,15.5
parent: 2
- - uid: 8575
+ - uid: 36027
components:
- type: Transform
- pos: -87.5,25.5
+ pos: -9.5,-11.5
parent: 2
- - uid: 8577
+ - uid: 36510
components:
- type: Transform
- pos: -88.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,78.5
parent: 2
- - uid: 8579
+ - uid: 36724
components:
- type: Transform
- pos: -89.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,82.5
parent: 2
- - uid: 8580
+ - uid: 36846
components:
- type: Transform
- pos: -88.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,71.5
parent: 2
- - uid: 8584
+ - uid: 37378
components:
- type: Transform
- pos: -88.5,29.5
+ pos: -35.5,65.5
parent: 2
- - uid: 8586
+- proto: DisposalUnit
+ entities:
+ - uid: 712
components:
- type: Transform
- pos: -89.5,26.5
+ pos: -20.5,-39.5
parent: 2
- - uid: 8588
+ - uid: 1068
components:
- type: Transform
- pos: -88.5,27.5
+ pos: -0.5,23.5
parent: 2
- - uid: 8589
+ - uid: 1361
components:
- type: Transform
- pos: -88.5,26.5
+ pos: 36.5,-0.5
parent: 2
- - uid: 8591
+ - uid: 1368
components:
- type: Transform
- pos: -89.5,27.5
+ pos: 12.5,12.5
parent: 2
- - uid: 8594
+ - uid: 1487
components:
- type: Transform
- pos: -90.5,27.5
+ pos: 12.5,2.5
parent: 2
- - uid: 8595
+ - uid: 1591
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,6.5
+ pos: -3.5,9.5
parent: 2
- - uid: 8596
+ - uid: 1710
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -103.5,5.5
+ pos: -1.5,-2.5
parent: 2
- - uid: 8616
+ - uid: 1827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,5.5
+ pos: 30.5,-11.5
parent: 2
- - uid: 11404
+ - uid: 1977
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,11.5
+ pos: 11.5,27.5
parent: 2
- - uid: 11405
+ - uid: 2556
components:
- type: Transform
- pos: -104.5,3.5
+ pos: -2.5,-10.5
parent: 2
- - uid: 11406
+ - uid: 2652
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,9.5
+ pos: -57.5,-1.5
parent: 2
- - uid: 11409
+ - uid: 3773
components:
- type: Transform
- pos: -104.5,5.5
+ pos: 41.5,-24.5
parent: 2
- - uid: 11411
+ - uid: 4493
components:
- type: Transform
- pos: -104.5,12.5
+ pos: 52.5,15.5
parent: 2
- - uid: 11412
+ - uid: 5138
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,8.5
+ pos: 69.5,-13.5
parent: 2
- - uid: 11420
+ - uid: 5139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -104.5,10.5
+ pos: 54.5,-27.5
parent: 2
- - uid: 11453
+ - uid: 5140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,28.5
+ pos: 72.5,0.5
parent: 2
- - uid: 11454
+ - uid: 5149
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,27.5
+ pos: 37.5,46.5
parent: 2
- - uid: 11455
+ - uid: 5219
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,26.5
+ pos: 42.5,36.5
parent: 2
- - uid: 11457
+ - uid: 5248
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -79.5,28.5
+ pos: 32.5,26.5
parent: 2
- - uid: 11458
+ - uid: 5699
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,28.5
+ pos: 56.5,26.5
parent: 2
- - uid: 11459
+ - uid: 6567
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,28.5
+ pos: -12.5,-25.5
parent: 2
- - uid: 11460
+ - uid: 6661
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,28.5
+ pos: -38.5,-20.5
parent: 2
- - uid: 15205
+ - uid: 7164
components:
- type: Transform
- pos: -71.5,7.5
+ pos: -46.5,-14.5
parent: 2
- - uid: 15206
+ - uid: 7560
components:
- type: Transform
- pos: -69.5,7.5
+ pos: -52.5,-25.5
parent: 2
- - uid: 22044
+ - uid: 8408
components:
- type: Transform
- pos: -104.5,6.5
+ pos: -73.5,11.5
parent: 2
- - uid: 23376
+ - uid: 8409
components:
- type: Transform
- pos: -71.5,9.5
+ pos: -86.5,19.5
parent: 2
- - uid: 26891
+ - uid: 8410
components:
- type: Transform
- pos: -71.5,8.5
+ pos: -95.5,6.5
parent: 2
- - uid: 30280
+ - uid: 8411
components:
- type: Transform
- pos: -69.5,8.5
+ pos: -82.5,-2.5
parent: 2
- - uid: 30282
+ - uid: 8935
components:
- type: Transform
- pos: -70.5,9.5
+ pos: -47.5,20.5
parent: 2
- - uid: 30290
+ - uid: 9007
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,9.5
+ pos: -51.5,11.5
parent: 2
- - uid: 30365
+ - uid: 9332
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,21.5
+ pos: 14.5,22.5
parent: 2
- - uid: 30366
+ - uid: 9624
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,20.5
+ pos: -40.5,37.5
parent: 2
- - uid: 30367
+ - uid: 12058
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,19.5
+ pos: 15.5,-13.5
parent: 2
- - uid: 30369
+ - uid: 13083
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,20.5
+ pos: 7.5,-34.5
parent: 2
- - uid: 30385
+ - uid: 13977
components:
- type: Transform
- pos: 0.5,-15.5
+ pos: 12.5,52.5
parent: 2
- - uid: 30387
+ - uid: 14179
components:
- type: Transform
- pos: 1.5,-14.5
+ pos: 4.5,35.5
parent: 2
- - uid: 30388
+ - uid: 14365
components:
- type: Transform
- pos: 1.5,-15.5
+ pos: -51.5,15.5
parent: 2
- - uid: 30389
+ - uid: 15528
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: -18.5,24.5
parent: 2
- - uid: 30391
+ - uid: 15594
components:
- type: Transform
- pos: 2.5,-15.5
+ pos: -8.5,28.5
parent: 2
-- proto: FloraTree01
- entities:
- - uid: 25174
+ - uid: 15770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.449936,-9.418206
+ pos: -11.5,24.5
parent: 2
- - uid: 30408
+ - uid: 15929
components:
- type: Transform
- pos: 0.46789742,-22.525293
+ pos: -2.5,55.5
parent: 2
- - uid: 30640
+ - uid: 16079
components:
- type: Transform
- pos: 32.16799,-36.537888
+ pos: -10.5,39.5
parent: 2
-- proto: FloraTree02
- entities:
- - uid: 5121
+ - uid: 16313
components:
- type: Transform
- pos: 59.191208,-8.598531
+ pos: -18.5,53.5
parent: 2
- - uid: 5122
+ - uid: 16587
components:
- type: Transform
- pos: 64.54521,-24.723492
+ pos: -36.5,33.5
parent: 2
- - uid: 8077
+ - uid: 17270
components:
- type: Transform
- pos: -105.901375,10.962385
+ pos: 20.5,52.5
parent: 2
- - uid: 27516
+ - uid: 17489
components:
- type: Transform
- pos: 71.611465,20.728672
+ pos: -29.5,-11.5
parent: 2
- - uid: 30378
+ - uid: 17533
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.6420546,-7.4613504
+ pos: 25.5,10.5
parent: 2
- - uid: 30430
+ - uid: 19858
components:
- type: Transform
- pos: 32.065224,-16.38374
+ pos: 4.5,73.5
parent: 2
- - uid: 30623
+ - uid: 22876
components:
- type: Transform
- pos: -18.445969,-13.1589365
+ pos: -53.5,40.5
parent: 2
- - uid: 30624
+ - uid: 23346
components:
- type: Transform
- pos: -0.4013872,-10.586457
+ pos: -50.5,-33.5
parent: 2
- - uid: 30635
+ - uid: 25941
components:
- type: Transform
- pos: 61.10234,8.346388
+ pos: -35.5,21.5
parent: 2
- - uid: 30645
+ - uid: 29974
components:
- type: Transform
- pos: -13.640928,77.0639
+ pos: -52.5,-18.5
parent: 2
-- proto: FloraTree03
- entities:
- - uid: 8080
+ - uid: 30331
components:
- type: Transform
- pos: -101.57325,3.8217597
+ pos: 16.5,12.5
parent: 2
- - uid: 30621
+ - uid: 30653
components:
- type: Transform
- pos: -29.102713,-16.537373
+ pos: -4.5,32.5
parent: 2
- - uid: 30632
+ - uid: 30667
components:
- type: Transform
- pos: 41.985,-13.290992
+ pos: 43.5,28.5
parent: 2
- - uid: 30641
+ - uid: 30668
components:
- type: Transform
- pos: 22.018206,-38.524227
+ pos: -9.5,-11.5
parent: 2
-- proto: FloraTree04
- entities:
- - uid: 30356
+ - uid: 30717
components:
- type: Transform
- pos: 0.14007974,34.998196
+ pos: -3.5,61.5
parent: 2
- - uid: 30363
+ - uid: 30747
components:
- type: Transform
- pos: -0.28809094,37.357113
+ pos: 47.5,34.5
parent: 2
- - uid: 30639
+ - uid: 30755
components:
- type: Transform
- pos: 41.691067,-28.712173
+ pos: -58.5,11.5
parent: 2
-- proto: FloraTree05
- entities:
- - uid: 6284
+ - uid: 30793
components:
- type: Transform
- pos: -61.0979,9.577806
+ pos: -27.5,-25.5
parent: 2
- - uid: 24658
+ - uid: 30796
components:
- type: Transform
- pos: 12.162793,35.73257
+ pos: -54.5,2.5
parent: 2
- - uid: 26363
+ - uid: 30803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.484566,-27.483574
+ pos: -69.5,15.5
parent: 2
- - uid: 30373
+ - uid: 35736
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.4963851,-37.686043
+ pos: 85.5,49.5
parent: 2
-- proto: FloraTree06
- entities:
- - uid: 2376
+ - uid: 35769
components:
- type: Transform
- pos: 74.83024,-2.995719
+ pos: 86.5,68.5
parent: 2
- - uid: 30633
+ - uid: 36509
components:
- type: Transform
- pos: 46.813126,-8.479406
+ pos: 56.5,78.5
parent: 2
- - uid: 30638
+ - uid: 36723
components:
- type: Transform
- pos: 64.306854,0.38446856
+ pos: 82.5,82.5
parent: 2
-- proto: FloraTreeConifer01
- entities:
- - uid: 8078
+ - uid: 36838
components:
- type: Transform
- pos: -89.70616,-12.131908
+ pos: 72.5,71.5
parent: 2
-- proto: FloraTreeConifer03
- entities:
- - uid: 8084
+ - uid: 37379
components:
- type: Transform
- pos: -80.62804,-8.819408
+ pos: -35.5,65.5
parent: 2
-- proto: FloraTreeLarge01
+- proto: DisposalYJunction
entities:
- - uid: 30299
+ - uid: 16695
components:
- type: Transform
- pos: 1.5025835,53.34213
+ rot: 3.141592653589793 rad
+ pos: -32.5,-15.5
parent: 2
- - uid: 30376
+ - uid: 16696
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.46455932,12.641065
+ pos: -32.5,20.5
parent: 2
-- proto: FloraTreeLarge02
- entities:
- - uid: 3908
+ - uid: 17073
components:
- type: Transform
- pos: 57.44353,-10.955918
+ rot: 1.5707963267948966 rad
+ pos: -84.5,8.5
parent: 2
- - uid: 5115
+ - uid: 17200
components:
- type: Transform
- pos: 57.472458,-1.0047805
+ pos: -15.5,29.5
parent: 2
- - uid: 30622
+ - uid: 17371
components:
- type: Transform
- pos: 46.742813,0.87966824
+ rot: -1.5707963267948966 rad
+ pos: 53.5,17.5
parent: 2
-- proto: FloraTreeLarge03
- entities:
- - uid: 5118
+ - uid: 17638
components:
- type: Transform
- pos: 73.14433,-3.3485305
+ rot: 3.141592653589793 rad
+ pos: 1.5,3.5
parent: 2
- - uid: 30644
+- proto: DogBed
+ entities:
+ - uid: 619
components:
- type: Transform
- pos: -13.496889,78.47229
+ pos: -4.5,-10.5
parent: 2
-- proto: FloraTreeLarge04
- entities:
- - uid: 30643
+ - uid: 1963
components:
- type: Transform
- pos: 16.467203,76.519165
+ pos: 12.5,29.5
parent: 2
-- proto: FloraTreeLarge05
- entities:
- - uid: 30634
+ - uid: 4454
components:
- type: Transform
- pos: 45.500626,13.286349
+ pos: -16.5,50.5
parent: 2
-- proto: FloraTreeLarge06
- entities:
- - uid: 7888
+ - uid: 5715
components:
- type: Transform
- pos: -43.417057,-4.481603
+ pos: 43.5,25.5
parent: 2
- - uid: 11410
+ - uid: 6111
components:
- type: Transform
- pos: -100.976654,11.765398
+ pos: 54.5,28.5
parent: 2
- - uid: 30375
+ - uid: 6421
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.6604407,14.516065
+ pos: 80.5,-7.5
parent: 2
-- proto: FloraTreeSnow01
- entities:
- - uid: 8081
+ - uid: 15697
components:
- type: Transform
- pos: -89.09679,-10.772533
+ pos: -9.5,25.5
parent: 2
-- proto: FloraTreeSnow04
- entities:
- - uid: 8082
+ - uid: 17716
components:
- type: Transform
- pos: -88.22179,-12.053783
+ pos: 20.5,-35.5
parent: 2
- - uid: 8083
+ - uid: 17717
components:
- type: Transform
- pos: -80.04991,-10.194408
+ pos: 15.5,-35.5
parent: 2
-- proto: FloraTreeStump
- entities:
- - uid: 5124
+ - uid: 19373
components:
- type: Transform
- pos: 49.59209,-24.473492
+ pos: -25.5,-20.5
parent: 2
- - uid: 5125
+ - uid: 22277
components:
- type: Transform
- pos: 58.40459,-11.380961
+ pos: 29.5,28.5
parent: 2
- - uid: 5126
+ - uid: 23331
components:
- type: Transform
- pos: 59.29899,-1.995719
+ pos: -68.5,-8.5
parent: 2
- - uid: 8079
+ - uid: 23333
components:
- type: Transform
- pos: -106.8545,9.79051
+ pos: -68.5,-10.5
parent: 2
-- proto: FloraTreeStumpConifer
- entities:
- - uid: 5123
+ - uid: 25848
components:
- type: Transform
- pos: 53.638966,-27.192242
+ pos: 43.5,29.5
parent: 2
- - uid: 8482
+ - uid: 26209
components:
- type: Transform
- pos: -81.26866,-9.381908
+ pos: 22.5,48.5
parent: 2
-- proto: FoodAloe
- entities:
- - uid: 22166
+ - uid: 28142
components:
- type: Transform
- pos: 87.71248,32.635227
+ pos: -50.5,-5.5
parent: 2
- - uid: 22268
+ - uid: 28149
components:
- type: Transform
- pos: 79.29401,25.53574
+ pos: -49.5,-5.5
parent: 2
- - uid: 22269
+ - uid: 33811
components:
- type: Transform
- pos: 84.83423,62.448936
+ pos: -21.5,-10.5
parent: 2
-- proto: FoodBakedBunHotX
+- proto: DonkpocketBoxSpawner
entities:
- - uid: 7723
+ - uid: 5114
components:
- type: Transform
- pos: 65.74038,27.480778
+ rot: 3.141592653589793 rad
+ pos: 94.5,55.5
parent: 2
-- proto: FoodBakedCannabisBrownie
- entities:
- - uid: 23014
+ - uid: 9085
components:
- type: Transform
- pos: 87.27342,32.6446
+ pos: -47.5,22.5
parent: 2
- - uid: 32551
+ - uid: 9086
components:
- type: Transform
- pos: 87.46092,32.4571
+ pos: -16.5,-28.5
parent: 2
- - uid: 32552
+ - uid: 15605
components:
- type: Transform
- pos: 87.6953,32.785225
+ pos: -11.5,28.5
parent: 2
-- proto: FoodBakedCookie
- entities:
- - uid: 1607
+ - uid: 18089
components:
- type: Transform
- pos: -8.3917465,11.258961
+ pos: -18.5,57.5
parent: 2
- - uid: 1608
+ - uid: 18454
components:
- type: Transform
- pos: -8.649747,11.326364
+ pos: -61.5,-1.5
parent: 2
- - uid: 1609
+- proto: DoubleEmergencyNitrogenTankFilled
+ entities:
+ - uid: 578
components:
- type: Transform
- pos: -8.555809,11.157398
+ pos: 21.385355,25.859453
parent: 2
- - uid: 5444
+ - uid: 2985
components:
- type: Transform
- pos: 36.221233,30.755035
+ pos: 21.542994,25.51156
parent: 2
- - uid: 5445
+- proto: DoubleEmergencyOxygenTankFilled
+ entities:
+ - uid: 2991
components:
- type: Transform
- pos: 36.33842,30.567535
+ pos: 16.386623,25.897505
parent: 2
- - uid: 5446
+ - uid: 5520
components:
- type: Transform
- pos: 36.561077,30.673004
+ pos: 16.544262,25.620277
parent: 2
- - uid: 6868
+- proto: DresserCaptainFilled
+ entities:
+ - uid: 10231
components:
- type: Transform
- pos: -16.584772,-30.13989
+ pos: 21.5,48.5
parent: 2
- - uid: 6869
+- proto: DresserChiefEngineerFilled
+ entities:
+ - uid: 15372
components:
- type: Transform
- pos: -16.268366,-30.175047
+ pos: -62.5,11.5
parent: 2
- - uid: 6870
+- proto: DresserChiefMedicalOfficerFilled
+ entities:
+ - uid: 7857
components:
- type: Transform
- pos: -16.467585,-30.33911
+ pos: -8.5,-11.5
parent: 2
- - uid: 9009
+- proto: DresserFilled
+ entities:
+ - uid: 4763
components:
- type: Transform
- pos: -50.73071,20.718376
+ pos: -75.5,0.5
parent: 2
- - uid: 9010
+ - uid: 5434
components:
- type: Transform
- pos: -50.35571,20.609001
+ pos: 46.5,34.5
parent: 2
- - uid: 9011
+ - uid: 10014
components:
- type: Transform
- pos: -50.57446,20.484001
+ pos: -79.5,-0.5
parent: 2
- - uid: 11522
+ - uid: 11256
components:
- type: Transform
- pos: -29.27353,7.696652
+ pos: -71.5,0.5
parent: 2
- - uid: 16539
+ - uid: 17742
components:
- type: Transform
- pos: -29.496185,7.837277
+ pos: -35.5,-28.5
parent: 2
-- proto: FoodBakedCookieOatmeal
- entities:
- - uid: 6897
+ - uid: 22088
components:
- type: Transform
- pos: 66.68641,16.634327
+ pos: 65.5,30.5
parent: 2
- - uid: 6898
+ - uid: 23369
components:
- type: Transform
- pos: 66.264534,16.739796
+ pos: -32.5,33.5
parent: 2
- - uid: 6899
+- proto: DresserHeadOfPersonnelFilled
+ entities:
+ - uid: 7327
components:
- type: Transform
- pos: 66.545784,16.903858
+ pos: 14.5,28.5
parent: 2
-- proto: FoodBakedCookieSugar
+- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 33641
+ - uid: 22292
components:
- type: Transform
- pos: 76.25823,49.52246
+ pos: -4.5,35.5
parent: 2
-- proto: FoodBakedMuffin
+- proto: DresserQuarterMasterFilled
entities:
- - uid: 30533
+ - uid: 15112
components:
- type: Transform
- pos: -4.5895452,18.73392
+ pos: -25.5,-25.5
parent: 2
-- proto: FoodBowlBigTrash
+- proto: DresserResearchDirectorFilled
entities:
- - uid: 7026
+ - uid: 18806
components:
- type: Transform
- pos: -31.451912,-33.57073
+ pos: 45.5,30.5
parent: 2
- - uid: 7028
+- proto: DresserWardenFilled
+ entities:
+ - uid: 438
components:
- type: Transform
- pos: -31.545662,-38.387135
+ pos: -23.5,51.5
parent: 2
- - uid: 30069
+- proto: Drill
+ entities:
+ - uid: 36025
components:
- type: Transform
- pos: 84.45178,43.21001
+ pos: 64.54629,80.91518
parent: 2
-- proto: FoodBoxPizza
+- proto: DrinkAleGlass
entities:
- - uid: 7314
+ - uid: 31416
components:
- type: Transform
- pos: -54.532394,-21.0851
+ pos: -46.536232,-33.377792
parent: 2
- - uid: 7371
+ - uid: 31421
components:
- type: Transform
- pos: -54.505863,-22.124546
+ pos: -45.53415,-25.675467
parent: 2
- - uid: 7551
+ - uid: 37580
components:
- type: Transform
- pos: -54.48552,-21.542131
+ pos: -44.294193,-24.27334
parent: 2
-- proto: FoodBoxPizzaFilled
- entities:
- - uid: 29822
+ - uid: 37581
components:
- type: Transform
- pos: 85.39854,62.785995
+ pos: -44.09888,-24.453028
parent: 2
-- proto: FoodBreadBanana
- entities:
- - uid: 5562
+ - uid: 37582
components:
- type: Transform
- pos: 46.502266,25.930176
+ pos: -43.02857,-24.171778
parent: 2
-- proto: FoodBurgerCat
+- proto: DrinkBeerglass
entities:
- - uid: 32573
+ - uid: 5408
components:
- type: Transform
- pos: 76.45452,64.07508
+ pos: -8.064243,-45.50384
parent: 2
- - uid: 32579
+ - uid: 6880
components:
- type: Transform
- pos: 76.407646,64.66884
+ pos: -7.931431,-45.199154
parent: 2
- - uid: 32580
+ - uid: 19606
components:
- type: Transform
- pos: 76.42327,63.653206
+ pos: -37.258465,60.332344
parent: 2
-- proto: FoodBurgerCheese
- entities:
- - uid: 22257
+ - uid: 30694
components:
- type: Transform
- pos: -6.6194677,-41.549088
+ pos: -40.333614,67.27086
parent: 2
-- proto: FoodBurgerChicken
+- proto: DrinkBloodyMaryGlass
entities:
- - uid: 35854
+ - uid: 424
components:
- type: Transform
- pos: -49.572453,13.015585
+ pos: -42.298717,64.82614
parent: 2
-- proto: FoodBurgerClown
+- proto: DrinkBottleBeer
entities:
- - uid: 8655
+ - uid: 8355
components:
- type: Transform
- pos: -74.52928,-3.5821853
+ pos: -73.29047,3.1253412
parent: 2
-- proto: FoodBurgerRobot
- entities:
- - uid: 6182
+ - uid: 11272
components:
- type: Transform
- pos: 46.69022,44.79637
+ rot: -1.5707963267948966 rad
+ pos: -73.10297,2.6331537
parent: 2
-- proto: FoodCakeClown
- entities:
- - uid: 19423
+ - uid: 11273
components:
- type: Transform
- pos: -77.534096,-0.22864151
+ pos: -73.14984,3.0315912
parent: 2
-- proto: FoodCannabisButter
- entities:
- - uid: 33639
+ - uid: 31423
components:
- type: Transform
- pos: 63.553394,50.756836
+ pos: -41.35446,-28.183279
parent: 2
-- proto: FoodCartCold
- entities:
- - uid: 5147
+ - uid: 31429
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 54.5,-14.5
+ pos: -35.65915,-35.792652
parent: 2
-- proto: FoodCartHot
- entities:
- - uid: 5172
+ - uid: 31431
+ components:
+ - type: Transform
+ pos: -50.8154,-33.542652
+ parent: 2
+ - uid: 31443
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 68.5,-18.5
+ pos: -50.447353,-32.14329
parent: 2
- - uid: 7631
+ - uid: 31576
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,-16.5
+ pos: -36.406116,-32.59924
parent: 2
-- proto: FoodCondimentBottleEnzyme
- entities:
- - uid: 1118
+ - uid: 37584
components:
- type: Transform
- pos: -62.679012,-7.1969314
+ pos: -43.762943,-24.038965
parent: 2
- - uid: 18544
+- proto: DrinkBottleWine
+ entities:
+ - uid: 4381
components:
- type: Transform
- pos: -62.554012,-7.3063064
+ pos: 61.698837,24.84039
parent: 2
- - uid: 18545
+ - uid: 4382
components:
- type: Transform
- pos: -62.444637,-7.1344314
+ pos: 61.948837,24.887264
parent: 2
-- proto: FoodCondimentBottleHotsauce
- entities:
- - uid: 7573
+ - uid: 9325
components:
- type: Transform
- pos: -46.36997,-20.935427
+ pos: 55.7811,10.768181
parent: 2
- - uid: 7574
+ - uid: 30032
components:
- type: Transform
- pos: -48.004414,-13.187924
+ pos: 91.68901,18.844994
parent: 2
-- proto: FoodCondimentPacketKetchup
+- proto: DrinkBubbleTeaGlass
entities:
- - uid: 7098
+ - uid: 7585
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.314384,-21.334772
+ pos: -42.676247,-17.17277
parent: 2
- - uid: 7575
+ - uid: 11984
components:
- type: Transform
- pos: -47.723164,-13.434018
+ pos: 15.938284,-36.098877
parent: 2
- - uid: 7576
+ - uid: 18123
components:
- type: Transform
- pos: -46.305195,-17.230892
+ pos: 15.610159,-36.317627
parent: 2
-- proto: FoodCondimentPacketMustard
- entities:
- - uid: 7577
+ - uid: 31996
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.409824,-21.468569
+ pos: -41.39815,-35.199207
parent: 2
-- proto: FoodCornTrash
- entities:
- - uid: 16663
+ - uid: 37595
components:
- type: Transform
- pos: -39.388145,9.764108
+ pos: -45.044415,-28.162928
parent: 2
- - uid: 30084
- components:
- - type: Transform
- pos: 89.13743,44.278282
- parent: 2
-- proto: FoodDonutPoison
+- proto: DrinkCartonMilk
entities:
- - uid: 32516
+ - uid: 26725
components:
- type: Transform
- pos: 95.76984,56.013218
+ pos: -55.448647,-7.5990534
parent: 2
-- proto: FoodDoughFlat
+- proto: DrinkChampagneBottleFull
entities:
- - uid: 7555
+ - uid: 27408
components:
- type: Transform
- pos: -54.544113,-22.690569
+ pos: 34.67687,-10.322123
parent: 2
-- proto: FoodFrozenSandwich
+- proto: DrinkChocolateGlass
entities:
- - uid: 14270
+ - uid: 341
components:
- type: Transform
- pos: 11.633413,48.094017
+ pos: -18.481709,7.7416625
parent: 2
-- proto: FoodGalaxythistle
+- proto: DrinkCoffee
entities:
- - uid: 22271
- components:
- - type: Transform
- pos: 61.823143,64.43665
- parent: 2
- - uid: 22272
+ - uid: 1589
components:
- type: Transform
- pos: 90.75882,55.3758
+ pos: -8.423184,11.754102
parent: 2
- - uid: 22274
+ - uid: 1590
components:
- type: Transform
- pos: 85.34794,44.6678
+ pos: -8.688809,11.863477
parent: 2
- - uid: 22276
+ - uid: 5564
components:
- type: Transform
- pos: 52.92175,47.25847
+ pos: -53.211754,25.91696
parent: 2
-- proto: FoodLollipop
- entities:
- - uid: 11521
+ - uid: 5733
components:
- type: Transform
- pos: -19.289154,7.743527
+ pos: 59.395546,10.7205715
parent: 2
- - uid: 16547
+ - uid: 6876
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.269623,7.684933
+ pos: -9.496035,-25.091621
parent: 2
- - uid: 18952
+ - uid: 6877
components:
- type: Transform
- pos: 13.4423275,-11.229972
+ pos: -28.145683,-20.579903
parent: 2
- - uid: 22073
+ - uid: 14134
components:
- type: Transform
- pos: 7.214395,-11.328008
+ pos: 13.325816,48.755283
parent: 2
- - uid: 23261
+ - uid: 14135
components:
- type: Transform
- pos: -6.7492733,0.5342859
+ pos: 11.747691,47.70841
parent: 2
- - uid: 23262
+ - uid: 14283
components:
- type: Transform
- pos: -6.585211,0.4405359
+ pos: 13.624886,47.71295
parent: 2
- - uid: 23263
+ - uid: 15745
components:
- type: Transform
- pos: -4.557867,6.8858485
+ pos: -5.8907747,25.645412
parent: 2
- - uid: 23266
+ - uid: 27290
components:
- type: Transform
- pos: -4.4662676,-1.6805577
+ pos: -16.873158,-9.270704
parent: 2
- - uid: 23267
+ - uid: 27962
components:
- type: Transform
- pos: 3.5149999,5.519035
+ pos: 19.7411,47.67416
parent: 2
- - uid: 23268
+- proto: DrinkCoffeeLiqueurBottleFull
+ entities:
+ - uid: 14025
components:
- type: Transform
- pos: 7.692212,16.376804
+ pos: 8.778941,54.849033
parent: 2
- - uid: 23269
+- proto: DrinkCoffeeLiqueurGlass
+ entities:
+ - uid: 14132
components:
- type: Transform
- pos: 34.74761,16.705116
+ pos: 8.075816,54.911533
parent: 2
- - uid: 23270
+ - uid: 30514
components:
- type: Transform
- pos: 34.7118,12.530766
+ pos: 0.65781116,66.89836
parent: 2
- - uid: 23271
+- proto: DrinkColaCanEmpty
+ entities:
+ - uid: 8158
components:
- type: Transform
- pos: 36.306503,7.7400866
+ pos: 90.58504,72.47444
parent: 2
- - uid: 23272
+ - uid: 8174
components:
- type: Transform
- pos: 36.376816,7.5057116
+ rot: -1.5707963267948966 rad
+ pos: 90.827225,72.201004
parent: 2
- - uid: 23273
+ - uid: 31448
components:
- type: Transform
- pos: 36.39244,7.685399
+ rot: -1.5707963267948966 rad
+ pos: -50.69821,-32.089527
parent: 2
- - uid: 23274
+ - uid: 31461
components:
- type: Transform
- pos: 36.57213,7.6150866
+ rot: 1.5707963267948966 rad
+ pos: -35.416103,-35.713604
parent: 2
- - uid: 23275
+ - uid: 31475
components:
- type: Transform
- pos: 36.689316,7.5369616
+ rot: -1.5707963267948966 rad
+ pos: -32.098648,-33.245777
parent: 2
- - uid: 23276
+ - uid: 32052
components:
- type: Transform
- pos: 19.555277,1.9447498
+ rot: -1.5707963267948966 rad
+ pos: -36.423916,-33.54954
parent: 2
- - uid: 23277
+ - uid: 32053
components:
- type: Transform
- pos: 18.641775,-9.527165
+ rot: -1.5707963267948966 rad
+ pos: -35.18173,-35.596416
parent: 2
- - uid: 23278
+- proto: DrinkDetFlask
+ entities:
+ - uid: 14091
components:
- type: Transform
- pos: 18.255056,-8.35529
+ pos: -21.34557,-8.256811
parent: 2
- - uid: 23279
+- proto: DrinkEmeraldGlass
+ entities:
+ - uid: 14026
components:
- type: Transform
- pos: 15.700369,-11.472478
+ pos: 6.560191,55.08341
parent: 2
-- proto: FoodMealFriedegg
+- proto: DrinkFlask
entities:
- - uid: 5565
+ - uid: 14195
components:
- type: Transform
- pos: 49.742733,33.688232
+ pos: 13.633378,48.80755
parent: 2
-- proto: FoodMealPigblanket
+- proto: DrinkFlaskBar
entities:
- - uid: 33594
+ - uid: 863
components:
- type: Transform
- pos: 78.84952,61.5251
+ pos: 14.628693,30.63074
parent: 2
-- proto: FoodMealPotatoLoaded
+- proto: DrinkGinGlass
entities:
- - uid: 14269
+ - uid: 15106
components:
- type: Transform
- pos: 12.836538,48.250267
+ pos: 26.706886,48.66876
parent: 2
-- proto: FoodMeatCooked
+- proto: DrinkGlass
entities:
- - uid: 14266
+ - uid: 422
components:
- type: Transform
- pos: 12.336538,47.890892
+ pos: -41.491917,64.68161
parent: 2
- - uid: 14267
+ - uid: 19640
components:
- type: Transform
- pos: 12.555288,47.781517
+ pos: -44.37473,64.58786
parent: 2
- - uid: 30036
+ - uid: 30906
components:
- type: Transform
- pos: 91.59526,17.813744
+ pos: -40.429417,66.259735
parent: 2
-- proto: FoodMeatHumanKebab
- entities:
- - uid: 30070
+ - uid: 31936
components:
- type: Transform
- pos: 84.457634,40.523834
+ pos: -41.71848,64.80661
parent: 2
-- proto: FoodNoodles
- entities:
- - uid: 7382
+ - uid: 36449
components:
- type: Transform
- pos: -54.11232,-24.44827
+ pos: 34.385204,-10.30129
parent: 2
-- proto: FoodNoodlesChowmein
+- proto: DrinkGlassCoupeShaped
entities:
- - uid: 7381
+ - uid: 1175
components:
- type: Transform
- pos: -54.56872,-15.7341385
+ pos: -45.507618,-27.4783
parent: 2
-- proto: FoodNoodlesMeatball
- entities:
- - uid: 7383
+ - uid: 31210
components:
- type: Transform
- pos: -54.609127,-24.234867
+ pos: -45.35918,-25.986113
parent: 2
-- proto: FoodPizzaDonkpocketSlice
- entities:
- - uid: 16394
+ - uid: 31211
components:
- type: Transform
- pos: 31.231165,-17.57143
+ pos: -43.818047,-31.041252
parent: 2
- - uid: 18017
+ - uid: 31239
components:
- type: Transform
- pos: 20.21554,-17.337055
+ pos: -45.413868,-27.82205
parent: 2
- - uid: 18123
+ - uid: 31424
components:
- type: Transform
- pos: 28.481165,-17.25893
+ pos: -37.533817,-34.270958
parent: 2
-- proto: FoodPizzaMargheritaSlice
- entities:
- - uid: 7313
+ - uid: 31844
components:
- type: Transform
- pos: 20.535868,-17.462055
+ pos: -39.326733,-25.598675
parent: 2
- - uid: 9633
+ - uid: 37590
components:
- type: Transform
- pos: 17.926493,-18.35268
+ pos: -43.30982,-24.328028
parent: 2
-- proto: FoodPizzaMoldySlice
+- proto: DrinkGlassWhite
entities:
- - uid: 7090
- components:
- - type: Transform
- pos: 18.848368,-21.72768
- parent: 2
- - uid: 7608
+ - uid: 23731
components:
- type: Transform
- pos: 32.432945,-20.38393
+ pos: -55.62052,-8.309062
parent: 2
-- proto: FoodPizzaVegetableSlice
+- proto: DrinkGoldenCup
entities:
- - uid: 7554
+ - uid: 37626
components:
- type: Transform
- pos: -54.426926,-22.327288
+ pos: 14.480022,29.187635
parent: 2
-- proto: FoodPlate
+- proto: DrinkGrapeCan
entities:
- - uid: 1606
+ - uid: 6901
components:
- type: Transform
- pos: -8.524559,11.376148
+ rot: -1.5707963267948966 rad
+ pos: 70.61003,-3.506958
parent: 2
- - uid: 5443
+ - uid: 36954
components:
- type: Transform
- pos: 36.36186,30.848785
+ pos: -7.55315,53.720497
parent: 2
- - uid: 5563
+- proto: DrinkGreenTeaGlass
+ entities:
+ - uid: 934
components:
- type: Transform
- pos: 46.495235,25.959606
+ pos: -72.31412,5.791229
parent: 2
- - uid: 6867
+- proto: DrinkHosFlask
+ entities:
+ - uid: 14196
components:
- type: Transform
- pos: -16.40899,-30.069578
+ pos: 6.2207565,48.757072
parent: 2
- - uid: 6896
+- proto: DrinkHotCoco
+ entities:
+ - uid: 5148
components:
- type: Transform
- pos: 66.47547,16.915577
+ pos: 71.64327,-18.151184
parent: 2
- - uid: 7093
+ - uid: 5154
components:
- type: Transform
- pos: -47.528687,-13.109673
+ pos: 71.56515,-18.44806
parent: 2
- - uid: 9008
+ - uid: 5174
components:
- type: Transform
- pos: -50.54321,20.796501
+ pos: 69.51709,-15.36441
parent: 2
- - uid: 14268
+ - uid: 5175
components:
- type: Transform
- pos: 12.445913,47.984642
+ pos: 71.9089,-18.35431
parent: 2
- - uid: 16537
+ - uid: 6875
components:
- type: Transform
- pos: -29.343842,8.001339
+ pos: -16.307503,-29.685396
parent: 2
- - uid: 27943
+- proto: DrinkIceCreamGlass
+ entities:
+ - uid: 14271
components:
- type: Transform
- pos: 91.610886,17.954369
+ pos: 6.9146633,54.812767
parent: 2
-- proto: FoodPlatePlastic
+- proto: DrinkIrishCarBomb
entities:
- - uid: 7106
+ - uid: 36050
components:
- type: Transform
- pos: -49.304165,-13.130768
+ pos: 31.363403,16.931152
parent: 2
- - uid: 7111
+- proto: DrinkMartiniGlass
+ entities:
+ - uid: 305
components:
- type: Transform
- pos: -37.561977,-18.146393
+ pos: -41.47658,-28.071823
parent: 2
- - uid: 7170
+ - uid: 6874
components:
- type: Transform
- pos: -50.39401,-13.10733
+ pos: -16.682503,-29.451021
parent: 2
- - uid: 7172
+- proto: DrinkMelonLiquorBottleFull
+ entities:
+ - uid: 14024
components:
- type: Transform
- pos: -49.843227,-13.224518
+ pos: 8.513316,54.77091
parent: 2
-- proto: FoodPlateSmall
+- proto: DrinkMug
entities:
- - uid: 1617
+ - uid: 30255
components:
- type: Transform
- pos: -4.606382,9.860523
+ pos: -69.75948,-8.812053
parent: 2
- - uid: 1618
+ - uid: 30256
components:
- type: Transform
- pos: -4.575132,9.751148
+ pos: -68.954796,-8.374553
parent: 2
- - uid: 1619
+ - uid: 30258
components:
- type: Transform
- pos: -4.540187,9.572009
+ pos: -67.298546,-10.890178
parent: 2
- - uid: 5978
+ - uid: 30259
components:
- type: Transform
- pos: 20.518658,-17.325014
+ pos: -67.08761,-8.351115
parent: 2
- - uid: 5979
+- proto: DrinkMugBlack
+ entities:
+ - uid: 6574
components:
- type: Transform
- pos: 28.628033,-17.254702
+ pos: -9.616484,-29.210121
parent: 2
-- proto: FoodPlateSmallTrash
- entities:
- - uid: 7006
+ - uid: 23334
components:
- type: Transform
- pos: -32.248787,-34.461353
+ pos: -68.34542,-9.30424
parent: 2
- - uid: 7007
+- proto: DrinkMugBlue
+ entities:
+ - uid: 23503
components:
- type: Transform
- pos: -26.717535,-38.316822
+ pos: -68.223656,-9.484647
parent: 2
- - uid: 30092
+- proto: DrinkMugDog
+ entities:
+ - uid: 23534
components:
- type: Transform
- pos: 84.81684,43.70708
+ pos: -67.99386,-10.038615
parent: 2
-- proto: FoodPlateTrash
+- proto: DrinkMugGreen
entities:
- - uid: 7005
+ - uid: 23833
components:
- type: Transform
- pos: -31.487068,-33.769947
+ pos: -68.61886,-9.952678
parent: 2
-- proto: FoodPoppy
+- proto: DrinkMugHeart
entities:
- - uid: 22270
+ - uid: 2394
components:
- type: Transform
- pos: 84.72485,62.573936
+ pos: -9.301994,-28.342934
parent: 2
- - uid: 33597
+ - uid: 24931
components:
- type: Transform
- pos: 94.96543,49.342804
+ pos: -67.861046,-9.14799
parent: 2
-- proto: FoodPSB
+- proto: DrinkMugMetal
entities:
- - uid: 17113
+ - uid: 23951
components:
- type: Transform
- pos: -25.570404,7.6732144
+ pos: -68.60323,-9.413615
parent: 2
- - uid: 18124
+- proto: DrinkMugMoebius
+ entities:
+ - uid: 27574
components:
- type: Transform
- pos: -23.36728,7.6146207
+ pos: -69.017296,-9.39799
parent: 2
- - uid: 18173
+- proto: DrinkMugOne
+ entities:
+ - uid: 1372
components:
- type: Transform
- pos: -21.539154,7.7669644
+ pos: -28.767122,-9.249852
parent: 2
- - uid: 19953
+ - uid: 22533
components:
- type: Transform
- pos: -29.390717,7.591183
+ pos: -68.63448,-9.163615
parent: 2
- - uid: 19955
+- proto: DrinkMugRainbow
+ entities:
+ - uid: 29188
components:
- type: Transform
- pos: -17.203217,7.4857144
+ pos: -67.56417,-10.421428
parent: 2
- - uid: 19987
+- proto: DrinkMugRed
+ entities:
+ - uid: 29977
components:
- type: Transform
- pos: -19.60556,7.790402
+ pos: -69.298546,-10.546428
parent: 2
- - uid: 19988
+- proto: DrinkRootBeerCan
+ entities:
+ - uid: 6902
components:
- type: Transform
- pos: -27.421967,7.509152
+ pos: 49.539467,-21.352646
parent: 2
-- proto: FoodSaladCaesar
+- proto: DrinkRumBottleFull
entities:
- - uid: 30033
+ - uid: 19403
components:
- type: Transform
- pos: 91.517136,17.516869
+ pos: 26.240528,37.993225
parent: 2
-- proto: FoodSnackBoritos
+- proto: DrinkShaker
entities:
- - uid: 1615
+ - uid: 1328
components:
- type: Transform
- pos: -8.3344145,10.589709
+ pos: -35.480297,-26.510668
parent: 2
-- proto: FoodSnackCheesie
- entities:
- - uid: 19430
+ - uid: 2021
components:
- type: Transform
- pos: -78.04973,3.7062955
+ pos: -35.324047,-26.260668
parent: 2
-- proto: FoodSnackChips
- entities:
- - uid: 30235
+ - uid: 2557
components:
- type: Transform
- pos: -53.53988,25.557585
+ pos: -35.636547,-26.182543
parent: 2
-- proto: FoodSnackChowMein
- entities:
- - uid: 7568
+ - uid: 17764
components:
- type: Transform
- pos: -54.263153,-15.580503
+ pos: -44.514233,-28.215862
parent: 2
-- proto: FoodSnackCookieFortune
+- proto: DrinkShinyFlask
entities:
- - uid: 4583
+ - uid: 14183
components:
- type: Transform
- pos: 63.83963,24.614466
+ pos: 6.4358735,55.832787
parent: 2
- - uid: 7542
+- proto: DrinkShotGlass
+ entities:
+ - uid: 3996
components:
- type: Transform
- pos: -52.61176,-14.238689
+ pos: 52.481697,21.912735
parent: 2
- - uid: 7543
+ - uid: 4391
components:
- type: Transform
- pos: -52.33051,-14.414471
+ pos: 59.659588,24.648193
parent: 2
-- proto: FoodSnackPopcorn
- entities:
- - uid: 3520
+ - uid: 4392
components:
- type: Transform
- pos: 38.719772,-21.31327
+ pos: 55.722088,24.710693
parent: 2
- - uid: 3521
+ - uid: 4393
components:
- type: Transform
- pos: 38.407272,-21.266396
+ pos: 55.293804,24.667433
parent: 2
- - uid: 3523
+ - uid: 4394
components:
- type: Transform
- pos: 38.469772,-21.453896
+ pos: 56.261337,10.434139
parent: 2
- - uid: 4504
+ - uid: 4395
components:
- type: Transform
- pos: -10.42578,71.4303
+ pos: 56.136337,10.684139
parent: 2
- - uid: 30678
+ - uid: 4396
components:
- type: Transform
- pos: 14.2474375,71.378006
+ pos: 62.230087,24.68414
parent: 2
- - uid: 30680
+ - uid: 4397
components:
- type: Transform
- pos: 4.4141035,71.492584
+ pos: 64.54259,24.74664
parent: 2
- - uid: 30681
+ - uid: 4398
components:
- type: Transform
- pos: 4.7266035,71.82591
+ pos: 64.12071,24.856014
parent: 2
- - uid: 30691
+ - uid: 4399
components:
- type: Transform
- pos: 4.3516035,71.867584
+ pos: 64.30821,24.512264
parent: 2
- - uid: 30707
+ - uid: 14184
components:
- type: Transform
- pos: 14.5182705,71.471756
+ pos: 7.865423,54.562023
parent: 2
- - uid: 30818
+ - uid: 14221
components:
- type: Transform
- pos: 11.9036875,71.211334
+ pos: 7.662298,54.7339
parent: 2
- - uid: 30874
+ - uid: 14222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.0182705,70.961334
+ pos: 7.521673,54.4839
parent: 2
- - uid: 31066
+ - uid: 14223
components:
- type: Transform
- pos: 14.289104,71.680084
+ pos: 11.740423,54.718273
parent: 2
- - uid: 31077
+ - uid: 14224
components:
- type: Transform
- pos: 14.6849375,71.76341
+ pos: 13.268022,56.144814
parent: 2
-- proto: FoodTartMime
- entities:
- - uid: 19440
+ - uid: 14225
components:
- type: Transform
- pos: -81.668015,-0.14460063
+ pos: 6.4082565,48.569572
parent: 2
-- proto: FoodTinBeansTrash
- entities:
- - uid: 30068
+ - uid: 14226
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.68616,39.444386
+ pos: 6.427923,55.39015
parent: 2
-- proto: FoodTinMRETrash
- entities:
- - uid: 7029
+ - uid: 19368
components:
- type: Transform
- pos: -27.080816,-32.43401
+ pos: 64.0311,10.580681
parent: 2
- - uid: 7030
+ - uid: 22419
components:
- type: Transform
- pos: -27.350348,-31.648853
+ pos: 52.482483,14.687466
parent: 2
- - uid: 30062
+ - uid: 30908
components:
- type: Transform
- pos: 84.31701,38.75821
+ pos: -40.47424,67.01305
parent: 2
-- proto: FoodTinPeachesTrash
- entities:
- - uid: 7031
+ - uid: 30909
components:
- type: Transform
- pos: -33.303474,-35.35198
+ pos: -40.41174,64.99742
parent: 2
- - uid: 30067
+ - uid: 31048
components:
- type: Transform
- pos: 89.94156,37.71867
+ pos: -41.841427,64.38805
parent: 2
-- proto: ForkPlastic
- entities:
- - uid: 7116
+ - uid: 31414
components:
- type: Transform
- pos: -35.518753,-18.324553
+ pos: -44.654858,-28.403362
parent: 2
- - uid: 7120
+ - uid: 31422
components:
- type: Transform
- pos: -35.36641,-18.324553
+ pos: -39.72517,-25.7393
parent: 2
-- proto: FuelDispenser
- entities:
- - uid: 26355
+ - uid: 31425
components:
- type: Transform
- pos: -50.5,32.5
+ pos: -47.50642,-34.15377
parent: 2
-- proto: GasAnalyzer
- entities:
- - uid: 5679
+ - uid: 31426
components:
- type: Transform
- pos: 34.648033,47.247894
+ pos: -47.647045,-33.989708
parent: 2
- - uid: 28004
+ - uid: 31427
components:
- type: Transform
- pos: -66.555725,33.62045
+ pos: -36.60143,-33.23205
parent: 2
-- proto: GasCanisterBrokenBase
- entities:
- - uid: 5374
+ - uid: 31428
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 60.5,50.5
+ pos: -36.82018,-33.38049
parent: 2
- - uid: 7067
+ - uid: 31578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-31.5
+ pos: -37.287735,-34.380333
parent: 2
-- proto: GasFilter
- entities:
- - uid: 1085
+ - uid: 31579
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,15.5
+ pos: -46.25642,-33.614708
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2121
+ - uid: 31596
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,13.5
+ pos: -47.420483,-33.161583
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9180
+ - uid: 31607
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,45.5
+ pos: -45.623608,-27.911175
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9188
+ - uid: 31608
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,45.5
+ pos: -41.811108,-28.286175
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9204
+ - uid: 31610
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,45.5
+ pos: -41.654858,-28.4893
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9295
+ - uid: 31761
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,45.5
+ pos: -39.53767,-25.848675
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9302
+ - uid: 31793
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,45.5
+ pos: -44.6383,64.78648
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9313
+ - uid: 37583
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,45.5
+ pos: -42.09107,-24.406153
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9321
+- proto: DrinkTeacup
+ entities:
+ - uid: 11983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,45.5
+ pos: 14.508596,-36.35669
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasMinerCarbonDioxide
- entities:
- - uid: 9349
+ - uid: 12107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,49.5
+ pos: 16.438284,-36.395752
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasMinerNitrogenStationLarge
- entities:
- - uid: 9344
+ - uid: 12108
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,49.5
+ pos: 14.703909,-36.54419
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasMinerOxygenStationLarge
+- proto: DrinkTeapot
entities:
- - uid: 9345
+ - uid: 19338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,49.5
+ pos: 14.907034,-36.184814
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasMixerFlipped
+- proto: DrinkVacuumFlask
entities:
- - uid: 5042
+ - uid: 6505
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,43.5
+ pos: -10.405086,-45.31634
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5913
+ - uid: 6871
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,43.5
+ pos: -10.155086,-45.21478
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5980
+ - uid: 6872
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,43.5
+ pos: -10.155086,-45.47259
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6001
+ - uid: 14182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,43.5
+ pos: 6.681694,48.803947
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 7250
+ - uid: 14186
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,43.5
+ pos: 13.372372,55.322933
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 7326
+ - uid: 14187
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,43.5
+ pos: 20.809872,59.729183
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23831
+- proto: DrinkVodkaGlass
+ entities:
+ - uid: 6879
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,50.5
+ pos: -8.998836,-45.28509
parent: 2
- - type: GasMixer
- inletTwoConcentration: 0.01999998
- inletOneConcentration: 0.98
- targetPressure: 4500
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasOutletInjector
+- proto: DrinkVodkaMartiniGlass
entities:
- - uid: 2572
+ - uid: 19446
components:
- type: Transform
- pos: 40.5,53.5
+ pos: -36.364998,67.9886
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2573
+ - uid: 30907
components:
- type: Transform
- pos: 44.5,53.5
+ pos: -40.62473,66.15817
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9157
+- proto: DrinkWaterBottleFull
+ entities:
+ - uid: 1509
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,51.5
+ pos: 23.859219,9.6096325
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9158
+ - uid: 2157
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,51.5
+ pos: -2.2029438,13.313014
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9160
+ - uid: 2158
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,51.5
+ pos: -2.097475,13.078639
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9162
+ - uid: 2159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,51.5
+ pos: -5.7420063,12.234889
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9164
+ - uid: 2160
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,51.5
+ pos: -16.607666,16.851425
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9165
+ - uid: 2161
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,51.5
+ pos: -22.659609,-0.2937311
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9166
+ - uid: 2163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,51.5
+ pos: -6.0312343,-7.1332846
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 16543
+ - uid: 2164
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,50.5
+ pos: 23.681442,-7.3176365
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasPassiveGate
- entities:
- - uid: 27144
+ - uid: 2166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-9.5
+ pos: 19.27308,-1.0794085
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
-- proto: GasPassiveVent
- entities:
- - uid: 5652
+ - uid: 6882
components:
- type: Transform
- pos: 41.5,53.5
+ pos: -16.211864,-27.754347
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5675
+ - uid: 6883
components:
- type: Transform
- pos: 43.5,53.5
+ pos: -16.422802,-27.63716
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9156
+ - uid: 6884
components:
- type: Transform
- pos: -49.5,50.5
+ pos: -30.24727,-23.149424
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9159
+ - uid: 6886
components:
- type: Transform
- pos: -39.5,50.5
+ pos: -8.402737,11.953521
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9161
+ - uid: 6888
components:
- type: Transform
- pos: -37.5,50.5
+ pos: 12.2770405,0.7638488
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9163
+ - uid: 6889
components:
- type: Transform
- pos: -47.5,50.5
+ pos: 35.883076,23.934422
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9167
+ - uid: 6890
components:
- type: Transform
- pos: -41.5,50.5
+ pos: 36.058857,23.910984
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9168
+ - uid: 6891
components:
- type: Transform
- pos: -45.5,50.5
+ pos: 42.369057,40.080235
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9169
+ - uid: 6894
components:
- type: Transform
- pos: -43.5,50.5
+ pos: 66.69813,18.38042
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 19718
+ - uid: 6900
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,53.5
+ pos: 59.38189,-3.319458
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasPipeBend
- entities:
- - uid: 2314
+ - uid: 6903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,20.5
+ pos: 42.32843,-21.096277
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4859
+ - uid: 6904
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-5.5
+ pos: 42.492493,-21.049402
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4923
+ - uid: 6905
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,53.5
+ pos: 43.312805,-21.143152
parent: 2
- - uid: 5046
+ - uid: 9087
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,37.5
+ pos: -47.531506,23.29641
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5087
+ - uid: 9088
components:
- type: Transform
- pos: -36.5,43.5
+ pos: -47.26588,23.249535
parent: 2
- - uid: 5932
+ - uid: 9529
components:
- type: Transform
- pos: -43.5,37.5
+ pos: 50.701126,47.789406
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6329
+ - uid: 9530
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,34.5
+ pos: 35.149734,46.89878
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6943
+ - uid: 9531
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,43.5
+ pos: 50.513626,47.94175
parent: 2
- - uid: 9407
+ - uid: 15576
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,51.5
+ pos: 5.2306337,7.556245
parent: 2
- - uid: 9408
+ - uid: 15602
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,51.5
+ pos: -11.415034,28.934925
parent: 2
- - uid: 9409
+ - uid: 15603
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,51.5
+ pos: -11.243159,28.747425
parent: 2
- - uid: 9410
+ - uid: 16548
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,51.5
+ pos: -14.646604,7.7885375
parent: 2
- - uid: 9411
+ - uid: 16628
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,51.5
+ pos: -5.199568,59.644547
parent: 2
- - uid: 9412
+ - uid: 19191
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,51.5
+ pos: -21.016472,33.727036
parent: 2
- - uid: 9413
+ - uid: 19350
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,51.5
+ pos: -17.032097,33.74266
parent: 2
- - uid: 9560
+ - uid: 20021
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,45.5
+ pos: -58.629147,-4.080635
parent: 2
- - uid: 9875
+ - uid: 20022
components:
- type: Transform
- pos: -35.5,45.5
+ pos: -58.42602,-4.268135
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10213
+ - uid: 20023
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,37.5
+ pos: -73.270096,15.050253
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11022
+ - uid: 20024
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -72.5,1.5
+ pos: -78.01136,3.844942
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11529
+ - uid: 20025
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-5.5
+ pos: -78.23011,3.798067
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16595
+ - uid: 22887
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,59.5
+ pos: -20.309834,7.8354125
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18362
+ - uid: 27314
components:
- type: Transform
- pos: 7.5,60.5
+ pos: 5.8279686,15.867445
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18781
+ - uid: 36462
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-4.5
+ pos: 57.691216,84.55502
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19366
+ - uid: 36988
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,21.5
+ pos: -10.505725,55.116646
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19367
+ - uid: 36989
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,18.5
+ pos: -10.201037,49.804146
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19598
+ - uid: 36992
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,60.5
+ pos: -14.404162,50.66352
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19765
+- proto: DrinkWaterCup
+ entities:
+ - uid: 1620
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,62.5
+ pos: -7.3726897,9.759173
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19961
+ - uid: 1637
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-4.5
+ pos: -7.5680027,9.610736
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19978
+ - uid: 3252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-6.5
+ pos: -24.320616,25.523916
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19980
+ - uid: 3372
components:
- type: Transform
- pos: -85.5,21.5
+ pos: -28.406553,25.695791
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20400
+ - uid: 3886
components:
- type: Transform
- pos: -72.5,2.5
+ pos: -24.406553,25.711416
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22162
+ - uid: 4061
components:
- type: Transform
- pos: -83.5,22.5
+ pos: -28.30499,25.602041
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23908
+ - uid: 5440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,29.5
+ pos: 35.471233,30.825348
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23917
+ - uid: 5441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,31.5
+ pos: 35.729046,30.673004
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24278
+ - uid: 5442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,47.5
+ pos: 35.49467,30.544098
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24299
+ - uid: 6637
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,8.5
+ pos: -12.421077,-27.249714
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24300
+ - uid: 6638
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,7.5
+ pos: -12.655452,-27.273151
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24302
+ - uid: 6639
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,9.5
+ pos: -12.549983,-27.437214
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24303
+ - uid: 9036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,17.5
+ pos: -56.348553,30.539604
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24304
+ - uid: 9037
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,15.5
+ pos: -56.661053,30.58648
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24305
+ - uid: 9038
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,15.5
+ pos: -56.504265,30.409359
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24306
+ - uid: 13350
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,16.5
+ pos: -73.455475,14.607613
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24307
+ - uid: 14107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,16.5
+ pos: -73.62735,14.732613
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24312
+ - uid: 15924
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,17.5
+ pos: -2.5945816,48.763306
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24313
+ - uid: 15925
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,19.5
+ pos: -2.3445816,48.73987
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24314
+ - uid: 15926
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,49.5
+ pos: -2.4852066,48.56018
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24320
+ - uid: 16364
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,20.5
+ pos: -18.673878,57.73209
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24321
+ - uid: 16365
components:
- type: Transform
- pos: -9.5,22.5
+ pos: -18.528044,57.898758
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24322
+ - uid: 16366
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,21.5
+ pos: -18.605991,57.426407
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24324
+ - uid: 18450
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,22.5
+ pos: -62.57993,-2.9988308
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24325
+ - uid: 18451
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,22.5
+ pos: -62.36118,-3.2019558
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24413
+ - uid: 18452
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,27.5
+ pos: -62.470554,-1.4050808
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24458
+ - uid: 26731
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,17.5
+ pos: -53.557423,-12.297792
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24459
+ - uid: 27390
components:
- type: Transform
- pos: 0.5,17.5
+ pos: -53.432423,-12.461855
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24494
+ - uid: 36463
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 55.534966,86.43002
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24495
+ - uid: 36601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 100.70225,61.678776
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24496
+ - uid: 36602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 100.89756,61.420963
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24497
+ - uid: 37464
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-13.5
+ pos: -24.484678,33.781727
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24498
+ - uid: 37465
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-8.5
+ pos: -24.36749,33.625477
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24499
+ - uid: 37466
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-9.5
+ pos: -28.375303,33.844227
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24500
+ - uid: 37467
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-10.5
+ pos: -28.312803,33.67235
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24501
+- proto: DrinkWhiskeyBottleFull
+ entities:
+ - uid: 14216
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-11.5
+ pos: 11.267387,54.929844
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24502
+ - uid: 14217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-12.5
+ pos: 13.580522,56.44169
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24503
+- proto: DrinkWhiskeyGlass
+ entities:
+ - uid: 5430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-13.5
+ pos: 49.604153,34.24876
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24504
+ - uid: 14218
components:
- type: Transform
- pos: -39.5,-13.5
+ pos: 13.611772,56.00419
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24505
+- proto: DrinkWineGlass
+ entities:
+ - uid: 343
components:
- type: Transform
- pos: -40.5,-12.5
+ pos: 64.3436,10.877556
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24506
+ - uid: 1091
components:
- type: Transform
- pos: -41.5,-11.5
+ pos: 64.542046,10.599171
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24508
+ - uid: 4386
components:
- type: Transform
- pos: -43.5,-9.5
+ pos: 63.386337,24.731014
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24509
+ - uid: 30031
components:
- type: Transform
- pos: -44.5,-8.5
+ pos: 91.360886,18.469994
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24510
+ - uid: 30035
components:
- type: Transform
- pos: -46.5,-9.5
+ pos: 91.767136,16.985619
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24511
+- proto: Dropper
+ entities:
+ - uid: 2102
components:
- type: Transform
- pos: -45.5,-10.5
+ pos: 20.067673,-1.2282081
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24512
+ - uid: 2103
components:
- type: Transform
- pos: -44.5,-11.5
+ pos: 20.161423,-1.3571143
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24513
+ - uid: 2194
components:
- type: Transform
- pos: -43.5,-12.5
+ pos: 15.63699,-10.653372
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24514
+ - uid: 2195
components:
- type: Transform
- pos: -42.5,-13.5
+ pos: 15.519802,-10.536184
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24592
+ - uid: 5281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-12.5
+ pos: 26.24058,29.633816
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24593
+ - uid: 5282
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-13.5
+ pos: 42.38003,40.259502
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24594
+ - uid: 8881
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-14.5
+ pos: 12.421215,-0.5865078
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24597
+ - uid: 32953
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-13.5
+ pos: 66.57227,81.797455
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24598
+ - uid: 36122
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-14.5
+ pos: 66.74415,81.50058
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24599
+ - uid: 36124
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 73.24415,82.53183
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24601
+ - uid: 36139
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,-15.5
+ pos: 73.94727,85.31308
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24603
+ - uid: 36827
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,-14.5
+ pos: 66.4365,72.72484
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24604
+ - uid: 36865
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-13.5
+ pos: 71.553635,72.590164
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24621
+- proto: ElectricGuitarInstrument
+ entities:
+ - uid: 37618
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 46.5,-14.5
+ pos: -40.091717,-31.142677
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24622
+- proto: EmergencyLight
+ entities:
+ - uid: 216
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24623
+ - uid: 750
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 48.5,-12.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24638
- components:
- - type: Transform
- pos: 51.5,4.5
+ pos: -37.5,-27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24639
+ - uid: 1210
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,4.5
+ pos: 35.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24640
+ - uid: 1765
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 48.5,3.5
+ pos: -45.5,-35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24641
+ - uid: 1766
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24642
+ - uid: 2848
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-15.5
+ pos: -68.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24643
+ - uid: 3033
components:
- type: Transform
- pos: 39.5,-15.5
+ pos: -96.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24644
+ - uid: 3061
components:
- type: Transform
- pos: 38.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24645
+ - uid: 3138
components:
- type: Transform
- pos: 38.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24646
+ - uid: 3146
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 38.5,-18.5
+ pos: -55.5,-25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24919
+ - uid: 3850
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,37.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25026
+ - uid: 4130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25027
+ - uid: 4378
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25377
+ - uid: 4575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,-23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25378
+ - uid: 4892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25434
+ - uid: 5703
components:
- type: Transform
- pos: 40.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -106.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25435
+ - uid: 6285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25466
+ - uid: 7268
components:
- type: Transform
- pos: 43.5,33.5
+ pos: -106.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25483
+ - uid: 7886
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.5,25.5
+ pos: -96.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25486
+ - uid: 9152
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 35.5,24.5
+ pos: -18.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25624
+ - uid: 10022
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 32.5,43.5
+ pos: 35.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25627
+ - uid: 10324
components:
- type: Transform
- pos: 34.5,44.5
+ pos: -3.5,55.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25628
+ - uid: 11400
components:
- type: Transform
- pos: 35.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25629
+ - uid: 11407
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25630
+ - uid: 11471
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,33.5
+ pos: 69.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25671
+ - uid: 11472
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 54.5,46.5
+ pos: 69.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25673
+ - uid: 12325
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25674
+ - uid: 14055
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 54.5,50.5
+ pos: 17.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25675
+ - uid: 14092
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 46.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25676
+ - uid: 14278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25677
+ - uid: 15143
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,54.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25678
+ - uid: 15147
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,53.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25731
+ - uid: 15149
components:
- type: Transform
- pos: 7.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25732
+ - uid: 15151
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,39.5
+ pos: 38.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25734
+ - uid: 15171
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,36.5
+ pos: 36.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25736
+ - uid: 15174
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,37.5
+ pos: 36.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25737
+ - uid: 15184
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25796
+ - uid: 15186
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25820
+ - uid: 15187
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25822
+ - uid: 15189
components:
- type: Transform
- pos: 9.5,49.5
+ pos: -14.5,-33.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25823
+ - uid: 15199
components:
- type: Transform
- pos: 10.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25824
+ - uid: 15216
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,49.5
+ pos: -8.5,-40.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25825
+ - uid: 15218
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25905
+ - uid: 15220
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,29.5
+ pos: -77.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25906
+ - uid: 15221
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,30.5
+ pos: -81.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25907
+ - uid: 15225
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,29.5
+ pos: -73.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25925
+ - uid: 15236
components:
- type: Transform
- pos: -13.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26011
+ - uid: 15241
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,37.5
+ pos: -44.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26012
+ - uid: 15639
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,36.5
+ pos: -49.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26062
+ - uid: 15718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -62.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26063
+ - uid: 15719
components:
- type: Transform
- pos: -30.5,29.5
+ pos: -61.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26070
+ - uid: 15954
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,30.5
+ pos: 64.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26098
+ - uid: 15955
components:
- type: Transform
- pos: -6.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26111
+ - uid: 15956
components:
- type: Transform
- pos: -7.5,-2.5
+ pos: 49.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26119
+ - uid: 15957
components:
- type: Transform
- pos: -4.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26120
+ - uid: 15998
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26134
+ - uid: 17803
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,9.5
+ pos: -32.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26135
+ - uid: 17841
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,9.5
+ pos: -18.5,-31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26236
+ - uid: 17842
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,-28.5
+ pos: -3.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26307
+ - uid: 17844
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,13.5
+ pos: -23.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26356
+ - uid: 18187
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-28.5
+ pos: -4.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26780
+ - uid: 18527
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,-8.5
+ pos: 29.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26863
+ - uid: 20034
components:
- type: Transform
- pos: 0.5,74.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26864
+ - uid: 21933
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,74.5
+ pos: -51.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26923
+ - uid: 22059
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26933
+ - uid: 22083
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26936
+ - uid: 22534
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26985
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-11.5
+ pos: -79.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26986
+ - uid: 23012
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27036
+ - uid: 23013
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-29.5
+ pos: -38.5,56.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27037
+ - uid: 23069
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -59.5,-27.5
+ pos: -0.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27048
+ - uid: 23099
components:
- type: Transform
- pos: -53.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27049
+ - uid: 23118
components:
- type: Transform
- pos: -52.5,-29.5
+ pos: -16.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27057
+ - uid: 23125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-32.5
+ pos: -22.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27147
+ - uid: 23131
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-7.5
+ pos: -18.5,22.5
parent: 2
- - uid: 27148
+ - uid: 25947
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-7.5
+ pos: -24.5,39.5
parent: 2
- - uid: 27175
+ - uid: 28796
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,12.5
+ pos: -9.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27179
+ - uid: 28798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,10.5
+ pos: -18.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27180
+ - uid: 28799
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,12.5
+ pos: -28.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27267
+ - uid: 28800
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-5.5
+ pos: -33.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27278
+ - uid: 28804
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-4.5
+ pos: -28.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27320
+ - uid: 28808
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,14.5
+ pos: -23.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27321
+ - uid: 28809
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27325
+ - uid: 28810
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27327
+ - uid: 28812
components:
- type: Transform
- pos: 21.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27332
+ - uid: 28814
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,12.5
+ pos: 2.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27333
+ - uid: 28815
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,13.5
+ pos: 2.5,34.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27343
+ - uid: 28819
components:
- type: Transform
- pos: 18.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,71.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27344
+ - uid: 28820
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,16.5
+ pos: 5.5,78.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27345
+ - uid: 28821
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,9.5
+ pos: -2.5,78.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27371
+ - uid: 28830
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 35.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,15.5
+ pos: -10.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27420
+ - uid: 28831
components:
- type: Transform
- pos: 34.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,67.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27555
+ - uid: 28832
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,-34.5
+ pos: -17.5,67.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27556
+ - uid: 28833
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,-34.5
+ pos: -21.5,67.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27737
+ - uid: 28834
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 76.5,-15.5
+ pos: -25.5,67.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27738
+ - uid: 28836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-17.5
+ pos: -29.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28188
+ - uid: 28839
components:
- type: Transform
- pos: -19.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,63.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28189
+ - uid: 28841
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,-34.5
+ pos: -2.5,66.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28190
+ - uid: 28842
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -19.5,-34.5
+ pos: -8.5,66.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28191
+ - uid: 28843
components:
- type: Transform
- pos: -18.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,56.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28192
+ - uid: 28844
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-35.5
+ pos: -12.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28193
+ - uid: 28848
components:
- type: Transform
- pos: -20.5,-34.5
+ pos: -5.5,61.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28278
+ - uid: 28850
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-25.5
+ pos: 5.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28297
+ - uid: 28851
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-29.5
+ pos: 16.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28305
+ - uid: 28852
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28564
+ - uid: 28858
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28706
+ - uid: 28859
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28775
+ - uid: 28861
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-25.5
+ pos: 13.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28828
+ - uid: 28862
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -52.5,44.5
+ pos: 10.5,45.5
parent: 2
- - uid: 28829
+ - uid: 28863
components:
- type: Transform
- pos: -52.5,50.5
+ pos: 15.5,43.5
parent: 2
- - uid: 30500
+ - uid: 28864
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 30517
+ - uid: 28865
components:
- type: Transform
- pos: -32.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 30518
+ - uid: 28866
components:
- type: Transform
- pos: -33.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,35.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 30525
+ - uid: 28867
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 30768
+ - uid: 28868
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31753
+ - uid: 28869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-41.5
+ pos: 23.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31754
+ - uid: 28870
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-43.5
+ pos: 30.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31755
+ - uid: 28871
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,-41.5
+ pos: 34.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31756
+ - uid: 28872
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-43.5
+ pos: 33.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34679
+ - uid: 28873
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.5,-7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36073
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,25.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
-- proto: GasPipeFourway
- entities:
- - uid: 6380
- components:
- - type: Transform
- pos: -26.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6517
- components:
- - type: Transform
- pos: -28.5,28.5
+ pos: 31.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15633
+ - uid: 28874
components:
- type: Transform
- pos: 31.5,5.5
+ pos: 32.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18217
+ - uid: 28875
components:
- type: Transform
- pos: 0.5,60.5
+ pos: 38.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19939
+ - uid: 28876
components:
- type: Transform
- pos: -53.5,12.5
+ pos: 46.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23948
+ - uid: 28879
components:
- type: Transform
- pos: -71.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,56.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23953
+ - uid: 28880
components:
- type: Transform
- pos: -83.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24026
+ - uid: 28881
components:
- type: Transform
- pos: -85.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24047
+ - uid: 28882
components:
- type: Transform
- pos: -73.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24074
+ - uid: 28883
components:
- type: Transform
- pos: 19.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24323
+ - uid: 28888
components:
- type: Transform
- pos: -0.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24697
+ - uid: 28889
components:
- type: Transform
- pos: 30.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24720
+ - uid: 28890
components:
- type: Transform
- pos: 2.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24731
+ - uid: 28893
components:
- type: Transform
- pos: 0.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24737
+ - uid: 28896
components:
- type: Transform
- pos: 31.5,-2.5
+ pos: 36.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24754
+ - uid: 28897
components:
- type: Transform
- pos: -53.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,34.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24853
+ - uid: 28898
components:
- type: Transform
- pos: 0.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24869
+ - uid: 28899
components:
- type: Transform
- pos: 2.5,1.5
+ pos: 29.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24909
+ - uid: 28905
components:
- type: Transform
- pos: -11.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24927
+ - uid: 28906
components:
- type: Transform
- pos: -10.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25042
+ - uid: 28922
components:
- type: Transform
- pos: 8.5,2.5
+ pos: -35.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25043
+ - uid: 28923
components:
- type: Transform
- pos: 10.5,1.5
+ pos: -43.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25437
+ - uid: 28924
components:
- type: Transform
- pos: 39.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25571
+ - uid: 28931
components:
- type: Transform
- pos: -55.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25744
+ - uid: 28932
components:
- type: Transform
- pos: 19.5,45.5
+ pos: -31.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25761
+ - uid: 28933
components:
- type: Transform
- pos: 17.5,46.5
+ pos: -22.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26060
+ - uid: 28935
components:
- type: Transform
- pos: -24.5,28.5
+ pos: -3.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26069
+ - uid: 28936
components:
- type: Transform
- pos: -13.5,41.5
+ pos: 10.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26833
+ - uid: 28937
components:
- type: Transform
- pos: -27.5,-14.5
+ pos: 6.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26848
+ - uid: 28938
components:
- type: Transform
- pos: -32.5,-16.5
+ pos: 13.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26851
+ - uid: 28939
components:
- type: Transform
- pos: 36.5,-16.5
+ pos: 19.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26852
+ - uid: 28948
components:
- type: Transform
- pos: 34.5,-14.5
+ pos: 20.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26857
+ - uid: 28954
components:
- type: Transform
- pos: 25.5,7.5
+ pos: 31.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26859
+ - uid: 28962
components:
- type: Transform
- pos: 13.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26860
+ - uid: 28976
components:
- type: Transform
- pos: 15.5,-21.5
+ pos: 27.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26980
+ - uid: 28983
components:
- type: Transform
- pos: -59.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26981
+ - uid: 28989
components:
- type: Transform
- pos: -58.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27330
+ - uid: 28990
components:
- type: Transform
- pos: 18.5,12.5
+ pos: -9.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 29039
+ - uid: 28991
components:
- type: Transform
- pos: -47.5,44.5
+ pos: -18.5,-18.5
parent: 2
-- proto: GasPipeStraight
- entities:
- - uid: 93
+ - uid: 28992
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,22.5
+ pos: -28.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 404
+ - uid: 28993
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 434
+ - uid: 29000
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,-5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 584
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,30.5
+ pos: -8.5,-28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 604
+ - uid: 29002
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1109
+ - uid: 29003
components:
- type: Transform
- pos: -21.5,-24.5
+ pos: -16.5,-23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1252
+ - uid: 29005
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,23.5
+ pos: -2.5,-27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1499
+ - uid: 29008
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -61.5,-14.5
+ pos: -4.5,-38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1500
+ - uid: 29009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1772
+ - uid: 29014
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-14.5
+ pos: 8.5,-50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2146
+ - uid: 29015
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-27.5
+ pos: -5.5,-50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2150
+ - uid: 29020
components:
- type: Transform
- pos: -32.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2187
+ - uid: 29035
components:
- type: Transform
- pos: -37.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2222
+ - uid: 29047
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,31.5
+ pos: -62.5,-35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2223
+ - uid: 29050
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2226
+ - uid: 29051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -65.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2238
+ - uid: 29055
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2248
+ - uid: 29059
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,20.5
+ pos: -68.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2257
+ - uid: 29063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,50.5
+ pos: -81.5,4.5
parent: 2
- - uid: 2297
+ - uid: 29064
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-6.5
+ pos: -75.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2356
+ - uid: 29066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,24.5
+ pos: -70.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2377
+ - uid: 29067
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-5.5
+ pos: -71.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2398
+ - uid: 29077
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,35.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2453
+ - uid: 29078
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -89.5,-5.5
+ pos: -53.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2465
+ - uid: 29080
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,24.5
+ pos: -62.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2472
+ - uid: 29081
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -54.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2530
+ - uid: 29092
components:
- type: Transform
- pos: 44.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,37.5
parent: 2
- - uid: 2531
+ - uid: 29093
components:
- type: Transform
- pos: 40.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,33.5
parent: 2
- - uid: 2535
+ - uid: 29096
components:
- type: Transform
- pos: 41.5,48.5
+ pos: -44.5,27.5
parent: 2
- - uid: 2538
+ - uid: 29097
components:
- type: Transform
- pos: 43.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,29.5
parent: 2
- - uid: 2582
+ - uid: 29098
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2584
+ - uid: 29099
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2707
+ - uid: 29101
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,24.5
+ pos: -32.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2762
+ - uid: 29102
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,28.5
+ pos: -30.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3363
+ - uid: 29103
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3571
+ - uid: 29104
components:
- type: Transform
- pos: 21.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3652
+ - uid: 29105
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -59.5,-16.5
+ pos: -26.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3678
+ - uid: 29106
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3691
- components:
- - type: Transform
- pos: -43.5,36.5
+ pos: -27.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3699
+ - uid: 29107
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,33.5
parent: 2
- - uid: 3705
+ - uid: 29108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,33.5
parent: 2
- - uid: 3713
+ - uid: 29109
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -50.5,46.5
- parent: 2
- - uid: 3749
- components:
- - type: Transform
- pos: -53.5,30.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3757
- components:
- - type: Transform
- pos: -53.5,31.5
+ pos: -18.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4036
+ - uid: 29110
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 40.5,49.5
+ pos: -20.5,24.5
parent: 2
- - uid: 4054
+ - uid: 29111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,26.5
parent: 2
- - uid: 4055
+ - uid: 29114
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,34.5
parent: 2
- - uid: 4272
+ - uid: 29115
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -87.5,-5.5
+ pos: -10.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4280
+ - uid: 29116
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -84.5,-5.5
+ pos: -4.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4283
+ - uid: 29124
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4286
+ - uid: 29133
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,23.5
+ pos: -9.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4348
+ - uid: 29135
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4424
+ - uid: 29136
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -60.5,-16.5
+ pos: -63.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4847
+ - uid: 29137
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -98.5,-6.5
+ pos: -57.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4869
+ - uid: 29138
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -65.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4876
+ - uid: 29139
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -96.5,-6.5
+ pos: -53.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4877
+ - uid: 29140
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -98.5,-8.5
+ pos: -47.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4880
+ - uid: 29141
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -97.5,-8.5
+ pos: -47.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5048
+ - uid: 29142
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,43.5
+ pos: -47.5,18.5
parent: 2
- - uid: 5112
+ - uid: 29144
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,40.5
+ pos: -58.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5200
+ - uid: 29145
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5346
+ - uid: 29146
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 51.5,49.5
+ pos: -63.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5380
+ - uid: 29148
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5535
+ - uid: 29149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5539
+ - uid: 29150
components:
- type: Transform
- pos: 41.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,6.5
parent: 2
- - uid: 5544
+ - uid: 29151
components:
- type: Transform
- pos: 41.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,7.5
parent: 2
- - uid: 5546
+ - uid: 29160
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -91.5,-4.5
+ pos: -83.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5550
+ - uid: 29161
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,-4.5
+ pos: -83.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5551
+ - uid: 29195
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,51.5
+ pos: 54.5,4.5
parent: 2
- - uid: 5556
+ - uid: 29197
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,52.5
+ pos: -59.5,-6.5
parent: 2
- - uid: 5557
+ - uid: 29203
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -93.5,-4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,50.5
+ pos: -49.5,-1.5
parent: 2
- - uid: 5559
+ - uid: 29207
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 44.5,49.5
+ pos: -57.5,-12.5
parent: 2
- - uid: 5573
+ - uid: 29209
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,-4.5
+ pos: -52.5,-31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5645
+ - uid: 29215
components:
- type: Transform
- pos: 43.5,49.5
+ pos: 30.5,-23.5
parent: 2
- - uid: 5647
+ - uid: 29216
components:
- type: Transform
- pos: 43.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-32.5
parent: 2
- - uid: 5648
+ - uid: 29218
components:
- type: Transform
- pos: 41.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-27.5
parent: 2
- - uid: 5654
+ - uid: 29219
components:
- type: Transform
- pos: 41.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-28.5
parent: 2
- - uid: 5656
+ - uid: 29222
components:
- type: Transform
- pos: 43.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-34.5
parent: 2
- - uid: 5659
+ - uid: 29227
components:
- type: Transform
- pos: 43.5,51.5
+ pos: 73.5,-20.5
parent: 2
- - uid: 5663
+ - uid: 29228
components:
- type: Transform
- pos: -46.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5916
+ - uid: 29232
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -45.5,37.5
+ pos: 78.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5921
+ - uid: 29233
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5924
+ - uid: 29234
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,41.5
+ pos: 69.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6107
+ - uid: 29236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-1.5
+ pos: 74.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6216
+ - uid: 29239
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,-27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6217
+ - uid: 29241
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6218
+ - uid: 29242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6219
+ - uid: 29243
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-4.5
+ pos: 55.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6220
+ - uid: 29244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,-5.5
+ pos: 65.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6221
+ - uid: 29246
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6222
+ - uid: 29251
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-5.5
+ pos: 54.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6325
+ - uid: 29254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6326
+ - uid: 29258
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6330
+ - uid: 29424
components:
- type: Transform
- pos: -17.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6378
+ - uid: 32448
components:
- type: Transform
- pos: -17.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6400
+ - uid: 36747
components:
- type: Transform
- pos: -46.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6688
+ - uid: 37222
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,32.5
+ pos: -75.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6690
+ - uid: 38115
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-41.5
+ pos: 7.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6712
+ - uid: 38116
components:
- type: Transform
- pos: -53.5,32.5
+ pos: 21.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6784
+ - uid: 38119
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,-43.5
+ pos: 28.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6785
+- proto: EmergencyMedipen
+ entities:
+ - uid: 1340
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 13.507729,11.644828
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6786
+ - uid: 2118
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-43.5
+ pos: -3.3698382,-11.567606
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6787
+ - uid: 2119
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-43.5
+ pos: -3.5456195,-11.298075
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6794
+ - uid: 5728
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: 13.304604,11.668265
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6937
+- proto: EmergencyRollerBedSpawnFolded
+ entities:
+ - uid: 1150
components:
- type: Transform
- pos: -45.5,-29.5
+ pos: 11.307585,12.587807
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6965
+ - uid: 1434
components:
- type: Transform
- pos: -55.5,32.5
+ pos: 11.682585,12.517494
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7266
+ - uid: 2282
components:
- type: Transform
- pos: -46.5,-28.5
+ pos: -2.9590409,-32.09426
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7429
+ - uid: 7094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-16.5
+ pos: -2.386812,-32.11878
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7511
+ - uid: 18043
components:
- type: Transform
- pos: -46.5,-24.5
+ pos: -44.66943,59.861732
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7512
+ - uid: 18044
components:
- type: Transform
- pos: -46.5,-26.5
+ pos: -36.34338,34.50851
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7513
+ - uid: 22380
components:
- type: Transform
- pos: -46.5,-25.5
+ pos: -44.26318,59.869545
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7558
+- proto: Emitter
+ entities:
+ - uid: 30216
components:
- type: Transform
- pos: -45.5,-30.5
+ anchored: False
+ rot: 2.748893571891069 rad
+ pos: 95.860405,-23.17348
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8384
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
+ - uid: 32166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,7.5
+ anchored: False
+ rot: 1.5708026448872427 rad
+ pos: 105.10977,-23.423922
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8385
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
+ - uid: 32179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,7.5
+ anchored: False
+ rot: -2.899516823888813 rad
+ pos: 108.5661,-12.623965
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8386
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
+ - uid: 32209
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,22.5
+ pos: 97.5,-10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8387
+- proto: EncryptionKeyBinary
+ entities:
+ - uid: 20837
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8388
+ parent: 20835
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyCargo
+ entities:
+ - uid: 22343
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8389
+ parent: 22341
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyCommand
+ entities:
+ - uid: 34354
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8390
+ parent: 30978
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyCommon
+ entities:
+ - uid: 21067
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -97.5,9.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8391
+ parent: 20951
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyEngineering
+ entities:
+ - uid: 19802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,7.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8392
+ parent: 19801
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyMedical
+ entities:
+ - uid: 19626
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8393
+ parent: 19516
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyScience
+ entities:
+ - uid: 20836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8414
+ parent: 20835
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeySecurity
+ entities:
+ - uid: 20833
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,22.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8421
+ parent: 20200
+ - type: Physics
+ canCollide: False
+- proto: EncryptionKeyService
+ entities:
+ - uid: 19917
components:
- type: Transform
- pos: -83.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8422
+ parent: 19881
+ - type: Physics
+ canCollide: False
+- proto: ExosuitFabricator
+ entities:
+ - uid: 30577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,22.5
+ pos: 46.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8425
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,22.5
+ pos: -17.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8426
+ - uid: 1119
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -91.5,22.5
+ pos: 8.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8451
+ - uid: 2106
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,22.5
+ pos: -1.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8472
+ - uid: 2108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8476
+ - uid: 2111
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -86.5,21.5
+ pos: 17.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8648
+ - uid: 2113
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,21.5
+ pos: 22.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8656
+ - uid: 2115
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -99.5,9.5
+ pos: 14.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8725
+ - uid: 2835
components:
- type: Transform
- pos: -43.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8845
+ - uid: 5687
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -39.5,61.5
+ pos: 43.5,35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9170
+ - uid: 5688
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -47.5,46.5
+ pos: 38.5,31.5
parent: 2
- - uid: 9171
+ - uid: 5689
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -46.5,46.5
+ pos: 33.5,27.5
parent: 2
- - uid: 9176
+ - uid: 5690
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -45.5,46.5
+ pos: 26.5,22.5
parent: 2
- - uid: 9177
+ - uid: 5691
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,46.5
+ pos: 41.5,24.5
parent: 2
- - uid: 9182
+ - uid: 5692
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -39.5,46.5
+ pos: 61.5,51.5
parent: 2
- - uid: 9190
+ - uid: 6136
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,46.5
+ pos: 37.5,-20.5
parent: 2
- - uid: 9206
+ - uid: 6956
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,46.5
+ pos: -11.5,-24.5
parent: 2
- - uid: 9207
+ - uid: 6957
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,46.5
+ pos: -23.5,-21.5
parent: 2
- - uid: 9208
+ - uid: 13233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-32.5
parent: 2
- - uid: 9209
+ - uid: 14203
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,50.5
parent: 2
- - uid: 9293
+ - uid: 14204
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,42.5
parent: 2
- - uid: 9358
+ - uid: 16029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,47.5
+ pos: -16.5,47.5
parent: 2
- - uid: 9359
+ - uid: 16481
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,48.5
+ pos: -3.5,56.5
parent: 2
- - uid: 9360
+ - uid: 18084
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,49.5
+ pos: -12.5,67.5
parent: 2
- - uid: 9361
+ - uid: 18094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,49.5
+ pos: -3.5,24.5
parent: 2
- - uid: 9362
+ - uid: 22626
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,56.5
parent: 2
- - uid: 9363
+ - uid: 28787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-30.5
parent: 2
- - uid: 9364
+ - uid: 30963
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-3.5
parent: 2
- - uid: 9365
+ - uid: 36902
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,48.5
+ pos: -23.5,26.5
parent: 2
- - uid: 9366
+ - uid: 37225
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,49.5
+ pos: 16.5,60.5
parent: 2
- - uid: 9367
+- proto: FaxMachineBase
+ entities:
+ - uid: 1019
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,49.5
+ pos: 18.5,-5.5
parent: 2
- - uid: 9368
+ - type: FaxMachine
+ name: Chemistry
+ - uid: 3279
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,48.5
+ pos: 4.5,29.5
parent: 2
- - uid: 9369
+ - type: FaxMachine
+ name: HoP
+ - uid: 3314
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,47.5
+ pos: -59.5,-4.5
parent: 2
- - uid: 9370
+ - type: FaxMachine
+ name: Botany
+ - uid: 5484
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,47.5
+ pos: 36.5,23.5
parent: 2
- - uid: 9371
+ - uid: 5597
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,48.5
+ pos: 52.5,28.5
parent: 2
- - uid: 9372
+ - type: FaxMachine
+ name: Library
+ - uid: 6535
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,49.5
+ pos: -6.5,-25.5
parent: 2
- - uid: 9373
+ - type: FaxMachine
+ name: Mailroom
+ - uid: 7118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,49.5
+ pos: -14.5,-25.5
parent: 2
- - uid: 9374
+ - type: FaxMachine
+ name: Logistics
+ - uid: 9101
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,48.5
+ pos: -49.5,33.5
parent: 2
- - uid: 9375
+ - type: FaxMachine
+ name: Atmospherics
+ - uid: 11666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,47.5
+ pos: -50.5,-26.5
parent: 2
- - uid: 9376
+ - type: FaxMachine
+ name: Bar
+ - uid: 12415
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,47.5
+ pos: -52.5,-12.5
parent: 2
- - uid: 9377
+ - uid: 13321
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,48.5
+ pos: -73.5,16.5
parent: 2
- - uid: 9378
+ - type: FaxMachine
+ name: Zoo
+ - uid: 15601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,49.5
+ pos: -9.5,28.5
parent: 2
- - uid: 9379
+ - type: FaxMachine
+ name: Security
+ - uid: 15916
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,47.5
+ pos: -13.5,59.5
parent: 2
- - uid: 9380
+ - type: FaxMachine
+ name: Courtroom
+ - uid: 16580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,48.5
+ pos: -19.5,-7.5
parent: 2
- - uid: 9381
+ - type: FaxMachine
+ name: Detective
+ - uid: 16625
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,49.5
+ pos: -6.5,59.5
parent: 2
- - uid: 9382
+ - type: FaxMachine
+ name: Lawyer
+ - uid: 21807
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,50.5
+ pos: -18.5,51.5
parent: 2
- - uid: 9383
+ - type: FaxMachine
+ name: Warden's Office
+ - uid: 22253
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,50.5
+ pos: -40.5,12.5
parent: 2
- - uid: 9384
+ - type: FaxMachine
+ name: Janitorial Closet
+ - uid: 22265
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,49.5
+ pos: -6.5,-42.5
parent: 2
- - uid: 9385
+ - type: FaxMachine
+ name: Salvage
+ - uid: 23284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,48.5
+ pos: -27.5,-23.5
parent: 2
- - uid: 9386
+ - type: FaxMachine
+ name: Head of Logistics
+ - uid: 23440
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,47.5
+ pos: -3.5,-31.5
parent: 2
- - uid: 9387
+ - type: FaxMachine
+ name: Arrivals
+ - uid: 23705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,47.5
+ pos: 5.5,7.5
parent: 2
- - uid: 9388
+ - type: FaxMachine
+ name: Hospital
+ - uid: 29698
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,48.5
+ pos: -77.5,3.5
parent: 2
- - uid: 9389
+ - type: FaxMachine
+ name: Honkroom
+ - uid: 29699
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,49.5
+ pos: -57.5,13.5
parent: 2
- - uid: 9390
+ - type: FaxMachine
+ name: Chief Engineer
+ - uid: 29703
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,50.5
+ pos: -8.5,33.5
parent: 2
- - uid: 9391
+ - type: FaxMachine
+ name: Head of Security
+ - uid: 29720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,50.5
+ pos: 46.5,33.5
parent: 2
- - uid: 9392
+ - type: FaxMachine
+ name: Forensic Mantis
+ - uid: 30756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,49.5
+ pos: 46.5,30.5
parent: 2
- - uid: 9393
+ - type: FaxMachine
+ name: MG
+ - uid: 38845
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,48.5
+ pos: -11.5,-11.5
parent: 2
- - uid: 9394
+ - type: FaxMachine
+ name: Chief Medical Officer
+ - uid: 38876
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,47.5
+ pos: -16.5,61.5
parent: 2
- - uid: 9395
+ - type: FaxMachine
+ name: Psych Ward
+- proto: FaxMachineCaptain
+ entities:
+ - uid: 15124
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,47.5
+ pos: 29.5,52.5
parent: 2
- - uid: 9396
+ - type: FaxMachine
+ name: Captain
+- proto: FenceMetalBroken
+ entities:
+ - uid: 4521
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,67.5
parent: 2
- - uid: 9397
+ - uid: 5386
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,48.5
parent: 2
- - uid: 9398
+ - uid: 29935
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,36.5
parent: 2
- - uid: 9399
+ - uid: 34816
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,36.5
parent: 2
- - uid: 9400
+- proto: FenceMetalStraight
+ entities:
+ - uid: 26724
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,67.5
parent: 2
- - uid: 9401
+ - uid: 29350
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,67.5
parent: 2
- - uid: 9402
+ - uid: 29398
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,67.5
parent: 2
- - uid: 9403
+ - uid: 29936
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,36.5
parent: 2
- - uid: 9404
+ - uid: 32982
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,48.5
+ pos: 78.5,74.5
parent: 2
- - uid: 9405
+ - uid: 34827
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,36.5
parent: 2
- - uid: 9406
+- proto: filingCabinetDrawer
+ entities:
+ - uid: 14178
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,50.5
+ pos: 10.5,43.5
parent: 2
- - uid: 9497
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 623
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,45.5
+ pos: -6.5,-10.5
parent: 2
- - uid: 9498
+ - uid: 670
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,45.5
+ pos: -17.5,-11.5
parent: 2
- - uid: 9499
+ - uid: 698
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,45.5
+ pos: -23.5,-9.5
parent: 2
- - uid: 9500
+ - uid: 1128
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,45.5
+ pos: -23.5,-10.5
parent: 2
- - uid: 9501
+ - uid: 5485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,45.5
+ pos: 30.5,26.5
parent: 2
- - uid: 9502
+ - uid: 6612
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,45.5
+ pos: -30.5,-21.5
parent: 2
- - uid: 9503
+ - uid: 6613
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,45.5
+ pos: -24.5,-21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9519
+ - uid: 9149
components:
- type: Transform
- pos: -42.5,36.5
+ pos: 50.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9520
+ - uid: 12954
components:
- type: Transform
- pos: -42.5,35.5
+ pos: 50.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9522
+ - uid: 15715
components:
- type: Transform
- pos: -42.5,33.5
+ pos: -16.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9523
+ - uid: 15751
components:
- type: Transform
- pos: -42.5,32.5
+ pos: -6.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9524
+ - uid: 15752
components:
- type: Transform
- pos: -42.5,31.5
+ pos: -5.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9526
+ - uid: 36288
components:
- type: Transform
- pos: -43.5,33.5
+ pos: 102.5,58.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9532
+- proto: filingCabinetRandom
+ entities:
+ - uid: 16279
components:
- type: Transform
- pos: -32.5,23.5
+ pos: 9.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9544
+ - uid: 26432
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,47.5
+ pos: 103.5,58.5
parent: 2
- - uid: 9567
+- proto: FireAlarm
+ entities:
+ - uid: 11
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,45.5
+ pos: 3.5,63.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9584
+ - type: DeviceList
+ devices:
+ - 4642
+ - 4212
+ - 5244
+ - 7752
+ - 18373
+ - 18374
+ - 18375
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 175
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -51.5,48.5
+ pos: -51.5,-8.5
parent: 2
- - uid: 9700
+ - type: DeviceList
+ devices:
+ - 28395
+ - 27006
+ - 27007
+ - 3086
+ - 3092
+ - 1691
+ - 28394
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 1061
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,42.5
+ pos: -1.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9876
+ - type: DeviceList
+ devices:
+ - 214
+ - 221
+ - 218
+ - 384
+ - 390
+ - 68
+ - 65
+ - 66
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 1277
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,-36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10214
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2655
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10215
+ - type: DeviceList
+ devices:
+ - 28402
+ - 4456
+ - 20795
+ - 1729
+ - 16553
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2712
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10220
+ - type: DeviceList
+ devices:
+ - 2606
+ - 2208
+ - 14015
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4292
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,38.5
+ pos: -54.5,-30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10330
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10331
+ - type: DeviceList
+ devices:
+ - 3359
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 7606
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,41.5
+ pos: -50.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10336
+ - type: DeviceList
+ devices:
+ - 1691
+ - 27252
+ - 28110
+ - 7190
+ - 7192
+ - 5194
+ - 3092
+ - 3086
+ - 28395
+ - 28396
+ - 3321
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 7608
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10337
+ - type: DeviceList
+ devices:
+ - 15994
+ - 17907
+ - 18241
+ - 17836
+ - 12414
+ - 7529
+ - 7530
+ - 6945
+ - 28367
+ - 3321
+ - 28396
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 8994
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,44.5
+ pos: 9.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10623
+ - type: DeviceList
+ devices:
+ - 13917
+ - 13918
+ - 27453
+ - 27454
+ - 2636
+ - 2634
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 11474
components:
- type: Transform
- pos: -21.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 10655
+ - type: DeviceList
+ devices:
+ - 7477
+ - 17766
+ - 3409
+ - 4019
+ - 28397
+ - 28396
+ - 28402
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 12403
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,-6.5
+ pos: -51.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11305
+ - type: DeviceList
+ devices:
+ - 21918
+ - 777
+ - 28395
+ - 28394
+ - 26946
+ - 26945
+ - 7189
+ - 28374
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 12440
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11306
+ - type: DeviceList
+ devices:
+ - 19948
+ - 28434
+ - 4778
+ - 4814
+ - 5959
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 15932
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,21.5
+ pos: 7.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11493
+ - type: DeviceList
+ devices:
+ - 13914
+ - 13915
+ - 13917
+ - 13918
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 15934
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -98.5,21.5
+ pos: -15.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11520
+ - type: DeviceList
+ devices:
+ - 16331
+ - 16289
+ - 15539
+ - 15538
+ - 15415
+ - 15297
+ - 15296
+ - 15295
+ - 27457
+ - 27456
+ - 27455
+ - 15596
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 22791
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,2.5
+ pos: 25.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11526
+ - type: DeviceList
+ devices:
+ - 2018
+ - 2019
+ - 148
+ - 144
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23619
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11843
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-43.5
+ pos: -60.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11845
+ - type: DeviceList
+ devices:
+ - 7640
+ - 17859
+ - 5723
+ - 8703
+ - 8702
+ - 8701
+ - 7671
+ - 7673
+ - 3834
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23670
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-43.5
+ pos: -79.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11846
+ - type: DeviceList
+ devices:
+ - 4218
+ - 4242
+ - 3709
+ - 9197
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23672
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11848
+ - type: DeviceList
+ devices:
+ - 7751
+ - 2603
+ - 7753
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23673
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,-43.5
+ pos: -79.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11855
+ - type: DeviceList
+ devices:
+ - 7748
+ - 7749
+ - 7750
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23674
components:
- type: Transform
- pos: -21.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11858
+ - type: DeviceList
+ devices:
+ - 7671
+ - 7673
+ - 3834
+ - 7675
+ - 8183
+ - 7674
+ - 7682
+ - 1505
+ - 27441
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23675
components:
- type: Transform
- pos: -19.5,-20.5
+ pos: -58.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 11859
+ - type: DeviceList
+ devices:
+ - 18464
+ - 18463
+ - 28750
+ - 28751
+ - 7416
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23679
components:
- type: Transform
- pos: -21.5,-21.5
+ pos: -12.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11860
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23681
components:
- type: Transform
- pos: -21.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,72.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11878
+ - type: DeviceList
+ devices:
+ - 18373
+ - 18374
+ - 18375
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13038
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-14.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15867
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15881
+ - type: DeviceList
+ devices:
+ - 14170
+ - 14173
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23684
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,22.5
+ pos: 20.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15900
+ - type: DeviceList
+ devices:
+ - 2634
+ - 2636
+ - 2869
+ - 2606
+ - 2208
+ - 14170
+ - 14173
+ - 2681
+ - 14122
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23687
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15905
+ - type: DeviceList
+ devices:
+ - 4377
+ - 4376
+ - 4375
+ - 5704
+ - 9340
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23690
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -98.5,22.5
+ pos: 37.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15942
+ - type: DeviceList
+ devices:
+ - 3892
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23692
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -97.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16302
+ - type: DeviceList
+ devices:
+ - 6955
+ - 28782
+ - 28783
+ - 763
+ - 766
+ - 765
+ - 5250
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23697
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,59.5
+ pos: -56.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17125
+ - type: DeviceList
+ devices:
+ - 9082
+ - 9081
+ - 8874
+ - 8873
+ - 7638
+ - 3680
+ - 8857
+ - 8783
+ - 8763
+ - 7640
+ - 17859
+ - 5723
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 24823
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,2.5
+ pos: 14.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17579
+ - type: DeviceList
+ devices:
+ - 152
+ - 153
+ - 155
+ - 154
+ - 1661
+ - 2014
+ - 2015
+ - 2016
+ - 2017
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 25202
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,60.5
+ pos: -22.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18202
+ - type: DeviceList
+ devices:
+ - 9552
+ - 9216
+ - 9255
+ - 15295
+ - 15296
+ - 15297
+ - 27457
+ - 27456
+ - 27455
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 25228
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,63.5
+ pos: -8.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18218
+ - type: DeviceList
+ devices:
+ - 9548
+ - 9255
+ - 9216
+ - 9552
+ - 1866
+ - 1867
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 25235
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,64.5
+ pos: -87.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18314
+ - type: DeviceList
+ devices:
+ - 7745
+ - 7747
+ - 7746
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 25237
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,62.5
+ pos: -8.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18315
+ - type: DeviceList
+ devices:
+ - 15596
+ - 15597
+ - 9548
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 27414
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18345
+ - type: DeviceList
+ devices:
+ - 18241
+ - 3321
+ - 27253
+ - 1429
+ - 17836
+ - 12414
+ - 28367
+ - 31
+ - 5062
+ - 7889
+ - 1691
+ - 28396
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28628
components:
- type: Transform
- pos: 2.5,70.5
+ pos: 45.5,-25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18348
+ - type: DeviceList
+ devices:
+ - 37411
+ - 37412
+ - 37407
+ - 37408
+ - 28421
+ - 28433
+ - 28434
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28629
components:
- type: Transform
- pos: -37.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18349
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28630
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,62.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18351
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28632
components:
- type: Transform
- pos: -36.5,-30.5
+ pos: 52.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18951
+ - type: DeviceList
+ devices:
+ - 2251
+ - 5704
+ - 26
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28634
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,-33.5
+ pos: 70.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18953
+ - type: DeviceList
+ devices:
+ - 3889
+ - 3881
+ - 3899
+ - 3898
+ - 3879
+ - 3877
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28635
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19349
+ - type: DeviceList
+ devices:
+ - 3889
+ - 3881
+ - 3899
+ - 3898
+ - 3879
+ - 3877
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28636
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-32.5
+ pos: 76.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19460
+ - type: DeviceList
+ devices:
+ - 3889
+ - 3881
+ - 3899
+ - 3898
+ - 3879
+ - 3877
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28638
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,22.5
+ pos: 48.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19462
+ - type: DeviceList
+ devices:
+ - 25217
+ - 25218
+ - 25219
+ - 3877
+ - 3879
+ - 3898
+ - 3899
+ - 3881
+ - 3889
+ - 25213
+ - 25212
+ - 25211
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28639
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,-8.5
+ pos: 37.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19964
+ - type: DeviceList
+ devices:
+ - 1874
+ - 1875
+ - 25217
+ - 25218
+ - 25219
+ - 3892
+ - 152
+ - 153
+ - 155
+ - 154
+ - 148
+ - 144
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28643
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,2.5
+ pos: 42.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19975
+ - type: DeviceList
+ devices:
+ - 4377
+ - 4376
+ - 4375
+ - 2237
+ - 25209
+ - 25208
+ - 25207
+ - 25211
+ - 25212
+ - 25213
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28648
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 27460
+ - 27459
+ - 27458
+ - 3438
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28649
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -96.5,21.5
+ pos: 25.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19979
+ - type: DeviceList
+ devices:
+ - 3976
+ - 2205
+ - 27460
+ - 27459
+ - 27458
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20171
+ - type: DeviceList
+ devices:
+ - 4107
+ - 3359
+ - 2259
+ - 3853
+ - 2203
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28651
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,59.5
+ pos: 38.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20196
+ - type: DeviceList
+ devices:
+ - 2259
+ - 2510
+ - 9224
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28652
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20197
+ - type: DeviceList
+ devices:
+ - 4107
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28653
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20382
+ - type: DeviceList
+ devices:
+ - 3906
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28657
components:
- type: Transform
- pos: 46.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20401
+ - type: DeviceList
+ devices:
+ - 14015
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28702
components:
- type: Transform
- pos: 46.5,21.5
+ pos: 11.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22094
+ - type: DeviceList
+ devices:
+ - 39183
+ - 39186
+ - 39177
+ - 39196
+ - 39185
+ - 12303
+ - 39184
+ - 39178
+ - 39190
+ - 39197
+ - 39198
+ - 39199
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22335
+ - type: DeviceList
+ devices:
+ - 9083
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28739
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,60.5
+ pos: -58.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22336
+ - type: DeviceList
+ devices:
+ - 8873
+ - 8874
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,60.5
+ pos: -44.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22337
+ - type: DeviceList
+ devices:
+ - 6945
+ - 7529
+ - 7530
+ - 7889
+ - 5062
+ - 7110
+ - 2353
+ - 7180
+ - 5194
+ - 3568
+ - 7107
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,60.5
+ pos: -24.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22338
+ - type: DeviceList
+ devices:
+ - 3080
+ - 7107
+ - 3568
+ - 84
+ - 2147
+ - 766
+ - 765
+ - 763
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28781
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,60.5
+ pos: -17.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22339
+ - type: DeviceList
+ devices:
+ - 6553
+ - 6955
+ - 28782
+ - 28783
+ - 6628
+ - 6498
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28793
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,60.5
+ pos: -9.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22341
+ - type: DeviceList
+ devices:
+ - 345
+ - 346
+ - 542
+ - 541
+ - 548
+ - 547
+ - 549
+ - 550
+ - 546
+ - 545
+ - 544
+ - 543
+ - 1685
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 29427
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,60.5
+ pos: -93.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22342
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 9568
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,61.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22343
+ - uid: 14200
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22344
+- proto: Firelock
+ entities:
+ - uid: 19643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22345
+ - uid: 19652
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,61.5
+ pos: -40.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22894
+ - type: DeviceNetwork
+ deviceLists:
+ - 22291
+ - uid: 20876
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,49.5
+ pos: -32.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22895
+ - uid: 22929
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22896
+ - uid: 27176
components:
- type: Transform
- pos: 38.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22901
+- proto: FirelockEdge
+ entities:
+ - uid: 4715
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,49.5
+ pos: 1.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22902
+ - uid: 12410
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23233
+ - uid: 14352
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 32.5,49.5
+ pos: -40.5,-11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23237
+ - uid: 17852
components:
- type: Transform
- pos: 65.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23238
+ - uid: 34878
components:
- type: Transform
- pos: 65.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23239
+ - uid: 34912
components:
- type: Transform
- pos: 65.5,22.5
+ pos: 1.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23693
+ - uid: 35745
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23717
+ - uid: 35746
components:
- type: Transform
- pos: -51.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,49.5
parent: 2
- - uid: 23718
+ - uid: 35749
components:
- type: Transform
- pos: -51.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,79.5
parent: 2
- - uid: 23719
+ - uid: 35750
components:
- type: Transform
- pos: -51.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,71.5
parent: 2
- - uid: 23720
+ - uid: 35751
components:
- type: Transform
- pos: -51.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,71.5
parent: 2
- - uid: 23770
+ - uid: 35752
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,57.5
parent: 2
- - uid: 23784
+ - uid: 35753
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,64.5
+ pos: 98.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23812
+ - uid: 35754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,46.5
+ pos: 99.5,32.5
parent: 2
- - uid: 23839
+ - uid: 35755
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -52.5,45.5
- parent: 2
- - uid: 23895
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,50.5
+ pos: 92.5,32.5
parent: 2
- - uid: 23906
+ - uid: 35756
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -43.5,32.5
+ pos: 93.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23907
+ - uid: 35757
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,30.5
+ pos: 77.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23909
+ - uid: 35758
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23910
+ - uid: 35759
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23911
+ - uid: 36785
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,66.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23912
+ - uid: 36787
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23913
+- proto: FirelockGlass
+ entities:
+ - uid: 18
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23914
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - uid: 26
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,31.5
+ pos: 50.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23915
+ - uid: 31
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,31.5
+ pos: -51.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23916
+ - type: DeviceNetwork
+ deviceLists:
+ - 25333
+ - 27414
+ - uid: 65
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,31.5
+ pos: 1.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23918
+ - uid: 66
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,31.5
+ pos: 2.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23919
+ - uid: 68
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,31.5
+ pos: 0.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23920
+ - uid: 84
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,31.5
+ pos: -5.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23922
+ - uid: 96
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,29.5
+ pos: -53.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23923
+ - uid: 101
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,28.5
+ pos: -8.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23924
+ - uid: 144
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,27.5
+ pos: 29.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23925
+ - uid: 148
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,26.5
+ pos: 28.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23926
+ - uid: 152
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,25.5
+ pos: 16.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23927
+ - uid: 153
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,24.5
+ pos: 17.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23928
+ - uid: 154
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,23.5
+ pos: 20.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23930
+ - uid: 155
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,21.5
+ pos: 19.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23932
+ - uid: 214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,19.5
+ pos: 0.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23934
+ - type: DeviceNetwork
+ deviceLists:
+ - 20237
+ - uid: 218
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,17.5
+ pos: 2.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23935
+ - type: DeviceNetwork
+ deviceLists:
+ - 20237
+ - uid: 221
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,16.5
+ pos: 1.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23936
+ - type: DeviceNetwork
+ deviceLists:
+ - 20237
+ - uid: 241
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,15.5
+ pos: 9.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23938
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - 36760
+ - uid: 242
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,19.5
+ pos: 27.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23939
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - 31752
+ - uid: 248
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,12.5
+ pos: 11.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23940
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - uid: 271
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,11.5
+ pos: 34.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23941
+ - type: DeviceNetwork
+ deviceLists:
+ - 25256
+ - 25248
+ - uid: 317
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,10.5
+ pos: -90.5,21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23943
+ - type: DeviceNetwork
+ deviceLists:
+ - 25231
+ - 25232
+ - uid: 345
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23945
+ - type: DeviceNetwork
+ deviceLists:
+ - 25275
+ - uid: 346
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23946
+ - type: DeviceNetwork
+ deviceLists:
+ - 25275
+ - uid: 361
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,10.5
+ pos: -68.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23947
+ - uid: 362
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,11.5
+ pos: 27.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23949
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - uid: 384
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,13.5
+ pos: 7.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23950
+ - uid: 390
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,14.5
+ pos: 7.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23954
+ - uid: 443
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23955
+ - uid: 541
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23956
+ - uid: 542
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23958
+ - uid: 543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23960
+ - uid: 544
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23961
+ - uid: 545
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23962
+ - uid: 546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23963
+ - uid: 547
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23964
+ - uid: 548
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23965
+ - uid: 549
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23966
+ - uid: 550
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23967
+ - uid: 556
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,29.5
+ pos: -2.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23968
+ - uid: 583
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,29.5
+ pos: -12.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23969
+ - type: DeviceNetwork
+ deviceLists:
+ - 25274
+ - 17901
+ - uid: 592
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23970
+ - uid: 753
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,29.5
+ pos: 9.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23971
+ - uid: 763
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,29.5
+ pos: -12.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23972
+ - uid: 765
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,29.5
+ pos: -11.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23973
+ - uid: 766
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,29.5
+ pos: -10.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23974
+ - uid: 771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,29.5
+ pos: 10.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23977
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 777
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,9.5
+ pos: -54.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23978
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
+ - 25243
+ - uid: 788
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23979
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - 21
+ - uid: 789
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23980
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - 21
+ - uid: 852
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23981
+ - uid: 1012
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,9.5
+ pos: 16.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23982
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - uid: 1076
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,9.5
+ pos: 32.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23983
+ - type: DeviceNetwork
+ deviceLists:
+ - 6298
+ - uid: 1080
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23985
+ - uid: 1082
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,9.5
+ pos: 32.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23986
+ - uid: 1124
components:
- type: Transform
- pos: -45.5,10.5
+ pos: 37.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23987
+ - uid: 1178
components:
- type: Transform
- pos: -45.5,11.5
+ pos: 29.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23988
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - uid: 1330
components:
- type: Transform
- pos: -45.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,61.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23989
+ - uid: 1347
components:
- type: Transform
- pos: -45.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23990
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - uid: 1348
components:
- type: Transform
- pos: -45.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23991
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - uid: 1395
components:
- type: Transform
- pos: -45.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23992
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - uid: 1407
components:
- type: Transform
- pos: -45.5,16.5
+ pos: 29.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23993
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - uid: 1496
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,17.5
+ pos: 19.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23994
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - 36760
+ - uid: 1505
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,17.5
+ pos: -69.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23995
+ - uid: 1518
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -62.5,-23.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23996
+ - type: DeviceNetwork
+ deviceLists:
+ - 25321
+ - 25240
+ - uid: 1531
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23997
+ - uid: 1661
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,17.5
+ pos: 15.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23998
+ - uid: 1685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,18.5
+ pos: -14.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23999
+ - uid: 1845
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,19.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24000
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - uid: 1849
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,19.5
+ pos: 3.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24001
+ - uid: 1859
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24003
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 20237
+ - uid: 1860
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24004
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 20237
+ - uid: 1861
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24005
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 20237
+ - uid: 1866
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24006
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - 20237
+ - uid: 1867
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24008
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - 20237
+ - uid: 1870
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24009
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - 20237
+ - uid: 1871
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24010
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - 20237
+ - uid: 1874
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24011
+ - uid: 1875
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24012
+ - uid: 1878
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24013
+ - uid: 1879
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24014
+ - uid: 2006
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,22.5
+ pos: 15.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24015
+ - uid: 2007
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,22.5
+ pos: 17.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24016
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - uid: 2008
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,22.5
+ pos: 12.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24017
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - uid: 2009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,22.5
+ pos: 10.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24019
+ - uid: 2010
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,22.5
+ pos: 7.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24020
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - uid: 2012
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,22.5
+ pos: 13.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24021
+ - uid: 2013
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,22.5
+ pos: 12.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24022
+ - uid: 2014
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,22.5
+ pos: 16.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24024
+ - uid: 2015
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,22.5
+ pos: 17.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24025
+ - uid: 2016
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,21.5
+ pos: 19.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24027
+ - uid: 2017
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,21.5
+ pos: 20.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24028
+ - uid: 2018
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,21.5
+ pos: 26.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24029
+ - uid: 2019
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,21.5
+ pos: 27.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24030
+ - uid: 2031
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,21.5
+ pos: 3.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24031
+ - uid: 2066
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,21.5
+ pos: 4.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24032
+ - uid: 2069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,21.5
+ pos: 3.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24033
+ - uid: 2147
components:
- type: Transform
- pos: 0.5,23.5
+ pos: -4.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24034
+ - uid: 2203
components:
- type: Transform
- pos: 0.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24035
+ - uid: 2205
components:
- type: Transform
- pos: 0.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24036
+ - uid: 2208
components:
- type: Transform
- pos: 0.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24037
+ - uid: 2237
components:
- type: Transform
- pos: 0.5,27.5
+ pos: 43.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24038
+ - uid: 2245
components:
- type: Transform
- pos: 0.5,28.5
+ pos: -0.5,-28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24039
+ - uid: 2251
components:
- type: Transform
- pos: 0.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24041
+ - uid: 2252
components:
- type: Transform
- pos: 0.5,31.5
+ pos: 53.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24042
+ - type: DeviceNetwork
+ deviceLists:
+ - 25300
+ - uid: 2259
components:
- type: Transform
- pos: 0.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24044
+ - uid: 2353
components:
- type: Transform
- pos: 0.5,34.5
+ pos: -46.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24045
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 25244
+ - uid: 2462
components:
- type: Transform
- pos: 0.5,35.5
+ pos: -0.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24046
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - 29631
+ - uid: 2464
components:
- type: Transform
- pos: 0.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24048
+ - uid: 2510
components:
- type: Transform
- pos: 0.5,38.5
+ pos: 37.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24049
+ - uid: 2527
components:
- type: Transform
- pos: 0.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24050
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 2593
components:
- type: Transform
- pos: 0.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24052
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
+ - uid: 2603
components:
- type: Transform
- pos: 0.5,42.5
+ pos: -94.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24053
+ - uid: 2606
components:
- type: Transform
- pos: 0.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24054
+ - uid: 2634
components:
- type: Transform
- pos: 0.5,44.5
+ pos: 15.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24055
+ - uid: 2636
components:
- type: Transform
- pos: 0.5,45.5
+ pos: 15.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24056
+ - uid: 2681
components:
- type: Transform
- pos: 0.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24057
+ - type: DeviceNetwork
+ deviceLists:
+ - 4870
+ - uid: 2869
components:
- type: Transform
- pos: 0.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24058
+ - uid: 2904
components:
- type: Transform
- pos: 0.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24060
+ - type: DeviceNetwork
+ deviceLists:
+ - 25261
+ - uid: 3052
components:
- type: Transform
- pos: 0.5,50.5
+ pos: 38.5,-12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24061
+ - uid: 3080
components:
- type: Transform
- pos: 0.5,51.5
+ pos: -25.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24062
+ - uid: 3086
components:
- type: Transform
- pos: 0.5,52.5
+ pos: -54.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24063
+ - type: DeviceNetwork
+ deviceLists:
+ - 4313
+ - 25334
+ - 7606
+ - 175
+ - uid: 3092
components:
- type: Transform
- pos: 0.5,53.5
+ pos: -53.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24064
+ - type: DeviceNetwork
+ deviceLists:
+ - 4313
+ - 25334
+ - 7606
+ - 175
+ - uid: 3163
components:
- type: Transform
- pos: 0.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24065
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - 17901
+ - uid: 3217
components:
- type: Transform
- pos: 8.5,18.5
+ pos: 18.5,34.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24066
+ - uid: 3349
components:
- type: Transform
- pos: 0.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24067
+ - uid: 3359
components:
- type: Transform
- pos: 0.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 41.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24068
+ - uid: 3409
components:
- type: Transform
- pos: 0.5,58.5
+ pos: -39.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24069
+ - type: DeviceNetwork
+ deviceLists:
+ - 11474
+ - 21934
+ - uid: 3438
components:
- type: Transform
- pos: 0.5,59.5
+ pos: 33.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24071
+ - uid: 3562
components:
- type: Transform
- pos: 0.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24072
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - 17901
+ - uid: 3568
components:
- type: Transform
- pos: 0.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24073
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - uid: 3605
components:
- type: Transform
- pos: 0.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24075
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - 17901
+ - uid: 3680
components:
- type: Transform
- pos: 0.5,65.5
+ pos: -56.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24076
+ - uid: 3709
components:
- type: Transform
- pos: 0.5,66.5
+ pos: -76.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24077
+ - uid: 3724
components:
- type: Transform
- pos: 0.5,67.5
+ pos: -85.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24078
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 3800
components:
- type: Transform
- pos: 0.5,68.5
+ pos: -87.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24079
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 3801
components:
- type: Transform
- pos: 0.5,69.5
+ pos: -87.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24080
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 3815
components:
- type: Transform
- pos: 0.5,70.5
+ pos: -14.5,-39.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24082
+ - uid: 3834
components:
- type: Transform
- pos: 0.5,72.5
+ pos: -66.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24083
+ - uid: 3853
components:
- type: Transform
- pos: 0.5,73.5
+ pos: 41.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24084
+ - uid: 3872
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,74.5
+ pos: -87.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24085
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 3877
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,74.5
+ pos: 52.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24086
+ - uid: 3879
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,74.5
+ pos: 52.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24087
+ - uid: 3881
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,74.5
+ pos: 52.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24088
+ - uid: 3889
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,74.5
+ pos: 52.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24089
+ - uid: 3892
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,74.5
+ pos: 35.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24090
+ - uid: 3898
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,74.5
+ pos: 52.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24091
+ - uid: 3899
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,74.5
+ pos: 52.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24092
+ - uid: 3906
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,74.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24093
+ - uid: 3976
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24094
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - 33892
+ - uid: 4019
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,74.5
+ pos: -39.5,-21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24095
+ - type: DeviceNetwork
+ deviceLists:
+ - 11474
+ - 21934
+ - uid: 4059
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,74.5
+ pos: 41.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24096
+ - type: DeviceNetwork
+ deviceLists:
+ - 30925
+ - uid: 4069
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,74.5
+ pos: 48.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24097
+ - type: DeviceNetwork
+ deviceLists:
+ - 30925
+ - uid: 4107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,74.5
+ pos: 41.5,37.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24098
+ - uid: 4200
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,74.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,56.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24099
+ - uid: 4212
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24100
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - uid: 4218
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,74.5
+ pos: -78.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24101
+ - type: DeviceNetwork
+ deviceLists:
+ - 22045
+ - uid: 4242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,74.5
+ pos: -77.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24102
+ - type: DeviceNetwork
+ deviceLists:
+ - 22045
+ - uid: 4375
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24103
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - uid: 4376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24104
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - uid: 4377
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24105
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - uid: 4631
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,73.5
+ pos: 85.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24106
+ - type: DeviceNetwork
+ deviceLists:
+ - 3525
+ - 3405
+ - uid: 4642
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24107
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - uid: 5062
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,71.5
+ pos: -51.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24109
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 27414
+ - uid: 5194
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,69.5
+ pos: -48.5,-10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24111
+ - type: DeviceNetwork
+ deviceLists:
+ - 25334
+ - 7606
+ - uid: 5244
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,67.5
+ pos: -2.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24112
+ - uid: 5250
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,66.5
+ pos: -6.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24113
+ - uid: 5704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,65.5
+ pos: 53.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24114
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - uid: 5723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,64.5
+ pos: -53.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24116
+ - uid: 6094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,62.5
+ pos: 67.5,33.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24117
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - 3525
+ - uid: 6197
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,50.5
+ pos: 67.5,32.5
parent: 2
- - uid: 24118
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - 3525
+ - uid: 6493
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-31.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24119
+ - uid: 6498
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24121
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - uid: 6553
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,57.5
+ pos: -23.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24122
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - uid: 6554
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,56.5
+ pos: -29.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24123
+ - uid: 6628
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,55.5
+ pos: -20.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24124
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - 6715
+ - uid: 6682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24125
+ - uid: 6754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,53.5
+ pos: -19.5,-40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24126
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - 28192
+ - uid: 6945
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,52.5
+ pos: -51.5,-23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24127
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - uid: 6955
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24128
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - uid: 7107
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24129
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - uid: 7110
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,49.5
+ pos: -47.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24131
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 25244
+ - uid: 7176
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-28.5
+ pos: -6.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24132
+ - uid: 7180
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,46.5
+ pos: -45.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24133
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 25244
+ - uid: 7189
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24134
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
+ - uid: 7190
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,44.5
+ pos: -58.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24135
+ - type: DeviceNetwork
+ deviceLists:
+ - 25334
+ - 7606
+ - uid: 7192
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,43.5
+ pos: -59.5,-13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24136
+ - type: DeviceNetwork
+ deviceLists:
+ - 25334
+ - 7606
+ - uid: 7279
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,42.5
+ pos: -4.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24137
+ - uid: 7289
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,41.5
+ pos: -49.5,-24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24138
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - uid: 7416
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,40.5
+ pos: -48.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24139
+ - uid: 7529
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,39.5
+ pos: -51.5,-21.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24140
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 26732
+ - 7608
+ - uid: 7530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,38.5
+ pos: -51.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24141
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 26732
+ - 7608
+ - uid: 7610
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24144
+ - type: DeviceNetwork
+ deviceLists:
+ - 12404
+ - 1320
+ - uid: 7638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24145
+ - uid: 7640
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,33.5
+ pos: -55.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24148
+ - uid: 7671
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24149
+ - uid: 7673
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24150
+ - uid: 7674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24151
+ - uid: 7675
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24152
+ - uid: 7682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24153
+ - uid: 7745
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24154
+ - uid: 7746
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24155
+ - uid: 7747
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24156
+ - uid: 7748
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24157
+ - uid: 7749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24158
+ - uid: 7750
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24159
+ - uid: 7751
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24160
+ - uid: 7752
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,19.5
+ pos: -0.5,64.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24161
+ - uid: 7753
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24162
+ - uid: 7889
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,19.5
+ pos: -51.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24163
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - 27414
+ - uid: 7913
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24164
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7914
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24166
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7915
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24167
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7916
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24168
+ - uid: 7917
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24169
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7918
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24170
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7919
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24171
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 7920
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24172
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - uid: 8152
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,19.5
+ pos: -7.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24175
+ - uid: 8183
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,22.5
+ pos: -74.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24176
+ - uid: 8459
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,19.5
+ pos: 30.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24177
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - uid: 8659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24178
+ - uid: 8701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,19.5
+ pos: -48.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24179
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - uid: 8702
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,19.5
+ pos: -48.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24180
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - uid: 8703
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,19.5
+ pos: -48.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24181
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - uid: 8763
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,19.5
+ pos: -56.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24182
+ - uid: 8783
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,19.5
+ pos: -52.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24183
+ - uid: 8840
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,19.5
+ pos: -48.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24184
+ - uid: 8857
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,19.5
+ pos: -52.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24185
+ - uid: 8873
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,19.5
+ pos: -56.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24186
+ - uid: 8874
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,19.5
+ pos: -56.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24188
+ - uid: 9081
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,19.5
+ pos: -54.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24189
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
+ - uid: 9082
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,19.5
+ pos: -43.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24190
+ - type: DeviceNetwork
+ deviceLists:
+ - 21100
+ - uid: 9083
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,19.5
+ pos: -43.5,36.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24191
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - 21100
+ - uid: 9084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,19.5
+ pos: -54.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24192
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
+ - uid: 9197
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,19.5
+ pos: -80.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24194
+ - uid: 9216
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24195
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - uid: 9224
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,18.5
+ pos: 47.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24196
+ - uid: 9230
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24197
+ - uid: 9255
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24198
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - uid: 9340
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,15.5
+ pos: 66.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24199
+ - type: DeviceNetwork
+ deviceLists:
+ - 23957
+ - 39141
+ - uid: 9548
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24200
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - uid: 9552
components:
- type: Transform
- pos: -43.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24201
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - uid: 10188
components:
- type: Transform
- pos: -43.5,13.5
+ pos: -46.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24202
+ - uid: 10351
components:
- type: Transform
- pos: -43.5,12.5
+ pos: 86.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24203
+ - type: DeviceNetwork
+ deviceLists:
+ - 3525
+ - 3405
+ - uid: 11975
components:
- type: Transform
- pos: -43.5,11.5
+ pos: 11.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24204
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 12060
components:
- type: Transform
- pos: -43.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24205
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 12130
components:
- type: Transform
- pos: -43.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24207
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - uid: 12414
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-19.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24208
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - 25333
+ - 27414
+ - uid: 12449
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24209
+ - uid: 13914
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,7.5
+ pos: 3.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24210
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - uid: 13915
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,7.5
+ pos: 3.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24211
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - uid: 13917
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,7.5
+ pos: 8.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24212
+ - uid: 13918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,7.5
+ pos: 8.5,38.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24213
+ - uid: 14015
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24214
+ - uid: 14105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,7.5
+ pos: 27.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24215
+ - uid: 14122
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,7.5
+ pos: 20.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24216
+ - uid: 14170
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,7.5
+ pos: 17.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24217
+ - uid: 14173
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,7.5
+ pos: 19.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24218
+ - uid: 15163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,7.5
+ pos: 54.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24219
+ - type: DeviceNetwork
+ deviceLists:
+ - 25300
+ - uid: 15258
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,7.5
+ pos: -3.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24221
+ - uid: 15295
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -60.5,7.5
+ pos: -14.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24222
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 15296
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,7.5
+ pos: -15.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24223
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 15297
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -62.5,7.5
+ pos: -16.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24224
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 15415
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,7.5
+ pos: -23.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24226
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 15503
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,7.5
+ pos: -35.5,32.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24227
+ - uid: 15520
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,7.5
+ pos: -31.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24228
+ - uid: 15538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,7.5
+ pos: -21.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24230
+ - uid: 15539
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,7.5
+ pos: -17.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24231
+ - uid: 15575
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,7.5
+ pos: 5.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24233
+ - uid: 15596
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,7.5
+ pos: -7.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24234
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 15597
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -73.5,7.5
+ pos: -5.5,31.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24235
+ - uid: 15617
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24237
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 15619
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -76.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24239
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 15721
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -78.5,7.5
+ pos: -9.5,58.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24240
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - uid: 15894
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,7.5
+ pos: -50.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24241
+ - uid: 15962
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -80.5,7.5
+ pos: -48.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24242
+ - uid: 16063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,7.5
+ pos: -0.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24243
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
+ - uid: 16102
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,39.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24246
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
+ - 2594
+ - uid: 16289
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,7.5
+ pos: -11.5,40.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24247
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 16309
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,7.5
+ pos: -5.5,64.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24248
+ - uid: 16311
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,7.5
+ pos: -5.5,63.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24249
+ - uid: 16312
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,7.5
+ pos: -9.5,64.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24250
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 16315
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,7.5
+ pos: -9.5,63.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24252
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 16331
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,7.5
+ pos: -11.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24254
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - uid: 16370
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,7.5
+ pos: -6.5,71.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24255
+ - uid: 16390
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,7.5
+ pos: -6.5,70.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24256
+ - uid: 16537
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,7.5
+ pos: -48.5,-38.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24259
+ - uid: 16538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,9.5
+ pos: -48.5,-37.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24260
+ - uid: 16553
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -94.5,9.5
+ pos: -37.5,-30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24261
+ - type: DeviceNetwork
+ deviceLists:
+ - 2655
+ - 7120
+ - 1320
+ - uid: 17836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24262
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - 25333
+ - 27414
+ - uid: 17859
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,9.5
+ pos: -54.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24264
+ - uid: 17863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24266
+ - uid: 18112
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -88.5,9.5
+ pos: -11.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24267
+ - uid: 18373
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,9.5
+ pos: 0.5,72.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24268
+ - uid: 18374
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,9.5
+ pos: 1.5,72.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24271
+ - uid: 18375
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,9.5
+ pos: 2.5,72.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24272
+ - uid: 18463
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,9.5
+ pos: -60.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24273
+ - uid: 18464
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,9.5
+ pos: -59.5,-0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24274
+ - uid: 19080
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -80.5,9.5
+ pos: -34.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24275
+ - uid: 19125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -79.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24277
+ - type: DeviceNetwork
+ deviceLists:
+ - 37709
+ - uid: 19126
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -77.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24279
+ - type: DeviceNetwork
+ deviceLists:
+ - 37709
+ - uid: 19177
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -75.5,9.5
+ pos: -33.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24280
+ - uid: 19630
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -74.5,9.5
+ pos: 3.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24282
+ - uid: 19656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,9.5
+ pos: 6.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24283
+ - uid: 19729
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24284
+ - type: DeviceNetwork
+ deviceLists:
+ - 19822
+ - uid: 19778
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,9.5
+ pos: 12.5,65.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24285
+ - uid: 19824
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,61.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24287
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 19948
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,9.5
+ pos: 17.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24288
+ - type: DeviceNetwork
+ deviceLists:
+ - 12411
+ - 12440
+ - uid: 19952
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -66.5,9.5
+ pos: -34.5,-37.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24289
+ - uid: 20189
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,9.5
+ pos: 3.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24290
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - uid: 20193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,9.5
+ pos: 28.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24291
+ - uid: 20930
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24292
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - uid: 21918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,9.5
+ pos: -53.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24293
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
+ - 25243
+ - uid: 22279
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -61.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,54.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24294
+ - uid: 22281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,9.5
+ pos: 26.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24295
+ - uid: 22460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,9.5
+ pos: -90.5,-4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24296
+ - uid: 22815
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24297
+ - uid: 23230
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,9.5
+ pos: -21.5,-40.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24298
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - 28192
+ - uid: 23234
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,9.5
+ pos: 0.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24308
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 23235
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,49.5
+ pos: 1.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24309
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 23236
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,49.5
+ pos: 2.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24311
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 23262
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,48.5
+ pos: -6.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24318
+ - uid: 23266
components:
- type: Transform
- pos: 0.5,37.5
+ pos: -7.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24319
+ - uid: 23340
components:
- type: Transform
- pos: 2.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24328
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 23423
components:
- type: Transform
- pos: 2.5,17.5
+ pos: -13.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24329
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 25207
components:
- type: Transform
- pos: 2.5,16.5
+ pos: 40.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24330
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - uid: 25208
components:
- type: Transform
- pos: 2.5,15.5
+ pos: 40.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24331
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - uid: 25209
components:
- type: Transform
- pos: 2.5,14.5
+ pos: 40.5,20.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24332
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - uid: 25211
components:
- type: Transform
- pos: 2.5,13.5
+ pos: 48.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24333
+ - uid: 25212
components:
- type: Transform
- pos: 2.5,12.5
+ pos: 49.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24334
+ - uid: 25213
components:
- type: Transform
- pos: 2.5,11.5
+ pos: 50.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24335
+ - uid: 25217
components:
- type: Transform
- pos: 2.5,10.5
+ pos: 49.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24336
+ - uid: 25218
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,18.5
+ pos: 50.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24337
+ - uid: 25219
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,18.5
+ pos: 51.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24338
+ - uid: 25323
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,18.5
+ pos: -61.5,-23.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24339
+ - uid: 25324
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,18.5
+ pos: -29.5,-29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24340
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
+ - uid: 25325
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,18.5
+ pos: -28.5,-29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24341
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
+ - uid: 26010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,18.5
+ pos: -26.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24342
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 26090
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-14.5
+ pos: -12.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24344
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 26372
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -90.5,22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24345
+ - type: DeviceNetwork
+ deviceLists:
+ - 25231
+ - 25232
+ - uid: 26376
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.5,27.5
+ pos: -74.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24346
+ - type: DeviceNetwork
+ deviceLists:
+ - 22045
+ - uid: 26504
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,18.5
+ pos: -26.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24348
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 26679
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24349
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - uid: 26753
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,18.5
+ pos: -90.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24350
+ - uid: 27441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,18.5
+ pos: -68.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24351
+ - uid: 27453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,18.5
+ pos: 12.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24353
+ - uid: 27454
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,18.5
+ pos: 13.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24354
+ - uid: 27455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,18.5
+ pos: -21.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24355
+ - uid: 27456
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,18.5
+ pos: -20.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24356
+ - uid: 27457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,18.5
+ pos: -19.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24358
+ - uid: 27458
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,18.5
+ pos: 27.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24359
+ - uid: 27459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,18.5
+ pos: 28.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24360
+ - uid: 27460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,18.5
+ pos: 29.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24361
+ - uid: 27461
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,18.5
+ pos: 41.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24363
+ - type: DeviceNetwork
+ deviceLists:
+ - 30925
+ - uid: 27484
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24364
+ - uid: 28211
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,18.5
+ pos: -51.5,-28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24365
+ - type: DeviceNetwork
+ deviceLists:
+ - 12404
+ - 1320
+ - uid: 28441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24366
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - uid: 28457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24367
+ - uid: 28720
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24368
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - 34110
+ - uid: 28750
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 35.5,18.5
+ pos: -48.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24369
+ - uid: 28751
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,18.5
+ pos: -48.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24371
+ - uid: 28782
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 38.5,18.5
+ pos: -14.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24372
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - uid: 28783
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 39.5,18.5
+ pos: -13.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24373
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - uid: 28784
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,18.5
+ pos: -9.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24374
+ - uid: 28785
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,18.5
+ pos: -8.5,-22.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24375
+ - uid: 29022
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,18.5
+ pos: -34.5,64.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24376
+ - type: DeviceNetwork
+ deviceLists:
+ - 22291
+ - uid: 29024
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,18.5
+ pos: -28.5,60.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24377
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 29025
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,18.5
+ pos: -28.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24378
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 29026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,27.5
+ pos: -24.5,55.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24380
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - uid: 29030
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,18.5
+ pos: -28.5,64.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24381
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - 22291
+ - uid: 29085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,18.5
+ pos: 70.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24382
+ - type: DeviceNetwork
+ deviceLists:
+ - 25298
+ - 29087
+ - uid: 29086
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,18.5
+ pos: 70.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24383
+ - type: DeviceNetwork
+ deviceLists:
+ - 25298
+ - 29087
+ - uid: 30719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24384
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - uid: 30723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,16.5
+ pos: -17.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24385
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - uid: 30787
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,15.5
+ pos: -49.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24386
+ - uid: 31106
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 50.5,14.5
+ pos: -47.5,70.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24387
+ - uid: 31749
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 50.5,13.5
+ pos: 11.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24388
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - uid: 34069
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,12.5
+ pos: -22.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24389
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - uid: 34071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,11.5
+ pos: -21.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24390
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - uid: 34104
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,10.5
+ pos: -20.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24391
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - uid: 34663
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 50.5,9.5
+ pos: 71.5,-6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24392
+ - uid: 37892
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,8.5
+ pos: 78.5,-15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24393
+ - type: DeviceNetwork
+ deviceLists:
+ - 29087
+ - 18513
+ - uid: 37893
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 50.5,7.5
+ pos: 78.5,-17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24394
+ - type: DeviceNetwork
+ deviceLists:
+ - 29087
+ - 18513
+ - uid: 38842
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 50.5,6.5
+ pos: 4.5,59.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24395
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - uid: 38873
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 50.5,5.5
+ pos: -21.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24397
+ - uid: 38874
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 51.5,2.5
+ pos: -20.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24398
+ - uid: 39197
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24399
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - uid: 39198
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24400
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - uid: 39199
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24401
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+- proto: Fireplace
+ entities:
+ - uid: 92
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,21.5
+ pos: 15.5,-34.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24403
+ - uid: 615
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,21.5
+ pos: -9.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24404
+ - uid: 1964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,27.5
+ pos: 12.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24405
+ - uid: 2072
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,21.5
+ pos: -14.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24406
+ - uid: 2727
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,21.5
+ pos: 51.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24407
+ - uid: 15740
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,21.5
+ pos: -9.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24408
+ - uid: 17794
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,21.5
+ pos: -4.5,61.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24409
+ - uid: 28748
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,21.5
+ pos: 20.5,-34.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24410
+ - uid: 28856
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,21.5
+ pos: 22.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24412
+- proto: Flare
+ entities:
+ - uid: 30053
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,21.5
+ pos: 83.49072,41.44527
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24414
+- proto: FlashlightLantern
+ entities:
+ - uid: 5655
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,21.5
+ pos: 50.584522,40.648224
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24415
+ - uid: 5658
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,21.5
+ pos: 26.46736,30.484562
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24416
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 2568
+ - type: ActionsContainer
+ - uid: 7937
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,21.5
+ pos: -40.600586,12.1399555
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24417
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24418
+ - type: HandheldLight
+ toggleActionEntity: 16291
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 16291
+ - type: ActionsContainer
+ - uid: 8031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,21.5
+ pos: -34.983147,4.4395385
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24419
+ - type: HandheldLight
+ toggleActionEntity: 16335
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 16335
+ - type: ActionsContainer
+ - uid: 14261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,21.5
+ pos: 27.644642,55.55499
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24421
+- proto: FlashlightSeclite
+ entities:
+ - uid: 681
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,21.5
+ pos: -36.75337,34.528244
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24422
+ - uid: 14212
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,21.5
+ pos: 21.424639,59.735928
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24423
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 4259
+ - type: ActionsContainer
+ - uid: 15585
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,21.5
+ pos: -22.604605,28.665703
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24425
+ - uid: 15586
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,21.5
+ pos: -22.354605,28.681328
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24426
+- proto: FlippoLighter
+ entities:
+ - uid: 16368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,21.5
+ pos: -19.49304,-8.044838
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24427
+- proto: Floodlight
+ entities:
+ - uid: 8150
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,21.5
+ pos: 100.769325,74.732254
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24428
+ - uid: 33523
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,21.5
+ pos: 62.40954,62.456474
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24430
+- proto: FloodlightBroken
+ entities:
+ - uid: 4741
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,21.5
+ pos: 100.519135,74.51572
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24431
+ - uid: 5388
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,21.5
+ pos: 60.631596,52.83645
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24432
+ - uid: 5389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,21.5
+ pos: 58.49097,57.27395
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24433
+ - uid: 5390
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,21.5
+ pos: 60.61597,57.164574
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24435
+ - uid: 7068
components:
- type: Transform
- pos: -32.5,26.5
+ pos: -29.247585,-35.76096
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24436
+ - uid: 29381
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,21.5
+ pos: 71.85128,76.321594
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24437
+ - uid: 29804
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,21.5
+ pos: 106.06467,19.870487
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24438
+ - uid: 32294
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,21.5
+ pos: -104.5607,50.63701
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24441
+ - uid: 32357
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,21.5
+ pos: -123.263824,53.527634
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24442
+ - uid: 33524
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,21.5
+ pos: 60.370476,69.61664
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24443
+ - uid: 33525
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,21.5
+ pos: 60.73227,69.83646
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24444
+ - uid: 33526
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,21.5
+ pos: 92.59736,47.38718
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24445
+ - uid: 36905
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,21.5
+ pos: 91.88007,12.111589
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24446
+ - uid: 37168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,21.5
+ pos: 79.197716,53.399914
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24447
+ - uid: 38401
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,21.5
+ pos: -104.232574,51.16826
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24448
+- proto: FloorDrain
+ entities:
+ - uid: 258
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,20.5
+ pos: -56.5,-20.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24449
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1021
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-2.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24450
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1636
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,18.5
+ pos: -6.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24451
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24452
+ - type: Fixtures
+ fixtures: {}
+ - uid: 1783
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,15.5
+ pos: -13.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24453
+ - type: Fixtures
+ fixtures: {}
+ - uid: 3025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,14.5
+ pos: -29.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24454
+ - type: Fixtures
+ fixtures: {}
+ - uid: 3095
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,13.5
+ pos: -25.5,34.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24455
+ - type: Fixtures
+ fixtures: {}
+ - uid: 3152
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,12.5
+ pos: 48.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24456
+ - type: Fixtures
+ fixtures: {}
+ - uid: 4555
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,11.5
+ pos: 49.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24457
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5722
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,10.5
+ pos: 23.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24460
+ - type: Fixtures
+ fixtures: {}
+ - uid: 5958
components:
- type: Transform
- pos: -47.5,8.5
+ pos: -29.5,34.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24461
+ - type: Fixtures
+ fixtures: {}
+ - uid: 6091
components:
- type: Transform
- pos: -47.5,7.5
+ pos: -8.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24463
+ - type: Fixtures
+ fixtures: {}
+ - uid: 7310
components:
- type: Transform
- pos: -47.5,5.5
+ pos: -59.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24465
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8263
components:
- type: Transform
- pos: -47.5,3.5
+ pos: 73.5,85.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24466
+ - type: Fixtures
+ fixtures: {}
+ - uid: 8352
components:
- type: Transform
- pos: -47.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,0.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24467
+ - type: Fixtures
+ fixtures: {}
+ - uid: 11476
components:
- type: Transform
- pos: -47.5,1.5
+ pos: -21.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24468
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13064
components:
- type: Transform
- pos: -47.5,0.5
+ pos: -25.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24469
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13068
components:
- type: Transform
- pos: -47.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24470
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13088
components:
- type: Transform
- pos: -47.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 37.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24471
+ - type: Fixtures
+ fixtures: {}
+ - uid: 13118
components:
- type: Transform
- pos: -47.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24472
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17843
components:
- type: Transform
- pos: -47.5,-3.5
+ pos: -6.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24473
+ - type: Fixtures
+ fixtures: {}
+ - uid: 18111
components:
- type: Transform
- pos: -47.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,57.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24474
+ - type: Fixtures
+ fixtures: {}
+ - uid: 19074
components:
- type: Transform
- pos: -47.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24475
+ - type: Fixtures
+ fixtures: {}
+ - uid: 19113
components:
- type: Transform
- pos: -47.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24476
+ - type: Fixtures
+ fixtures: {}
+ - uid: 19648
components:
- type: Transform
- pos: -47.5,-7.5
+ pos: 13.5,-21.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24477
+ - type: Fixtures
+ fixtures: {}
+ - uid: 20274
components:
- type: Transform
- pos: -47.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24478
+ - type: Fixtures
+ fixtures: {}
+ - uid: 22458
components:
- type: Transform
- pos: -45.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24479
+ - type: Fixtures
+ fixtures: {}
+ - uid: 24131
components:
- type: Transform
- pos: -45.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24480
+ - type: Fixtures
+ fixtures: {}
+ - uid: 25121
components:
- type: Transform
- pos: -45.5,4.5
+ pos: 25.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24481
+ - type: Fixtures
+ fixtures: {}
+ - uid: 27463
components:
- type: Transform
- pos: -45.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,-11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24482
+ - type: Fixtures
+ fixtures: {}
+ - uid: 28666
components:
- type: Transform
- pos: -45.5,2.5
+ pos: -15.5,-1.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24484
+ - type: Fixtures
+ fixtures: {}
+ - uid: 29374
components:
- type: Transform
- pos: -45.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,77.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24485
+ - type: Fixtures
+ fixtures: {}
+ - uid: 30308
components:
- type: Transform
- pos: -45.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24486
+ - type: Fixtures
+ fixtures: {}
+ - uid: 36701
components:
- type: Transform
- pos: -45.5,-1.5
+ pos: 81.5,85.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24487
+ - type: Fixtures
+ fixtures: {}
+ - uid: 36788
components:
- type: Transform
- pos: -45.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24488
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorWaterEntity
+ entities:
+ - uid: 4141
components:
- type: Transform
- pos: -45.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24489
+ - uid: 4146
components:
- type: Transform
- pos: -45.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24490
+ - uid: 4150
components:
- type: Transform
- pos: -45.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24491
+ - uid: 4158
components:
- type: Transform
- pos: -45.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24492
+ - uid: 5944
components:
- type: Transform
- pos: -45.5,-7.5
+ pos: -49.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24515
+ - uid: 7210
components:
- type: Transform
- pos: -39.5,-14.5
+ pos: -104.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24516
+ - uid: 7219
components:
- type: Transform
- pos: -39.5,-15.5
+ pos: -104.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24517
+ - uid: 7255
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24518
+ - uid: 7256
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24519
+ - uid: 7257
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24520
+ - uid: 7258
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-14.5
+ pos: -104.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24521
+ - uid: 7341
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -80.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24522
+ - uid: 7372
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24523
+ - uid: 7374
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24524
+ - uid: 7459
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -87.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24525
+ - uid: 7672
components:
- type: Transform
- pos: -32.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24526
+ - uid: 7769
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24527
+ - uid: 7773
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24528
+ - uid: 7775
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24529
+ - uid: 7779
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24530
+ - uid: 7785
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -102.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24532
+ - uid: 8223
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-14.5
+ pos: 96.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24533
+ - uid: 8480
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-14.5
+ pos: -105.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24534
+ - uid: 8483
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-14.5
+ pos: -106.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24535
+ - uid: 8484
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-16.5
+ pos: -107.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24536
+ - uid: 8486
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-16.5
+ pos: -86.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24537
+ - uid: 8487
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-16.5
+ pos: -106.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24538
+ - uid: 8488
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-16.5
+ pos: -105.5,4.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24539
+ - uid: 8489
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-16.5
+ pos: -105.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24540
+ - uid: 8491
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-16.5
+ pos: -103.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24542
+ - uid: 8492
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-16.5
+ pos: -103.5,2.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24543
+ - uid: 8493
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-16.5
+ pos: -103.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24544
+ - uid: 8494
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-16.5
+ pos: -103.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24545
+ - uid: 8495
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-16.5
+ pos: -102.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24546
+ - uid: 8496
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-16.5
+ pos: -101.5,14.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24548
+ - uid: 8497
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-16.5
+ pos: -101.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24549
+ - uid: 8501
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-16.5
+ pos: -105.5,13.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24550
+ - uid: 8504
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -105.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24551
+ - uid: 8507
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-16.5
+ pos: -103.5,7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24552
+ - uid: 8509
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-16.5
+ pos: -103.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24553
+ - uid: 8512
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-16.5
+ pos: -86.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24555
+ - uid: 8514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-16.5
+ pos: -86.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24559
+ - uid: 8515
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,2.5
+ pos: -86.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24560
+ - uid: 8516
components:
- type: Transform
- pos: 48.5,20.5
+ pos: -86.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24561
+ - uid: 8517
components:
- type: Transform
- pos: 48.5,19.5
+ pos: -86.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24562
+ - uid: 8518
components:
- type: Transform
- pos: 48.5,18.5
+ pos: -85.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24563
+ - uid: 8520
components:
- type: Transform
- pos: 48.5,17.5
+ pos: -85.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24564
+ - uid: 8521
components:
- type: Transform
- pos: 48.5,16.5
+ pos: -85.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24565
+ - uid: 8522
components:
- type: Transform
- pos: 48.5,15.5
+ pos: -85.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24566
+ - uid: 8523
components:
- type: Transform
- pos: 48.5,14.5
+ pos: -85.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24567
+ - uid: 8532
components:
- type: Transform
- pos: 48.5,13.5
+ pos: -83.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24568
+ - uid: 8534
components:
- type: Transform
- pos: 48.5,12.5
+ pos: -83.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24569
+ - uid: 8535
components:
- type: Transform
- pos: 48.5,11.5
+ pos: -83.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24570
+ - uid: 8536
components:
- type: Transform
- pos: 48.5,10.5
+ pos: -83.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24571
+ - uid: 8537
components:
- type: Transform
- pos: 48.5,9.5
+ pos: -83.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24572
+ - uid: 8539
components:
- type: Transform
- pos: 48.5,8.5
+ pos: -82.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24573
+ - uid: 8540
components:
- type: Transform
- pos: 48.5,7.5
+ pos: -82.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24574
+ - uid: 8542
components:
- type: Transform
- pos: 48.5,6.5
+ pos: -82.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24575
+ - uid: 8543
components:
- type: Transform
- pos: 48.5,5.5
+ pos: -82.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24576
+ - uid: 8544
components:
- type: Transform
- pos: 48.5,4.5
+ pos: -82.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24577
+ - uid: 8545
components:
- type: Transform
- pos: 49.5,2.5
+ pos: -82.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24578
+ - uid: 8546
components:
- type: Transform
- pos: 49.5,1.5
+ pos: -81.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24579
+ - uid: 8547
components:
- type: Transform
- pos: 49.5,0.5
+ pos: -81.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24580
+ - uid: 8549
components:
- type: Transform
- pos: 49.5,-0.5
+ pos: -81.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24581
+ - uid: 8550
components:
- type: Transform
- pos: 49.5,-1.5
+ pos: -81.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24583
+ - uid: 8551
components:
- type: Transform
- pos: 49.5,-3.5
+ pos: -81.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24584
+ - uid: 8552
components:
- type: Transform
- pos: 49.5,-4.5
+ pos: -81.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24586
+ - uid: 8553
components:
- type: Transform
- pos: 49.5,-6.5
+ pos: -80.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24587
+ - uid: 8554
components:
- type: Transform
- pos: 49.5,-7.5
+ pos: -80.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24588
+ - uid: 8556
components:
- type: Transform
- pos: 49.5,-8.5
+ pos: -80.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24589
+ - uid: 8557
components:
- type: Transform
- pos: 49.5,-9.5
+ pos: -80.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24590
+ - uid: 8558
components:
- type: Transform
- pos: 49.5,-10.5
+ pos: -80.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24591
+ - uid: 8559
components:
- type: Transform
- pos: 49.5,-11.5
+ pos: -80.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24600
+ - uid: 8560
components:
- type: Transform
- pos: 47.5,-17.5
+ pos: -79.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24605
+ - uid: 8562
components:
- type: Transform
- pos: 47.5,-16.5
+ pos: -79.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24606
+ - uid: 8563
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-18.5
+ pos: -79.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24607
+ - uid: 8564
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-18.5
+ pos: -79.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24608
+ - uid: 8565
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-18.5
+ pos: -79.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24609
+ - uid: 8566
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,-18.5
+ pos: -78.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24610
+ - uid: 8567
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-18.5
+ pos: -78.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24611
+ - uid: 8568
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-18.5
+ pos: -78.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24612
+ - uid: 8569
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-18.5
+ pos: -78.5,24.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24613
+ - uid: 8570
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-18.5
+ pos: -87.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24614
+ - uid: 8571
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-16.5
+ pos: -87.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24615
+ - uid: 8573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-16.5
+ pos: -87.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24616
+ - uid: 8574
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-16.5
+ pos: -87.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24617
+ - uid: 8575
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,-16.5
+ pos: -87.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24618
+ - uid: 8577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-16.5
+ pos: -88.5,30.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24619
+ - uid: 8579
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,15.5
+ pos: -89.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24624
+ - uid: 8580
components:
- type: Transform
- pos: 51.5,-12.5
+ pos: -88.5,25.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24625
+ - uid: 8584
components:
- type: Transform
- pos: 51.5,-11.5
+ pos: -88.5,29.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24626
+ - uid: 8586
components:
- type: Transform
- pos: 51.5,-10.5
+ pos: -89.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24627
+ - uid: 8588
components:
- type: Transform
- pos: 51.5,-9.5
+ pos: -88.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24628
+ - uid: 8589
components:
- type: Transform
- pos: 51.5,-8.5
+ pos: -88.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24630
+ - uid: 8591
components:
- type: Transform
- pos: 51.5,-6.5
+ pos: -89.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24632
+ - uid: 8594
components:
- type: Transform
- pos: 51.5,-4.5
+ pos: -90.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24633
+ - uid: 8595
components:
- type: Transform
- pos: 51.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24634
+ - uid: 8596
components:
- type: Transform
- pos: 51.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24635
+ - uid: 8616
components:
- type: Transform
- pos: 51.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -106.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24636
+ - uid: 11404
components:
- type: Transform
- pos: 51.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,11.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24647
+ - uid: 11405
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-17.5
+ pos: -104.5,3.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24648
+ - uid: 11406
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 37.5,-16.5
+ pos: -104.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24650
+ - uid: 11409
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-16.5
+ pos: -104.5,5.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24651
+ - uid: 11411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-16.5
+ pos: -104.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24652
+ - uid: 11412
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-16.5
+ pos: -103.5,8.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24659
+ - uid: 11420
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,-16.5
+ pos: -104.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24660
+ - uid: 11453
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24661
+ - uid: 11454
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,27.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24664
+ - uid: 11455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,26.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24665
+ - uid: 11457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24666
+ - uid: 11458
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24667
+ - uid: 11459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24668
+ - uid: 11460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -88.5,28.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24669
+ - uid: 21833
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-14.5
+ pos: -50.5,-8.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24670
+ - uid: 22044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-14.5
+ pos: -104.5,6.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24671
+ - uid: 27838
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24672
+ - uid: 27839
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24673
+ - uid: 27840
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24674
+ - uid: 27841
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24675
+ - uid: 27842
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,41.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24676
+ - uid: 27843
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24677
+ - uid: 27859
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24678
+ - uid: 27870
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24681
+ - uid: 29802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-14.5
+ pos: 99.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24682
+ - uid: 29815
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,-14.5
+ pos: 104.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24683
+ - uid: 29905
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-14.5
+ pos: 104.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24684
+ - uid: 29906
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,27.5
+ pos: 104.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24685
+ - uid: 29907
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,-14.5
+ pos: 104.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24686
+ - uid: 29924
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-14.5
+ pos: 103.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24687
+ - uid: 29925
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-16.5
+ pos: 103.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24688
+ - uid: 29927
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,-16.5
+ pos: 103.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24689
+ - uid: 29937
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-16.5
+ pos: 100.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24690
+ - uid: 30131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-16.5
+ pos: 96.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24691
+ - uid: 30132
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-16.5
+ pos: 96.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24692
+ - uid: 30133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-16.5
+ pos: 96.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24693
+ - uid: 30134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,27.5
+ pos: 97.5,19.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24694
+ - uid: 30135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-16.5
+ pos: 97.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24696
+ - uid: 30136
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-16.5
+ pos: 97.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24698
+ - uid: 30137
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-16.5
+ pos: 97.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24699
+ - uid: 30139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-16.5
+ pos: 98.5,18.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24700
+ - uid: 30140
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-16.5
+ pos: 98.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24701
+ - uid: 30141
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-16.5
+ pos: 98.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24703
+ - uid: 30146
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-16.5
+ pos: 95.5,17.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24704
+ - uid: 30147
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-16.5
+ pos: 95.5,16.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24705
+ - uid: 30148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-16.5
+ pos: 96.5,15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24706
+ - uid: 30149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-16.5
+ pos: 97.5,15.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24707
+ - uid: 30164
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24708
+ - uid: 30166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24709
+ - uid: 30167
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24710
+ - uid: 30168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24711
+ - uid: 30169
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24713
+ - uid: 30170
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24714
+ - uid: 30171
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24715
+ - uid: 30172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24716
+ - uid: 30173
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 72.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24717
+ - uid: 30174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24718
+ - uid: 30177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24719
+ - uid: 30178
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24721
+ - uid: 30179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24722
+ - uid: 30180
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24723
+ - uid: 30181
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24724
+ - uid: 30182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24726
+ - uid: 30183
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,42.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24727
+ - uid: 30184
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24729
+ - uid: 30185
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24730
+ - uid: 32539
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-14.5
+ pos: 71.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24732
+ - uid: 33040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-16.5
+ pos: 98.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24733
+ - uid: 33085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-16.5
+ pos: 98.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24734
+ - uid: 33086
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-16.5
+ pos: 97.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24735
+ - uid: 33087
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-16.5
+ pos: 99.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24736
+ - uid: 33088
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-16.5
+ pos: 99.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24738
+ - uid: 33089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-16.5
+ pos: 99.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24739
+ - uid: 33090
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-16.5
+ pos: 98.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24741
+ - uid: 33091
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-16.5
+ pos: 100.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24742
+ - uid: 33092
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-16.5
+ pos: 100.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24743
+ - uid: 33093
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-16.5
+ pos: 99.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24745
+ - uid: 33094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-16.5
+ pos: 98.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24746
+ - uid: 33095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-16.5
+ pos: 97.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24747
+ - uid: 33096
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-16.5
+ pos: 96.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24748
+ - uid: 33098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-16.5
+ pos: 100.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24749
+ - uid: 33560
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-16.5
+ pos: 103.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24750
+ - uid: 33605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-16.5
+ pos: 105.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24751
+ - uid: 34244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-16.5
+ pos: 105.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24752
+- proto: FloraGreyStalagmite1
+ entities:
+ - uid: 17790
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 88.65585,32.097183
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24753
+ - uid: 29969
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-14.5
+ pos: 97.026825,65.00194
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24755
+ - uid: 31636
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-14.5
+ pos: 91.36276,65.84715
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24756
+ - uid: 31646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-14.5
+ pos: 86.70912,69.580795
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24757
+ - uid: 31648
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-14.5
+ pos: 86.28821,73.39627
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24758
+ - uid: 31655
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-14.5
+ pos: 81.34678,67.25336
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24759
+ - uid: 31657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-14.5
+ pos: 83.77647,69.42523
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24760
+ - uid: 31668
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-14.5
+ pos: 80.049904,76.1185
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24761
+ - uid: 31698
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-14.5
+ pos: 65.82638,65.72647
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24762
+ - uid: 31702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-14.5
+ pos: 70.87325,66.78897
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24764
+ - uid: 31707
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-14.5
+ pos: 65.48513,58.42623
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24765
+ - uid: 31720
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-14.5
+ pos: 89.641136,50.50387
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24766
+ - uid: 31724
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-15.5
+ pos: 96.8185,53.370773
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24767
+ - uid: 31725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-16.5
+ pos: 93.768326,59.007107
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24768
+ - uid: 31727
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-17.5
+ pos: 90.87941,55.350857
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24769
+ - uid: 38968
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 92.999344,11.161419
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24770
+ - uid: 38983
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 102.78473,9.387981
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24771
+ - uid: 38985
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 103.72223,11.247356
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24772
+ - uid: 38991
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 100.15524,11.333294
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24773
+ - uid: 38992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 104.73362,12.485392
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24776
+ - uid: 39004
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 98.41121,29.340899
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24777
+ - uid: 39016
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 104.6462,23.425716
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24780
+ - uid: 39017
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 103.50558,24.936129
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24781
+ - uid: 39024
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 100.14015,25.154058
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24782
+ - uid: 39033
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 99.91121,37.09593
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24784
+ - uid: 39037
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 94.24085,38.292847
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24785
+ - uid: 39040
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 93.31898,41.14441
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24786
+ - uid: 39048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 81.3314,29.933123
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24787
+ - uid: 39058
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 77.34879,32.05239
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24788
+ - uid: 39061
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 75.52067,35.54458
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24789
+ - uid: 39063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 77.39567,34.778954
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24795
+ - uid: 39071
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-44.5
+ rot: 1.5707963267948966 rad
+ pos: 87.65499,44.783665
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24796
+ - uid: 39080
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-45.5
+ pos: 92.50016,53.96985
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24797
+ - uid: 39086
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-46.5
+ pos: 99.6277,51.90575
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24798
+- proto: FloraGreyStalagmite2
+ entities:
+ - uid: 29674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-47.5
+ pos: 96.66745,62.275368
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24799
+ - uid: 29962
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-48.5
+ pos: 95.33151,62.212868
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24800
+ - uid: 31634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-49.5
+ pos: 89.3862,64.89403
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24803
+ - uid: 31637
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-49.5
+ pos: 97.73639,69.33861
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24804
+ - uid: 31641
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-48.5
+ pos: 87.09975,68.19017
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24805
+ - uid: 31647
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-47.5
+ pos: 86.35071,73.85721
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24806
+ - uid: 31653
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-46.5
+ pos: 87.75696,77.74002
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24807
+ - uid: 31661
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-45.5
+ pos: 81.19053,71.56586
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24808
+ - uid: 31666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-44.5
+ pos: 80.62022,75.915375
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24814
+ - uid: 31674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-38.5
+ pos: 73.72016,68.33078
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24815
+ - uid: 31676
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-37.5
+ pos: 74.119736,66.85422
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24816
+ - uid: 31679
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-36.5
+ pos: 66.17822,68.26047
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24817
+ - uid: 31682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-35.5
+ pos: 69.67822,69.252655
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24818
+ - uid: 31684
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-34.5
+ pos: 56.478855,86.55994
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24819
+ - uid: 31687
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-33.5
+ pos: 58.77573,81.358
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24821
+ - uid: 31689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-31.5
+ pos: 57.21323,80.803314
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24822
+ - uid: 31695
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-30.5
+ pos: 65.35763,65.26553
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24824
+ - uid: 31705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-28.5
+ pos: 69.63888,65.25772
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24825
+ - uid: 31706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-27.5
+ pos: 65.71169,59.828487
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24826
+ - uid: 31710
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-26.5
+ pos: 76.426926,50.39327
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24827
+ - uid: 31718
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-1.5
+ pos: 91.53252,52.98043
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24828
+ - uid: 31723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-24.5
+ pos: 95.84299,54.808273
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24830
+ - uid: 38973
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 97.064095,9.278606
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24831
+ - uid: 38977
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 95.82379,10.958294
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24832
+ - uid: 38988
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 100.831604,12.864544
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24833
+ - uid: 38998
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 105.63464,20.863852
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24834
+ - uid: 39000
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 99.361206,22.26229
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24835
+ - uid: 39006
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 96.204956,25.332602
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24836
+ - uid: 39012
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 89.620026,30.791815
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24837
+ - uid: 39019
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 102.64445,26.912691
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24838
+ - uid: 39028
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 101.645584,29.756706
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24839
+ - uid: 39039
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 93.654915,41.42566
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24840
+ - uid: 39043
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 88.08554,31.73781
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24841
+ - uid: 39046
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 80.2689,29.339373
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24842
+ - uid: 39051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 81.00327,31.901873
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24843
+ - uid: 39060
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 75.28629,35.86489
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24844
+ - uid: 39066
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 79.24723,34.82583
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24845
+ - uid: 39069
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 69.71626,39.84624
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24846
+ - uid: 39072
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 88.17843,43.916477
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24847
+ - uid: 39078
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 93.88297,51.32141
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24848
+ - uid: 39082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-3.5
+ pos: 93.30485,54.91516
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24849
+ - uid: 39088
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-2.5
+ pos: 101.64686,53.29113
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24850
+ - uid: 39090
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-1.5
+ pos: 97.89686,58.814568
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24852
+ - uid: 39092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,0.5
+ pos: 98.20393,59.629654
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24854
+ - uid: 39093
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,2.5
+ pos: 102.79768,61.93434
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24855
+- proto: FloraGreyStalagmite3
+ entities:
+ - uid: 18079
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 86.30429,31.89406
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24856
+ - uid: 29095
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,4.5
+ pos: 92.89401,61.40818
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24857
+ - uid: 29960
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,5.5
+ pos: 95.714325,62.462868
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24858
+ - uid: 31633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,6.5
+ pos: 94.84714,66.18309
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24859
+ - uid: 31638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,7.5
+ pos: 93.90045,69.893295
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24860
+ - uid: 31639
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,8.5
+ pos: 91.33014,68.76048
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24861
+ - uid: 31652
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,9.5
+ pos: 85.311646,76.474396
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24862
+ - uid: 31654
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,9.5
+ pos: 87.53821,77.33377
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24863
+ - uid: 31660
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,8.5
+ pos: 82.83897,70.07367
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24864
+ - uid: 31663
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,7.5
+ pos: 81.15147,70.26898
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24865
+ - uid: 31667
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,6.5
+ pos: 80.31553,75.415375
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24866
+ - uid: 31688
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,5.5
+ pos: 57.033543,80.13144
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24867
+ - uid: 31692
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,4.5
+ pos: 58.697605,77.35019
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24868
+ - uid: 31693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,3.5
+ pos: 65.30294,66.92178
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24870
+ - uid: 31704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,1.5
+ pos: 73.342,65.35928
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24872
+ - uid: 31713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-0.5
+ pos: 92.67314,48.896618
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24873
+ - uid: 31714
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-1.5
+ pos: 92.087204,48.505993
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24874
+ - uid: 31728
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-2.5
+ pos: 88.59035,56.99148
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24875
+ - uid: 38969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 93.561844,10.817669
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24876
+ - uid: 38971
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 93.08528,8.380169
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24877
+ - uid: 38976
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 96.237854,12.005169
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24878
+ - uid: 38978
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 95.48004,10.802044
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24879
+ - uid: 38980
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 100.37067,9.309856
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24880
+ - uid: 38999
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 105.267456,20.51229
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24881
+ - uid: 39009
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 90.70596,28.93244
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24882
+ - uid: 39010
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 88.2919,28.36994
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24883
+ - uid: 39013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 89.79971,30.518377
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24884
+ - uid: 39014
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 104.747765,23.925716
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24885
+ - uid: 39022
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 100.26515,26.615816
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24886
+ - uid: 39031
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,2.5
+ pos: 97.22371,34.054478
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24888
+ - uid: 39032
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,2.5
+ pos: 100.1534,36.338116
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24889
+ - uid: 39035
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,2.5
+ pos: 95.364334,37.400616
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24890
+ - uid: 39045
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,2.5
+ pos: 85.59335,29.315935
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24891
+ - uid: 39047
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,2.5
+ pos: 80.792336,29.315935
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24892
+ - uid: 39057
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,2.5
+ pos: 77.294106,31.333641
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24893
+ - uid: 39068
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,2.5
+ pos: 69.15376,39.893116
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24894
+ - uid: 39074
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,2.5
+ pos: 88.77999,43.971165
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24895
+ - uid: 39076
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,2.5
+ pos: 95.297035,50.85266
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24896
+ - uid: 39083
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,2.5
+ pos: 93.984535,54.735474
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24897
+ - uid: 39085
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,1.5
+ pos: 98.80739,50.452625
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24898
+ - uid: 39096
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,1.5
+ pos: 99.75081,57.879654
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24899
+- proto: FloraGreyStalagmite4
+ entities:
+ - uid: 18193
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,1.5
+ pos: 94.10023,38.99597
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24900
+ - uid: 29094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,1.5
+ pos: 95.64264,68.455795
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24901
+ - uid: 29978
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,1.5
+ pos: 97.73776,64.900375
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24902
+ - uid: 30791
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,1.5
+ pos: 97.839325,63.267555
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24903
+ - uid: 31656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,1.5
+ pos: 81.22959,67.98773
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24904
+ - uid: 31665
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,1.5
+ pos: 83.674904,73.931
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24905
+ - uid: 31670
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,1.5
+ pos: 76.6811,65.29953
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24906
+ - uid: 31686
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,1.5
+ pos: 58.705418,81.91269
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24907
+ - uid: 31694
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,1.5
+ pos: 66.06075,66.88272
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24908
+ - uid: 31709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,1.5
+ pos: 76.73012,51.846394
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24910
+ - uid: 31716
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,1.5
+ pos: 90.97002,52.62887
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24911
+ - uid: 38972
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -12.5,1.5
+ pos: 98.13441,8.200481
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24912
+ - uid: 38982
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,1.5
+ pos: 102.081604,9.270794
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24914
+ - uid: 38989
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,1.5
+ pos: 100.82379,12.091106
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24915
+ - uid: 38994
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,1.5
+ pos: 102.27051,14.032267
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24916
+ - uid: 38995
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,1.5
+ pos: 91.17077,9.312969
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24917
+ - uid: 38996
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,1.5
+ pos: 101.37683,21.309164
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24918
+ - uid: 39029
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,1.5
+ pos: 101.66902,29.225456
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24920
+ - uid: 39030
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,1.5
+ pos: 97.37215,33.320103
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24921
+ - uid: 39041
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,1.5
+ pos: 93.95179,42.042847
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24922
+ - uid: 39052
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,1.5
+ pos: 81.8314,31.354998
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24923
+ - uid: 39053
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,1.5
+ pos: 78.42515,30.401873
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24924
+ - uid: 39089
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,1.5
+ pos: 97.31092,58.767693
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24926
+ - uid: 39095
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,1.5
+ pos: 100.0555,57.30934
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24928
+- proto: FloraGreyStalagmite5
+ entities:
+ - uid: 29091
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,2.5
+ pos: 95.08014,68.299545
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24929
+ - uid: 30642
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,2.5
+ pos: 92.214325,61.400368
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24930
+ - uid: 30788
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,2.5
+ pos: 96.89401,63.04246
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24932
+ - uid: 31055
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,2.5
+ pos: 94.72995,66.86278
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24933
+ - uid: 31635
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,2.5
+ pos: 89.92526,64.792465
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24935
+ - uid: 31643
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,2.5
+ pos: 88.45131,68.830795
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24938
+ - uid: 31644
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,2.5
+ pos: 86.20131,69.91673
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24939
+ - uid: 31650
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,2.5
+ pos: 86.76477,73.02908
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24940
+ - uid: 31651
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,2.5
+ pos: 86.50696,75.43533
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24941
+ - uid: 31662
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,2.5
+ pos: 81.37803,71.14398
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24942
+ - uid: 31664
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,2.5
+ pos: 83.71397,73.352875
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24944
+ - uid: 31671
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,2.5
+ pos: 77.75141,66.471405
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24945
+ - uid: 31673
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,1.5
+ pos: 77.1811,70.01828
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24946
+ - uid: 31675
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,0.5
+ pos: 74.86192,66.83859
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24947
+ - uid: 31680
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-0.5
+ pos: 66.74072,68.33859
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24949
+ - uid: 31685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-2.5
+ pos: 55.205418,86.21619
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24950
+ - uid: 31690
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-3.5
+ pos: 60.760105,77.334564
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24951
+ - uid: 31696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,0.5
+ pos: 65.217,65.99991
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24952
+ - uid: 31700
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-0.5
+ pos: 66.5295,66.398346
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24953
+ - uid: 31701
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-1.5
+ pos: 70.20138,66.898346
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24955
+ - uid: 31711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-3.5
+ pos: 76.801926,50.377644
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24956
+ - uid: 31712
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-4.5
+ pos: 92.710915,48.15443
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24957
+ - uid: 31719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,3.5
+ pos: 89.172386,50.933556
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24958
+ - uid: 31721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,4.5
+ pos: 89.256386,48.456993
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24959
+ - uid: 31726
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,5.5
+ pos: 93.16676,58.882107
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24960
+ - uid: 38970
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 94.14778,11.130169
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24961
+ - uid: 38974
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 96.657845,9.364544
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24962
+ - uid: 38979
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 97.456604,9.012981
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24963
+ - uid: 38981
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 100.84723,9.692669
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24964
+ - uid: 38984
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 103.07379,10.403606
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24965
+ - uid: 38990
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 99.43317,11.262981
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24966
+ - uid: 38993
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 104.89768,13.211954
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24967
+ - uid: 38997
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 104.63464,21.801352
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24968
+ - uid: 39001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 98.32214,23.371664
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24969
+ - uid: 39003
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 98.77527,25.676352
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24970
+ - uid: 39005
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 98.25496,29.934649
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24971
+ - uid: 39007
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 91.759926,27.002752
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24972
+ - uid: 39008
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 89.26846,27.36994
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24973
+ - uid: 39015
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 104.10714,24.011654
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24974
+ - uid: 39018
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 103.7382,24.639254
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24975
+ - uid: 39021
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 102.34757,25.764254
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24976
+ - uid: 39023
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 100.60109,26.123629
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24979
+ - uid: 39027
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -11.5,12.5
+ pos: 99.97371,31.881706
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24980
+ - uid: 39036
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -12.5,12.5
+ pos: 95.93684,37.2392
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24981
+ - uid: 39044
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -13.5,12.5
+ pos: 86.194916,29.292498
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24982
+ - uid: 39056
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,12.5
+ pos: 82.38629,29.386248
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24983
+ - uid: 39062
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,12.5
+ pos: 75.950356,35.95864
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24984
+ - uid: 39064
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,12.5
+ pos: 77.74723,34.20083
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24985
+ - uid: 39067
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,12.5
+ pos: 69.81001,42.99468
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24986
+ - uid: 39075
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,12.5
+ pos: 96.34391,49.430786
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24987
+ - uid: 39077
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,12.5
+ pos: 95.00797,51.337036
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24988
+ - uid: 39087
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,12.5
+ pos: 100.47498,55.85363
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24989
+ - uid: 39091
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,12.5
+ pos: 98.45393,60.02809
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24990
+ - uid: 39094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,12.5
+ pos: 103.77425,60.981216
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24992
+- proto: FloraGreyStalagmite6
+ entities:
+ - uid: 29983
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,12.5
+ pos: 97.90964,64.25193
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24993
+ - uid: 31642
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,12.5
+ pos: 88.904434,68.55736
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24994
+ - uid: 31649
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,12.5
+ pos: 86.26477,72.43533
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24995
+ - uid: 31659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,12.5
+ pos: 83.674904,69.91742
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24996
+ - uid: 31669
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,12.5
+ pos: 81.66709,67.676834
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24997
+ - uid: 31672
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,13.5
+ pos: 77.50141,66.60422
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24998
+ - uid: 31677
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,13.5
+ pos: 74.4713,66.43234
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24999
+ - uid: 31678
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,13.5
+ pos: 67.24072,69.89328
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25000
+ - uid: 31683
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,13.5
+ pos: 56.189793,86.79431
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25001
+ - uid: 31691
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,13.5
+ pos: 60.33823,77.50644
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25002
+ - uid: 31699
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,13.5
+ pos: 66.5295,65.18741
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25003
+ - uid: 31703
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,13.5
+ pos: 72.37325,65.16397
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25004
+ - uid: 31708
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,13.5
+ pos: 75.79262,52.729206
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25005
+ - uid: 31715
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,13.5
+ pos: 90.42314,52.88668
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25007
+ - uid: 31722
+ components:
+ - type: Transform
+ pos: 88.912636,48.496056
+ parent: 2
+ - uid: 38967
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,13.5
+ pos: 92.22591,11.856731
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25008
+ - uid: 38975
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,13.5
+ pos: 98.32191,11.903606
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25009
+ - uid: 38986
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,13.5
+ pos: 103.144104,11.645794
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25010
+ - uid: 38987
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.5,13.5
+ pos: 100.34723,12.505169
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25011
+ - uid: 39002
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,13.5
+ pos: 98.13464,25.777914
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25012
+ - uid: 39011
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -27.5,13.5
+ pos: 88.245026,28.877752
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25013
+ - uid: 39020
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,13.5
+ pos: 102.81632,25.990816
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25014
+ - uid: 39025
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,14.5
+ pos: 99.5464,24.755621
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25015
+ - uid: 39026
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,14.5
+ pos: 99.1534,27.259748
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25016
+ - uid: 39034
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,14.5
+ pos: 98.395584,39.87718
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25017
+ - uid: 39038
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,14.5
+ pos: 93.29554,41.80847
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25018
+ - uid: 39042
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,14.5
+ pos: 86.17148,31.14406
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25019
+ - uid: 39049
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,14.5
+ pos: 81.42515,29.417498
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25020
+ - uid: 39050
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,12.5
+ pos: 81.65171,31.878435
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25021
+ - uid: 39054
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,12.5
+ pos: 78.98765,30.151873
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25022
+ - uid: 39055
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -7.5,12.5
+ pos: 83.09702,30.823748
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25023
+ - uid: 39059
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,12.5
+ pos: 78.044106,31.591454
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25024
+ - uid: 39065
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,12.5
+ pos: 79.77067,33.82583
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25025
+ - uid: 39070
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -4.5,12.5
+ pos: 70.8647,37.97124
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25028
+ - uid: 39073
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 88.81905,43.557102
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25029
+ - uid: 39079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,2.5
+ pos: 93.453285,51.305786
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25030
+ - uid: 39081
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,2.5
+ pos: 93.16422,54.087036
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25031
+ - uid: 39084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,2.5
+ pos: 98.22926,50.194813
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25032
+- proto: FloraStalagmite1
+ entities:
+ - uid: 3435
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -102.1346,23.30238
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25033
+ - uid: 14360
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,2.5
+ pos: 90.5434,58.095047
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25034
+ - uid: 15611
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,2.5
+ pos: 99.640625,41.24438
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25035
+ - uid: 15614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,1.5
+ pos: 71.55667,51.4233
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25036
+ - uid: 15615
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,1.5
+ pos: 83.18593,63.248577
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25037
+ - uid: 16513
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,1.5
+ pos: 93.26401,29.359962
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25038
+ - uid: 18083
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,1.5
+ pos: 103.048706,51.665443
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25039
+ - uid: 23542
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,1.5
+ pos: 103.72058,50.142006
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25040
+ - uid: 36970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,1.5
+ pos: 93.756836,34.890858
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25041
+ - uid: 36971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,1.5
+ pos: 91.53027,33.39867
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25046
+ - uid: 36979
components:
- type: Transform
- pos: 8.5,1.5
+ pos: 93.282104,22.42301
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25048
+ - uid: 37009
components:
- type: Transform
- pos: 8.5,-0.5
+ pos: 100.9234,35.31427
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25049
+ - uid: 37021
components:
- type: Transform
- pos: 8.5,-1.5
+ pos: 91.69965,56.41536
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25050
+ - uid: 37032
components:
- type: Transform
- pos: 8.5,-2.5
+ pos: 87.9139,54.313797
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25051
+ - uid: 37036
components:
- type: Transform
- pos: 8.5,-3.5
+ pos: 86.21224,60.2354
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25072
+ - uid: 37039
components:
- type: Transform
- pos: -38.5,62.5
+ pos: 88.93099,60.063526
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25073
+ - uid: 37043
components:
- type: Transform
- pos: -39.5,62.5
+ pos: 84.688805,66.883835
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25074
+ - uid: 37054
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-3.5
+ pos: 89.41374,64.00946
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25075
+ - uid: 37070
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-2.5
+ pos: 71.26942,77.91345
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25076
+ - uid: 37078
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-1.5
+ pos: 61.34164,79.960815
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25078
+ - uid: 37083
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,0.5
+ pos: 62.13352,74.00308
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25079
+ - uid: 37136
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,2.5
+ pos: 96.76449,28.293982
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25080
+ - uid: 37137
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,3.5
+ pos: 95.09261,27.325232
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25081
+ - uid: 37152
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,4.5
+ pos: 91.30021,24.495256
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25082
+ - uid: 37158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,3.5
+ pos: 94.09148,17.28894
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25083
+- proto: FloraStalagmite2
+ entities:
+ - uid: 3684
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,4.5
+ pos: -104.55647,19.98988
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25084
+ - uid: 5113
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,5.5
+ pos: -99.41585,19.349255
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25085
+ - uid: 15405
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,6.5
+ pos: 100.08777,50.071693
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25086
+ - uid: 15580
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 75.2861,37.351192
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25087
+ - uid: 15581
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,9.5
+ pos: 90.06477,25.17943
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25089
+ - uid: 15584
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,11.5
+ pos: 89.71321,26.171618
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25090
+ - uid: 15589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,12.5
+ pos: 101.60339,51.892006
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25091
+ - uid: 15830
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,13.5
+ pos: 98.984375,40.67407
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25092
+ - uid: 36940
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,14.5
+ pos: 79.93636,35.00607
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25093
+ - uid: 36969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,6.5
+ pos: 92.08496,31.258045
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25094
+ - uid: 36972
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,7.5
+ pos: 91.8584,33.914295
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25095
+ - uid: 36987
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,8.5
+ pos: 75.77229,49.37882
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25097
+ - uid: 36990
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,10.5
+ pos: 66.036255,54.11761
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25098
+ - uid: 36993
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,11.5
+ pos: 69.87219,53.469173
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25099
+ - uid: 36998
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,12.5
+ pos: 93.38815,34.10288
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25100
+ - uid: 37006
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,13.5
+ pos: 100.6734,37.665833
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25101
+ - uid: 37024
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,14.5
+ pos: 85.327965,56.993484
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25102
+ - uid: 37028
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,15.5
+ pos: 86.77328,53.720047
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25104
+ - uid: 37031
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,5.5
+ pos: 87.19515,57.024734
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25105
+ - uid: 37042
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,5.5
+ pos: 84.82943,65.76665
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25106
+ - uid: 37044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,5.5
+ pos: 83.86068,67.6104
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25107
+ - uid: 37049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,5.5
+ pos: 83.09638,62.407894
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25108
+ - uid: 37055
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,5.5
+ pos: 87.671555,63.89227
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25109
+ - uid: 37063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,5.5
+ pos: 76.73938,74.92407
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25110
+ - uid: 37067
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,5.5
+ pos: 75.317505,72.16626
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25111
+ - uid: 37071
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,5.5
+ pos: 68.668304,77.33586
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25113
+ - uid: 37075
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,5.5
+ pos: 66.62143,75.22099
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25114
+ - uid: 37076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,5.5
+ pos: 74.730804,77.822556
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25116
+ - uid: 37077
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,5.5
+ pos: 62.62289,80.835815
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25117
+ - uid: 37086
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,5.5
+ pos: 64.09445,71.98932
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25118
+ - uid: 37095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,5.5
+ pos: 63.882553,71.37004
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25119
+ - uid: 37106
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,5.5
+ pos: 71.770256,51.85314
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25121
+ - uid: 37113
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,5.5
+ pos: 96.22317,50.942863
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25122
+ - uid: 37120
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,5.5
+ pos: 100.30386,50.48457
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25123
+ - uid: 37121
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,5.5
+ pos: 95.17041,43.86939
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25124
+ - uid: 37122
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,7.5
+ pos: 96.51925,39.91038
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25125
+ - uid: 37124
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,7.5
+ pos: 95.08956,38.199444
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25126
+ - uid: 37129
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,7.5
+ pos: 97.92769,38.60284
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25127
+ - uid: 37132
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,7.5
+ pos: 100.5605,37.188778
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25128
+ - uid: 37149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,7.5
+ pos: 88.097084,30.932756
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25129
+ - uid: 37150
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,7.5
+ pos: 90.45646,24.964006
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25130
+ - uid: 37165
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,7.5
+ pos: 65.30987,57.19859
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25131
+- proto: FloraStalagmite3
+ entities:
+ - uid: 1577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -104.68147,19.318005
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25132
+ - uid: 2687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -99.30647,24.943005
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25134
+ - uid: 3854
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -101.68147,27.130505
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25135
+ - uid: 14020
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,7.5
+ pos: 88.19875,22.88214
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25137
+ - uid: 15583
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,7.5
+ pos: 68.99846,51.12551
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25138
+ - uid: 17724
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -102.62332,18.45863
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25139
+ - uid: 36973
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,7.5
+ pos: 92.26465,34.49242
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25141
+ - uid: 36981
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,7.5
+ pos: 92.29835,26.974869
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25142
+ - uid: 36995
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,7.5
+ pos: 67.62476,56.882977
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25143
+ - uid: 37007
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,7.5
+ pos: 101.064026,38.34552
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25147
+ - uid: 37046
components:
- type: Transform
- pos: 30.5,6.5
+ pos: 82.11982,66.20477
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25148
+ - uid: 37052
components:
- type: Transform
- pos: 30.5,5.5
+ pos: 91.640305,61.314144
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25149
+ - uid: 37065
components:
- type: Transform
- pos: 30.5,4.5
+ pos: 76.536255,74.48657
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25150
+ - uid: 37088
components:
- type: Transform
- pos: 30.5,3.5
+ pos: 65.633514,74.223694
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25151
+ - uid: 37107
components:
- type: Transform
- pos: 30.5,2.5
+ pos: 70.99682,51.90783
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25152
+ - uid: 37112
components:
- type: Transform
- pos: 30.5,1.5
+ pos: 95.16848,49.950676
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25153
+ - uid: 37123
components:
- type: Transform
- pos: 30.5,0.5
+ pos: 96.80831,39.55882
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25154
+ - uid: 37147
components:
- type: Transform
- pos: 30.5,-0.5
+ pos: 88.722084,31.120256
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25156
+ - uid: 37153
components:
- type: Transform
- pos: 30.5,-2.5
+ pos: 92.77677,25.682756
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25157
+ - uid: 37154
components:
- type: Transform
- pos: 30.5,-3.5
+ pos: 94.80229,23.171757
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25159
+- proto: FloraStalagmite4
+ entities:
+ - uid: 1652
components:
- type: Transform
- pos: 31.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -104.90022,20.286755
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25160
+ - uid: 15613
components:
- type: Transform
- pos: 31.5,3.5
+ pos: 95.185486,26.289526
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25161
+ - uid: 16512
components:
- type: Transform
- pos: 31.5,2.5
+ pos: 89.2679,26.33568
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25162
+ - uid: 28955
components:
- type: Transform
- pos: 31.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 90.76125,21.780577
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25163
+ - uid: 36968
components:
- type: Transform
- pos: 31.5,0.5
+ pos: 94.955734,31.881668
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25164
+ - uid: 36974
components:
- type: Transform
- pos: 31.5,-0.5
+ pos: 92.95215,34.625233
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25165
+ - uid: 36982
components:
- type: Transform
- pos: 31.5,-1.5
+ pos: 102.11902,51.673256
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25167
+ - uid: 36985
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 71.04118,48.24938
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25168
+ - uid: 36994
components:
- type: Transform
- pos: 31.5,-4.5
+ pos: 64.34351,55.289227
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25175
+ - uid: 36997
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,2.5
+ pos: 66.90601,56.906414
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25176
+ - uid: 36999
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,2.5
+ pos: 93.84909,33.60288
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25177
+ - uid: 37000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,2.5
+ pos: 93.282776,42.93927
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25178
+ - uid: 37002
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,2.5
+ pos: 94.80621,44.275208
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25179
+ - uid: 37008
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,2.5
+ pos: 101.94684,38.09552
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25180
+ - uid: 37010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,2.5
+ pos: 98.39706,36.775574
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25181
+ - uid: 37019
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
+ pos: 89.09028,57.907547
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25182
+ - uid: 37020
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,1.5
+ pos: 89.644966,57.57161
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25183
+ - uid: 37022
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,1.5
+ pos: 89.57015,54.423172
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25184
+ - uid: 37025
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,1.5
+ pos: 86.015465,57.001297
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25258
+ - uid: 37030
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
+ pos: 86.077965,56.024734
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25259
+ - uid: 37034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
+ pos: 82.19186,54.50987
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25268
+ - uid: 37035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
+ pos: 84.05599,61.2979
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25269
+ - uid: 37038
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
+ pos: 88.33724,60.19634
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25270
+ - uid: 37040
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-19.5
+ pos: 82.126305,63.3604
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25271
+ - uid: 37047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-19.5
+ pos: 82.04951,64.62665
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25272
+ - uid: 37050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
+ pos: 89.479195,60.17352
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25292
+ - uid: 37053
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
+ pos: 93.94499,61.18133
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25335
+ - uid: 37056
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,64.5
+ pos: 87.09343,63.814144
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25350
+ - uid: 37060
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,22.5
+ pos: 74.20813,76.0647
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25352
+ - uid: 37062
components:
- type: Transform
- pos: 46.5,19.5
+ pos: 76.73157,73.79907
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25354
+ - uid: 37066
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,21.5
+ pos: 75.192505,72.6272
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25355
+ - uid: 37069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,21.5
+ pos: 77.880005,71.222855
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25356
+ - uid: 37072
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,21.5
+ pos: 65.074554,79.9843
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25357
+ - uid: 37079
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,21.5
+ pos: 63.357265,79.179565
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25358
+ - uid: 37082
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,18.5
+ pos: 62.29758,74.979645
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25361
+ - uid: 37085
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,22.5
+ pos: 63.867893,73.23932
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25362
+ - uid: 37087
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,23.5
+ pos: 64.7507,72.786194
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25364
+ - uid: 37094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,25.5
+ pos: 63.64818,71.75285
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25365
+ - uid: 37097
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,26.5
+ pos: 60.17943,69.97626
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25367
+ - uid: 37103
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,28.5
+ pos: 65.24064,57.74362
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25368
+ - uid: 37108
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,19.5
+ pos: 70.82494,52.423454
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25369
+ - uid: 37109
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,20.5
+ pos: 65.03752,55.047386
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25370
+ - uid: 37110
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,21.5
+ pos: 95.309105,49.2163
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25371
+ - uid: 37115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,22.5
+ pos: 97.246605,49.92724
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25372
+ - uid: 37117
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,23.5
+ pos: 98.41176,52.101757
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25374
+ - uid: 37133
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,25.5
+ pos: 100.34753,35.264023
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25376
+ - uid: 37134
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,27.5
+ pos: 97.100426,34.926937
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25379
+ - uid: 37135
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,29.5
+ pos: 96.756676,28.981482
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25380
+ - uid: 37138
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,29.5
+ pos: 95.444176,26.840857
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25381
+ - uid: 37143
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,29.5
+ pos: 91.78391,27.884565
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25382
+ - uid: 37148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,29.5
+ pos: 88.93302,30.604631
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25383
+ - uid: 37151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,29.5
+ pos: 90.940834,25.081194
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25384
+ - uid: 37157
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,29.5
+ pos: 93.38054,17.335815
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25386
+ - uid: 37160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,29.5
+ pos: 97.708664,20.84523
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25388
+ - uid: 37196
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 77.731415,38.917343
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25389
+- proto: FloraStalagmite5
+ entities:
+ - uid: 2826
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -99.22835,23.630505
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25390
+ - uid: 2962
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -103.93147,19.36488
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25391
+ - uid: 3687
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -99.58772,24.536755
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25392
+ - uid: 3688
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -101.02522,26.943005
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25393
+ - uid: 3812
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -99.15022,19.73988
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25395
+ - uid: 3831
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -104.18147,30.036755
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25396
+ - uid: 9658
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 78.106415,38.78453
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25397
+ - uid: 15612
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,28.5
+ pos: 101.90625,38.814693
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25398
+ - uid: 16511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,28.5
+ pos: 95.921875,41.877193
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25401
+ - uid: 23388
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,30.5
+ pos: 93.13901,30.117775
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25402
+ - uid: 36980
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,31.5
+ pos: 92.68897,26.818619
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25403
+ - uid: 36986
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,32.5
+ pos: 74.923996,49.96813
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25405
+ - uid: 36991
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,34.5
+ pos: 66.68469,54.062923
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25406
+ - uid: 36996
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,35.5
+ pos: 67.7732,56.343914
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25407
+ - uid: 37001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,36.5
+ pos: 93.970276,42.93927
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25408
+ - uid: 37023
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,37.5
+ pos: 89.03109,54.25911
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25410
+ - uid: 37029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,39.5
+ pos: 85.00765,53.774734
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25412
+ - uid: 37048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,41.5
+ pos: 82.635445,63.478207
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25413
+ - uid: 37051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,42.5
+ pos: 89.88249,60.759457
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25415
+ - uid: 37057
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,44.5
+ pos: 87.671555,63.259457
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25416
+ - uid: 37058
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,45.5
+ pos: 82.81218,65.1579
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25417
+ - uid: 37059
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,46.5
+ pos: 72.48157,76.3772
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25419
+ - uid: 37064
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,29.5
+ pos: 76.14563,74.994385
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25421
+ - uid: 37068
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,31.5
+ pos: 77.911255,71.910355
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25423
+ - uid: 37074
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,33.5
+ pos: 64.00424,76.94524
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25424
+ - uid: 37084
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,34.5
+ pos: 62.66477,74.37027
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25425
+ - uid: 37089
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,35.5
+ pos: 65.80478,75.0647
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25427
+ - uid: 37090
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,37.5
+ pos: 65.382904,79.29126
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25428
+ - uid: 37091
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,38.5
+ pos: 68.89072,78.1272
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25430
+ - uid: 37092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,40.5
+ pos: 75.799225,76.25008
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25431
+ - uid: 37099
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,41.5
+ pos: 63.788803,70.35907
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25433
+ - uid: 37100
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,43.5
+ pos: 58.869724,66.892944
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25436
+ - uid: 37104
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,45.5
+ pos: 66.68595,59.11862
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25438
+ - uid: 37105
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,47.5
+ pos: 70.24682,49.650017
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25443
+ - uid: 37114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,43.5
+ pos: 97.75442,50.255363
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25444
+ - uid: 37116
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,43.5
+ pos: 97.152855,51.929882
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25445
+ - uid: 37130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,43.5
+ pos: 97.86519,39.962215
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25446
+ - uid: 37131
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,43.5
+ pos: 100.06831,37.868465
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25447
+ - uid: 37139
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,43.5
+ pos: 97.881676,26.340857
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25448
+ - uid: 37145
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,42.5
+ pos: 89.96427,29.432756
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25449
+ - uid: 37146
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,42.5
+ pos: 87.42521,29.276506
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25450
+ - uid: 37155
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,42.5
+ pos: 90.397194,26.14136
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25453
+ - uid: 37156
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,38.5
+ pos: 94.15398,20.937378
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25454
+ - uid: 37161
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,38.5
+ pos: 98.16179,20.923355
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25455
+ - uid: 37162
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,38.5
+ pos: 94.69809,29.351278
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25456
+ - uid: 37163
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,38.5
+ pos: 94.186676,41.14788
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25457
+ - uid: 37164
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,36.5
+ pos: 85.81295,53.293297
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25458
+ - uid: 37199
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 90.87063,21.366514
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25461
+ - uid: 37200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 88.237816,21.35089
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25462
+- proto: FloraStalagmite6
+ entities:
+ - uid: 3088
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -102.79085,23.67738
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25463
+ - uid: 3814
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -104.71272,29.92738
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25464
+ - uid: 5085
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -100.97835,22.83363
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25465
+ - uid: 15562
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,33.5
+ pos: 95.796875,42.447506
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25469
+ - uid: 15578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,29.5
+ pos: 99.41406,41.68188
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25470
+ - uid: 17702
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -102.21272,25.30238
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25471
+ - uid: 36975
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,29.5
+ pos: 93.913086,34.33617
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25472
+ - uid: 37011
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 41.5,28.5
+ pos: 98.80331,36.088074
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25473
+ - uid: 37027
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,28.5
+ pos: 86.484215,53.220047
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25474
+ - uid: 37033
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,28.5
+ pos: 83.83248,53.29893
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25477
+ - uid: 37037
components:
- type: Transform
- pos: 34.5,28.5
+ pos: 86.64193,60.79009
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25478
+ - uid: 37041
components:
- type: Transform
- pos: 34.5,27.5
+ pos: 82.48568,63.969776
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25479
+ - uid: 37045
components:
- type: Transform
- pos: 34.5,26.5
+ pos: 83.86068,68.040085
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25480
+ - uid: 37061
components:
- type: Transform
- pos: 35.5,27.5
+ pos: 74.60657,74.1897
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25481
+ - uid: 37073
components:
- type: Transform
- pos: 35.5,26.5
+ pos: 65.75424,79.34367
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25482
+ - uid: 37080
components:
- type: Transform
- pos: 35.5,25.5
+ pos: 62.818203,79.12488
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25487
+ - uid: 37081
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,25.5
+ pos: 66.196014,75.22183
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25488
+ - uid: 37093
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,25.5
+ pos: 63.46849,76.89348
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25489
+ - uid: 37096
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,25.5
+ pos: 61.695053,70.85126
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25490
+ - uid: 37098
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,25.5
+ pos: 60.99974,68.99188
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25491
+ - uid: 37101
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,25.5
+ pos: 58.252537,66.32263
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25492
+ - uid: 37102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,24.5
+ pos: 66.514496,78.86612
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25493
+ - uid: 37111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,24.5
+ pos: 95.79348,49.43505
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25494
+ - uid: 37118
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,24.5
+ pos: 98.86488,51.398632
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25495
+ - uid: 37119
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,24.5
+ pos: 99.92738,50.773632
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25501
+ - uid: 37125
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,22.5
+ pos: 94.972374,38.676006
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25502
+ - uid: 37140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,23.5
+ pos: 97.57699,26.989294
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25503
+ - uid: 37141
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,24.5
+ pos: 92.2493,32.57413
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25504
+ - uid: 37142
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,25.5
+ pos: 93.01508,26.27519
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25505
+ - uid: 37144
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,26.5
+ pos: 89.83146,29.885881
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25507
+ - uid: 37159
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,28.5
+ pos: 98.739914,20.040543
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25508
+- proto: FloraTree01
+ entities:
+ - uid: 25174
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 36.449936,-9.418206
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25509
+ - uid: 30640
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,30.5
+ pos: 32.16799,-36.537888
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25510
+- proto: FloraTree02
+ entities:
+ - uid: 5121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,31.5
+ pos: 59.191208,-8.598531
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25511
+ - uid: 5122
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,19.5
+ pos: 64.54521,-24.723492
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25512
+ - uid: 8077
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,20.5
+ pos: -105.901375,10.962385
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25513
+ - uid: 27516
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,21.5
+ pos: 71.611465,20.728672
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25514
+ - uid: 30378
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 3.6420546,-7.4613504
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25515
+ - uid: 30624
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,23.5
+ pos: -0.4013872,-10.586457
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25516
+ - uid: 30635
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,24.5
+ pos: 61.10234,8.346388
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25518
+ - uid: 30645
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,26.5
+ pos: -13.640928,77.0639
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25519
+- proto: FloraTree03
+ entities:
+ - uid: 8080
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,27.5
+ pos: -101.57325,3.8217597
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25520
+ - uid: 30621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,28.5
+ pos: -29.102713,-16.537373
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25521
+ - uid: 30641
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,29.5
+ pos: 22.018206,-38.524227
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25522
+ - uid: 36963
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -9.365815,45.47372
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25523
+- proto: FloraTree04
+ entities:
+ - uid: 30356
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,31.5
+ pos: 0.14007974,34.998196
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25526
+ - uid: 30639
components:
- type: Transform
- pos: 23.5,32.5
+ pos: 41.691067,-28.712173
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25527
+- proto: FloraTree05
+ entities:
+ - uid: 6284
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,33.5
+ pos: -61.0979,9.577806
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25528
+ - uid: 20172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,33.5
+ pos: -18.209982,-13.421587
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25529
+ - uid: 24658
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,33.5
+ pos: 12.162793,35.73257
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25530
+ - uid: 30373
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 1.4963851,-37.686043
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25531
+- proto: FloraTree06
+ entities:
+ - uid: 2376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,33.5
+ pos: 74.83024,-2.995719
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25532
+ - uid: 30633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,33.5
+ pos: 46.813126,-8.479406
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25533
+ - uid: 30638
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,33.5
+ pos: 64.306854,0.38446856
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25534
+- proto: FloraTreeConifer01
+ entities:
+ - uid: 8078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,33.5
+ pos: -89.70616,-12.131908
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25535
+- proto: FloraTreeConifer03
+ entities:
+ - uid: 8084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,33.5
+ pos: -80.62804,-8.819408
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25536
+- proto: FloraTreeLarge01
+ entities:
+ - uid: 10064
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,33.5
+ pos: 41.977592,-13.362587
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25538
+ - uid: 30376
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -0.46455932,12.641065
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25539
+ - uid: 30902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,33.5
+ pos: 1.5194097,53.32902
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25540
+- proto: FloraTreeLarge02
+ entities:
+ - uid: 3908
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,33.5
+ pos: 57.44353,-10.955918
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25541
+ - uid: 5115
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,33.5
+ pos: 57.472458,-1.0047805
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25542
+ - uid: 30622
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,33.5
+ pos: 46.742813,0.87966824
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25543
+- proto: FloraTreeLarge03
+ entities:
+ - uid: 5118
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,33.5
+ pos: 73.14433,-3.3485305
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25544
+ - uid: 30644
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,33.5
+ pos: -13.496889,78.47229
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25545
+- proto: FloraTreeLarge04
+ entities:
+ - uid: 30643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,33.5
+ pos: 16.467203,76.519165
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25546
+- proto: FloraTreeLarge05
+ entities:
+ - uid: 20226
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,33.5
+ pos: 3.5813708,14.038962
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25547
+- proto: FloraTreeLarge06
+ entities:
+ - uid: 7888
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,33.5
+ pos: -43.417057,-4.481603
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25548
+ - uid: 11410
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,33.5
+ pos: -100.976654,11.765398
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25549
+- proto: FloraTreeSnow01
+ entities:
+ - uid: 8081
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,32.5
+ pos: -89.09679,-10.772533
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25550
+- proto: FloraTreeSnow04
+ entities:
+ - uid: 8082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,32.5
+ pos: -88.22179,-12.053783
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25551
+ - uid: 8083
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,32.5
+ pos: -80.04991,-10.194408
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25552
+- proto: FloraTreeStump
+ entities:
+ - uid: 5124
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,32.5
+ pos: 49.59209,-24.473492
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25553
+ - uid: 5125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,32.5
+ pos: 58.40459,-11.380961
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25554
+ - uid: 5126
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,32.5
+ pos: 59.29899,-1.995719
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25555
+ - uid: 8079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,32.5
+ pos: -106.8545,9.79051
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25556
+- proto: FloraTreeStumpConifer
+ entities:
+ - uid: 5123
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,32.5
+ pos: 53.638966,-27.192242
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25558
+ - uid: 8482
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,32.5
+ pos: -81.26866,-9.381908
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25559
+- proto: FoodBakedBunHotX
+ entities:
+ - uid: 7723
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,32.5
+ pos: 65.74038,27.480778
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25560
+- proto: FoodBakedCookie
+ entities:
+ - uid: 1607
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,32.5
+ pos: -8.3917465,11.258961
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25561
+ - uid: 1608
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,32.5
+ pos: -8.649747,11.326364
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25562
+ - uid: 1609
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,32.5
+ pos: -8.555809,11.157398
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25563
+ - uid: 5444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,32.5
+ pos: 36.221233,30.755035
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25564
+ - uid: 5445
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,32.5
+ pos: 36.33842,30.567535
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25565
+ - uid: 5446
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,32.5
+ pos: 36.561077,30.673004
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25566
+ - uid: 6868
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,32.5
+ pos: -16.584772,-30.13989
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25567
+ - uid: 6869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,32.5
+ pos: -16.268366,-30.175047
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25568
+ - uid: 6870
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,32.5
+ pos: -16.467585,-30.33911
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25569
+ - uid: 9009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,32.5
+ pos: -50.73071,20.718376
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25572
+ - uid: 9010
components:
- type: Transform
- pos: 31.5,47.5
+ pos: -50.35571,20.609001
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25574
+ - uid: 9011
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,33.5
+ pos: -50.57446,20.484001
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25575
+ - uid: 31937
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,33.5
+ pos: -40.611217,66.74802
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25576
+ - uid: 31940
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,33.5
+ pos: -36.58475,67.54108
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25577
+- proto: FoodBakedCookieOatmeal
+ entities:
+ - uid: 6897
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,33.5
+ pos: 66.68641,16.634327
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25578
+ - uid: 6898
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,33.5
+ pos: 66.264534,16.739796
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25579
+ - uid: 6899
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,33.5
+ pos: 66.545784,16.903858
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25580
+ - uid: 31938
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,33.5
+ pos: -40.447155,65.28708
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25581
+- proto: FoodBakedCookieSugar
+ entities:
+ - uid: 31939
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,33.5
+ pos: -42.103405,64.66208
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25582
+ - uid: 31941
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,33.5
+ pos: -36.241,59.806698
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25583
+ - uid: 31942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,33.5
+ pos: -27.68742,66.72858
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25584
+- proto: FoodBakedMuffin
+ entities:
+ - uid: 30533
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,32.5
+ pos: -4.5895452,18.73392
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25585
+- proto: FoodBowlBigTrash
+ entities:
+ - uid: 4861
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,32.5
+ pos: 94.44101,73.914154
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25586
+ - uid: 7026
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,32.5
+ pos: -31.451912,-33.57073
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25587
+ - uid: 7028
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,32.5
+ pos: -31.545662,-38.387135
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25588
+ - uid: 30069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,32.5
+ pos: 84.45178,43.21001
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25589
+- proto: FoodBoxDonut
+ entities:
+ - uid: 36216
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,32.5
+ pos: -10.374915,54.21794
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25590
+- proto: FoodBoxPizza
+ entities:
+ - uid: 7314
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,32.5
+ pos: -53.492813,-22.190609
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25591
+ - uid: 7371
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,32.5
+ pos: -57.517345,-22.106564
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25592
+ - uid: 7551
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,32.5
+ pos: -52.775158,-22.223751
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25593
+ - uid: 28097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,32.5
+ pos: -57.50172,-21.989376
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25594
+ - uid: 36600
components:
- type: Transform
- pos: 35.5,33.5
+ pos: 99.87412,61.858463
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25595
+- proto: FoodBreadBanana
+ entities:
+ - uid: 5562
components:
- type: Transform
- pos: 35.5,34.5
+ pos: 46.502266,25.930176
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25596
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 36465
components:
- type: Transform
- pos: 35.5,35.5
+ pos: 55.98809,83.86752
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25597
+- proto: FoodBurgerCat
+ entities:
+ - uid: 4653
components:
- type: Transform
- pos: 35.5,36.5
+ pos: 20.969534,-36.29419
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25598
+ - uid: 4657
components:
- type: Transform
- pos: 35.5,37.5
+ pos: 20.297659,-36.184814
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25599
+ - uid: 4660
components:
- type: Transform
- pos: 35.5,38.5
+ pos: 20.602346,-36.528564
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25600
+- proto: FoodBurgerCheese
+ entities:
+ - uid: 22257
components:
- type: Transform
- pos: 35.5,39.5
+ pos: -7.5244417,-45.35108
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25601
+- proto: FoodBurgerClown
+ entities:
+ - uid: 8655
components:
- type: Transform
- pos: 35.5,40.5
+ pos: -74.52928,-3.5821853
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25602
+- proto: FoodBurgerRobot
+ entities:
+ - uid: 6182
components:
- type: Transform
- pos: 35.5,41.5
+ pos: 49.554718,44.59917
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25603
+ - uid: 8367
components:
- type: Transform
- pos: 35.5,42.5
+ pos: -5.405984,-1.1831183
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25604
+- proto: FoodCakeClown
+ entities:
+ - uid: 19423
components:
- type: Transform
- pos: 34.5,34.5
+ pos: -77.534096,-0.22864151
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25605
+- proto: FoodCartCold
+ entities:
+ - uid: 5147
components:
- type: Transform
- pos: 34.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-14.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25606
+- proto: FoodCartHot
+ entities:
+ - uid: 5172
components:
- type: Transform
- pos: 34.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-18.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25607
+ - uid: 7631
components:
- type: Transform
- pos: 34.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-16.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25608
+- proto: FoodCondimentBottleEnzyme
+ entities:
+ - uid: 1118
components:
- type: Transform
- pos: 34.5,38.5
+ pos: -62.679012,-7.1969314
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25609
+ - uid: 18544
components:
- type: Transform
- pos: 34.5,39.5
+ pos: -62.554012,-7.3063064
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25610
+ - uid: 18545
components:
- type: Transform
- pos: 34.5,40.5
+ pos: -62.444637,-7.1344314
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25611
+- proto: FoodCondimentBottleHotsauce
+ entities:
+ - uid: 7573
components:
- type: Transform
- pos: 34.5,41.5
+ pos: -46.36997,-20.935427
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25612
+ - uid: 7574
components:
- type: Transform
- pos: 34.5,42.5
+ pos: -48.004414,-13.187924
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25613
+- proto: FoodCondimentPacketKetchup
+ entities:
+ - uid: 7575
components:
- type: Transform
- pos: 34.5,43.5
+ pos: -47.723164,-13.434018
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25614
+ - uid: 7576
components:
- type: Transform
- pos: 31.5,45.5
+ pos: -46.305195,-17.230892
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25615
+- proto: FoodCornTrash
+ entities:
+ - uid: 8154
components:
- type: Transform
- pos: 31.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 90.139725,74.232254
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25616
+ - uid: 16663
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,43.5
+ pos: -39.388145,9.764108
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25617
+ - uid: 29354
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,43.5
+ pos: -34.260452,11.458319
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25618
+ - uid: 30084
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,44.5
+ pos: 89.6003,44.588352
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25619
+- proto: FoodDonutApple
+ entities:
+ - uid: 37003
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,45.5
+ pos: -14.56341,53.60517
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25625
+- proto: FoodDonutBungo
+ entities:
+ - uid: 37004
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,44.5
+ pos: -6.7333736,48.702667
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25626
+- proto: FoodDonutPink
+ entities:
+ - uid: 37192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,44.5
+ pos: -6.4149723,48.581734
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25637
+- proto: FoodDoughFlat
+ entities:
+ - uid: 7555
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,46.5
+ pos: -54.438126,-22.026546
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25638
+- proto: FoodFrozenSandwich
+ entities:
+ - uid: 14270
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,46.5
+ pos: 11.633413,48.094017
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25639
+- proto: FoodGalaxythistle
+ entities:
+ - uid: 22276
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,46.5
+ pos: 52.92175,47.25847
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25640
+- proto: FoodLollipop
+ entities:
+ - uid: 338
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,46.5
+ pos: -22.292038,7.6479125
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25641
+ - uid: 1295
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 23.226406,13.3908825
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25642
+ - uid: 5727
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 38.5,46.5
+ pos: 15.492104,11.80889
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25643
+ - uid: 7513
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,46.5
+ pos: -16.354538,7.6166625
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25644
+ - uid: 18952
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,46.5
+ pos: 13.4423275,-11.229972
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25645
+ - uid: 20076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,46.5
+ pos: 15.647793,11.878162
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25646
+ - uid: 20275
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,46.5
+ pos: 5.726406,11.4533825
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25647
+ - uid: 22073
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,46.5
+ pos: 6.7195644,-12.303323
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25648
+ - uid: 23261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,46.5
+ pos: 3.4005127,6.7504606
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25649
+ - uid: 23263
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,46.5
+ pos: 3.5044584,6.584755
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25650
+ - uid: 23269
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,46.5
+ pos: 34.74761,16.705116
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25651
+ - uid: 23271
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,46.5
+ pos: 35.44194,7.4616747
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25652
+ - uid: 23272
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,46.5
+ pos: 35.238815,7.6804247
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25653
+ - uid: 23273
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,46.5
+ pos: 35.606003,7.6647997
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25654
+ - uid: 23274
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,46.5
+ pos: 35.41069,7.578862
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25656
+ - uid: 23275
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,47.5
+ pos: 35.652878,7.500737
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25657
+ - uid: 23276
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,47.5
+ pos: 19.555277,1.9447498
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25658
+ - uid: 23277
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,47.5
+ pos: 18.641775,-9.527165
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25659
+ - uid: 23278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,47.5
+ pos: 18.255056,-8.35529
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25660
+ - uid: 23279
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 43.5,47.5
+ pos: 15.700369,-11.472478
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25661
+ - uid: 24850
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -3.4188628,5.023672
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25662
+ - uid: 24873
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -0.7157378,-2.2199073
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25663
+ - uid: 27323
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,47.5
+ pos: 15.436855,12.010975
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25664
+ - uid: 39223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -0.8016753,-2.3136573
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25665
+- proto: FoodMealFriedegg
+ entities:
+ - uid: 5565
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,47.5
+ pos: 49.742733,33.688232
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25670
+- proto: FoodMealPotatoLoaded
+ entities:
+ - uid: 14269
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,46.5
+ pos: 12.836538,48.250267
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25679
+- proto: FoodMeatCooked
+ entities:
+ - uid: 14266
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,54.5
+ pos: 12.336538,47.890892
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25681
+ - uid: 14267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,54.5
+ pos: 12.555288,47.781517
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25682
+ - uid: 30036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,53.5
+ pos: 91.59526,17.813744
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25683
+- proto: FoodMeatTomato
+ entities:
+ - uid: 36656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,53.5
+ pos: 64.437164,81.65178
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25684
+- proto: FoodMeatXeno
+ entities:
+ - uid: 36657
components:
- type: Transform
- pos: 56.5,51.5
+ pos: 64.6481,81.44084
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25685
+- proto: FoodNoodles
+ entities:
+ - uid: 7382
components:
- type: Transform
- pos: 56.5,52.5
+ pos: -54.149063,-25.503109
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25686
+- proto: FoodNoodlesChowmein
+ entities:
+ - uid: 7381
components:
- type: Transform
- pos: 55.5,53.5
+ pos: -57.588673,-16.438417
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25687
+- proto: FoodNoodlesMeatball
+ entities:
+ - uid: 7383
components:
- type: Transform
- pos: 55.5,52.5
+ pos: -54.500626,-25.292171
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25688
+- proto: FoodPizzaMargheritaSlice
+ entities:
+ - uid: 13823
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,50.5
+ pos: -52.860085,-28.107712
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25689
+- proto: FoodPizzaMoldySlice
+ entities:
+ - uid: 20649
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,51.5
+ pos: -59.047585,-29.638962
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25690
+ - uid: 36491
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,50.5
+ pos: 56.097466,86.2894
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25693
+ - uid: 36498
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 54.5,49.5
+ pos: 59.86309,83.36752
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25694
+ - uid: 36588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,48.5
+ pos: 58.92563,82.46962
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25695
+- proto: FoodPizzaVegetableSlice
+ entities:
+ - uid: 7554
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,47.5
+ pos: -54.594376,-22.448421
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25697
+- proto: FoodPlate
+ entities:
+ - uid: 1606
components:
- type: Transform
- pos: 25.5,8.5
+ pos: -8.524559,11.376148
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25701
+ - uid: 5443
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,36.5
+ pos: 36.36186,30.848785
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25702
+ - uid: 5563
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,36.5
+ pos: 46.495235,25.959606
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25703
+ - uid: 6867
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,36.5
+ pos: -16.40899,-30.069578
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25704
+ - uid: 6896
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,36.5
+ pos: 66.47547,16.915577
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25705
+ - uid: 7093
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,37.5
+ pos: -47.528687,-13.109673
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25706
+ - uid: 9008
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,37.5
+ pos: -50.54321,20.796501
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25707
+ - uid: 14268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,37.5
+ pos: 12.445913,47.984642
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25708
+ - uid: 27943
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,37.5
+ pos: 91.610886,17.954369
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25709
+- proto: FoodPlatePlastic
+ entities:
+ - uid: 7106
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,37.5
+ pos: -49.304165,-13.130768
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25710
+ - uid: 7170
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,37.5
+ pos: -50.39401,-13.10733
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25711
+ - uid: 7172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,49.5
+ pos: -49.843227,-13.224518
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25712
+- proto: FoodPlateSmall
+ entities:
+ - uid: 1617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,37.5
+ pos: -4.606382,9.860523
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25713
+ - uid: 1618
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,37.5
+ pos: -4.575132,9.751148
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25714
+ - uid: 1619
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,37.5
+ pos: -4.540187,9.572009
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25715
+- proto: FoodPlateSmallTrash
+ entities:
+ - uid: 4729
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,37.5
+ pos: 92.39754,75.55257
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25716
+ - uid: 7006
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,39.5
+ pos: -32.248787,-34.461353
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25717
+ - uid: 7007
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,39.5
+ pos: -26.717535,-38.316822
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25718
+ - uid: 30092
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,39.5
+ pos: 84.81684,43.70708
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25719
+ - uid: 32360
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,39.5
+ pos: -102.584785,53.48076
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25720
+ - uid: 36907
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,39.5
+ pos: 89.42695,12.869402
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25721
+- proto: FoodPlateTrash
+ entities:
+ - uid: 7005
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,39.5
+ pos: -31.487068,-33.769947
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25722
+ - uid: 36906
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,39.5
+ pos: 89.65351,13.869402
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25724
+- proto: FoodPSB
+ entities:
+ - uid: 37468
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,39.5
+ pos: -28.588358,33.719227
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25725
+ - uid: 37469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,41.5
+ pos: -24.611795,33.66454
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25726
+ - uid: 37470
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,41.5
+ pos: -28.59617,25.641104
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25728
+ - uid: 37471
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,41.5
+ pos: -24.580545,25.617666
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25729
+- proto: FoodSaladCaesar
+ entities:
+ - uid: 30033
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,41.5
+ pos: 91.517136,17.516869
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25730
+- proto: FoodSnackBoritos
+ entities:
+ - uid: 1615
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,41.5
+ pos: -8.3344145,10.589709
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25733
+- proto: FoodSnackCheesie
+ entities:
+ - uid: 19430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,40.5
+ pos: -79.01136,3.626192
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25738
+- proto: FoodSnackChips
+ entities:
+ - uid: 30235
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,40.5
+ pos: -53.53988,25.557585
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25739
+- proto: FoodSnackChowMein
+ entities:
+ - uid: 7568
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,41.5
+ pos: -57.416798,-16.69623
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25740
+- proto: FoodSnackCookieFortune
+ entities:
+ - uid: 4583
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,42.5
+ pos: 63.83963,24.614466
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25743
+ - uid: 7542
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,45.5
+ pos: -52.61176,-14.238689
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25745
+ - uid: 7543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,47.5
+ pos: -52.33051,-14.414471
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25746
+ - uid: 31943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,48.5
+ pos: -19.413206,66.627014
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25747
+ - uid: 31944
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,49.5
+ pos: -20.304958,58.418346
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25748
+ - uid: 36946
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,50.5
+ pos: -4.5753193,50.29081
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25749
+- proto: FoodSnackPopcorn
+ entities:
+ - uid: 3520
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,51.5
+ pos: 38.719772,-21.31327
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25750
+ - uid: 3521
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,52.5
+ pos: 38.407272,-21.266396
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25751
+ - uid: 3523
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,53.5
+ pos: 38.469772,-21.453896
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25754
+ - uid: 4504
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,38.5
+ pos: -10.42578,71.4303
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25755
+ - uid: 30680
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,39.5
+ pos: 4.4141035,71.492584
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25756
+ - uid: 30681
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,40.5
+ pos: 4.7266035,71.82591
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25759
+ - uid: 30818
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,43.5
+ pos: 11.9036875,71.211334
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25760
+ - uid: 30874
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 8.0182705,70.961334
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25762
+ - uid: 31066
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,46.5
+ pos: 14.289104,71.680084
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25763
+- proto: FoodTacoBeef
+ entities:
+ - uid: 39224
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,47.5
+ pos: -0.6219878,-0.8839699
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25764
+- proto: FoodTartMime
+ entities:
+ - uid: 19440
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,48.5
+ pos: -81.668015,-0.14460063
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25765
+- proto: FoodTinBeansTrash
+ entities:
+ - uid: 30068
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 83.68616,39.444386
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25766
+- proto: FoodTinMRETrash
+ entities:
+ - uid: 7029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,50.5
+ pos: -27.080816,-32.43401
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25767
+ - uid: 7030
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,51.5
+ pos: -27.350348,-31.648853
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25768
+ - uid: 8170
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,52.5
+ pos: 90.64754,74.19319
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25769
+ - uid: 8172
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,53.5
+ pos: 92.952225,77.31038
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25799
+ - uid: 30062
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,45.5
+ pos: 84.31701,38.75821
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25800
+- proto: FoodTinPeachesMaintTrash
+ entities:
+ - uid: 8168
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,45.5
+ pos: 90.358475,74.013504
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25802
+- proto: FoodTinPeachesTrash
+ entities:
+ - uid: 7031
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,46.5
+ pos: -33.303474,-35.35198
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25803
+ - uid: 30067
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,46.5
+ pos: 89.94156,37.71867
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25804
+- proto: FuelDispenser
+ entities:
+ - uid: 26355
+ components:
+ - type: Transform
+ pos: -50.5,32.5
+ parent: 2
+- proto: GasAnalyzer
+ entities:
+ - uid: 5679
+ components:
+ - type: Transform
+ pos: 34.648033,47.247894
+ parent: 2
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 5374
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,46.5
+ pos: 60.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25806
+ - uid: 7067
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,46.5
+ pos: -25.5,-31.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25809
+ - uid: 13913
components:
- type: Transform
- pos: -39.5,63.5
+ pos: -110.5,55.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25810
+ - uid: 36572
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,46.5
+ pos: 75.5,77.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25811
+ - uid: 36573
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,46.5
+ pos: 67.5,81.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25812
+- proto: GasFilter
+ entities:
+ - uid: 1568
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,46.5
+ pos: 20.5,17.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25813
+ color: '#990000FF'
+ - uid: 9180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,46.5
+ pos: -48.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25814
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9188
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,46.5
+ pos: -46.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25815
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9204
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,45.5
+ pos: -42.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25816
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9295
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,45.5
+ pos: -50.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25817
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9302
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,45.5
+ pos: -40.5,45.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25818
+ - uid: 9313
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,45.5
+ pos: -44.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25819
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasFilterFlipped
+ entities:
+ - uid: 27373
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,45.5
+ pos: 18.5,17.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25826
+- proto: GasMinerCarbonDioxide
+ entities:
+ - uid: 9349
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,49.5
+ pos: -39.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25827
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasMinerNitrogenStationLarge
+ entities:
+ - uid: 9344
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,49.5
+ pos: -49.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25828
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasMinerOxygenStationLarge
+ entities:
+ - uid: 9345
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,48.5
+ pos: -47.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25829
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasMixerFlipped
+ entities:
+ - uid: 5913
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,43.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25830
+ color: '#0055CCFF'
+ - uid: 5980
components:
- type: Transform
- pos: 9.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,43.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25831
+ - uid: 7326
components:
- type: Transform
- pos: 9.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25832
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 10337
components:
- type: Transform
- pos: 10.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25833
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 10568
components:
- type: Transform
- pos: 10.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25838
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23831
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,45.5
+ pos: -53.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25839
+ - type: GasMixer
+ inletTwoConcentration: 0.01999998
+ inletOneConcentration: 0.98
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasOutletInjector
+ entities:
+ - uid: 2572
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,45.5
+ pos: 40.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25840
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,45.5
+ pos: 44.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25841
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9157
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25842
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25843
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25844
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9164
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25845
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9165
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25846
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25849
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 16543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -58.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25850
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 36574
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,43.5
+ pos: 69.5,84.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25851
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 36575
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,43.5
+ pos: 73.5,84.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasPassiveGate
+ entities:
+ - uid: 27144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-9.5
parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25852
+- proto: GasPassiveVent
+ entities:
+ - uid: 5652
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,42.5
+ pos: 41.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25853
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5675
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,42.5
+ pos: 43.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25854
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9156
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,42.5
+ pos: -49.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25855
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,42.5
+ pos: -39.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25856
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,42.5
+ pos: -47.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25857
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9167
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,42.5
+ pos: -41.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25860
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,60.5
+ pos: -45.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25861
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9169
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,60.5
+ pos: -43.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25862
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 19718
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,60.5
+ pos: -49.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25863
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasPipeBend
+ entities:
+ - uid: 772
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -3.5,60.5
+ pos: 58.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25864
+ - uid: 784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25865
+ color: '#990000FF'
+ - uid: 1273
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25866
+ - uid: 1446
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,60.5
+ pos: 17.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25867
+ - uid: 1713
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,58.5
+ pos: 3.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25868
+ - uid: 2246
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,58.5
+ pos: 23.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25869
+ color: '#0055CCFF'
+ - uid: 2314
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,58.5
+ pos: -32.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25870
+ color: '#0055CCFF'
+ - uid: 2626
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,58.5
+ pos: -5.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25871
+ - uid: 3515
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,58.5
+ pos: 3.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25872
+ - uid: 4328
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,58.5
+ pos: 74.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25873
+ color: '#0055CCFF'
+ - uid: 4638
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25874
+ color: '#0055CCFF'
+ - uid: 4802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,58.5
+ pos: 99.5,74.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25875
+ - uid: 4859
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25878
+ - uid: 4923
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25879
+ - uid: 4950
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,48.5
+ pos: 15.5,-22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25880
+ - uid: 5314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25881
+ color: '#0055CCFF'
+ - uid: 6095
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,48.5
+ pos: 85.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25882
+ - uid: 6329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25883
+ - uid: 6391
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,55.5
+ pos: 86.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25884
+ - uid: 6633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25885
+ - uid: 6674
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,55.5
+ pos: -15.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25888
+ color: '#990000FF'
+ - uid: 6818
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25889
+ color: '#990000FF'
+ - uid: 6943
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,24.5
+ pos: -49.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25890
+ - uid: 6974
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25892
+ - uid: 8936
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,27.5
+ pos: -18.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25893
+ color: '#990000FF'
+ - uid: 9074
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,28.5
+ pos: -20.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25894
+ - uid: 9407
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25895
+ - uid: 9408
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25896
+ - uid: 9409
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25897
+ - uid: 9410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,51.5
+ parent: 2
+ - uid: 9411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,51.5
+ parent: 2
+ - uid: 9412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,51.5
+ parent: 2
+ - uid: 9560
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,22.5
+ pos: -51.5,45.5
+ parent: 2
+ - uid: 9700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,37.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25898
+ - uid: 9982
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,23.5
+ pos: 43.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25900
+ color: '#0055CCFF'
+ - uid: 9983
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,25.5
+ pos: 44.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25901
+ - uid: 10621
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25902
+ color: '#0055CCFF'
+ - uid: 11022
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,27.5
+ pos: -72.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25908
+ color: '#0055CCFF'
+ - uid: 11878
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,30.5
+ pos: -22.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25909
+ - uid: 12992
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-26.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25911
+ - uid: 13042
components:
- type: Transform
- pos: -12.5,30.5
+ pos: 3.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25912
+ - uid: 13127
components:
- type: Transform
- pos: -12.5,31.5
+ pos: -18.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25913
+ - uid: 15076
components:
- type: Transform
- pos: -12.5,32.5
+ pos: -43.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25914
+ color: '#0055CCFF'
+ - uid: 15100
components:
- type: Transform
- pos: -12.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25915
+ color: '#0055CCFF'
+ - uid: 15606
components:
- type: Transform
- pos: -12.5,34.5
+ pos: -24.5,42.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25916
+ - uid: 15610
components:
- type: Transform
- pos: -12.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25918
+ - uid: 16595
components:
- type: Transform
- pos: -12.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,59.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25919
+ - uid: 17689
components:
- type: Transform
- pos: -12.5,38.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25922
+ color: '#0055CCFF'
+ - uid: 17695
components:
- type: Transform
- pos: -12.5,41.5
+ pos: -12.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25923
+ color: '#0055CCFF'
+ - uid: 17968
components:
- type: Transform
- pos: -12.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -77.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25924
+ - uid: 19189
components:
- type: Transform
- pos: -12.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25926
+ - uid: 19190
components:
- type: Transform
- pos: -13.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25927
+ - uid: 19366
components:
- type: Transform
- pos: -13.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25928
+ - uid: 19367
components:
- type: Transform
- pos: -13.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25929
+ color: '#990000FF'
+ - uid: 19370
components:
- type: Transform
- pos: -13.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25930
+ color: '#990000FF'
+ - uid: 19397
components:
- type: Transform
- pos: -13.5,35.5
+ pos: -36.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25931
+ color: '#990000FF'
+ - uid: 19598
components:
- type: Transform
- pos: -13.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25933
+ - uid: 19765
components:
- type: Transform
- pos: -13.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25934
+ color: '#990000FF'
+ - uid: 19978
components:
- type: Transform
- pos: -13.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25935
+ - uid: 19980
components:
- type: Transform
- pos: -13.5,40.5
+ pos: -85.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25938
+ - uid: 20285
components:
- type: Transform
- pos: -13.5,43.5
+ pos: -1.5,65.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25939
+ - uid: 20400
components:
- type: Transform
- pos: -13.5,44.5
+ pos: -72.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25941
+ - uid: 20493
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,45.5
+ pos: 47.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25942
+ color: '#990000FF'
+ - uid: 20499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-26.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25943
+ - uid: 20519
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -69.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25944
+ - uid: 20548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25945
+ - uid: 20747
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,45.5
+ pos: 22.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25946
+ color: '#990000FF'
+ - uid: 22162
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,45.5
+ pos: -83.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25947
+ color: '#990000FF'
+ - uid: 22614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -67.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25948
+ color: '#990000FF'
+ - uid: 22653
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25949
+ color: '#990000FF'
+ - uid: 22818
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25950
+ - uid: 23563
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25951
+ - uid: 23908
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,44.5
+ pos: -42.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25952
+ - uid: 23917
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,44.5
+ pos: -43.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25953
+ - uid: 24232
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,44.5
+ pos: 9.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25954
+ - uid: 24238
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,44.5
+ pos: 18.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25955
+ - uid: 24278
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,44.5
+ pos: 49.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25956
+ color: '#0055CCFF'
+ - uid: 24299
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,44.5
+ pos: -43.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25957
+ - uid: 24300
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,44.5
+ pos: -44.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25960
+ - uid: 24302
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25961
+ - uid: 24303
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,37.5
+ pos: -45.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25962
+ - uid: 24304
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,37.5
+ pos: -43.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25963
+ color: '#990000FF'
+ - uid: 24305
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25964
+ color: '#990000FF'
+ - uid: 24306
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,37.5
+ pos: -40.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25965
+ color: '#990000FF'
+ - uid: 24307
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25966
+ color: '#990000FF'
+ - uid: 24312
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25967
+ - uid: 24313
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25968
+ - uid: 24314
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,37.5
+ pos: 49.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25970
+ - uid: 24320
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,37.5
+ pos: -36.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25971
+ - uid: 24321
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,37.5
+ pos: -9.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25972
+ - uid: 24322
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25974
+ - uid: 24324
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25975
+ - uid: 24325
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,37.5
+ pos: -0.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25976
+ - uid: 24413
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25977
+ - uid: 24458
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25978
+ - uid: 24459
components:
- type: Transform
- pos: -32.5,38.5
+ pos: 0.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25979
+ - uid: 24494
components:
- type: Transform
- pos: -32.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25980
+ - uid: 24495
components:
- type: Transform
- pos: -32.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25981
+ - uid: 24496
components:
- type: Transform
- pos: -32.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25982
+ - uid: 24497
components:
- type: Transform
- pos: -32.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25983
+ - uid: 24498
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25984
+ - uid: 24499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25985
+ - uid: 24500
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,-10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25986
+ - uid: 24501
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25987
+ - uid: 24502
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25988
+ - uid: 24503
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25991
+ - uid: 24504
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,36.5
+ pos: -39.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25992
+ - uid: 24505
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,36.5
+ pos: -40.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25993
+ - uid: 24506
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,36.5
+ pos: -41.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25994
+ - uid: 24508
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,36.5
+ pos: -43.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25995
+ - uid: 24509
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,36.5
+ pos: -44.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25996
+ - uid: 24510
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,36.5
+ pos: -46.5,-9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25997
+ color: '#0055CCFF'
+ - uid: 24511
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,36.5
+ pos: -45.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25998
+ color: '#0055CCFF'
+ - uid: 24512
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,36.5
+ pos: -44.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25999
+ color: '#0055CCFF'
+ - uid: 24513
+ components:
+ - type: Transform
+ pos: -43.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24514
+ components:
+ - type: Transform
+ pos: -42.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24592
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,36.5
+ pos: 49.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26000
+ color: '#0055CCFF'
+ - uid: 24593
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,36.5
+ pos: 48.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26001
+ color: '#0055CCFF'
+ - uid: 24594
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,36.5
+ pos: 47.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26002
+ color: '#0055CCFF'
+ - uid: 24597
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,36.5
+ pos: 51.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26003
+ - uid: 24598
components:
- type: Transform
- pos: -33.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26004
+ - uid: 24599
components:
- type: Transform
- pos: -33.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26005
+ - uid: 24601
components:
- type: Transform
- pos: -33.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26006
+ - uid: 24603
components:
- type: Transform
- pos: -33.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26007
+ - uid: 24604
components:
- type: Transform
- pos: -33.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26008
+ - uid: 24621
components:
- type: Transform
- pos: -33.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26017
+ color: '#0055CCFF'
+ - uid: 24622
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26018
+ - uid: 24623
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26019
+ - uid: 24638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,39.5
+ pos: 51.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26020
+ - uid: 24639
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,38.5
+ pos: 50.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26021
+ - uid: 24640
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,37.5
+ pos: 48.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26022
+ color: '#0055CCFF'
+ - uid: 24641
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26023
+ - uid: 24642
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26024
+ color: '#0055CCFF'
+ - uid: 24643
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,39.5
+ pos: 39.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24644
+ components:
+ - type: Transform
+ pos: 38.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24645
+ components:
+ - type: Transform
+ pos: 38.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26025
+ - uid: 24646
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26026
+ - uid: 24653
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,39.5
+ pos: -1.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26027
+ - uid: 24919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26028
+ - uid: 25026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26031
+ - uid: 25027
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,30.5
+ pos: -10.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26033
+ - uid: 25108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,30.5
+ pos: 6.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26034
+ - uid: 25110
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,62.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26037
+ color: '#990000FF'
+ - uid: 25128
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,30.5
+ pos: 11.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26038
+ color: '#990000FF'
+ - uid: 25132
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26040
+ - uid: 25278
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26041
+ - uid: 25377
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26042
+ color: '#990000FF'
+ - uid: 25378
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26043
+ - uid: 25434
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,33.5
+ pos: 40.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26044
+ - uid: 25435
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,32.5
+ pos: 39.5,44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26045
+ color: '#990000FF'
+ - uid: 25466
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,30.5
+ pos: 43.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26046
+ - uid: 25483
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 34.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26047
+ - uid: 25486
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26048
+ - uid: 25624
components:
- type: Transform
- pos: -17.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26049
+ - uid: 25627
components:
- type: Transform
- pos: -17.5,31.5
+ pos: 34.5,44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26050
+ color: '#0055CCFF'
+ - uid: 25628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,28.5
+ pos: 35.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26051
+ - uid: 25629
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,28.5
+ pos: 35.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26052
+ - uid: 25630
components:
- type: Transform
- pos: -17.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26053
+ color: '#0055CCFF'
+ - uid: 25671
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,28.5
+ pos: 54.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26054
+ - uid: 25673
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26055
+ color: '#0055CCFF'
+ - uid: 25674
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,50.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26057
+ - uid: 25675
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,28.5
+ pos: 55.5,51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26058
+ color: '#0055CCFF'
+ - uid: 25676
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,28.5
+ pos: 56.5,50.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26061
+ - uid: 25677
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26064
+ color: '#0055CCFF'
+ - uid: 25678
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,53.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26065
+ - uid: 25731
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,29.5
+ pos: 7.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26066
+ color: '#0055CCFF'
+ - uid: 25732
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26068
+ color: '#0055CCFF'
+ - uid: 25734
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,30.5
+ pos: 7.5,36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26071
+ color: '#990000FF'
+ - uid: 25736
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26072
+ color: '#990000FF'
+ - uid: 25737
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26073
+ - uid: 25796
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26074
+ - uid: 25820
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -34.5,33.5
+ pos: 9.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26075
+ color: '#0055CCFF'
+ - uid: 25822
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,32.5
+ pos: 9.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26076
+ color: '#0055CCFF'
+ - uid: 25823
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,31.5
+ pos: 10.5,48.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26077
+ - uid: 25824
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -34.5,30.5
+ pos: 6.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26095
+ color: '#0055CCFF'
+ - uid: 25825
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,21.5
+ pos: 7.5,48.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26096
+ - uid: 25905
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26097
+ - uid: 25906
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26099
+ color: '#0055CCFF'
+ - uid: 25907
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26100
+ - uid: 26062
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,26.5
+ pos: -30.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26101
+ - uid: 26063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,27.5
+ pos: -30.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26102
+ - uid: 26070
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,28.5
+ pos: -35.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26103
+ color: '#0055CCFF'
+ - uid: 26098
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,29.5
+ pos: -6.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26104
+ color: '#0055CCFF'
+ - uid: 26111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,30.5
+ pos: -7.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26105
+ - uid: 26119
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,31.5
+ pos: -4.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26106
+ - uid: 26120
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26107
+ - uid: 26307
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -61.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26108
+ - uid: 26356
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,23.5
+ pos: -2.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26109
+ - uid: 26780
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26110
+ color: '#990000FF'
+ - uid: 26854
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26112
+ - uid: 26863
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,27.5
+ pos: 0.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26113
+ - uid: 26864
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26114
+ color: '#990000FF'
+ - uid: 26923
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26115
+ - uid: 26933
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,30.5
+ pos: -58.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26116
+ color: '#990000FF'
+ - uid: 26936
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,31.5
+ pos: -60.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26117
+ - uid: 26985
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26118
+ - uid: 26986
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26124
+ color: '#990000FF'
+ - uid: 27036
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26125
+ color: '#990000FF'
+ - uid: 27037
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26126
+ - uid: 27048
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,41.5
+ pos: -53.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26127
+ - uid: 27049
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,40.5
+ pos: -52.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26132
+ - uid: 27057
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26133
+ color: '#0055CCFF'
+ - uid: 27147
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26136
+ - uid: 27148
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,64.5
+ pos: -57.5,-7.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26138
+ - uid: 27175
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26139
+ color: '#990000FF'
+ - uid: 27179
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -3.5,64.5
+ pos: -32.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26141
+ color: '#990000FF'
+ - uid: 27180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,64.5
+ pos: -34.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26142
+ - uid: 27267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26144
+ color: '#990000FF'
+ - uid: 27278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26145
+ - uid: 27371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,64.5
+ pos: 35.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26147
+ color: '#990000FF'
+ - uid: 27420
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,64.5
+ pos: 34.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26148
+ - uid: 27555
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -12.5,64.5
+ pos: 34.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26149
+ - uid: 27556
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,64.5
+ pos: 36.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26150
+ color: '#990000FF'
+ - uid: 28214
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,64.5
+ pos: -16.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26151
+ - uid: 28278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26153
+ color: '#990000FF'
+ - uid: 28297
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,64.5
+ pos: -9.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26154
+ color: '#990000FF'
+ - uid: 28305
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,64.5
+ pos: -10.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26155
+ - uid: 28540
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26156
+ color: '#990000FF'
+ - uid: 28564
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26157
+ - uid: 28706
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26158
+ - uid: 28775
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,64.5
+ pos: -28.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26159
+ color: '#990000FF'
+ - uid: 28828
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26160
+ - uid: 28829
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,64.5
+ pos: -52.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26161
+ - uid: 28911
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26162
+ - uid: 28969
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,64.5
+ pos: 18.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26163
+ - uid: 30500
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26164
+ - uid: 30517
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,63.5
+ pos: -32.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26165
+ color: '#0055CCFF'
+ - uid: 30518
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,63.5
+ pos: -33.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26166
+ - uid: 30525
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,63.5
+ pos: -33.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26169
+ - uid: 30768
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,63.5
+ pos: -64.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26170
+ - uid: 31734
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,63.5
+ pos: 18.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26172
+ - uid: 31743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26174
+ color: '#0055CCFF'
+ - uid: 31747
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26175
+ color: '#0055CCFF'
+ - uid: 33014
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,63.5
+ pos: 86.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26176
+ color: '#0055CCFF'
+ - uid: 33016
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,63.5
+ pos: 85.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26177
+ - uid: 33174
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,63.5
+ pos: 76.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26178
+ color: '#0055CCFF'
+ - uid: 33175
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26179
+ - uid: 33182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26180
+ - uid: 33183
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,63.5
+ pos: 69.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26181
+ - uid: 33184
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26183
+ - uid: 33206
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26184
+ - uid: 33207
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26185
+ color: '#0055CCFF'
+ - uid: 33223
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,63.5
+ pos: 92.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26186
+ - uid: 33245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26187
+ color: '#0055CCFF'
+ - uid: 33246
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26188
+ - uid: 33284
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,63.5
+ pos: 101.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26189
+ - uid: 33285
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -24.5,63.5
+ pos: 102.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26192
+ - uid: 33912
components:
- type: Transform
- pos: -25.5,62.5
+ pos: 21.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26193
+ color: '#0055CCFF'
+ - uid: 33913
components:
- type: Transform
- pos: -25.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26194
+ color: '#0055CCFF'
+ - uid: 33919
components:
- type: Transform
- pos: -25.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26195
+ color: '#0055CCFF'
+ - uid: 34064
components:
- type: Transform
- pos: -25.5,59.5
+ pos: 11.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26196
+ - uid: 34679
components:
- type: Transform
- pos: -25.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26197
+ - uid: 35747
components:
- type: Transform
- pos: -25.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26199
+ - uid: 35798
components:
- type: Transform
- pos: -25.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26200
- components:
- - type: Transform
- pos: -27.5,63.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26201
- components:
- - type: Transform
- pos: -27.5,62.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26202
+ - uid: 35799
components:
- type: Transform
- pos: -27.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26203
+ - uid: 35975
components:
- type: Transform
- pos: -27.5,60.5
+ pos: -38.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26204
+ - uid: 36073
components:
- type: Transform
- pos: -27.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26205
+ - uid: 36925
components:
- type: Transform
- pos: -27.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26206
+ color: '#990000FF'
+ - uid: 36926
components:
- type: Transform
- pos: -27.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26207
+ - uid: 36927
components:
- type: Transform
- pos: -27.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26208
+ - uid: 37382
components:
- type: Transform
- pos: -27.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26222
+ - uid: 37383
components:
- type: Transform
- pos: -10.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26224
+ - uid: 37384
components:
- type: Transform
- pos: -8.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26225
+ - uid: 37394
components:
- type: Transform
- pos: -8.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26226
+ - uid: 37395
components:
- type: Transform
- pos: -4.5,65.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26227
- components:
- - type: Transform
- pos: -2.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26228
+ - uid: 37406
components:
- type: Transform
- pos: -2.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26229
- components:
- - type: Transform
- pos: -39.5,20.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26230
+ - uid: 38185
components:
- type: Transform
- pos: -39.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26231
+ - uid: 38186
components:
- type: Transform
- pos: -39.5,22.5
+ pos: -35.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26233
+ color: '#990000FF'
+ - uid: 38926
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-28.5
+ pos: 5.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26237
+ - uid: 39173
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26238
+ - uid: 39174
components:
- type: Transform
- pos: -37.5,19.5
+ pos: 11.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26239
+ - uid: 39188
components:
- type: Transform
- pos: -37.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26240
+ - uid: 39189
components:
- type: Transform
- pos: -37.5,21.5
+ pos: 11.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26241
+ - uid: 39193
components:
- type: Transform
- pos: -37.5,22.5
+ pos: 12.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26242
+ - uid: 39200
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26243
+ color: '#0055CCFF'
+ - uid: 39201
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-28.5
+ pos: -0.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26250
+ - uid: 39203
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,22.5
+ pos: 3.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26251
+ color: '#990000FF'
+ - uid: 39204
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26252
+ - uid: 39205
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -52.5,22.5
+ pos: -0.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26253
+- proto: GasPipeBroken
+ entities:
+ - uid: 4695
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,73.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26254
+ - uid: 33181
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26255
+ - uid: 33187
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -51.5,21.5
+ pos: 84.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26258
+ - uid: 33212
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,20.5
+ pos: 62.5,63.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26259
+ - uid: 33213
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,20.5
+ pos: 60.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26260
+ - uid: 33214
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,20.5
+ pos: 65.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26261
+ - uid: 33215
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -59.5,20.5
+ pos: 67.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26262
+ - uid: 33222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26263
+ - uid: 33226
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,15.5
+ pos: 92.5,62.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26264
+ - uid: 33227
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,15.5
+ pos: 93.5,58.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26265
+ - uid: 33229
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,15.5
+ pos: 93.5,53.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26266
+ - uid: 33280
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,15.5
+ pos: 93.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26267
+ - uid: 33281
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -59.5,15.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26270
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26271
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,18.5
+ pos: 98.5,10.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26272
+ - uid: 33286
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,9.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26273
+ - uid: 33287
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 101.5,12.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26274
+ - uid: 36576
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,81.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26275
+ - uid: 36578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,18.5
+ pos: 77.5,83.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26276
+ - uid: 36580
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,81.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26277
+ - uid: 36587
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,17.5
+ pos: 69.5,83.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26278
+- proto: GasPipeFourway
+ entities:
+ - uid: 883
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,17.5
+ pos: -2.5,63.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26279
+ - uid: 1452
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,17.5
+ pos: 16.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26284
+ color: '#0055CCFF'
+ - uid: 1714
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,14.5
+ pos: 8.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26285
+ - uid: 4427
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,14.5
+ pos: 52.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26286
+ - uid: 4433
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,14.5
+ pos: 54.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26287
+ color: '#990000FF'
+ - uid: 4608
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,14.5
+ pos: 8.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26288
+ - uid: 4701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,14.5
+ pos: 11.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26289
+ color: '#990000FF'
+ - uid: 4813
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,14.5
+ pos: 19.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26290
+ color: '#990000FF'
+ - uid: 6380
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,14.5
+ pos: -26.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26291
+ - uid: 6517
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,12.5
+ pos: -28.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26292
+ - uid: 11541
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,12.5
+ pos: 8.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26293
+ color: '#0055CCFF'
+ - uid: 11596
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,12.5
+ pos: 10.5,5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26294
+ - uid: 15604
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,12.5
+ pos: -55.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26295
+ color: '#0055CCFF'
+ - uid: 15633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,12.5
+ pos: 31.5,5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26296
+ - uid: 15686
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,13.5
+ pos: -22.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26297
+ - uid: 16037
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,13.5
+ pos: 0.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26298
+ - uid: 17970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,13.5
+ pos: -78.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26299
+ - uid: 17971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,13.5
+ pos: -77.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26300
+ color: '#990000FF'
+ - uid: 18217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,13.5
+ pos: 0.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26301
+ - uid: 19939
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,12.5
+ pos: -53.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26302
+ - uid: 19961
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,12.5
+ pos: 8.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26303
+ color: '#0055CCFF'
+ - uid: 23283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,12.5
+ pos: -27.5,51.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26304
+ color: '#0055CCFF'
+ - uid: 23948
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,12.5
+ pos: -71.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26305
+ - uid: 23953
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,12.5
+ pos: -83.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26306
+ - uid: 24026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,12.5
+ pos: -85.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26310
+ color: '#0055CCFF'
+ - uid: 24047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,30.5
+ pos: -73.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26311
+ - uid: 24323
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,30.5
+ pos: -0.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26312
+ - uid: 24720
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,30.5
+ pos: 2.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24731
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26313
+ - uid: 24754
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,29.5
+ pos: -53.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26314
+ - uid: 24853
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,29.5
+ pos: 0.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26315
+ color: '#0055CCFF'
+ - uid: 24869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,29.5
+ pos: 2.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26316
+ - uid: 24909
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,29.5
+ pos: -11.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26317
+ color: '#0055CCFF'
+ - uid: 24927
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,29.5
+ pos: -10.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26320
+ - uid: 25042
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,30.5
+ pos: 8.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26321
+ - uid: 25043
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,30.5
+ pos: 10.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26322
+ color: '#990000FF'
+ - uid: 25437
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,30.5
+ pos: 39.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26323
+ color: '#990000FF'
+ - uid: 25571
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -63.5,30.5
+ pos: -55.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26324
+ - uid: 25744
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,30.5
+ pos: 19.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26325
+ color: '#990000FF'
+ - uid: 25761
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,30.5
+ pos: 17.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26326
+ - uid: 26060
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,30.5
+ pos: -24.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26327
+ color: '#990000FF'
+ - uid: 26069
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,30.5
+ pos: -13.5,41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26328
+ - uid: 26833
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,30.5
+ pos: -27.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26330
+ - uid: 26848
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,29.5
+ pos: -32.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26331
+ - uid: 26851
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,29.5
+ pos: 36.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26332
+ - uid: 26852
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,29.5
+ pos: 34.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26333
+ color: '#0055CCFF'
+ - uid: 26980
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -62.5,29.5
+ pos: -59.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26335
+ color: '#0055CCFF'
+ - uid: 26981
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -64.5,29.5
+ pos: -58.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26336
+ - uid: 29039
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,29.5
+ pos: -47.5,44.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26337
+ - uid: 39169
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,29.5
+ pos: 10.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26338
+- proto: GasPipeStraight
+ entities:
+ - uid: 9
components:
- type: Transform
- pos: -67.5,28.5
+ pos: -45.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26339
+ - uid: 23
components:
- type: Transform
- pos: -69.5,29.5
+ pos: 8.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26342
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -68.5,29.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26343
+ - uid: 70
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -69.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26344
+ - uid: 93
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,29.5
+ pos: -87.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26345
+ - uid: 183
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,30.5
+ pos: 43.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26350
+ - uid: 193
components:
- type: Transform
- pos: -69.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26351
+ color: '#990000FF'
+ - uid: 239
components:
- type: Transform
- pos: -69.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26352
+ - uid: 255
components:
- type: Transform
- pos: -67.5,27.5
+ pos: 15.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26378
+ - uid: 264
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -73.5,12.5
+ pos: -40.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26379
+ - uid: 350
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -73.5,11.5
+ pos: 10.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26380
+ color: '#990000FF'
+ - uid: 434
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26382
+ color: '#990000FF'
+ - uid: 436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-35.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26396
+ - uid: 552
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,12.5
+ pos: 54.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26397
+ - uid: 584
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,11.5
+ pos: -28.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26398
+ - uid: 604
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,10.5
+ pos: -28.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26399
+ - uid: 654
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -71.5,9.5
+ pos: 54.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26400
+ - uid: 707
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26401
+ - uid: 738
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,56.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26402
+ - uid: 760
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,7.5
+ pos: -19.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26403
+ color: '#990000FF'
+ - uid: 793
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26404
+ - uid: 806
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26405
+ color: '#990000FF'
+ - uid: 830
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26406
+ - uid: 860
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,3.5
+ pos: 73.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26408
+ color: '#990000FF'
+ - uid: 875
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,6.5
+ pos: 31.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26409
+ - uid: 879
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26410
+ - uid: 963
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26598
+ color: '#0055CCFF'
+ - uid: 1003
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26604
+ color: '#0055CCFF'
+ - uid: 1004
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -91.5,9.5
+ pos: 9.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26623
+ - uid: 1089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26627
+ color: '#0055CCFF'
+ - uid: 1109
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-24.5
+ pos: -21.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26755
+ color: '#0055CCFF'
+ - uid: 1160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -90.5,7.5
+ pos: 17.5,54.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26774
+ color: '#0055CCFF'
+ - uid: 1207
components:
- type: Transform
- pos: -95.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26778
+ - uid: 1209
components:
- type: Transform
- pos: -94.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26779
+ color: '#0055CCFF'
+ - uid: 1211
components:
- type: Transform
- pos: -94.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 82.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26783
+ - uid: 1242
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,8.5
+ pos: 52.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26784
+ - uid: 1248
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,7.5
+ pos: 73.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26785
+ color: '#990000FF'
+ - uid: 1249
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26786
+ - uid: 1252
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,5.5
+ pos: -89.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26787
+ color: '#990000FF'
+ - uid: 1284
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26788
+ - uid: 1299
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,3.5
+ pos: 27.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26789
+ color: '#990000FF'
+ - uid: 1306
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,2.5
+ pos: 27.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26791
+ color: '#990000FF'
+ - uid: 1308
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,0.5
+ pos: 27.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 28.5,-13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26792
+ - uid: 1313
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,-0.5
+ pos: 25.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26793
+ - uid: 1342
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,-1.5
+ pos: 19.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26794
+ - uid: 1366
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,-2.5
+ pos: 8.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26795
+ - uid: 1381
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26796
+ - uid: 1382
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26797
+ - uid: 1447
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26798
+ color: '#0055CCFF'
+ - uid: 1448
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,0.5
+ pos: 14.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26799
+ color: '#0055CCFF'
+ - uid: 1449
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,1.5
+ pos: 16.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26801
+ color: '#0055CCFF'
+ - uid: 1451
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26802
+ color: '#0055CCFF'
+ - uid: 1483
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,4.5
+ pos: -37.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26803
+ color: '#0055CCFF'
+ - uid: 1499
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -61.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26804
+ color: '#0055CCFF'
+ - uid: 1500
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26807
+ color: '#0055CCFF'
+ - uid: 1553
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,18.5
+ pos: 9.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26809
+ - uid: 1569
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,10.5
+ pos: 18.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1747
+ components:
+ - type: Transform
+ pos: 10.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26810
+ - uid: 1764
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,11.5
+ pos: 52.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26811
+ - uid: 1772
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26812
+ - uid: 1823
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,13.5
+ pos: 8.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26813
+ - uid: 1826
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,14.5
+ pos: 8.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26815
+ - uid: 2047
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26816
+ - uid: 2054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2146
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,17.5
+ pos: 0.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26817
+ - uid: 2150
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,18.5
+ pos: -32.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26818
+ - uid: 2181
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,19.5
+ pos: 52.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26819
+ - uid: 2187
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,8.5
+ pos: -37.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26820
+ - uid: 2222
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,9.5
+ pos: -22.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26821
+ color: '#0055CCFF'
+ - uid: 2223
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,10.5
+ pos: -22.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26822
+ color: '#0055CCFF'
+ - uid: 2226
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,11.5
+ pos: -20.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26823
+ - uid: 2238
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,12.5
+ pos: 57.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26824
+ color: '#0055CCFF'
+ - uid: 2248
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,13.5
+ pos: -4.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26825
+ - uid: 2257
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,14.5
+ pos: 40.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26826
+ - uid: 2290
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,15.5
+ pos: 54.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26828
+ - uid: 2297
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,17.5
+ pos: -83.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26829
+ - uid: 2324
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -83.5,18.5
+ pos: 54.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26830
+ - uid: 2356
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26837
+ - uid: 2365
components:
- type: Transform
- pos: -77.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26838
+ - uid: 2377
components:
- type: Transform
- pos: -77.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26839
+ - uid: 2398
components:
- type: Transform
- pos: -78.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26840
+ color: '#990000FF'
+ - uid: 2453
components:
- type: Transform
- pos: -78.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26841
+ color: '#990000FF'
+ - uid: 2465
components:
- type: Transform
- pos: -78.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26842
+ color: '#990000FF'
+ - uid: 2472
components:
- type: Transform
- pos: -78.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -87.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26858
+ - uid: 2530
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,7.5
+ pos: 44.5,48.5
+ parent: 2
+ - uid: 2531
+ components:
+ - type: Transform
+ pos: 40.5,48.5
+ parent: 2
+ - uid: 2535
+ components:
+ - type: Transform
+ pos: 41.5,48.5
+ parent: 2
+ - uid: 2538
+ components:
+ - type: Transform
+ pos: 43.5,48.5
+ parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26861
+ - uid: 2584
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26890
+ - uid: 2661
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,48.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26899
+ - uid: 2707
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -48.5,4.5
+ pos: 30.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26900
+ color: '#990000FF'
+ - uid: 2762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26901
+ color: '#990000FF'
+ - uid: 2906
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26902
+ color: '#990000FF'
+ - uid: 2916
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,4.5
+ pos: -56.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26903
+ - uid: 2964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,4.5
+ pos: -36.5,-28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26904
+ color: '#990000FF'
+ - uid: 3140
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,4.5
+ pos: 15.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26905
+ color: '#990000FF'
+ - uid: 3141
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,4.5
+ pos: 14.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26906
+ - uid: 3177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26907
+ color: '#990000FF'
+ - uid: 3188
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26908
+ color: '#990000FF'
+ - uid: 3190
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26909
+ color: '#990000FF'
+ - uid: 3191
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26910
+ color: '#990000FF'
+ - uid: 3264
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26911
+ - uid: 3294
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,1.5
+ pos: 15.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26912
+ - uid: 3296
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,1.5
+ pos: 15.5,-20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26913
+ - uid: 3298
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,1.5
+ pos: 15.5,-21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26914
+ - uid: 3302
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,1.5
+ pos: 14.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26915
+ color: '#0055CCFF'
+ - uid: 3363
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26916
+ color: '#0055CCFF'
+ - uid: 3402
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -51.5,1.5
+ pos: 33.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26917
+ color: '#0055CCFF'
+ - uid: 3510
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,1.5
+ pos: 8.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26918
+ color: '#0055CCFF'
+ - uid: 3531
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26919
+ - uid: 3543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26920
+ - uid: 3610
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -55.5,1.5
+ pos: 84.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26921
+ color: '#0055CCFF'
+ - uid: 3632
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,1.5
+ pos: 76.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26922
+ color: '#0055CCFF'
+ - uid: 3652
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26925
+ - uid: 3678
components:
- type: Transform
- pos: -60.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26927
+ color: '#990000FF'
+ - uid: 3691
components:
- type: Transform
- pos: -60.5,1.5
+ pos: -43.5,36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26928
+ - uid: 3699
components:
- type: Transform
- pos: -60.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26929
+ - uid: 3705
components:
- type: Transform
- pos: -60.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26930
+ - uid: 3713
components:
- type: Transform
- pos: -58.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26931
+ - uid: 3735
components:
- type: Transform
- pos: -58.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26932
+ - uid: 3749
components:
- type: Transform
- pos: -58.5,-1.5
+ pos: -53.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26934
+ - uid: 3757
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-2.5
+ pos: -53.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26937
+ - uid: 3962
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26938
+ - uid: 3989
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26939
+ - uid: 3991
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26940
+ color: '#990000FF'
+ - uid: 4014
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26941
+ color: '#990000FF'
+ - uid: 4017
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26942
+ color: '#990000FF'
+ - uid: 4018
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26943
+ - uid: 4030
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26944
+ - uid: 4036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26947
+ - uid: 4054
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26948
+ - uid: 4055
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26949
+ - uid: 4062
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 79.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26950
+ color: '#990000FF'
+ - uid: 4086
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26951
+ color: '#990000FF'
+ - uid: 4090
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26952
+ - uid: 4091
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26953
+ - uid: 4092
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26954
+ - uid: 4094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,25.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26955
+ color: '#990000FF'
+ - uid: 4095
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26956
+ color: '#990000FF'
+ - uid: 4129
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26957
+ color: '#990000FF'
+ - uid: 4136
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26959
+ color: '#990000FF'
+ - uid: 4138
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -56.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26960
+ color: '#990000FF'
+ - uid: 4155
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26961
+ - uid: 4156
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26962
+ - uid: 4244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 83.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26963
+ - uid: 4247
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 84.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26964
+ - uid: 4264
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26965
+ color: '#0055CCFF'
+ - uid: 4272
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26966
+ - uid: 4280
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26967
+ - uid: 4283
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26968
+ - uid: 4286
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -87.5,23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26969
+ color: '#0055CCFF'
+ - uid: 4312
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,-16.5
+ pos: 73.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26970
+ color: '#0055CCFF'
+ - uid: 4403
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -48.5,-16.5
+ pos: 66.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26971
+ - uid: 4404
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -49.5,-16.5
+ pos: 67.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26972
+ - uid: 4405
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -50.5,-16.5
+ pos: 68.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26973
+ - uid: 4406
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -51.5,-16.5
+ pos: 69.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26974
+ - uid: 4415
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26976
+ color: '#0055CCFF'
+ - uid: 4416
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26977
+ - uid: 4417
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26978
+ - uid: 4424
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-16.5
+ pos: -60.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26979
+ - uid: 4429
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26982
+ - uid: 4431
components:
- type: Transform
- pos: -59.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26983
+ - uid: 4434
components:
- type: Transform
- pos: -59.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26988
+ color: '#990000FF'
+ - uid: 4435
components:
- type: Transform
- pos: -58.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 54.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26989
+ - uid: 4436
components:
- type: Transform
- pos: -58.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26990
+ - uid: 4464
components:
- type: Transform
- pos: -58.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26991
+ - uid: 4465
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26993
+ - uid: 4499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-12.5
+ pos: 2.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26994
+ - uid: 4507
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26995
+ - uid: 4543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26996
+ - uid: 4678
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-11.5
+ pos: 15.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26997
+ color: '#990000FF'
+ - uid: 4693
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -56.5,-11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26999
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-10.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-9.5
+ pos: 81.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27001
+ color: '#990000FF'
+ - uid: 4698
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-8.5
+ pos: 21.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27002
+ - uid: 4702
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27003
+ - uid: 4704
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-9.5
+ pos: 19.5,-17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27004
+ - uid: 4711
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-10.5
+ pos: 14.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27005
+ color: '#0055CCFF'
+ - uid: 4714
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27012
+ color: '#0055CCFF'
+ - uid: 4716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-15.5
+ pos: 14.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27013
+ - uid: 4718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27014
+ - uid: 4721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,74.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27016
+ - uid: 4753
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27018
+ - uid: 4754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27020
+ - uid: 4756
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27021
+ - uid: 4800
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-23.5
+ pos: 14.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27022
+ - uid: 4801
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27023
+ color: '#990000FF'
+ - uid: 4811
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27024
+ color: '#990000FF'
+ - uid: 4815
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-26.5
+ pos: 21.5,-17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27025
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-18.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27026
+ - uid: 4825
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27027
+ - uid: 4842
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-20.5
+ pos: 85.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27028
+ - uid: 4843
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27030
+ - uid: 4847
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27031
+ color: '#0055CCFF'
+ - uid: 4869
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27032
+ color: '#0055CCFF'
+ - uid: 4876
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27033
+ color: '#0055CCFF'
+ - uid: 4877
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27034
+ - uid: 4880
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -97.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27035
+ - uid: 4895
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-28.5
+ pos: 14.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27038
+ color: '#0055CCFF'
+ - uid: 4901
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 82.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27039
+ - uid: 4902
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 83.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27040
+ - uid: 4903
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-27.5
+ pos: 63.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27041
+ color: '#990000FF'
+ - uid: 4906
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -55.5,-27.5
+ pos: 62.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27042
+ color: '#990000FF'
+ - uid: 4915
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27043
+ - uid: 4917
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27044
+ color: '#0055CCFF'
+ - uid: 4918
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-29.5
+ pos: 64.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27045
+ - uid: 4920
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -55.5,-29.5
+ pos: 65.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27046
+ - uid: 5048
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,43.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27047
+ - uid: 5119
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -53.5,-29.5
+ pos: -24.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27050
+ color: '#0055CCFF'
+ - uid: 5200
components:
- type: Transform
- pos: -53.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27051
+ - uid: 5245
components:
- type: Transform
- pos: -53.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27052
+ - uid: 5346
components:
- type: Transform
- pos: -53.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27054
+ - uid: 5378
components:
- type: Transform
- pos: -52.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27055
+ color: '#0055CCFF'
+ - uid: 5379
components:
- type: Transform
- pos: -52.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27056
+ color: '#0055CCFF'
+ - uid: 5381
components:
- type: Transform
- pos: -52.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27059
+ color: '#0055CCFF'
+ - uid: 5383
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -52.5,-32.5
+ pos: 61.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27060
+ - uid: 5535
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27061
+ - uid: 5539
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-32.5
+ pos: 41.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27062
+ - uid: 5544
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-32.5
+ pos: 41.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27063
+ - uid: 5546
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27064
+ - uid: 5550
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27066
+ - uid: 5551
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27067
+ - uid: 5556
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27068
+ - uid: 5557
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27070
+ - uid: 5558
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27072
+ - uid: 5559
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27073
+ - uid: 5573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27075
+ - uid: 5645
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-32.5
+ pos: 43.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27076
+ - uid: 5647
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-32.5
+ pos: 43.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27077
+ - uid: 5648
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-32.5
+ pos: 41.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27078
+ - uid: 5654
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-32.5
+ pos: 41.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27079
+ - uid: 5656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-32.5
+ pos: 43.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27080
+ - uid: 5659
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-32.5
+ pos: 43.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27081
+ - uid: 5663
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-32.5
+ pos: -46.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27082
+ - uid: 5737
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-33.5
+ pos: 19.5,55.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27083
+ - uid: 5915
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-33.5
+ pos: 19.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27084
+ - uid: 5916
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,-33.5
+ pos: 19.5,56.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27085
+ - uid: 5938
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,-33.5
+ pos: 21.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27086
+ color: '#0055CCFF'
+ - uid: 5939
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-33.5
+ pos: 21.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27087
+ color: '#0055CCFF'
+ - uid: 6107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27090
+ color: '#0055CCFF'
+ - uid: 6109
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27091
+ color: '#0055CCFF'
+ - uid: 6115
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27092
+ color: '#0055CCFF'
+ - uid: 6151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27093
+ - uid: 6216
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27094
+ color: '#0055CCFF'
+ - uid: 6217
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27096
+ color: '#0055CCFF'
+ - uid: 6218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27098
+ color: '#0055CCFF'
+ - uid: 6219
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27099
+ color: '#0055CCFF'
+ - uid: 6220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27100
+ - uid: 6221
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27101
+ - uid: 6222
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27102
+ - uid: 6292
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27103
+ - uid: 6325
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27104
+ color: '#0055CCFF'
+ - uid: 6326
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27105
+ color: '#0055CCFF'
+ - uid: 6330
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-33.5
+ pos: -17.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27106
+ - uid: 6355
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-32.5
+ pos: -25.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27107
+ - uid: 6378
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-32.5
+ pos: -17.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27116
+ color: '#990000FF'
+ - uid: 6394
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -57.5,-21.5
+ pos: 74.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27117
+ - uid: 6398
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -58.5,-21.5
+ pos: 79.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27118
+ - uid: 6399
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-22.5
+ pos: 78.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27119
+ color: '#0055CCFF'
+ - uid: 6400
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-31.5
+ pos: -46.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27120
+ - uid: 6401
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27121
+ color: '#0055CCFF'
+ - uid: 6402
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-32.5
+ pos: 74.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27124
+ color: '#0055CCFF'
+ - uid: 6403
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,48.5
+ pos: 73.5,29.5
parent: 2
- - uid: 27125
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6688
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -52.5,49.5
- parent: 2
- - uid: 27126
- components:
- - type: Transform
- pos: -37.5,-31.5
+ pos: -30.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27127
+ - uid: 6712
components:
- type: Transform
- pos: -36.5,-31.5
+ pos: -53.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27128
+ - uid: 6736
components:
- type: Transform
- pos: -36.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27131
+ color: '#0055CCFF'
+ - uid: 6738
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27132
+ - uid: 6743
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27133
+ - uid: 6744
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27138
+ - uid: 6750
components:
- type: Transform
- pos: -40.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27139
+ color: '#990000FF'
+ - uid: 6751
components:
- type: Transform
- pos: -40.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27140
+ color: '#990000FF'
+ - uid: 6752
components:
- type: Transform
- pos: -40.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27141
+ color: '#990000FF'
+ - uid: 6756
components:
- type: Transform
- pos: -38.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27142
+ - uid: 6757
components:
- type: Transform
- pos: -38.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27143
+ - uid: 6758
components:
- type: Transform
- pos: -59.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-39.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27145
+ - uid: 6761
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-8.5
+ pos: -16.5,-41.5
parent: 2
- - uid: 27150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6795
components:
- type: Transform
- pos: -58.5,-11.5
+ pos: -19.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27151
+ - uid: 6800
components:
- type: Transform
- pos: -58.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-35.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27158
+ - uid: 6801
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27159
+ color: '#990000FF'
+ - uid: 6803
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,2.5
+ pos: -19.5,-43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27160
+ - uid: 6806
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,2.5
+ pos: -16.5,-42.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27162
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27163
+ - uid: 6812
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27164
+ - uid: 6819
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,1.5
+ pos: -16.5,-40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27169
+ color: '#0055CCFF'
+ - uid: 6832
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,12.5
+ pos: -23.5,-42.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27170
+ color: '#0055CCFF'
+ - uid: 6920
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,12.5
+ pos: 19.5,56.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27171
+ color: '#0055CCFF'
+ - uid: 6937
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,12.5
+ pos: -45.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27172
+ - uid: 6965
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,13.5
+ pos: -55.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27173
+ - uid: 7061
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,13.5
+ pos: -21.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27174
+ color: '#990000FF'
+ - uid: 7177
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,13.5
+ pos: -37.5,-21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27177
+ - uid: 7266
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,13.5
+ pos: -46.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27178
+ - uid: 7429
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27182
+ - uid: 7471
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,10.5
+ pos: -36.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27183
+ - uid: 7504
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,10.5
+ pos: 74.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27184
+ color: '#0055CCFF'
+ - uid: 7511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,10.5
+ pos: -46.5,-24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27185
+ color: '#0055CCFF'
+ - uid: 7512
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,10.5
+ pos: -46.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27186
+ color: '#0055CCFF'
+ - uid: 7558
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,10.5
+ pos: -45.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27187
+ - uid: 7577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,12.5
+ pos: -37.5,-20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27188
+ - uid: 7642
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,12.5
+ pos: 74.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27189
+ - uid: 7727
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,12.5
+ pos: 74.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27205
+ - uid: 7762
components:
- type: Transform
- pos: -26.5,2.5
+ pos: 73.5,30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27229
+ - uid: 7844
components:
- type: Transform
- pos: -14.5,2.5
+ pos: 0.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27258
+ color: '#0055CCFF'
+ - uid: 7971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-5.5
+ pos: 19.5,57.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27259
+ - uid: 8232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-5.5
+ pos: -37.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27262
+ color: '#0055CCFF'
+ - uid: 8324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-5.5
+ pos: -36.5,-20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27263
+ - uid: 8377
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-5.5
+ pos: 2.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27264
+ - uid: 8384
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-5.5
+ pos: -99.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27265
+ - uid: 8385
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,-5.5
+ pos: -97.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27266
+ - uid: 8386
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-5.5
+ pos: -85.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27268
+ - uid: 8387
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -12.5,-4.5
+ pos: -89.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27269
+ - uid: 8388
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,-4.5
+ pos: -92.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27270
+ - uid: 8389
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-4.5
+ pos: -88.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27273
+ color: '#990000FF'
+ - uid: 8390
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-4.5
+ pos: -97.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27274
+ - uid: 8391
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -18.5,-4.5
+ pos: -98.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27275
+ color: '#990000FF'
+ - uid: 8392
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-4.5
+ pos: -91.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27276
+ - uid: 8393
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-4.5
+ pos: -93.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27277
+ - uid: 8394
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,55.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27279
+ - uid: 8395
components:
- type: Transform
- pos: -22.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27280
+ color: '#990000FF'
+ - uid: 8414
components:
- type: Transform
- pos: -22.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27281
+ color: '#990000FF'
+ - uid: 8421
components:
- type: Transform
- pos: -20.5,-6.5
+ pos: -83.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27282
+ - uid: 8422
components:
- type: Transform
- pos: -16.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27283
+ color: '#990000FF'
+ - uid: 8425
components:
- type: Transform
- pos: -16.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27284
+ color: '#990000FF'
+ - uid: 8426
components:
- type: Transform
- pos: -16.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27285
+ color: '#990000FF'
+ - uid: 8431
components:
- type: Transform
- pos: -16.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,39.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27286
+ color: '#990000FF'
+ - uid: 8437
components:
- type: Transform
- pos: -16.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27287
+ - uid: 8441
components:
- type: Transform
- pos: -16.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27288
+ color: '#990000FF'
+ - uid: 8446
components:
- type: Transform
- pos: -14.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27289
+ - uid: 8449
components:
- type: Transform
- pos: -14.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27290
+ color: '#0055CCFF'
+ - uid: 8451
components:
- type: Transform
- pos: -14.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27291
+ - uid: 8469
components:
- type: Transform
- pos: -14.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27292
+ color: '#0055CCFF'
+ - uid: 8472
components:
- type: Transform
- pos: -14.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27308
+ - uid: 8476
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27309
+ - uid: 8601
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-5.5
+ pos: -21.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27310
+ - uid: 8648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27313
+ color: '#0055CCFF'
+ - uid: 8656
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27314
+ - uid: 8725
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,17.5
+ pos: -43.5,35.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27315
+ - uid: 8739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27316
+ - uid: 8845
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,17.5
+ pos: -39.5,61.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27317
+ color: '#0055CCFF'
+ - uid: 8968
components:
- type: Transform
- pos: 8.5,19.5
+ pos: -19.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27318
+ color: '#990000FF'
+ - uid: 9035
components:
- type: Transform
- pos: 8.5,20.5
+ pos: -21.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27323
+ - uid: 9123
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,16.5
+ pos: -19.5,-41.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27326
+ - uid: 9170
components:
- type: Transform
- pos: 17.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27329
+ - uid: 9171
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27331
+ - uid: 9176
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,14.5
+ pos: -45.5,46.5
parent: 2
- - uid: 27334
+ - uid: 9177
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,14.5
+ pos: -44.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27337
+ - uid: 9182
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,17.5
+ pos: -39.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27338
+ - uid: 9206
components:
- type: Transform
- pos: 17.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27339
+ - uid: 9207
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,11.5
+ pos: -41.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27342
+ - uid: 9208
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,8.5
+ pos: -42.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27346
+ - uid: 9209
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,6.5
+ pos: -40.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27347
+ - uid: 9237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,7.5
+ pos: 44.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27348
+ - uid: 9240
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,8.5
+ pos: 44.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27349
+ - uid: 9242
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,9.5
+ pos: 44.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27357
+ - uid: 9288
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,6.5
+ pos: -46.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27358
+ color: '#0055CCFF'
+ - uid: 9299
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,7.5
+ pos: 73.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27359
+ - uid: 9303
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,8.5
+ pos: -36.5,38.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27360
+ - uid: 9318
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,9.5
+ pos: 25.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27361
+ color: '#0055CCFF'
+ - uid: 9358
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,10.5
+ pos: -49.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27362
+ - uid: 9359
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,8.5
+ pos: -49.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27365
+ - uid: 9360
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27366
+ - uid: 9361
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27367
+ - uid: 9362
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27368
+ - uid: 9363
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27369
+ - uid: 9364
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27370
+ - uid: 9365
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27376
+ - uid: 9366
components:
- type: Transform
- pos: 29.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27377
+ - uid: 9367
components:
- type: Transform
- pos: 29.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27378
+ - uid: 9368
components:
- type: Transform
- pos: 29.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27379
+ - uid: 9369
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,12.5
+ pos: -43.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27380
+ - uid: 9370
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,13.5
+ pos: -41.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27381
+ - uid: 9371
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,14.5
+ pos: -41.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27391
+ - uid: 9372
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27392
+ - uid: 9373
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27393
+ - uid: 9374
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27394
+ - uid: 9375
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27397
+ - uid: 9379
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27398
+ - uid: 9380
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27399
+ - uid: 9381
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27400
+ - uid: 9382
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27401
+ - uid: 9383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27402
+ - uid: 9384
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27403
+ - uid: 9385
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27404
+ - uid: 9386
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27423
+ - uid: 9387
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27424
+ - uid: 9388
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27426
+ - uid: 9389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27427
+ - uid: 9390
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27428
+ - uid: 9391
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27431
+ - uid: 9392
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-13.5
+ pos: -44.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27432
+ - uid: 9393
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-12.5
+ pos: -44.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27433
+ - uid: 9394
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-12.5
+ pos: -44.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27434
+ - uid: 9395
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-13.5
+ pos: -42.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27435
+ - uid: 9396
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-14.5
+ pos: -42.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27436
+ - uid: 9397
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-15.5
+ pos: -42.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27462
+ - uid: 9398
components:
- type: Transform
- pos: -45.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27463
+ - uid: 9399
components:
- type: Transform
- pos: -45.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27464
+ - uid: 9400
components:
- type: Transform
- pos: -45.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27465
+ - uid: 9401
components:
- type: Transform
- pos: -45.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27468
+ - uid: 9402
components:
- type: Transform
- pos: -33.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27469
+ - uid: 9489
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: 44.5,-32.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27470
+ color: '#990000FF'
+ - uid: 9497
components:
- type: Transform
- pos: -33.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27471
+ - uid: 9498
components:
- type: Transform
- pos: -33.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27472
+ - uid: 9499
components:
- type: Transform
- pos: -33.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27473
+ - uid: 9500
components:
- type: Transform
- pos: -33.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27474
+ - uid: 9501
components:
- type: Transform
- pos: -33.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27475
+ - uid: 9502
components:
- type: Transform
- pos: -33.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27476
+ color: '#990000FF'
+ - uid: 9503
components:
- type: Transform
- pos: -32.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,45.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27477
+ - uid: 9504
components:
- type: Transform
- pos: -32.5,-18.5
+ pos: 44.5,-33.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27478
+ - uid: 9519
components:
- type: Transform
- pos: -32.5,-19.5
+ pos: -42.5,36.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27479
+ - uid: 9520
components:
- type: Transform
- pos: -32.5,-20.5
+ pos: -42.5,35.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27480
+ - uid: 9522
components:
- type: Transform
- pos: -32.5,-21.5
+ pos: -42.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27481
+ - uid: 9523
components:
- type: Transform
- pos: -32.5,-22.5
+ pos: -42.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27485
+ - uid: 9524
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: -42.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27486
+ color: '#990000FF'
+ - uid: 9526
components:
- type: Transform
- pos: -4.5,-16.5
+ pos: -43.5,33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27487
+ - uid: 9532
components:
- type: Transform
- pos: -4.5,-17.5
+ pos: -32.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27488
+ - uid: 9544
components:
- type: Transform
- pos: -4.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,47.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27489
+ - uid: 9584
components:
- type: Transform
- pos: -3.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,48.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27490
+ - uid: 9845
components:
- type: Transform
- pos: -3.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-41.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27495
+ color: '#0055CCFF'
+ - uid: 9984
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-27.5
+ pos: 45.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27498
+ color: '#990000FF'
+ - uid: 9986
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-29.5
+ pos: 47.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27499
+ - uid: 10017
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-29.5
+ pos: 48.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27500
+ - uid: 10061
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-29.5
+ pos: 49.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27501
+ - uid: 10062
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,-29.5
+ pos: 50.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27502
+ - uid: 10065
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-29.5
+ pos: 51.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27508
+ - uid: 10066
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,19.5
+ pos: 52.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27517
+ - uid: 10067
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27518
+ - uid: 10068
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-33.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27519
+ - uid: 10214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27520
+ color: '#990000FF'
+ - uid: 10215
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27521
+ color: '#990000FF'
+ - uid: 10267
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27522
+ - uid: 10268
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27523
+ - uid: 10349
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27524
+ color: '#0055CCFF'
+ - uid: 10350
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27525
+ color: '#0055CCFF'
+ - uid: 10619
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-19.5
+ pos: -36.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27529
+ - uid: 10655
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.5,-21.5
+ pos: -85.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27530
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-21.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27531
+ - uid: 10704
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 36.5,-22.5
+ pos: -45.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27532
+ - uid: 10705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-23.5
+ pos: -37.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27533
+ color: '#0055CCFF'
+ - uid: 10706
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 36.5,-24.5
+ pos: -38.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27534
+ - uid: 11110
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 36.5,-25.5
+ pos: -25.5,55.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27535
+ - uid: 11140
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 36.5,-26.5
+ pos: -25.5,53.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27536
+ - uid: 11237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-27.5
+ pos: -36.5,42.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27537
+ - uid: 11285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-28.5
+ pos: -37.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27538
+ color: '#0055CCFF'
+ - uid: 11305
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27539
+ color: '#0055CCFF'
+ - uid: 11306
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27540
+ color: '#0055CCFF'
+ - uid: 11439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27541
+ - uid: 11469
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-32.5
+ pos: 26.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27542
+ color: '#0055CCFF'
+ - uid: 11483
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27544
+ color: '#0055CCFF'
+ - uid: 11493
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -98.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27545
+ - uid: 11520
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27546
+ - uid: 11526
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27547
+ color: '#990000FF'
+ - uid: 11855
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-26.5
+ pos: -21.5,-20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27548
+ - uid: 11858
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-27.5
+ pos: -19.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27549
+ color: '#990000FF'
+ - uid: 11859
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-28.5
+ pos: -21.5,-21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27550
+ - uid: 11860
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-29.5
+ pos: -21.5,-22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27551
+ - uid: 11867
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27552
+ - uid: 11877
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27553
+ color: '#990000FF'
+ - uid: 11964
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27554
+ - uid: 12049
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-33.5
+ pos: 26.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27557
+ - uid: 12063
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-34.5
+ pos: -24.5,44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27563
+ color: '#990000FF'
+ - uid: 12093
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27564
+ - uid: 12099
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-18.5
+ pos: 11.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27565
+ color: '#990000FF'
+ - uid: 12100
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-19.5
+ pos: 10.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27566
+ - uid: 12111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27567
+ color: '#990000FF'
+ - uid: 12128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-21.5
+ pos: 10.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27568
+ - uid: 12293
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27569
+ color: '#990000FF'
+ - uid: 12294
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-23.5
+ pos: 0.5,-24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27570
+ - uid: 12300
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-24.5
+ pos: 2.5,-22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27571
+ color: '#990000FF'
+ - uid: 12304
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27572
+ color: '#990000FF'
+ - uid: 12307
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 46.5,-26.5
+ pos: 2.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27573
+ color: '#990000FF'
+ - uid: 12313
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-27.5
+ pos: 10.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27574
+ - uid: 12332
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27575
+ color: '#990000FF'
+ - uid: 12993
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 47.5,-19.5
+ pos: 47.5,-26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27576
+ - uid: 12994
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27577
+ color: '#0055CCFF'
+ - uid: 13025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27578
+ color: '#0055CCFF'
+ - uid: 13035
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27579
+ color: '#0055CCFF'
+ - uid: 13036
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-23.5
+ pos: 8.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27580
+ color: '#0055CCFF'
+ - uid: 13110
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27581
+ - uid: 13128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27582
+ - uid: 13240
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27583
+ color: '#0055CCFF'
+ - uid: 13317
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27584
+ color: '#0055CCFF'
+ - uid: 13442
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27585
+ - uid: 13456
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 50.5,-2.5
+ pos: 4.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27586
+ - uid: 13673
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 51.5,-2.5
+ pos: 2.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27587
+ - uid: 13793
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-2.5
+ pos: 34.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27589
+ - uid: 13875
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27590
+ color: '#990000FF'
+ - uid: 13876
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27591
+ color: '#990000FF'
+ - uid: 13877
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-26.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27592
+ color: '#990000FF'
+ - uid: 14066
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27593
+ color: '#990000FF'
+ - uid: 14192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-2.5
+ pos: 17.5,57.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27594
+ - uid: 14274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27596
+ - uid: 14364
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27597
+ - uid: 14379
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27598
+ color: '#990000FF'
+ - uid: 14971
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27599
+ color: '#990000FF'
+ - uid: 14972
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27600
+ color: '#990000FF'
+ - uid: 15096
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 65.5,-2.5
+ pos: -45.5,41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27601
+ - uid: 15097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-2.5
+ pos: -43.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27602
+ - uid: 15099
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-2.5
+ pos: -43.5,38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27603
+ - uid: 15101
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 68.5,-2.5
+ pos: -44.5,41.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27604
+ - uid: 15102
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-2.5
+ pos: -43.5,37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27605
+ - uid: 15120
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27606
+ - uid: 15173
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-2.5
+ pos: 8.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27607
+ - uid: 15473
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27608
+ - uid: 15475
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27609
+ - uid: 15483
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-2.5
+ pos: -12.5,36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27612
+ color: '#990000FF'
+ - uid: 15535
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-2.5
+ pos: -55.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27613
+ - uid: 15607
components:
- type: Transform
- pos: 60.5,-4.5
+ pos: -24.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27614
+ color: '#990000FF'
+ - uid: 15625
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27615
+ color: '#0055CCFF'
+ - uid: 15626
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27617
+ color: '#0055CCFF'
+ - uid: 15653
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27618
+ - uid: 15662
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27619
+ color: '#0055CCFF'
+ - uid: 15676
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 57.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,47.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27620
+ - uid: 15684
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 58.5,-5.5
+ pos: -22.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27621
+ color: '#0055CCFF'
+ - uid: 15685
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27622
+ color: '#0055CCFF'
+ - uid: 15696
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 60.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,41.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27623
+ - uid: 15701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 61.5,-5.5
+ pos: 17.5,55.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27625
+ color: '#0055CCFF'
+ - uid: 15710
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27626
+ color: '#0055CCFF'
+ - uid: 15713
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27627
+ color: '#0055CCFF'
+ - uid: 15728
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,45.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27628
+ - uid: 15810
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27629
+ color: '#0055CCFF'
+ - uid: 15867
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 67.5,-5.5
+ pos: -94.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27630
+ color: '#0055CCFF'
+ - uid: 15881
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 68.5,-5.5
+ pos: -94.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27631
+ - uid: 15900
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.5,-5.5
+ pos: -97.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27632
+ color: '#0055CCFF'
+ - uid: 15904
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-5.5
+ pos: -21.5,-25.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27634
+ color: '#0055CCFF'
+ - uid: 15905
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 72.5,-5.5
+ pos: -98.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27635
+ - uid: 15921
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,46.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27636
+ color: '#0055CCFF'
+ - uid: 15939
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 74.5,-5.5
+ pos: -57.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27637
+ - uid: 15942
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 75.5,-5.5
+ pos: -97.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27639
+ - uid: 15964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 77.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27640
+ - uid: 15976
components:
- type: Transform
- pos: 60.5,-3.5
+ pos: -22.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27643
+ - uid: 15979
components:
- type: Transform
- pos: 60.5,-5.5
+ pos: -20.5,43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27644
+ color: '#990000FF'
+ - uid: 15991
components:
- type: Transform
- pos: 60.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27645
+ - uid: 16083
components:
- type: Transform
- pos: 60.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27646
+ color: '#990000FF'
+ - uid: 16101
components:
- type: Transform
- pos: 60.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-36.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27647
+ - uid: 16162
components:
- type: Transform
- pos: 60.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27648
+ - uid: 16163
components:
- type: Transform
- pos: 60.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27649
+ - uid: 16167
components:
- type: Transform
- pos: 60.5,-11.5
+ pos: -22.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27650
+ - uid: 16176
components:
- type: Transform
- pos: 60.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27651
+ color: '#990000FF'
+ - uid: 16177
components:
- type: Transform
- pos: 60.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,51.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27652
+ - uid: 16178
components:
- type: Transform
- pos: 60.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27654
+ color: '#990000FF'
+ - uid: 16179
components:
- type: Transform
- pos: 60.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,52.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27655
+ color: '#990000FF'
+ - uid: 16302
components:
- type: Transform
- pos: 60.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27656
+ color: '#990000FF'
+ - uid: 16413
components:
- type: Transform
- pos: 60.5,-18.5
+ pos: -13.5,37.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27657
+ - uid: 16454
components:
- type: Transform
- pos: 60.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,45.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27658
+ - uid: 16500
components:
- type: Transform
- pos: 60.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27659
+ - uid: 16544
components:
- type: Transform
- pos: 60.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,43.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27660
+ color: '#990000FF'
+ - uid: 16545
components:
- type: Transform
- pos: 60.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27661
+ color: '#990000FF'
+ - uid: 16592
components:
- type: Transform
- pos: 60.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27662
+ color: '#990000FF'
+ - uid: 16600
components:
- type: Transform
- pos: 60.5,-24.5
+ pos: -14.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27663
+ color: '#990000FF'
+ - uid: 16612
components:
- type: Transform
- pos: 60.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,58.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27664
+ - uid: 16844
components:
- type: Transform
- pos: 60.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27665
+ - uid: 17113
components:
- type: Transform
- pos: 60.5,-27.5
+ pos: -36.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27666
+ color: '#990000FF'
+ - uid: 17125
components:
- type: Transform
- pos: 60.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27667
+ - uid: 17534
components:
- type: Transform
- pos: 60.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27668
+ color: '#990000FF'
+ - uid: 17579
components:
- type: Transform
- pos: 60.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27669
+ - uid: 17655
components:
- type: Transform
- pos: 62.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27670
+ - uid: 17656
components:
- type: Transform
- pos: 62.5,-7.5
+ pos: -19.5,-22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27671
+ - uid: 17688
components:
- type: Transform
- pos: 62.5,-8.5
+ pos: -21.5,-23.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27672
+ color: '#0055CCFF'
+ - uid: 17691
components:
- type: Transform
- pos: 62.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27673
+ - uid: 17712
components:
- type: Transform
- pos: 62.5,-10.5
+ pos: -36.5,-17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27674
+ - uid: 17715
components:
- type: Transform
- pos: 62.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-29.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27675
+ color: '#0055CCFF'
+ - uid: 17739
components:
- type: Transform
- pos: 62.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27676
+ - uid: 17744
components:
- type: Transform
- pos: 62.5,-13.5
+ pos: -37.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27677
+ color: '#0055CCFF'
+ - uid: 17745
components:
- type: Transform
- pos: 62.5,-14.5
+ pos: -37.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27678
+ color: '#0055CCFF'
+ - uid: 17746
components:
- type: Transform
- pos: 62.5,-15.5
+ pos: -36.5,-21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27679
+ - uid: 17800
components:
- type: Transform
- pos: 62.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27681
+ color: '#0055CCFF'
+ - uid: 17809
components:
- type: Transform
- pos: 62.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27682
+ color: '#0055CCFF'
+ - uid: 17831
components:
- type: Transform
- pos: 62.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27683
+ color: '#0055CCFF'
+ - uid: 17832
components:
- type: Transform
- pos: 62.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27684
+ color: '#0055CCFF'
+ - uid: 17833
components:
- type: Transform
- pos: 62.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27685
+ - uid: 17835
components:
- type: Transform
- pos: 62.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27686
+ - uid: 17857
components:
- type: Transform
- pos: 62.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27687
+ color: '#0055CCFF'
+ - uid: 17871
components:
- type: Transform
- pos: 62.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27688
+ color: '#0055CCFF'
+ - uid: 17897
components:
- type: Transform
- pos: 62.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27689
+ color: '#0055CCFF'
+ - uid: 17900
components:
- type: Transform
- pos: 62.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27690
+ color: '#0055CCFF'
+ - uid: 17957
components:
- type: Transform
- pos: 62.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27691
+ color: '#0055CCFF'
+ - uid: 17975
components:
- type: Transform
- pos: 62.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27692
+ - uid: 17978
components:
- type: Transform
- pos: 62.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -78.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27693
+ color: '#0055CCFF'
+ - uid: 17979
components:
- type: Transform
- pos: 62.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,57.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27698
+ - uid: 18017
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27699
+ color: '#990000FF'
+ - uid: 18020
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27700
+ - uid: 18033
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27701
+ color: '#990000FF'
+ - uid: 18037
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-32.5
+ pos: -37.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27702
+ - uid: 18077
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-33.5
+ pos: -23.5,63.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27703
+ - uid: 18091
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,58.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27704
+ color: '#0055CCFF'
+ - uid: 18166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27705
+ - uid: 18202
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,63.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27706
+ - uid: 18218
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27707
+ color: '#0055CCFF'
+ - uid: 18256
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-29.5
+ pos: -36.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27708
+ - uid: 18279
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27709
+ - uid: 18314
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27710
+ - uid: 18315
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27711
+ - uid: 18326
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27712
+ - uid: 18345
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-17.5
+ pos: 2.5,70.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27713
+ - uid: 18348
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-17.5
+ pos: -37.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27714
+ color: '#0055CCFF'
+ - uid: 18349
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.5,-17.5
+ pos: -45.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27715
+ - uid: 18351
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-17.5
+ pos: -36.5,-30.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27716
+ - uid: 18368
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-17.5
+ pos: -59.5,-19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27718
+ color: '#0055CCFF'
+ - uid: 18370
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27719
+ - uid: 18376
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27720
+ - uid: 18514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 75.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27721
+ - uid: 18781
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-17.5
+ pos: 29.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27722
+ - uid: 18797
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 61.5,-15.5
+ pos: 21.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27723
+ - uid: 18920
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 62.5,-15.5
+ pos: 22.5,56.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27724
+ - uid: 18932
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 63.5,-15.5
+ pos: 24.5,54.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27725
+ color: '#990000FF'
+ - uid: 18951
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27726
+ color: '#990000FF'
+ - uid: 18953
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 65.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27727
+ color: '#990000FF'
+ - uid: 19107
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27728
+ - uid: 19282
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 67.5,-15.5
+ pos: 20.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27729
+ - uid: 19319
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27730
+ color: '#990000FF'
+ - uid: 19324
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27731
+ color: '#990000FF'
+ - uid: 19349
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27732
+ - uid: 19460
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 71.5,-15.5
+ pos: -96.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27733
+ color: '#990000FF'
+ - uid: 19462
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 72.5,-15.5
+ pos: -96.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27734
+ color: '#990000FF'
+ - uid: 19964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27736
+ color: '#990000FF'
+ - uid: 19975
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 75.5,-15.5
+ pos: -96.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27739
+ - uid: 19979
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-14.5
+ pos: -85.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27740
+ - uid: 20171
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27741
+ color: '#990000FF'
+ - uid: 20196
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-12.5
+ pos: -38.5,60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27742
+ color: '#990000FF'
+ - uid: 20197
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 77.5,-12.5
+ pos: -38.5,61.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27743
+ - uid: 20270
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 77.5,-13.5
+ pos: 29.5,13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27744
+ color: '#0055CCFF'
+ - uid: 20282
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,-14.5
+ pos: 29.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27745
+ color: '#0055CCFF'
+ - uid: 20292
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 77.5,-15.5
+ pos: 29.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27746
+ color: '#0055CCFF'
+ - uid: 20382
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 77.5,-16.5
+ pos: 46.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27758
+ - uid: 20401
components:
- type: Transform
- pos: 54.5,2.5
+ pos: 46.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27759
+ - uid: 20500
components:
- type: Transform
- pos: 54.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27760
+ - uid: 20509
components:
- type: Transform
- pos: 54.5,0.5
+ pos: 43.5,-31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27761
+ color: '#0055CCFF'
+ - uid: 20513
components:
- type: Transform
- pos: 54.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27762
+ color: '#0055CCFF'
+ - uid: 20520
components:
- type: Transform
- pos: 54.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27763
+ color: '#0055CCFF'
+ - uid: 20521
components:
- type: Transform
- pos: 54.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -66.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27764
+ color: '#0055CCFF'
+ - uid: 20522
components:
- type: Transform
- pos: 54.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -67.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27765
+ color: '#0055CCFF'
+ - uid: 20546
components:
- type: Transform
- pos: 54.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20562
+ components:
+ - type: Transform
+ pos: -19.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27766
+ - uid: 20695
components:
- type: Transform
- pos: 53.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27767
+ color: '#990000FF'
+ - uid: 20740
components:
- type: Transform
- pos: 53.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27768
+ color: '#990000FF'
+ - uid: 20900
components:
- type: Transform
- pos: 53.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27769
+ - uid: 21010
components:
- type: Transform
- pos: 53.5,-0.5
+ pos: 8.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27770
+ - uid: 21465
components:
- type: Transform
- pos: 53.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27772
+ color: '#990000FF'
+ - uid: 21780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,58.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27773
+ - uid: 21781
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27775
+ color: '#990000FF'
+ - uid: 21842
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 56.5,21.5
+ pos: -38.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27776
+ color: '#990000FF'
+ - uid: 22094
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27777
+ color: '#990000FF'
+ - uid: 22335
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 58.5,21.5
+ pos: 1.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27778
+ - uid: 22336
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 59.5,21.5
+ pos: 2.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27779
+ - uid: 22337
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 60.5,21.5
+ pos: 3.5,60.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27780
+ - uid: 22342
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 61.5,21.5
+ pos: 3.5,61.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27781
+ color: '#990000FF'
+ - uid: 22607
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27782
+ - uid: 22645
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,42.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27783
+ color: '#990000FF'
+ - uid: 22647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,21.5
+ pos: 43.5,-27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27792
+ - uid: 22689
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 52.5,18.5
+ pos: 1.5,40.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27793
+ - uid: 22772
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,18.5
+ pos: -36.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27794
+ - uid: 22773
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 54.5,18.5
+ pos: 14.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27795
+ color: '#0055CCFF'
+ - uid: 22807
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27796
+ color: '#0055CCFF'
+ - uid: 22816
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,18.5
+ pos: 28.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27797
+ color: '#0055CCFF'
+ - uid: 22864
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27798
+ - uid: 22894
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 58.5,18.5
+ pos: 36.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27800
+ color: '#0055CCFF'
+ - uid: 22895
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 60.5,18.5
+ pos: 37.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27801
+ color: '#0055CCFF'
+ - uid: 22896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,18.5
+ pos: 38.5,48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27802
+ color: '#0055CCFF'
+ - uid: 22901
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 62.5,18.5
+ pos: 34.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27803
+ color: '#0055CCFF'
+ - uid: 22902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 63.5,18.5
+ pos: 33.5,49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27804
+ color: '#0055CCFF'
+ - uid: 23087
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27805
+ - uid: 23101
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,18.5
+ pos: 29.5,-3.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27820
+ - uid: 23205
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.5,24.5
+ pos: -36.5,41.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27821
+ color: '#990000FF'
+ - uid: 23233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27822
+ - uid: 23237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,26.5
+ pos: 65.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27824
+ - uid: 23238
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,28.5
+ pos: 65.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27825
+ - uid: 23239
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,29.5
+ pos: 65.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27826
+ - uid: 23422
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.5,30.5
+ pos: -27.5,50.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27827
+ - uid: 23518
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27845
+ color: '#990000FF'
+ - uid: 23693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27847
+ - uid: 23717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,21.5
+ pos: -51.5,49.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27848
+ - uid: 23718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,22.5
+ pos: -51.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27849
+ - uid: 23719
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,23.5
+ pos: -51.5,51.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27850
+ - uid: 23720
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,24.5
+ pos: -51.5,52.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27851
+ - uid: 23770
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27852
+ - uid: 23777
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27854
+ color: '#0055CCFF'
+ - uid: 23784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27855
+ color: '#0055CCFF'
+ - uid: 23801
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 59.5,29.5
+ pos: -21.5,-34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27856
+ color: '#0055CCFF'
+ - uid: 23812
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 59.5,30.5
+ pos: -52.5,46.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27857
+ - uid: 23839
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 59.5,31.5
+ pos: -52.5,45.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27879
+ - uid: 23895
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27880
+ - uid: 23906
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.5,50.5
+ pos: -43.5,32.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27881
+ - uid: 23907
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 57.5,51.5
+ pos: -42.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27882
+ color: '#990000FF'
+ - uid: 23909
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27883
+ - uid: 23910
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27884
+ - uid: 23911
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27885
+ color: '#0055CCFF'
+ - uid: 23912
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -45.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27886
+ color: '#0055CCFF'
+ - uid: 23913
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27887
+ color: '#0055CCFF'
+ - uid: 23914
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27970
+ color: '#0055CCFF'
+ - uid: 23915
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,54.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28000
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,53.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28052
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-1.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28053
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28054
+ - uid: 23916
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28057
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28058
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,-2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28063
+ - uid: 23918
components:
- type: Transform
- pos: 36.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28064
+ - uid: 23919
components:
- type: Transform
- pos: 36.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28065
+ - uid: 23920
components:
- type: Transform
- pos: 36.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28066
+ - uid: 23922
components:
- type: Transform
- pos: 36.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28067
+ - uid: 23923
components:
- type: Transform
- pos: 36.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28068
- components:
- - type: Transform
- pos: 37.5,17.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28069
- components:
- - type: Transform
- pos: 37.5,16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28072
+ - uid: 23924
components:
- type: Transform
- pos: 13.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28073
+ - uid: 23925
components:
- type: Transform
- pos: 13.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28074
+ - uid: 23926
components:
- type: Transform
- pos: 13.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28076
+ - uid: 23927
components:
- type: Transform
- pos: 13.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28077
+ - uid: 23928
components:
- type: Transform
- pos: 13.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28078
+ - uid: 23930
components:
- type: Transform
- pos: 13.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28080
+ - uid: 23932
components:
- type: Transform
- pos: 13.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28081
+ - uid: 23934
components:
- type: Transform
- pos: 13.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28082
+ - uid: 23935
components:
- type: Transform
- pos: 13.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28083
+ - uid: 23936
components:
- type: Transform
- pos: 13.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28084
+ - uid: 23938
components:
- type: Transform
- pos: 13.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28086
+ color: '#990000FF'
+ - uid: 23939
components:
- type: Transform
- pos: 13.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28087
+ - uid: 23940
components:
- type: Transform
- pos: 13.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28088
+ - uid: 23941
components:
- type: Transform
- pos: 13.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28089
+ - uid: 23943
components:
- type: Transform
- pos: 13.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28090
+ color: '#990000FF'
+ - uid: 23945
components:
- type: Transform
- pos: 13.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28091
+ color: '#990000FF'
+ - uid: 23946
components:
- type: Transform
- pos: 15.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28092
+ - uid: 23947
components:
- type: Transform
- pos: 15.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28093
+ - uid: 23949
components:
- type: Transform
- pos: 15.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28094
+ - uid: 23950
components:
- type: Transform
- pos: 15.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28096
+ - uid: 23954
components:
- type: Transform
- pos: 15.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28097
+ - uid: 23955
components:
- type: Transform
- pos: 15.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28100
+ - uid: 23956
components:
- type: Transform
- pos: 15.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28101
+ - uid: 23958
components:
- type: Transform
- pos: 15.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28102
+ - uid: 23960
components:
- type: Transform
- pos: 15.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28104
+ - uid: 23961
components:
- type: Transform
- pos: 15.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28105
+ - uid: 23962
components:
- type: Transform
- pos: 15.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28106
+ - uid: 23963
components:
- type: Transform
- pos: 15.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28107
+ - uid: 23964
components:
- type: Transform
- pos: 15.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28112
+ - uid: 23965
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28114
+ - uid: 23966
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28115
+ color: '#990000FF'
+ - uid: 23967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,29.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28118
+ color: '#990000FF'
+ - uid: 23968
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,-21.5
+ pos: -49.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28119
+ - uid: 23969
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-21.5
+ pos: -48.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28120
+ - uid: 23970
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,-21.5
+ pos: -47.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28121
+ - uid: 23971
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 19.5,-21.5
+ pos: -46.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28122
+ - uid: 23972
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,-21.5
+ pos: -45.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28124
+ - uid: 23973
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-21.5
+ pos: -44.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28125
+ - uid: 23974
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-21.5
+ pos: -43.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28127
+ - uid: 23977
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 14.5,-18.5
+ pos: -54.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28128
+ - uid: 23978
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 15.5,-18.5
+ pos: -53.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28129
+ - uid: 23979
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,-18.5
+ pos: -52.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28130
+ - uid: 23980
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-18.5
+ pos: -51.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28131
+ - uid: 23981
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,-18.5
+ pos: -50.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28132
+ - uid: 23982
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 19.5,-18.5
+ pos: -49.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28134
+ - uid: 23983
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-18.5
+ pos: -48.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28135
+ - uid: 23985
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-18.5
+ pos: -46.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28136
+ - uid: 23986
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-18.5
+ pos: -45.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28138
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,47.5
- parent: 2
- - uid: 28142
+ - uid: 23987
components:
- type: Transform
- pos: 20.5,-19.5
+ pos: -45.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28143
+ - uid: 23988
components:
- type: Transform
- pos: 20.5,-20.5
+ pos: -45.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28144
+ - uid: 23989
components:
- type: Transform
- pos: 20.5,-21.5
+ pos: -45.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28145
+ - uid: 23990
components:
- type: Transform
- pos: 20.5,-22.5
+ pos: -45.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28146
+ - uid: 23991
components:
- type: Transform
- pos: 20.5,-23.5
+ pos: -45.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28147
+ - uid: 23992
components:
- type: Transform
- pos: 21.5,-22.5
+ pos: -45.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28148
+ color: '#0055CCFF'
+ - uid: 23993
components:
- type: Transform
- pos: 21.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28152
+ color: '#0055CCFF'
+ - uid: 23994
components:
- type: Transform
- pos: -21.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28153
+ - uid: 23995
components:
- type: Transform
- pos: -21.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28154
+ - uid: 23996
components:
- type: Transform
- pos: -21.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28156
+ - uid: 23997
components:
- type: Transform
- pos: -21.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28157
+ - uid: 23998
components:
- type: Transform
- pos: -19.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28160
+ color: '#0055CCFF'
+ - uid: 23999
components:
- type: Transform
- pos: -18.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28161
+ color: '#0055CCFF'
+ - uid: 24000
components:
- type: Transform
- pos: -19.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28163
+ - uid: 24001
components:
- type: Transform
- pos: -21.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28164
+ - uid: 24003
components:
- type: Transform
- pos: -21.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28165
+ - uid: 24004
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28166
+ - uid: 24005
components:
- type: Transform
- pos: -21.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28167
+ - uid: 24006
components:
- type: Transform
- pos: -21.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28168
+ - uid: 24008
components:
- type: Transform
- pos: -21.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28169
+ - uid: 24009
components:
- type: Transform
- pos: -21.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28170
+ - uid: 24010
components:
- type: Transform
- pos: -21.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28171
+ - uid: 24011
components:
- type: Transform
- pos: -19.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28172
+ color: '#0055CCFF'
+ - uid: 24012
components:
- type: Transform
- pos: -19.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28179
+ color: '#0055CCFF'
+ - uid: 24013
components:
- type: Transform
- pos: -19.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28180
+ color: '#0055CCFF'
+ - uid: 24014
components:
- type: Transform
- pos: -19.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28181
+ color: '#0055CCFF'
+ - uid: 24015
components:
- type: Transform
- pos: -19.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28182
+ color: '#0055CCFF'
+ - uid: 24016
components:
- type: Transform
- pos: -19.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28183
+ color: '#0055CCFF'
+ - uid: 24017
components:
- type: Transform
- pos: -19.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28184
+ color: '#0055CCFF'
+ - uid: 24019
components:
- type: Transform
- pos: -19.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28185
+ color: '#0055CCFF'
+ - uid: 24020
components:
- type: Transform
- pos: -19.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28186
+ color: '#0055CCFF'
+ - uid: 24021
components:
- type: Transform
- pos: -19.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28187
+ color: '#0055CCFF'
+ - uid: 24022
components:
- type: Transform
- pos: -19.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28194
+ color: '#0055CCFF'
+ - uid: 24024
components:
- type: Transform
- pos: -18.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28195
+ color: '#0055CCFF'
+ - uid: 24025
components:
- type: Transform
- pos: -18.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28196
+ color: '#0055CCFF'
+ - uid: 24027
components:
- type: Transform
- pos: -18.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28197
+ color: '#0055CCFF'
+ - uid: 24028
components:
- type: Transform
- pos: -18.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28199
+ color: '#0055CCFF'
+ - uid: 24029
components:
- type: Transform
- pos: -19.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28200
+ - uid: 24030
components:
- type: Transform
- pos: -19.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28201
+ - uid: 24031
components:
- type: Transform
- pos: -19.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28203
+ - uid: 24032
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,-40.5
+ pos: -1.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28204
+ color: '#0055CCFF'
+ - uid: 24033
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-39.5
+ pos: 0.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28205
+ - uid: 24034
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-39.5
+ pos: 0.5,24.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28207
+ color: '#0055CCFF'
+ - uid: 24035
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-39.5
+ pos: 0.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28208
+ - uid: 24036
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-39.5
+ pos: 0.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28209
+ - uid: 24037
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-39.5
+ pos: 0.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28210
+ - uid: 24038
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-39.5
+ pos: 0.5,28.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28212
+ - uid: 24039
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-39.5
+ pos: 0.5,29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28214
+ - uid: 24041
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-40.5
+ pos: 0.5,31.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28215
+ color: '#0055CCFF'
+ - uid: 24042
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-40.5
+ pos: 0.5,32.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28216
+ color: '#0055CCFF'
+ - uid: 24044
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-40.5
+ pos: 0.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28217
+ color: '#0055CCFF'
+ - uid: 24045
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-40.5
+ pos: 0.5,35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28218
+ color: '#0055CCFF'
+ - uid: 24046
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-40.5
+ pos: 0.5,36.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28220
+ color: '#0055CCFF'
+ - uid: 24048
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-40.5
+ pos: 0.5,38.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28221
+ color: '#0055CCFF'
+ - uid: 24049
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-40.5
+ pos: 0.5,39.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28222
+ color: '#0055CCFF'
+ - uid: 24050
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-40.5
+ pos: 0.5,40.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28223
+ color: '#0055CCFF'
+ - uid: 24053
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-40.5
+ pos: 0.5,43.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28224
+ color: '#0055CCFF'
+ - uid: 24055
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-40.5
+ pos: 0.5,45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28232
+ color: '#0055CCFF'
+ - uid: 24056
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-39.5
+ pos: 0.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28233
+ - uid: 24057
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-39.5
+ pos: 0.5,47.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28234
+ - uid: 24058
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-39.5
+ pos: 0.5,48.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28235
+ - uid: 24060
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-39.5
+ pos: 0.5,50.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28236
+ - uid: 24061
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-39.5
+ pos: 0.5,51.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28237
+ - uid: 24062
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-39.5
+ pos: 0.5,52.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28243
+ - uid: 24063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-24.5
+ pos: 0.5,53.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28255
+ color: '#0055CCFF'
+ - uid: 24064
components:
- type: Transform
- pos: -12.5,-15.5
+ pos: 0.5,54.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28256
+ - uid: 24066
components:
- type: Transform
- pos: -12.5,-16.5
+ pos: 0.5,56.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28257
+ - uid: 24067
components:
- type: Transform
- pos: -12.5,-17.5
+ pos: 0.5,57.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28258
+ - uid: 24068
components:
- type: Transform
- pos: -12.5,-18.5
+ pos: 0.5,58.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28259
+ - uid: 24069
components:
- type: Transform
- pos: -12.5,-19.5
+ pos: 0.5,59.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28260
+ - uid: 24071
components:
- type: Transform
- pos: -12.5,-20.5
+ pos: 0.5,61.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28261
+ - uid: 24072
components:
- type: Transform
- pos: -10.5,-17.5
+ pos: 0.5,62.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28262
+ color: '#0055CCFF'
+ - uid: 24073
components:
- type: Transform
- pos: -10.5,-18.5
+ pos: 0.5,63.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28263
+ color: '#0055CCFF'
+ - uid: 24074
components:
- type: Transform
- pos: -10.5,-19.5
+ pos: 9.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28264
+ - uid: 24075
components:
- type: Transform
- pos: -10.5,-20.5
+ pos: 0.5,65.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28267
+ color: '#0055CCFF'
+ - uid: 24076
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-25.5
+ pos: 0.5,66.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28268
+ color: '#0055CCFF'
+ - uid: 24077
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-25.5
+ pos: 0.5,67.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28269
+ color: '#0055CCFF'
+ - uid: 24078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-25.5
+ pos: 0.5,68.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28270
+ color: '#0055CCFF'
+ - uid: 24079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-25.5
+ pos: 0.5,69.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28271
+ color: '#0055CCFF'
+ - uid: 24080
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-25.5
+ pos: 0.5,70.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28272
+ color: '#0055CCFF'
+ - uid: 24082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-25.5
+ pos: 0.5,72.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28273
+ color: '#0055CCFF'
+ - uid: 24083
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-25.5
+ pos: 0.5,73.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28275
+ color: '#0055CCFF'
+ - uid: 24084
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-25.5
+ pos: -0.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28276
+ color: '#0055CCFF'
+ - uid: 24085
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-25.5
+ pos: -1.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28277
+ color: '#0055CCFF'
+ - uid: 24086
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-25.5
+ pos: -2.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28279
+ color: '#0055CCFF'
+ - uid: 24087
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-23.5
+ pos: -3.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28280
+ - uid: 24088
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-23.5
+ pos: -4.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28281
+ - uid: 24089
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-23.5
+ pos: -5.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28282
+ - uid: 24090
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -3.5,-23.5
+ pos: -6.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28284
+ - uid: 24091
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-23.5
+ pos: -7.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28285
+ - uid: 24092
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-23.5
+ pos: -8.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28286
+ - uid: 24093
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-23.5
+ pos: -9.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28287
+ - uid: 24094
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-23.5
+ pos: 3.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28288
+ color: '#990000FF'
+ - uid: 24095
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-23.5
+ pos: 4.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28291
+ color: '#990000FF'
+ - uid: 24096
components:
- type: Transform
- pos: -10.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28292
+ color: '#990000FF'
+ - uid: 24097
components:
- type: Transform
- pos: -10.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28293
+ color: '#990000FF'
+ - uid: 24098
components:
- type: Transform
- pos: -10.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28294
+ color: '#990000FF'
+ - uid: 24099
components:
- type: Transform
- pos: -9.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28295
+ - uid: 24100
components:
- type: Transform
- pos: -9.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28296
+ - uid: 24101
components:
- type: Transform
- pos: -9.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28298
+ - uid: 24102
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,74.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28303
+ color: '#990000FF'
+ - uid: 24103
components:
- type: Transform
- pos: -10.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28304
+ - uid: 24104
components:
- type: Transform
- pos: -10.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,74.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28306
+ - uid: 24105
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-29.5
+ pos: 2.5,73.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28307
+ color: '#990000FF'
+ - uid: 24106
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-30.5
+ pos: 2.5,72.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28308
+ color: '#990000FF'
+ - uid: 24107
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-31.5
+ pos: 2.5,71.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28309
+ color: '#990000FF'
+ - uid: 24109
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,69.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28310
+ color: '#990000FF'
+ - uid: 24111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,67.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28311
+ color: '#990000FF'
+ - uid: 24112
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,66.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28312
+ color: '#990000FF'
+ - uid: 24113
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,65.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28313
+ - uid: 24114
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,64.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28314
+ - uid: 24116
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,62.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28315
+ - uid: 24117
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -55.5,50.5
parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28318
+ - uid: 24118
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-13.5
+ pos: 2.5,60.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28319
+ color: '#990000FF'
+ - uid: 24119
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-12.5
+ pos: 2.5,59.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28320
+ color: '#990000FF'
+ - uid: 24121
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-11.5
+ pos: 2.5,57.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28321
+ color: '#990000FF'
+ - uid: 24122
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-10.5
+ pos: 2.5,56.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28322
+ color: '#990000FF'
+ - uid: 24123
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-9.5
+ pos: 2.5,55.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28323
+ color: '#990000FF'
+ - uid: 24124
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-15.5
+ pos: 2.5,54.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28324
+ - uid: 24125
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-14.5
+ pos: 2.5,53.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28325
+ - uid: 24126
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-13.5
+ pos: 2.5,52.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28326
+ - uid: 24127
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-12.5
+ pos: 2.5,51.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28327
+ - uid: 24128
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-11.5
+ pos: 2.5,50.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28328
+ - uid: 24132
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-10.5
+ pos: 2.5,46.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28329
+ - uid: 24133
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,-9.5
+ pos: 2.5,45.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28376
+ - uid: 24134
components:
- type: Transform
- pos: -71.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28441
- components:
- - type: Transform
- pos: 21.5,6.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28442
- components:
- - type: Transform
- pos: 21.5,5.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28443
- components:
- - type: Transform
- pos: 21.5,4.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28444
- components:
- - type: Transform
- pos: 21.5,3.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28445
- components:
- - type: Transform
- pos: 21.5,2.5
- parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28446
+ - uid: 24135
components:
- type: Transform
- pos: 22.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,43.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28447
+ - uid: 24137
components:
- type: Transform
- pos: 22.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,41.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28448
+ - uid: 24139
components:
- type: Transform
- pos: 22.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,39.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28453
+ - uid: 24140
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,1.5
+ pos: 2.5,38.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28454
+ color: '#990000FF'
+ - uid: 24141
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,2.5
+ pos: 2.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28455
+ color: '#990000FF'
+ - uid: 24144
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,3.5
+ pos: 2.5,34.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28456
+ color: '#990000FF'
+ - uid: 24145
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,4.5
+ pos: 2.5,33.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28457
+ color: '#990000FF'
+ - uid: 24148
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,5.5
+ pos: 2.5,30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28458
+ color: '#990000FF'
+ - uid: 24150
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,6.5
+ pos: 2.5,28.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28459
+ color: '#990000FF'
+ - uid: 24151
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,1.5
+ pos: 2.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28460
+ - uid: 24152
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,2.5
+ pos: 2.5,26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28461
+ - uid: 24153
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,3.5
+ pos: 2.5,25.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28462
+ - uid: 24154
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,4.5
+ pos: 2.5,24.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28492
+ - uid: 24155
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,19.5
+ pos: 2.5,23.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28493
+ - uid: 24156
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,20.5
+ pos: 2.5,22.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28494
+ - uid: 24157
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,21.5
+ pos: 2.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28495
+ - uid: 24158
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,22.5
+ pos: 2.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28496
+ - uid: 24159
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28497
+ - uid: 24160
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28498
+ - uid: 24161
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28499
+ - uid: 24162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28538
+ color: '#990000FF'
+ - uid: 24163
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28539
+ color: '#990000FF'
+ - uid: 24164
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28540
+ color: '#990000FF'
+ - uid: 24166
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28541
+ - uid: 24167
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28542
+ - uid: 24168
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28543
+ - uid: 24169
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28544
+ - uid: 24170
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28548
+ - uid: 24171
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28549
+ - uid: 24172
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28550
+ - uid: 24175
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,21.5
+ pos: 12.5,22.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28551
+ color: '#0055CCFF'
+ - uid: 24176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28552
+ - uid: 24177
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28553
+ - uid: 24178
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28554
+ - uid: 24179
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28555
+ - uid: 24180
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28556
+ - uid: 24181
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28557
+ - uid: 24182
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28558
+ color: '#990000FF'
+ - uid: 24183
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28559
+ color: '#990000FF'
+ - uid: 24184
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28560
+ color: '#990000FF'
+ - uid: 24185
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28561
+ color: '#990000FF'
+ - uid: 24186
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28562
+ color: '#990000FF'
+ - uid: 24188
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28563
+ color: '#990000FF'
+ - uid: 24189
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28565
+ color: '#990000FF'
+ - uid: 24190
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,29.5
+ pos: -29.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28568
+ color: '#990000FF'
+ - uid: 24191
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28569
+ color: '#990000FF'
+ - uid: 24192
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,19.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28570
+ color: '#990000FF'
+ - uid: 24194
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28571
+ color: '#990000FF'
+ - uid: 24195
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28572
+ color: '#990000FF'
+ - uid: 24196
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28573
+ - uid: 24197
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28574
+ - uid: 24198
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28575
+ - uid: 24199
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28576
+ - uid: 24200
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,23.5
+ pos: -43.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28577
+ - uid: 24201
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,24.5
+ pos: -43.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28578
+ - uid: 24202
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,25.5
+ pos: -43.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28579
+ - uid: 24203
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,26.5
+ pos: -43.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28580
+ - uid: 24204
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,27.5
+ pos: -43.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28581
+ - uid: 24205
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,28.5
+ pos: -43.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28678
+ - uid: 24207
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28679
+ - uid: 24208
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28703
+ color: '#990000FF'
+ - uid: 24209
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28725
+ - uid: 24210
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-1.5
+ pos: -49.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28726
+ color: '#990000FF'
+ - uid: 24211
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-1.5
+ pos: -50.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28730
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,44.5
- parent: 2
- - uid: 28743
+ color: '#990000FF'
+ - uid: 24212
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28758
+ color: '#990000FF'
+ - uid: 24213
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28759
+ color: '#990000FF'
+ - uid: 24214
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28760
+ color: '#990000FF'
+ - uid: 24215
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28761
+ color: '#990000FF'
+ - uid: 24216
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28762
+ color: '#990000FF'
+ - uid: 24217
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28763
+ color: '#990000FF'
+ - uid: 24218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28764
+ color: '#990000FF'
+ - uid: 24219
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28765
+ color: '#990000FF'
+ - uid: 24221
components:
- type: Transform
- pos: -28.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -60.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28766
+ - uid: 24222
components:
- type: Transform
- pos: -28.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28767
+ - uid: 24223
components:
- type: Transform
- pos: -28.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28768
+ - uid: 24224
components:
- type: Transform
- pos: -28.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28769
+ - uid: 24226
components:
- type: Transform
- pos: -28.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28770
+ - uid: 24227
components:
- type: Transform
- pos: -29.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -66.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28771
+ color: '#990000FF'
+ - uid: 24228
components:
- type: Transform
- pos: -29.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28772
+ color: '#990000FF'
+ - uid: 24230
components:
- type: Transform
- pos: -29.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28773
+ color: '#990000FF'
+ - uid: 24231
components:
- type: Transform
- pos: -29.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28774
+ color: '#990000FF'
+ - uid: 24233
components:
- type: Transform
- pos: -28.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28805
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,44.5
- parent: 2
- - uid: 28824
+ - uid: 24234
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,7.5
parent: 2
- - uid: 29125
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24235
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29162
+ - uid: 24237
components:
- type: Transform
- pos: -49.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: -76.5,7.5
parent: 2
- - uid: 29288
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24239
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -78.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 29290
+ color: '#990000FF'
+ - uid: 24240
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 29693
+ color: '#990000FF'
+ - uid: 24241
components:
- type: Transform
- pos: -33.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -80.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29694
+ - uid: 24242
components:
- type: Transform
- pos: -33.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29695
+ - uid: 24243
components:
- type: Transform
- pos: -33.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29696
+ - uid: 24246
components:
- type: Transform
- pos: -33.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29697
+ - uid: 24247
components:
- type: Transform
- pos: -33.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 29893
+ - uid: 24248
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,7.5
parent: 2
- - uid: 30222
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24249
components:
- type: Transform
- pos: -33.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 30236
+ - uid: 24250
components:
- type: Transform
- pos: -53.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 30267
+ - uid: 24252
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,26.5
+ pos: -91.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 30330
+ - uid: 24254
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,26.5
+ pos: -93.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 30341
+ - uid: 24255
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,26.5
+ pos: -94.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 30934
+ - uid: 24256
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 30965
+ color: '#990000FF'
+ - uid: 24259
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31006
+ - uid: 24260
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31110
+ color: '#0055CCFF'
+ - uid: 24261
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,63.5
+ pos: -93.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31117
+ color: '#0055CCFF'
+ - uid: 24262
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 26.5,9.5
+ pos: -92.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31118
+ - uid: 24264
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,9.5
+ pos: -90.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31122
+ - uid: 24266
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,63.5
+ pos: -88.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31123
+ color: '#0055CCFF'
+ - uid: 24267
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,63.5
+ pos: -87.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31124
+ color: '#0055CCFF'
+ - uid: 24268
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,63.5
+ pos: -86.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31125
+ color: '#0055CCFF'
+ - uid: 24271
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,63.5
+ pos: -83.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31126
+ color: '#0055CCFF'
+ - uid: 24272
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,63.5
+ pos: -82.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31127
+ color: '#0055CCFF'
+ - uid: 24273
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,63.5
+ pos: -81.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31128
+ color: '#0055CCFF'
+ - uid: 24274
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.5,63.5
+ pos: -80.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31129
+ color: '#0055CCFF'
+ - uid: 24275
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,63.5
+ pos: -79.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31131
+ color: '#0055CCFF'
+ - uid: 24277
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,63.5
+ pos: -77.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31132
+ color: '#0055CCFF'
+ - uid: 24279
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,63.5
+ pos: -75.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31133
+ color: '#0055CCFF'
+ - uid: 24280
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,9.5
+ pos: -74.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31134
+ - uid: 24282
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,63.5
+ pos: -72.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31135
+ color: '#0055CCFF'
+ - uid: 24283
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,63.5
+ pos: -71.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31136
+ color: '#0055CCFF'
+ - uid: 24284
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,63.5
+ pos: -70.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31138
+ color: '#0055CCFF'
+ - uid: 24285
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -69.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31140
+ - uid: 24287
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,64.5
+ pos: -67.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31141
+ - uid: 24288
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,64.5
+ pos: -66.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31142
+ - uid: 24289
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,64.5
+ pos: -65.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31143
+ - uid: 24290
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,64.5
+ pos: -64.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31144
+ - uid: 24291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,48.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31145
+ - uid: 24292
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.5,64.5
+ pos: -62.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31146
+ - uid: 24293
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,64.5
+ pos: -61.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31148
+ - uid: 24294
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,64.5
+ pos: -60.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31149
+ - uid: 24295
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,64.5
+ pos: -59.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31150
+ - uid: 24296
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,64.5
+ pos: -58.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31152
+ - uid: 24297
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,64.5
+ pos: -57.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31153
+ - uid: 24298
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,64.5
+ pos: -56.5,9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31154
+ - uid: 24308
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31173
+ - uid: 24309
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -40.5,60.5
+ pos: 52.5,49.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31179
+ - uid: 24311
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31636
+ color: '#0055CCFF'
+ - uid: 24318
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-43.5
+ pos: 0.5,37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31637
+ color: '#0055CCFF'
+ - uid: 24319
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,-43.5
+ pos: 2.5,35.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31638
+ - uid: 24328
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-43.5
+ pos: 2.5,17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31671
+ - uid: 24329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-43.5
+ pos: 2.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31672
+ - uid: 24330
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,-43.5
+ pos: 2.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31673
+ - uid: 24331
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-43.5
+ pos: 2.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31674
+ - uid: 24332
components:
- type: Transform
- pos: -18.5,-42.5
+ pos: 2.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31677
+ - uid: 24333
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,-43.5
+ pos: 2.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31678
+ - uid: 24334
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,-43.5
+ pos: 2.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31679
+ - uid: 24335
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-43.5
+ pos: 2.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31682
+ - uid: 24336
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-43.5
+ pos: 3.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31683
+ - uid: 24337
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,-43.5
+ pos: 4.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31684
+ - uid: 24338
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,-43.5
+ pos: 5.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31685
+ - uid: 24340
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,-43.5
+ pos: 7.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31686
+ - uid: 24341
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,-43.5
+ pos: 8.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31704
+ - uid: 24342
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,-43.5
+ pos: 35.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31705
+ color: '#0055CCFF'
+ - uid: 24345
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,-43.5
+ pos: -33.5,27.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31708
+ color: '#0055CCFF'
+ - uid: 24348
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-43.5
+ pos: 29.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31710
+ color: '#0055CCFF'
+ - uid: 24353
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-43.5
+ pos: 10.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31724
+ - uid: 24354
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-41.5
+ pos: 8.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31725
+ - uid: 24356
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,-41.5
+ pos: 23.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31726
+ color: '#990000FF'
+ - uid: 24358
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-41.5
+ pos: 25.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31727
+ color: '#990000FF'
+ - uid: 24359
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -24.5,-41.5
+ pos: 26.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31728
+ color: '#990000FF'
+ - uid: 24360
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,-41.5
+ pos: 27.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31729
+ color: '#990000FF'
+ - uid: 24361
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,-41.5
+ pos: 28.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31730
+ color: '#990000FF'
+ - uid: 24363
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-41.5
+ pos: 30.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31733
+ color: '#990000FF'
+ - uid: 24364
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,-41.5
+ pos: 31.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31734
+ color: '#990000FF'
+ - uid: 24365
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,-41.5
+ pos: 32.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31735
+ color: '#990000FF'
+ - uid: 24366
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -32.5,-41.5
+ pos: -34.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31736
+ - uid: 24367
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -33.5,-41.5
+ pos: 34.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31737
+ color: '#990000FF'
+ - uid: 24368
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,-41.5
+ pos: 35.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31738
+ color: '#990000FF'
+ - uid: 24369
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,-41.5
+ pos: 36.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31739
+ color: '#990000FF'
+ - uid: 24371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -36.5,-41.5
+ pos: 38.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31740
+ color: '#990000FF'
+ - uid: 24372
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,-41.5
+ pos: 39.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31741
+ color: '#990000FF'
+ - uid: 24373
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,-41.5
+ pos: 40.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31742
+ color: '#990000FF'
+ - uid: 24374
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,-41.5
+ pos: 41.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31743
+ color: '#990000FF'
+ - uid: 24375
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.5,-41.5
+ pos: 42.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31744
+ color: '#990000FF'
+ - uid: 24376
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.5,-41.5
+ pos: 43.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31745
+ color: '#990000FF'
+ - uid: 24377
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,-41.5
+ pos: 44.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31746
+ color: '#990000FF'
+ - uid: 24378
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,-41.5
+ pos: -35.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 31747
+ - uid: 24380
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -44.5,-41.5
+ pos: 47.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31748
+ color: '#990000FF'
+ - uid: 24381
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,-41.5
+ pos: 48.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31749
+ color: '#990000FF'
+ - uid: 24382
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,-41.5
+ pos: 49.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31750
+ color: '#990000FF'
+ - uid: 24383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31751
+ color: '#990000FF'
+ - uid: 24384
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31752
+ color: '#990000FF'
+ - uid: 24385
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,15.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31757
+ color: '#990000FF'
+ - uid: 24386
components:
- type: Transform
- pos: -48.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31758
+ - uid: 24387
components:
- type: Transform
- pos: -48.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31762
+ - uid: 24388
components:
- type: Transform
- pos: -50.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31763
+ color: '#990000FF'
+ - uid: 24389
components:
- type: Transform
- pos: -50.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31764
+ color: '#990000FF'
+ - uid: 24390
components:
- type: Transform
- pos: -50.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31765
+ color: '#990000FF'
+ - uid: 24391
components:
- type: Transform
- pos: -50.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 31786
+ color: '#990000FF'
+ - uid: 24392
components:
- type: Transform
- pos: -19.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31787
+ - uid: 24393
components:
- type: Transform
- pos: -19.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 31887
+ - uid: 24394
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 33750
+ color: '#990000FF'
+ - uid: 24395
components:
- type: Transform
- pos: 2.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: 50.5,5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 33751
+ - uid: 24397
components:
- type: Transform
- pos: 2.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 33752
+ - uid: 24398
components:
- type: Transform
- pos: 2.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 33753
+ - uid: 24399
components:
- type: Transform
- pos: 2.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 51.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 33754
+ - uid: 24400
components:
- type: Transform
- pos: 2.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 47.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33755
+ color: '#0055CCFF'
+ - uid: 24401
components:
- type: Transform
- pos: 0.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33756
+ - uid: 24403
components:
- type: Transform
- pos: 0.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33757
+ - uid: 24404
components:
- type: Transform
- pos: 0.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33758
+ - uid: 24405
components:
- type: Transform
- pos: 0.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33759
+ - uid: 24406
components:
- type: Transform
- pos: 0.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33886
+ - uid: 24407
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -71.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33887
+ - uid: 24408
components:
- type: Transform
- pos: 46.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33888
+ color: '#0055CCFF'
+ - uid: 24409
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -70.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33889
+ - uid: 24410
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 33967
+ - uid: 24412
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33968
+ color: '#0055CCFF'
+ - uid: 24414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -66.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33969
+ color: '#0055CCFF'
+ - uid: 24415
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -65.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33970
+ color: '#0055CCFF'
+ - uid: 24416
components:
- type: Transform
- pos: -64.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 33993
+ color: '#0055CCFF'
+ - uid: 24417
components:
- type: Transform
- pos: -64.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34013
+ color: '#0055CCFF'
+ - uid: 24418
components:
- type: Transform
- pos: -64.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34014
+ color: '#0055CCFF'
+ - uid: 24419
components:
- type: Transform
- pos: -64.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34032
+ color: '#0055CCFF'
+ - uid: 24421
components:
- type: Transform
- pos: -64.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34188
+ color: '#0055CCFF'
+ - uid: 24422
components:
- type: Transform
- pos: -64.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34189
+ color: '#0055CCFF'
+ - uid: 24423
components:
- type: Transform
- pos: -64.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34674
+ color: '#0055CCFF'
+ - uid: 24425
components:
- type: Transform
- pos: 71.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34682
+ color: '#0055CCFF'
+ - uid: 24426
components:
- type: Transform
- pos: 75.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34683
+ - uid: 24427
components:
- type: Transform
- pos: 75.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34684
+ - uid: 24428
components:
- type: Transform
- pos: 75.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34685
+ - uid: 24430
components:
- type: Transform
- pos: 75.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36054
+ - uid: 24431
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36055
+ color: '#0055CCFF'
+ - uid: 24432
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36056
+ - uid: 24433
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36057
+ - uid: 24435
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,29.5
+ pos: -32.5,26.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36058
+ color: '#0055CCFF'
+ - uid: 24436
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36059
+ color: '#0055CCFF'
+ - uid: 24437
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36060
+ color: '#0055CCFF'
+ - uid: 24438
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36061
+ color: '#0055CCFF'
+ - uid: 24441
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36062
+ color: '#0055CCFF'
+ - uid: 24442
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,20.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 36063
+ - uid: 24443
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36064
+ - uid: 24444
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36065
+ - uid: 24445
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36066
+ - uid: 24446
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,21.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36067
+ - uid: 24447
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36068
+ color: '#0055CCFF'
+ - uid: 24448
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -28.5,26.5
+ pos: -0.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36069
+ color: '#0055CCFF'
+ - uid: 24449
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,29.5
+ pos: -0.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36070
+ - uid: 24450
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,28.5
+ pos: -0.5,18.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36071
+ - uid: 24451
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,27.5
+ pos: 0.5,16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36072
+ - uid: 24452
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,26.5
+ pos: 0.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36456
+ - uid: 24453
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#0335FCFF'
-- proto: GasPipeTJunction
- entities:
- - uid: 37
+ color: '#0055CCFF'
+ - uid: 24454
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,30.5
+ pos: 0.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 394
+ - uid: 24455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2148
+ - uid: 24456
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,30.5
+ pos: 0.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2151
+ - uid: 24457
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 62.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2225
+ color: '#0055CCFF'
+ - uid: 24460
components:
- type: Transform
- pos: -29.5,30.5
+ pos: -47.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2236
+ - uid: 24461
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,21.5
+ pos: -47.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2336
+ - uid: 24463
components:
- type: Transform
- pos: -25.5,63.5
+ pos: -47.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2456
+ color: '#0055CCFF'
+ - uid: 24465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,22.5
+ pos: -47.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2529
+ - uid: 24466
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,28.5
+ pos: -47.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2580
+ color: '#0055CCFF'
+ - uid: 24467
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,28.5
+ pos: -47.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2960
+ color: '#0055CCFF'
+ - uid: 24468
components:
- type: Transform
- pos: -69.5,30.5
+ pos: -47.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3351
+ - uid: 24469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,19.5
+ pos: -47.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3564
+ color: '#0055CCFF'
+ - uid: 24470
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,31.5
+ pos: -47.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4271
+ - uid: 24471
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-3.5
+ pos: -47.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4281
+ - uid: 24472
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,-3.5
+ pos: -47.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5043
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,44.5
- parent: 2
- - uid: 5045
+ color: '#0055CCFF'
+ - uid: 24473
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,42.5
+ pos: -47.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5110
+ - uid: 24474
components:
- type: Transform
- pos: -46.5,43.5
+ pos: -47.5,-5.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5289
- components:
- - type: Transform
- pos: -38.5,43.5
- parent: 2
- - uid: 5342
+ - uid: 24475
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,28.5
+ pos: -47.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5344
+ color: '#0055CCFF'
+ - uid: 24476
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,29.5
+ pos: -47.5,-7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5568
+ - uid: 24477
components:
- type: Transform
- pos: -27.5,64.5
+ pos: -47.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5982
+ - uid: 24478
components:
- type: Transform
- pos: -44.5,43.5
+ pos: -45.5,6.5
parent: 2
- - uid: 6008
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24479
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-29.5
+ pos: -45.5,5.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6319
+ - uid: 24480
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,6.5
+ pos: -45.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6694
+ color: '#990000FF'
+ - uid: 24481
components:
- type: Transform
- pos: -29.5,-41.5
+ pos: -45.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6706
+ color: '#990000FF'
+ - uid: 24482
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-4.5
+ pos: -45.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6722
+ color: '#990000FF'
+ - uid: 24484
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,-15.5
+ pos: -45.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6960
+ color: '#990000FF'
+ - uid: 24485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-30.5
+ pos: -45.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7099
+ color: '#990000FF'
+ - uid: 24486
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,44.5
+ pos: -45.5,-1.5
parent: 2
- - uid: 7332
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24487
components:
- type: Transform
- pos: -42.5,43.5
+ pos: -45.5,-2.5
parent: 2
- - uid: 7334
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24488
components:
- type: Transform
- pos: -40.5,43.5
+ pos: -45.5,-3.5
parent: 2
- - uid: 7433
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24489
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,3.5
+ pos: -45.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8182
+ - uid: 24490
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-39.5
+ pos: -45.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8271
+ color: '#990000FF'
+ - uid: 24491
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,44.5
+ pos: -45.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8412
+ color: '#990000FF'
+ - uid: 24492
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,9.5
+ pos: -45.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8415
+ color: '#990000FF'
+ - uid: 24515
components:
- type: Transform
- pos: -96.5,7.5
+ pos: -39.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8420
+ - uid: 24516
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -83.5,20.5
+ pos: -39.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8448
+ - uid: 24517
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,-40.5
+ pos: -41.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8452
+ color: '#0055CCFF'
+ - uid: 24518
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -45.5,-28.5
+ pos: -40.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8647
+ color: '#0055CCFF'
+ - uid: 24519
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -87.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8649
+ - uid: 24520
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8713
+ color: '#0055CCFF'
+ - uid: 24522
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,19.5
+ pos: -36.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8822
+ - uid: 24523
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8824
+ color: '#0055CCFF'
+ - uid: 24524
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9307
+ color: '#0055CCFF'
+ - uid: 24525
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,44.5
+ pos: -32.5,25.5
parent: 2
- - uid: 9308
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24526
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -45.5,44.5
+ pos: -32.5,-14.5
parent: 2
- - uid: 9310
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24527
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,44.5
+ pos: -31.5,-14.5
parent: 2
- - uid: 9674
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24528
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 38.5,47.5
+ pos: -30.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9705
+ - uid: 24529
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10060
+ - uid: 24530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10221
+ - uid: 24532
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -46.5,39.5
+ pos: -26.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10392
+ - uid: 24533
components:
- type: Transform
- pos: -27.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10579
+ - uid: 24534
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10626
+ color: '#0055CCFF'
+ - uid: 24535
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 10645
+ - uid: 24536
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 11103
+ - uid: 24538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 11468
+ - uid: 24539
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11509
+ color: '#990000FF'
+ - uid: 24540
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,30.5
+ pos: -33.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11523
+ color: '#990000FF'
+ - uid: 24542
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11525
+ color: '#990000FF'
+ - uid: 24543
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 12043
+ - uid: 24544
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 12999
+ color: '#990000FF'
+ - uid: 24545
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,68.5
+ pos: -28.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13003
+ - uid: 24546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13379
+ - uid: 24548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13380
+ color: '#990000FF'
+ - uid: 24549
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -44.5,8.5
+ pos: -24.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13381
+ - uid: 24550
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 49.5,-5.5
+ pos: -23.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13383
+ color: '#990000FF'
+ - uid: 24551
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13987
+ - uid: 24552
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14077
+ - uid: 24553
components:
- type: Transform
- pos: -11.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14455
+ color: '#990000FF'
+ - uid: 24555
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14456
+ - uid: 24559
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15177
+ color: '#0055CCFF'
+ - uid: 24560
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,37.5
+ pos: 48.5,20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15273
+ color: '#0055CCFF'
+ - uid: 24561
components:
- type: Transform
- pos: 18.5,-14.5
+ pos: 48.5,19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15429
+ - uid: 24562
components:
- type: Transform
- pos: 50.5,18.5
+ pos: 48.5,18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15431
+ color: '#0055CCFF'
+ - uid: 24563
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.5,-18.5
+ pos: 48.5,17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15432
+ color: '#0055CCFF'
+ - uid: 24564
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-16.5
+ pos: 48.5,16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15437
+ color: '#0055CCFF'
+ - uid: 24565
components:
- type: Transform
- pos: 30.5,7.5
+ pos: 48.5,15.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15560
+ - uid: 24566
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,37.5
+ pos: 48.5,14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15664
+ color: '#0055CCFF'
+ - uid: 24567
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-14.5
+ pos: 48.5,13.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15669
+ - uid: 24568
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-16.5
+ pos: 48.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15674
+ color: '#0055CCFF'
+ - uid: 24569
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,0.5
+ pos: 48.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15871
+ - uid: 24570
components:
- type: Transform
- pos: -95.5,21.5
+ pos: 48.5,10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15946
+ - uid: 24571
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,22.5
+ pos: 48.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16409
+ color: '#0055CCFF'
+ - uid: 24572
components:
- type: Transform
- pos: 74.5,-15.5
+ pos: 48.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16412
+ - uid: 24573
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-17.5
+ pos: 48.5,7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16503
+ color: '#0055CCFF'
+ - uid: 24574
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -95.5,-4.5
+ pos: 48.5,6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16507
+ - uid: 24575
components:
- type: Transform
- pos: -95.5,-8.5
+ pos: 48.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16518
+ color: '#0055CCFF'
+ - uid: 24576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,30.5
+ pos: 48.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16591
+ - uid: 24577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-0.5
+ pos: 49.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17236
+ color: '#0055CCFF'
+ - uid: 24578
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,22.5
+ pos: 49.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17581
+ - uid: 24579
components:
- type: Transform
- pos: 75.5,-2.5
+ pos: 49.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17648
+ - uid: 24580
components:
- type: Transform
- pos: 71.5,-5.5
+ pos: 49.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17812
+ color: '#0055CCFF'
+ - uid: 24581
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,15.5
+ pos: 49.5,-1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 17814
+ color: '#0055CCFF'
+ - uid: 24583
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,17.5
+ pos: 49.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18026
+ color: '#0055CCFF'
+ - uid: 24584
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,61.5
+ pos: 49.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18027
+ color: '#0055CCFF'
+ - uid: 24586
components:
- type: Transform
- pos: 55.5,21.5
+ pos: 49.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18093
+ - uid: 24587
components:
- type: Transform
- pos: -84.5,7.5
+ pos: 49.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18140
+ color: '#0055CCFF'
+ - uid: 24588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,1.5
+ pos: 49.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18334
+ color: '#0055CCFF'
+ - uid: 24589
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,71.5
+ pos: 49.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18361
+ - uid: 24590
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,14.5
+ pos: 49.5,-10.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19350
+ - uid: 24591
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,13.5
+ pos: 49.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19478
+ - uid: 24600
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-4.5
+ pos: 47.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19891
+ color: '#990000FF'
+ - uid: 24605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-0.5
+ pos: 47.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19985
+ - uid: 24606
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20405
+ color: '#990000FF'
+ - uid: 24607
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -73.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 45.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20960
+ color: '#990000FF'
+ - uid: 24608
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20997
+ - uid: 24609
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 21008
+ color: '#990000FF'
+ - uid: 24610
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -53.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 21073
+ - uid: 24611
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-18.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 21208
+ - uid: 24612
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22773
+ color: '#990000FF'
+ - uid: 24613
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22794
+ color: '#990000FF'
+ - uid: 24614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22795
+ color: '#0055CCFF'
+ - uid: 24615
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22811
+ - uid: 24616
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22861
+ - uid: 24617
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22878
+ color: '#0055CCFF'
+ - uid: 24618
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,27.5
+ pos: 40.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22879
+ - uid: 24619
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,25.5
+ pos: -1.5,64.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 22881
+ color: '#0055CCFF'
+ - uid: 24624
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,32.5
+ pos: 51.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22897
+ - uid: 24625
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,33.5
+ pos: 51.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22900
+ color: '#990000FF'
+ - uid: 24626
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,41.5
+ pos: 51.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22997
+ color: '#990000FF'
+ - uid: 24627
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,48.5
+ pos: 51.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23217
+ - uid: 24628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,58.5
+ pos: 51.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23335
+ - uid: 24630
components:
- type: Transform
- pos: -76.5,9.5
+ pos: 51.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23351
+ color: '#990000FF'
+ - uid: 24632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,37.5
+ pos: 51.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23416
+ - uid: 24633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,64.5
+ pos: 51.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23431
+ color: '#990000FF'
+ - uid: 24634
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,37.5
+ pos: 51.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23436
+ - uid: 24635
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,63.5
+ pos: 51.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23478
+ - uid: 24636
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,44.5
+ pos: 51.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23559
+ color: '#990000FF'
+ - uid: 24647
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,-17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23564
+ - uid: 24648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23586
+ color: '#990000FF'
+ - uid: 24650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23803
+ - uid: 24651
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,55.5
+ pos: 34.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23871
+ color: '#990000FF'
+ - uid: 24652
components:
- type: Transform
- pos: -13.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23921
+ - uid: 24656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,11.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23929
+ color: '#0055CCFF'
+ - uid: 24659
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23931
+ - uid: 24660
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23933
+ color: '#0055CCFF'
+ - uid: 24661
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23937
+ color: '#0055CCFF'
+ - uid: 24664
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23942
+ - uid: 24665
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23944
+ - uid: 24666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23951
+ color: '#0055CCFF'
+ - uid: 24667
components:
- type: Transform
- pos: -77.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23984
+ color: '#0055CCFF'
+ - uid: 24668
components:
- type: Transform
- pos: -45.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24002
+ color: '#0055CCFF'
+ - uid: 24669
components:
- type: Transform
- pos: 34.5,21.5
+ pos: 28.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24023
+ - uid: 24670
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24051
+ color: '#0055CCFF'
+ - uid: 24671
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24070
+ - uid: 24672
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24110
+ color: '#0055CCFF'
+ - uid: 24673
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24115
+ - uid: 24674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24120
+ color: '#0055CCFF'
+ - uid: 24675
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24130
+ - uid: 24677
components:
- type: Transform
- pos: 37.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24142
+ color: '#0055CCFF'
+ - uid: 24678
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24143
+ - uid: 24681
components:
- type: Transform
- pos: 36.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24146
+ - uid: 24682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24147
+ color: '#0055CCFF'
+ - uid: 24684
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-32.5
+ pos: -37.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24165
+ - uid: 24685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24174
+ - uid: 24686
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24187
+ - uid: 24687
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-23.5
+ pos: 25.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24193
+ - uid: 24688
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24206
+ - uid: 24689
components:
- type: Transform
- pos: -47.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24220
+ color: '#990000FF'
+ - uid: 24690
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24229
+ color: '#990000FF'
+ - uid: 24692
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24232
+ - uid: 24693
components:
- type: Transform
- pos: 8.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,27.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24236
+ - uid: 24694
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24238
+ - uid: 24696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24244
+ - uid: 24697
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,4.5
+ pos: 28.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24251
+ - uid: 24698
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,1.5
+ pos: 14.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24257
+ - uid: 24703
components:
- type: Transform
- pos: -33.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24265
+ color: '#990000FF'
+ - uid: 24704
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,30.5
+ pos: 8.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24269
+ - uid: 24706
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24270
+ - uid: 24707
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24276
+ - uid: 24708
components:
- type: Transform
- pos: -19.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24281
+ - uid: 24709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24286
+ - uid: 24713
components:
- type: Transform
- pos: -21.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24301
+ - uid: 24715
components:
- type: Transform
- pos: -25.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24310
+ - uid: 24716
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24316
+ - uid: 24717
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24326
+ - uid: 24718
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,19.5
+ pos: 2.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24327
+ color: '#0055CCFF'
+ - uid: 24719
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24347
+ color: '#0055CCFF'
+ - uid: 24721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24352
+ - uid: 24722
components:
- type: Transform
- pos: 13.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24357
+ - uid: 24723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24362
+ color: '#0055CCFF'
+ - uid: 24724
components:
- type: Transform
- pos: 15.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24370
+ color: '#0055CCFF'
+ - uid: 24726
components:
- type: Transform
- pos: -4.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24379
+ - uid: 24727
components:
- type: Transform
- pos: 48.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24396
+ - uid: 24729
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24402
+ color: '#0055CCFF'
+ - uid: 24730
components:
- type: Transform
- pos: -3.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24411
+ color: '#0055CCFF'
+ - uid: 24732
components:
- type: Transform
- pos: -10.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24420
+ - uid: 24733
components:
- type: Transform
- pos: -12.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24424
+ color: '#990000FF'
+ - uid: 24734
components:
- type: Transform
- pos: -21.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24429
+ color: '#990000FF'
+ - uid: 24735
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-25.5
+ pos: -1.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24434
+ - uid: 24736
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24440
+ - uid: 24738
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24462
+ color: '#990000FF'
+ - uid: 24739
components:
- type: Transform
- pos: -1.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24493
+ color: '#990000FF'
+ - uid: 24741
components:
- type: Transform
- pos: -17.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24507
+ - uid: 24742
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24531
+ - uid: 24743
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-23.5
+ pos: -9.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24585
+ color: '#990000FF'
+ - uid: 24745
components:
- type: Transform
- pos: -7.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24596
+ color: '#990000FF'
+ - uid: 24746
components:
- type: Transform
- pos: -16.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24620
+ color: '#990000FF'
+ - uid: 24747
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-16.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24629
+ color: '#990000FF'
+ - uid: 24748
components:
- type: Transform
- pos: -63.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24631
+ - uid: 24749
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24649
+ - uid: 24750
components:
- type: Transform
- pos: 22.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24662
+ - uid: 24751
components:
- type: Transform
- pos: 27.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24663
+ - uid: 24752
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24680
+ - uid: 24753
components:
- type: Transform
- pos: 21.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24695
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,11.5
- parent: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24728
+ - uid: 24755
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,11.5
+ pos: -13.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24740
+ - uid: 24756
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,-20.5
+ pos: -14.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24790
+ color: '#0055CCFF'
+ - uid: 24757
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24851
+ - uid: 24758
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 46.5,-16.5
+ pos: -16.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24871
+ - uid: 24759
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24931
+ color: '#0055CCFF'
+ - uid: 24760
components:
- type: Transform
- pos: -78.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24977
+ - uid: 24761
components:
- type: Transform
- pos: -10.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-14.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24978
+ color: '#0055CCFF'
+ - uid: 24762
components:
- type: Transform
- pos: -11.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25044
+ - uid: 24763
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,5.5
+ pos: -3.5,63.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25045
+ - uid: 24764
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25047
+ - uid: 24765
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25053
+ - uid: 24766
components:
- type: Transform
- pos: -38.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-15.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25070
+ color: '#0055CCFF'
+ - uid: 24767
components:
- type: Transform
- pos: -39.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-16.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25273
+ - uid: 24768
components:
- type: Transform
- pos: -28.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-17.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25351
+ color: '#0055CCFF'
+ - uid: 24769
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 46.5,18.5
+ pos: 0.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25363
+ color: '#0055CCFF'
+ - uid: 24770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25373
+ - uid: 24771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25385
+ color: '#0055CCFF'
+ - uid: 24772
components:
- type: Transform
- pos: 35.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-21.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25394
+ color: '#0055CCFF'
+ - uid: 24776
components:
- type: Transform
- pos: 34.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25400
+ - uid: 24777
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -85.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-26.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25404
+ - uid: 24780
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-29.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25409
+ - uid: 24781
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25414
+ color: '#0055CCFF'
+ - uid: 24782
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25422
+ - uid: 24784
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-33.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25426
+ color: '#0055CCFF'
+ - uid: 24785
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25432
+ - uid: 24786
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-35.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25496
+ color: '#0055CCFF'
+ - uid: 24788
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25524
+ color: '#0055CCFF'
+ - uid: 24789
components:
- type: Transform
- pos: 23.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-38.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25525
+ - uid: 24795
components:
- type: Transform
- pos: 24.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-44.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25620
+ color: '#0055CCFF'
+ - uid: 24796
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25634
+ color: '#0055CCFF'
+ - uid: 24797
components:
- type: Transform
- pos: 38.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-46.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25666
+ - uid: 24798
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -60.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-47.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25667
+ - uid: 24799
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,-16.5
+ pos: 0.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25668
+ color: '#0055CCFF'
+ - uid: 24800
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -56.5,-12.5
+ pos: 0.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25669
+ color: '#0055CCFF'
+ - uid: 24803
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,-11.5
+ pos: 2.5,-49.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25672
+ color: '#990000FF'
+ - uid: 24804
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-48.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25680
+ color: '#990000FF'
+ - uid: 24805
components:
- type: Transform
- pos: 57.5,54.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-47.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25691
+ color: '#990000FF'
+ - uid: 24806
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-46.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25692
+ - uid: 24807
components:
- type: Transform
- pos: -15.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-45.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25698
+ color: '#990000FF'
+ - uid: 24808
components:
- type: Transform
- pos: 59.5,53.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-44.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25723
+ - uid: 24815
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,39.5
+ pos: 2.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25735
+ color: '#990000FF'
+ - uid: 24816
components:
- type: Transform
- pos: 4.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-36.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25758
+ color: '#990000FF'
+ - uid: 24817
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-35.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25771
+ - uid: 24818
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-34.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25778
+ - uid: 24819
components:
- type: Transform
- pos: -68.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-33.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25785
+ - uid: 24821
components:
- type: Transform
- pos: -42.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25787
+ - uid: 24822
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,13.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-30.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25797
+ color: '#990000FF'
+ - uid: 24824
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-28.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25801
+ - uid: 24825
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 21.5,46.5
+ pos: 2.5,-27.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25891
+ color: '#990000FF'
+ - uid: 24826
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-26.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25899
+ - uid: 24827
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,26.5
+ pos: 31.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25903
+ - uid: 24831
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-21.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25904
+ - uid: 24832
components:
- type: Transform
- pos: -16.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-20.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25910
+ color: '#990000FF'
+ - uid: 24833
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 49.5,-14.5
+ pos: 2.5,-19.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25917
+ - uid: 24834
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-18.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25920
+ color: '#990000FF'
+ - uid: 24835
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-17.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25921
+ - uid: 24836
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-15.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25932
+ - uid: 24837
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-14.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25937
+ - uid: 24838
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25940
+ color: '#990000FF'
+ - uid: 24839
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25989
+ - uid: 24840
components:
- type: Transform
- pos: 12.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-11.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26015
+ color: '#990000FF'
+ - uid: 24841
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,37.5
+ pos: 2.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26016
+ color: '#990000FF'
+ - uid: 24842
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,36.5
+ pos: 2.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26039
+ - uid: 24843
components:
- type: Transform
- pos: -23.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-8.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26081
+ color: '#990000FF'
+ - uid: 24844
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,63.5
+ pos: 2.5,-7.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26082
+ - uid: 24845
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-6.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26085
+ - uid: 24846
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,30.5
+ pos: 2.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26088
+ color: '#990000FF'
+ - uid: 24847
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -68.5,9.5
+ pos: 2.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26140
+ color: '#990000FF'
+ - uid: 24848
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -8.5,63.5
+ pos: 2.5,-3.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26146
+ - uid: 24852
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,64.5
+ pos: 2.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26167
+ color: '#990000FF'
+ - uid: 24854
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,63.5
+ pos: 2.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26171
+ - uid: 24855
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26173
+ color: '#990000FF'
+ - uid: 24856
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,64.5
+ pos: 2.5,4.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26234
+ color: '#990000FF'
+ - uid: 24857
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26341
+ color: '#990000FF'
+ - uid: 24860
components:
- type: Transform
- pos: -67.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26436
+ - uid: 24861
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-2.5
+ pos: 2.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26452
+ color: '#990000FF'
+ - uid: 24862
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-5.5
+ pos: 0.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26491
+ color: '#0055CCFF'
+ - uid: 24863
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,8.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26507
+ - uid: 24866
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26518
+ color: '#0055CCFF'
+ - uid: 24867
components:
- type: Transform
- pos: 34.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26542
+ - uid: 24868
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26569
+ - uid: 24870
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26574
+ color: '#0055CCFF'
+ - uid: 24872
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-0.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26628
+ color: '#0055CCFF'
+ - uid: 24874
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-28.5
+ pos: 8.5,-7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26630
+ - uid: 24875
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -12.5,-39.5
+ pos: 0.5,-3.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26631
+ - uid: 24876
components:
- type: Transform
- pos: -16.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-4.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26632
+ color: '#0055CCFF'
+ - uid: 24877
components:
- type: Transform
- pos: -10.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26806
+ color: '#0055CCFF'
+ - uid: 24878
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26871
+ color: '#0055CCFF'
+ - uid: 24879
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26874
+ color: '#0055CCFF'
+ - uid: 24880
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-8.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26881
+ - uid: 24881
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-9.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26889
+ - uid: 24882
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26958
+ color: '#0055CCFF'
+ - uid: 24883
components:
- type: Transform
- pos: -55.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26984
+ - uid: 24884
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-12.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26987
+ - uid: 24885
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -58.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-13.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26992
+ color: '#0055CCFF'
+ - uid: 24886
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26998
+ color: '#0055CCFF'
+ - uid: 24888
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -85.5,15.5
+ pos: -2.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27015
+ - uid: 24889
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27019
+ color: '#0055CCFF'
+ - uid: 24890
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -58.5,-22.5
+ pos: -4.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27029
+ color: '#0055CCFF'
+ - uid: 24891
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -59.5,-21.5
+ pos: -5.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27053
+ - uid: 24892
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -53.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27058
+ - uid: 24893
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27065
+ color: '#0055CCFF'
+ - uid: 24895
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27071
+ color: '#0055CCFF'
+ - uid: 24896
components:
- type: Transform
- pos: -40.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27074
+ - uid: 24897
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27088
+ - uid: 24898
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27095
+ color: '#990000FF'
+ - uid: 24899
components:
- type: Transform
- pos: -38.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27097
+ - uid: 24900
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27146
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-7.5
- parent: 2
- - uid: 27261
+ color: '#990000FF'
+ - uid: 24901
components:
- type: Transform
- pos: -16.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27272
+ color: '#990000FF'
+ - uid: 24902
components:
- type: Transform
- pos: -14.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27303
+ - uid: 24903
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,-33.5
+ pos: -4.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27304
+ - uid: 24904
components:
- type: Transform
- pos: -4.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27305
+ color: '#990000FF'
+ - uid: 24905
components:
- type: Transform
- pos: 36.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27319
+ color: '#990000FF'
+ - uid: 24906
components:
- type: Transform
- pos: 10.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27322
+ - uid: 24907
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27324
+ color: '#990000FF'
+ - uid: 24908
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27328
+ color: '#990000FF'
+ - uid: 24910
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27336
+ color: '#990000FF'
+ - uid: 24911
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27341
+ - uid: 24912
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27364
+ color: '#990000FF'
+ - uid: 24914
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27374
+ color: '#990000FF'
+ - uid: 24915
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27505
+ - uid: 24916
components:
- type: Transform
- pos: -29.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27506
+ - uid: 24917
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -60.5,2.5
+ pos: -18.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27509
+ color: '#990000FF'
+ - uid: 24918
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27588
+ - uid: 24920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27595
+ color: '#990000FF'
+ - uid: 24921
components:
- type: Transform
- pos: 60.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27616
+ color: '#990000FF'
+ - uid: 24922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27624
+ - uid: 24923
components:
- type: Transform
- pos: 62.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27653
+ - uid: 24928
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 60.5,-15.5
+ pos: -12.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27799
+ - uid: 24929
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27823
+ color: '#0055CCFF'
+ - uid: 24930
components:
- type: Transform
- pos: -63.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27875
+ - uid: 24932
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27876
+ color: '#0055CCFF'
+ - uid: 24933
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,47.5
+ pos: -17.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28075
+ color: '#0055CCFF'
+ - uid: 24935
components:
- type: Transform
- pos: 13.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28085
+ - uid: 24938
components:
- type: Transform
- pos: 43.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28095
+ - uid: 24939
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,-18.5
+ pos: -23.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28103
+ - uid: 24940
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-32.5
+ pos: -24.5,2.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28123
+ color: '#0055CCFF'
+ - uid: 24945
components:
- type: Transform
- pos: 21.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,1.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28133
+ color: '#0055CCFF'
+ - uid: 24946
components:
- type: Transform
- pos: 20.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28151
+ - uid: 24947
components:
- type: Transform
- pos: -21.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28155
+ - uid: 24949
components:
- type: Transform
- pos: -29.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-2.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28206
+ - uid: 24950
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 35.5,-2.5
+ pos: -11.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28246
+ color: '#0055CCFF'
+ - uid: 24951
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-39.5
+ pos: -10.5,0.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28248
+ color: '#990000FF'
+ - uid: 24952
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -75.5,7.5
+ pos: -10.5,-0.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28274
+ - uid: 24953
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-25.5
+ pos: -10.5,-1.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28289
+ - uid: 24955
components:
- type: Transform
- pos: -89.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-3.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28299
+ color: '#990000FF'
+ - uid: 24956
components:
- type: Transform
- pos: -10.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 28300
+ - uid: 24957
components:
- type: Transform
- pos: -11.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28582
+ - uid: 24958
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,21.5
+ pos: -11.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28608
+ - uid: 24959
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -13.5,-5.5
+ pos: -11.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 29971
+ color: '#0055CCFF'
+ - uid: 24960
components:
- type: Transform
- pos: -42.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,6.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 30253
+ color: '#0055CCFF'
+ - uid: 24961
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -43.5,64.5
+ pos: -11.5,7.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 30759
+ - uid: 24962
components:
- type: Transform
- pos: -64.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,8.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31040
+ color: '#0055CCFF'
+ - uid: 24963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,9.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 31504
+ color: '#0055CCFF'
+ - uid: 24964
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,10.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34072
+ color: '#0055CCFF'
+ - uid: 24965
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,11.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34675
+ - uid: 24966
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 71.5,-7.5
+ pos: -11.5,12.5
parent: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34676
+ color: '#0055CCFF'
+ - uid: 24967
components:
- type: Transform
- pos: 70.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,2.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34677
+ - uid: 24968
components:
- type: Transform
- pos: 72.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,3.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34678
+ - uid: 24969
components:
- type: Transform
- pos: 73.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,4.5
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 35795
+ - uid: 24970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,5.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
-- proto: GasPort
- entities:
- - uid: 2834
+ color: '#990000FF'
+ - uid: 24971
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 40.5,46.5
+ pos: -10.5,6.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2914
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24972
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 41.5,46.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5047
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,44.5
+ pos: -10.5,7.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5053
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24973
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,42.5
+ pos: -10.5,8.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5086
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24974
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,42.5
+ pos: -10.5,9.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5096
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24975
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -40.5,42.5
+ pos: -10.5,10.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5251
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24976
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -36.5,42.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.5,42.5
+ pos: -10.5,11.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6434
+ color: '#990000FF'
+ - uid: 24979
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 6555
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24980
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 7247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24981
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 7329
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24982
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9303
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9309
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24984
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9682
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24985
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 12140
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24986
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 23789
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24987
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -53.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 28437
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24988
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 34653
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24989
components:
- type: Transform
- pos: -42.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34654
+ - uid: 24990
components:
- type: Transform
- pos: -41.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34655
+ - uid: 24992
components:
- type: Transform
- pos: -40.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34656
+ - uid: 24993
components:
- type: Transform
- pos: -39.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34670
+ - uid: 24994
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34671
+ - uid: 24995
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34672
+ - uid: 24996
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 72.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 34673
+ - uid: 24997
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
-- proto: GasPressurePump
- entities:
- - uid: 2532
+ color: '#0055CCFF'
+ - uid: 24998
components:
- type: Transform
- pos: 43.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2537
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24999
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 2542
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25000
components:
- type: Transform
- pos: 41.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 3631
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25001
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4349
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25002
components:
- type: Transform
- pos: -45.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4350
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25003
components:
- type: Transform
- pos: -49.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,13.5
parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4354
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25004
components:
- type: Transform
- pos: -43.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4359
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25005
components:
- type: Transform
- pos: -41.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4383
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25007
components:
- type: Transform
- pos: -39.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4960
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25008
components:
- type: Transform
- pos: -37.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 4965
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25009
components:
- type: Transform
- pos: -47.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,13.5
parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 16542
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,13.5
parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 25058
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25011
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,13.5
parent: 2
- - type: GasPressurePump
- targetPressure: 4500
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 27340
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25012
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
-- proto: GasRecycler
- entities:
- - uid: 9578
+ - uid: 25013
components:
- type: Transform
- pos: -60.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasThermoMachineFreezer
- entities:
- - uid: 9507
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25014
components:
- type: Transform
- pos: -54.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 17015
- components:
- - type: Transform
- pos: -53.5,43.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasThermoMachineFreezerEnabled
- entities:
- - uid: 24774
- components:
- - type: Transform
- pos: -58.5,-6.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 27352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,16.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasThermoMachineHeater
- entities:
- - uid: 9508
- components:
- - type: Transform
- pos: -55.5,43.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9511
- components:
- - type: Transform
- pos: -56.5,43.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasValve
- entities:
- - uid: 6556
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,46.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: GasVentPump
- entities:
- - uid: 322
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -86.5,20.5
- parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 399
+ - uid: 25015
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25700
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1254
+ - uid: 25016
components:
- type: Transform
- pos: -87.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -7.5,14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1256
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2310
+ - uid: 25017
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 2285
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2458
+ - uid: 25018
components:
- type: Transform
- pos: -39.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,14.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25115
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4282
+ - uid: 25019
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -86.5,-3.5
+ pos: -4.5,14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4430
+ - uid: 25020
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 60.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4793
+ color: '#990000FF'
+ - uid: 25021
components:
- type: Transform
- pos: -27.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4848
+ color: '#990000FF'
+ - uid: 25022
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -99.5,-6.5
+ pos: -7.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11473
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5623
+ color: '#990000FF'
+ - uid: 25023
components:
- type: Transform
- pos: -95.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5676
+ color: '#990000FF'
+ - uid: 25024
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25239
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6321
+ color: '#990000FF'
+ - uid: 25025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6519
+ color: '#990000FF'
+ - uid: 25028
components:
- type: Transform
- pos: -22.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6667
+ - uid: 25029
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7137
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6973
+ - uid: 25030
components:
- type: Transform
- pos: -55.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7844
+ - uid: 25031
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-4.5
+ pos: 4.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25288
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8416
+ - uid: 25032
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22065
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8457
+ - uid: 25033
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -68.5,1.5
+ pos: 6.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8821
+ - uid: 25034
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25195
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 8835
+ - uid: 25035
components:
- type: Transform
- pos: -34.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25290
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8968
+ color: '#990000FF'
+ - uid: 25036
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-23.5
+ pos: 4.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25260
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11644
+ color: '#990000FF'
+ - uid: 25037
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -54.5,20.5
+ pos: 5.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25185
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13000
+ color: '#990000FF'
+ - uid: 25038
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13136
+ color: '#990000FF'
+ - uid: 25039
components:
- type: Transform
- pos: -73.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25229
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 13378
+ color: '#990000FF'
+ - uid: 25040
components:
- type: Transform
- pos: -68.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25224
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15944
+ color: '#990000FF'
+ - uid: 25041
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16481
+ color: '#990000FF'
+ - uid: 25044
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,51.5
+ pos: 8.5,-8.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16607
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16551
+ - uid: 25045
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,-16.5
+ pos: 8.5,-9.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 29087
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16823
+ - uid: 25046
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,2.5
+ pos: 8.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18220
+ - uid: 25048
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 55.5,20.5
+ pos: 8.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25301
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18241
+ - uid: 25050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-18.5
+ pos: 8.5,-2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18332
+ - uid: 25051
components:
- type: Transform
- pos: -10.5,66.5
+ pos: 8.5,-3.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18359
+ - uid: 25072
components:
- type: Transform
- pos: -37.5,-29.5
+ pos: -38.5,62.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 18950
+ color: '#990000FF'
+ - uid: 25073
components:
- type: Transform
- pos: -15.5,3.5
+ pos: -39.5,62.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19439
+ - uid: 25074
components:
- type: Transform
- pos: -96.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-3.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19759
+ color: '#990000FF'
+ - uid: 25075
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 18239
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 19766
+ color: '#990000FF'
+ - uid: 25078
components:
- type: Transform
- pos: -43.5,65.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22291
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20648
+ color: '#990000FF'
+ - uid: 25079
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 20961
+ color: '#990000FF'
+ - uid: 25080
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -89.5,8.5
+ pos: 10.5,3.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 21970
+ color: '#990000FF'
+ - uid: 25081
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,4.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8213
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22340
+ color: '#990000FF'
+ - uid: 25083
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,59.5
+ pos: 8.5,4.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22348
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22880
+ - uid: 25084
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,32.5
+ pos: 8.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25234
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22899
+ - uid: 25085
components:
- type: Transform
- pos: -84.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23952
+ - uid: 25086
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -23.5,36.5
+ pos: 8.5,8.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7404
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24059
+ - uid: 25093
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,20.5
+ pos: 10.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24173
+ color: '#990000FF'
+ - uid: 25094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25250
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24245
+ color: '#990000FF'
+ - uid: 25095
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,12.5
+ pos: 10.5,8.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25274
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24258
+ color: '#990000FF'
+ - uid: 25100
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25343
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24263
+ - uid: 25104
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25345
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24602
+ color: '#990000FF'
+ - uid: 25105
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -26.5,53.5
+ pos: 12.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25353
+ color: '#990000FF'
+ - uid: 25106
components:
- type: Transform
- pos: 45.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25452
+ color: '#990000FF'
+ - uid: 25109
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,43.5
+ pos: 16.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25460
+ color: '#990000FF'
+ - uid: 25111
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.5,38.5
+ pos: 18.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25468
+ color: '#990000FF'
+ - uid: 25113
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25475
+ color: '#990000FF'
+ - uid: 25114
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 42.5,29.5
+ pos: 21.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30925
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25485
+ color: '#990000FF'
+ - uid: 25116
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,25.5
+ pos: 23.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25497
+ color: '#990000FF'
+ - uid: 25117
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -84.5,15.5
+ pos: 24.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25499
+ color: '#990000FF'
+ - uid: 25118
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25573
+ color: '#990000FF'
+ - uid: 25119
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25622
+ color: '#990000FF'
+ - uid: 25122
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25631
+ color: '#990000FF'
+ - uid: 25123
components:
- type: Transform
- pos: -7.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,5.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25262
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25699
+ color: '#990000FF'
+ - uid: 25124
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 59.5,54.5
+ pos: 9.5,7.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25742
+ - uid: 25125
components:
- type: Transform
- pos: 15.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25198
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25770
+ - uid: 25126
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25773
+ - uid: 25127
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,63.5
+ pos: 8.5,11.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 2995
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25774
+ - uid: 25130
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25317
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25777
+ - uid: 25131
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -45.5,39.5
+ pos: 16.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25144
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25783
+ - uid: 25134
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25784
+ - uid: 25135
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,0.5
+ pos: 20.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25276
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25788
+ - uid: 25137
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25279
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25789
+ - uid: 25138
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25277
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25791
+ - uid: 25139
components:
- type: Transform
- pos: 17.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,7.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25792
+ - uid: 25142
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,0.5
+ pos: 27.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25287
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25793
+ - uid: 25143
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 35.5,-22.5
+ pos: 28.5,7.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25256
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25794
+ - uid: 25147
components:
- type: Transform
- pos: 53.5,3.5
+ pos: 30.5,6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25300
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25795
+ - uid: 25148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,40.5
+ pos: 30.5,5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25807
+ - uid: 25149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,46.5
+ pos: 30.5,4.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25835
+ - uid: 25151
components:
- type: Transform
- pos: 6.5,50.5
+ pos: 30.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25847
+ - uid: 25152
components:
- type: Transform
- pos: 21.5,49.5
+ pos: 30.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4870
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25858
+ - uid: 25153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,43.5
+ pos: 30.5,0.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25877
+ - uid: 25154
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,60.5
+ pos: 30.5,-0.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25887
+ - uid: 25159
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,55.5
+ pos: 31.5,4.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25958
+ color: '#990000FF'
+ - uid: 25160
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,45.5
+ pos: -6.5,63.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25973
+ color: '#990000FF'
+ - uid: 25161
components:
- type: Transform
- pos: -27.5,40.5
+ pos: 31.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26009
+ color: '#990000FF'
+ - uid: 25162
components:
- type: Transform
- pos: -32.5,43.5
+ pos: 31.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26013
+ color: '#990000FF'
+ - uid: 25163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,27.5
+ pos: 31.5,0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25234
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26014
+ color: '#990000FF'
+ - uid: 25164
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,44.5
+ pos: 31.5,-0.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25196
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26030
+ color: '#990000FF'
+ - uid: 25165
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,42.5
+ pos: 31.5,-1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26056
+ color: '#990000FF'
+ - uid: 25168
components:
- type: Transform
- pos: -18.5,34.5
+ pos: 29.5,-13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26059
+ color: '#990000FF'
+ - uid: 25175
components:
- type: Transform
- pos: -33.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25169
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26067
+ - uid: 25176
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25166
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26079
+ - uid: 25177
components:
- type: Transform
- pos: -35.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26080
+ - uid: 25178
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26083
+ - uid: 25179
components:
- type: Transform
- pos: -59.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,2.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28740
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26087
+ - uid: 25180
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,2.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26089
+ - uid: 25181
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -46.5,6.5
+ pos: 11.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26091
+ color: '#990000FF'
+ - uid: 25182
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26121
+ color: '#990000FF'
+ - uid: 25183
components:
- type: Transform
- pos: -7.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26128
+ color: '#990000FF'
+ - uid: 25184
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,41.5
+ pos: 14.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26137
+ color: '#990000FF'
+ - uid: 25258
components:
- type: Transform
- pos: 49.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25247
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26143
+ color: '#990000FF'
+ - uid: 25259
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 50.5,-5.5
+ pos: -22.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25247
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26212
+ color: '#990000FF'
+ - uid: 25268
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25140
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26219
+ color: '#990000FF'
+ - uid: 25269
components:
- type: Transform
- pos: -4.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26232
+ color: '#990000FF'
+ - uid: 25270
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 6298
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26235
+ color: '#990000FF'
+ - uid: 25271
components:
- type: Transform
- pos: 9.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25252
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26248
+ color: '#990000FF'
+ - uid: 25272
components:
- type: Transform
- pos: -39.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26257
+ color: '#990000FF'
+ - uid: 25292
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -50.5,22.5
+ pos: -29.5,-19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26269
+ color: '#990000FF'
+ - uid: 25335
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,64.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26281
+ - uid: 25350
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 45.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26282
+ - uid: 25352
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,14.5
+ pos: 46.5,19.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26309
+ color: '#990000FF'
+ - uid: 25354
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,21.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26354
+ - uid: 25355
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,21.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26414
+ - uid: 25356
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26629
+ - uid: 25358
components:
- type: Transform
- pos: -17.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26696
+ color: '#990000FF'
+ - uid: 25361
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-24.5
+ pos: 27.5,22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25339
- - 25249
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26697
+ - uid: 25362
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -50.5,-46.5
+ pos: 27.5,23.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7137
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26836
+ - uid: 25364
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -78.5,4.5
+ pos: 27.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22045
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26865
+ - uid: 25365
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,74.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,26.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26868
+ - uid: 25367
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,73.5
+ pos: 27.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26869
+ - uid: 25368
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -15.5,-5.5
+ pos: 29.5,19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28791
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26870
+ color: '#990000FF'
+ - uid: 25369
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,20.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25254
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26872
+ color: '#990000FF'
+ - uid: 25370
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28752
- - 25239
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26885
+ color: '#990000FF'
+ - uid: 25371
components:
- type: Transform
- pos: 0.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,22.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26895
+ color: '#990000FF'
+ - uid: 25372
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-50.5
+ pos: 29.5,23.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26946
+ color: '#990000FF'
+ - uid: 25374
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27007
+ color: '#990000FF'
+ - uid: 25376
components:
- type: Transform
- pos: -54.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4313
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27009
+ color: '#990000FF'
+ - uid: 25379
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28655
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27017
+ - uid: 25380
components:
- type: Transform
- pos: 34.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27109
+ - uid: 25381
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27112
+ - uid: 25382
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25249
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27113
+ - uid: 25383
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27115
+ - uid: 25384
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27130
+ - uid: 25386
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -62.5,-14.5
+ pos: 35.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27135
+ - uid: 25388
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -55.5,-31.5
+ pos: 37.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27136
+ - uid: 25389
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27152
+ color: '#990000FF'
+ - uid: 25390
components:
- type: Transform
- pos: -57.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 27166
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25391
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,2.5
+ pos: 32.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27191
+ color: '#990000FF'
+ - uid: 25392
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.5,12.5
+ pos: 33.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27254
+ color: '#990000FF'
+ - uid: 25393
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27256
+ color: '#990000FF'
+ - uid: 25395
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,-30.5
+ pos: 36.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - 25331
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27260
+ color: '#990000FF'
+ - uid: 25396
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25267
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27295
+ color: '#990000FF'
+ - uid: 25397
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27296
+ color: '#990000FF'
+ - uid: 25398
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27307
+ color: '#990000FF'
+ - uid: 25401
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-7.5
+ pos: 38.5,30.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27351
+ - uid: 25402
components:
- type: Transform
- pos: 17.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,31.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27363
+ - uid: 25403
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -76.5,8.5
+ pos: 38.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27382
+ - uid: 25405
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,34.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27396
+ - uid: 25406
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,35.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27405
+ - uid: 25407
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,36.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27421
+ - uid: 25408
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.5,6.5
+ pos: 38.5,37.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27430
+ - uid: 25410
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,-23.5
+ pos: 38.5,39.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25338
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27438
+ - uid: 25412
components:
- type: Transform
- pos: 17.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,41.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27466
+ - uid: 25413
components:
- type: Transform
- pos: -46.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 38.5,42.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27483
+ - uid: 25415
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.5,-23.5
+ pos: 38.5,44.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27492
+ - uid: 25416
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-19.5
+ pos: 38.5,45.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27493
+ - uid: 25417
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 43.5,20.5
+ pos: 38.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25246
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27496
+ - uid: 25419
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,71.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27497
+ color: '#990000FF'
+ - uid: 25421
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,21.5
+ pos: 40.5,31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27503
+ color: '#990000FF'
+ - uid: 25423
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -63.5,8.5
+ pos: 40.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25223
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27511
+ color: '#990000FF'
+ - uid: 25424
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25191
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27558
+ color: '#990000FF'
+ - uid: 25425
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,35.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27561
+ color: '#990000FF'
+ - uid: 25427
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 46.5,-29.5
+ pos: 40.5,37.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27642
+ color: '#990000FF'
+ - uid: 25428
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,38.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27697
+ color: '#990000FF'
+ - uid: 25430
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 46.5,-34.5
+ pos: 40.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27748
+ color: '#990000FF'
+ - uid: 25431
components:
- type: Transform
- pos: 76.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,41.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27751
+ color: '#990000FF'
+ - uid: 25433
components:
- type: Transform
- pos: 60.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27753
+ color: '#990000FF'
+ - uid: 25436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,1.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27755
+ color: '#990000FF'
+ - uid: 25438
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 60.5,-25.5
+ pos: 39.5,47.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28059
+ color: '#990000FF'
+ - uid: 25443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28071
+ - uid: 25444
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28079
+ - uid: 25445
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,43.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28109
+ - uid: 25446
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28110
+ - uid: 25447
components:
- type: Transform
- pos: -55.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,43.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23688
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28111
+ - uid: 25448
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -58.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,42.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15565
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28117
+ color: '#990000FF'
+ - uid: 25449
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 10.5,-22.5
+ pos: 42.5,42.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28150
+ color: '#990000FF'
+ - uid: 25450
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,42.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28213
+ color: '#990000FF'
+ - uid: 25453
components:
- type: Transform
- pos: 76.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25298
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28219
+ - uid: 25454
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 56.5,27.5
+ pos: 40.5,38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25302
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28245
+ - uid: 25455
components:
- type: Transform
- pos: -12.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25340
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28247
+ - uid: 25456
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,38.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 400
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28266
+ - uid: 25457
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,36.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28301
+ color: '#990000FF'
+ - uid: 25458
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,36.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28317
+ color: '#990000FF'
+ - uid: 25461
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,-28.5
+ pos: 41.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28331
+ color: '#990000FF'
+ - uid: 25462
components:
- type: Transform
- pos: -27.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,33.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28450
+ - uid: 25463
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,33.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28451
+ - uid: 25464
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,33.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28501
+ - uid: 25465
components:
- type: Transform
- pos: 65.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23957
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28546
+ - uid: 25469
components:
- type: Transform
- pos: 18.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28567
+ - uid: 25470
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28583
+ - uid: 25471
components:
- type: Transform
- pos: 12.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28609
+ - uid: 25472
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28610
+ color: '#990000FF'
+ - uid: 25473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25262
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28705
+ color: '#990000FF'
+ - uid: 25474
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25307
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28713
+ color: '#990000FF'
+ - uid: 25477
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,43.5
+ pos: 34.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25234
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28757
+ - uid: 25478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-18.5
+ pos: 34.5,27.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 29289
+ - uid: 25479
components:
- type: Transform
- pos: -2.5,-27.5
+ pos: 34.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25251
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 34118
+ - uid: 25480
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,40.5
+ pos: 35.5,27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25346
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 34680
+ color: '#990000FF'
+ - uid: 25481
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 75.5,-7.5
+ pos: 35.5,26.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 36078
+ color: '#990000FF'
+ - uid: 25482
components:
- type: Transform
- pos: -30.5,33.5
+ pos: 35.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 36079
+ color: '#990000FF'
+ - uid: 25487
components:
- type: Transform
- pos: -26.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36080
+ - uid: 25488
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 36081
+ - uid: 25489
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,25.5
+ pos: 37.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#0055CCFF'
-- proto: GasVentScrubber
- entities:
- - uid: 391
+ - uid: 25490
components:
- type: Transform
- pos: 52.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25700
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 941
+ color: '#0055CCFF'
+ - uid: 25491
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 39.5,30.5
+ pos: 39.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25345
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1253
+ color: '#0055CCFF'
+ - uid: 25492
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 2285
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 1517
+ - uid: 25493
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,24.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2112
+ - uid: 25494
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 30.5,-5.5
+ pos: 38.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25293
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2655
+ - uid: 25495
components:
- type: Transform
- pos: -36.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4265
+ - uid: 25501
components:
- type: Transform
- pos: -89.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1256
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4294
+ color: '#0055CCFF'
+ - uid: 25502
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,23.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4866
+ color: '#0055CCFF'
+ - uid: 25503
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,-9.5
+ pos: 23.5,24.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5923
+ color: '#0055CCFF'
+ - uid: 25504
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,62.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6320
+ color: '#0055CCFF'
+ - uid: 25505
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 69
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6518
+ color: '#0055CCFF'
+ - uid: 25507
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6966
+ color: '#0055CCFF'
+ - uid: 25508
components:
- type: Transform
- pos: -53.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8417
+ color: '#0055CCFF'
+ - uid: 25509
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,30.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22065
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8418
+ color: '#0055CCFF'
+ - uid: 25510
components:
- type: Transform
- pos: -95.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,31.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8664
+ color: '#0055CCFF'
+ - uid: 25511
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -100.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 8213
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8764
+ - uid: 25512
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -68.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,20.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 8823
+ - uid: 25513
components:
- type: Transform
- pos: -12.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,21.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 10984
+ - uid: 25514
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,22.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25140
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13002
+ - uid: 25515
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,23.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28655
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13035
+ - uid: 25516
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,-4.5
+ pos: 24.5,24.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25288
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13354
+ - uid: 25518
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -68.5,6.5
+ pos: 24.5,26.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25224
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13382
+ - uid: 25519
components:
- type: Transform
- pos: 49.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,27.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14205
+ - uid: 25520
components:
- type: Transform
- pos: -37.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25115
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15936
+ - uid: 25521
components:
- type: Transform
- pos: -59.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,29.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25223
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15945
+ - uid: 25522
components:
- type: Transform
- pos: -75.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,30.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16416
+ - uid: 25523
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -25.5,51.5
+ pos: 24.5,31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16607
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16497
+ - uid: 25526
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -99.5,-8.5
+ pos: 23.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 11473
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 16549
+ color: '#0055CCFF'
+ - uid: 25527
components:
- type: Transform
- pos: 72.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 29087
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18090
+ color: '#0055CCFF'
+ - uid: 25528
components:
- type: Transform
- pos: -26.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18113
+ color: '#0055CCFF'
+ - uid: 25529
components:
- type: Transform
- pos: -14.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25275
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18234
+ color: '#0055CCFF'
+ - uid: 25530
components:
- type: Transform
- pos: -8.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,33.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18244
+ color: '#0055CCFF'
+ - uid: 25531
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,-21.5
+ pos: 18.5,33.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 19972
+ color: '#0055CCFF'
+ - uid: 25532
components:
- type: Transform
- pos: -71.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25229
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19974
+ - uid: 25550
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20656
+ - uid: 25551
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22115
+ - uid: 25552
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22349
+ - uid: 25553
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,61.5
+ pos: 19.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22348
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24007
+ - uid: 25554
components:
- type: Transform
- pos: 45.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25246
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24040
+ - uid: 25555
components:
- type: Transform
- pos: 33.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24253
+ - uid: 25556
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25343
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24315
+ - uid: 25558
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25191
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24464
+ - uid: 25559
components:
- type: Transform
- pos: -6.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 2995
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25200
+ - uid: 25560
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -43.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - 22291
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25420
+ - uid: 25561
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25440
+ - uid: 25562
components:
- type: Transform
- pos: 39.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25451
+ - uid: 25563
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,42.5
+ pos: 9.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25459
+ - uid: 25564
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.5,36.5
+ pos: 8.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25467
+ - uid: 25565
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 42.5,32.5
+ pos: 7.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25476
+ - uid: 25566
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,28.5
+ pos: 6.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30925
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25484
+ - uid: 25567
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,24.5
+ pos: 5.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25498
+ - uid: 25568
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,24.5
+ pos: 4.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25621
+ - uid: 25569
components:
- type: Transform
- pos: 32.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25632
+ - uid: 25572
+ components:
+ - type: Transform
+ pos: 31.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25574
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -54.5,16.5
+ pos: 24.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25185
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25633
+ color: '#0055CCFF'
+ - uid: 25575
components:
- type: Transform
- pos: 54.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25301
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25635
+ color: '#0055CCFF'
+ - uid: 25576
components:
- type: Transform
- pos: 15.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25234
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25636
+ - uid: 25585
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,25.5
+ pos: 26.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25234
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25655
+ - uid: 25586
components:
- type: Transform
- pos: -58.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25239
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25696
+ - uid: 25587
components:
- type: Transform
- pos: -13.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28791
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25727
+ - uid: 25588
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,41.5
+ pos: 29.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25196
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25752
+ - uid: 25589
components:
- type: Transform
- pos: -19.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7404
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25753
+ - uid: 25590
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -35.5,29.5
+ pos: 31.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25169
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25757
+ - uid: 25591
components:
- type: Transform
- pos: -27.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25166
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25772
+ - uid: 25592
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25775
+ - uid: 25593
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,56.5
+ pos: 34.5,32.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25316
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25776
+ - uid: 25594
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -63.5,28.5
+ pos: 35.5,33.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 28740
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25779
+ - uid: 25595
components:
- type: Transform
- pos: -44.5,9.5
+ pos: 35.5,34.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25244
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25780
+ - uid: 25596
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,3.5
+ pos: 35.5,35.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25247
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25781
+ - uid: 25597
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-7.5
+ pos: 35.5,36.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25247
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25790
+ - uid: 25598
components:
- type: Transform
- pos: 19.5,54.5
+ pos: 35.5,37.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25808
+ - uid: 25599
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,45.5
+ pos: 35.5,38.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25821
+ - uid: 25600
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,28.5
+ pos: 35.5,39.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25158
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25834
+ - uid: 25601
components:
- type: Transform
- pos: 7.5,49.5
+ pos: 35.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25837
+ - uid: 25602
components:
- type: Transform
- pos: -3.5,64.5
+ pos: 35.5,41.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25317
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25848
+ - uid: 25603
components:
- type: Transform
- pos: 22.5,49.5
+ pos: 35.5,42.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4870
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25859
+ - uid: 25604
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,42.5
+ pos: 34.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25605
+ components:
+ - type: Transform
+ pos: 34.5,35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25606
+ components:
+ - type: Transform
+ pos: 34.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25607
+ components:
+ - type: Transform
+ pos: 34.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25608
+ components:
+ - type: Transform
+ pos: 34.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25609
+ components:
+ - type: Transform
+ pos: 34.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25610
+ components:
+ - type: Transform
+ pos: 34.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25611
+ components:
+ - type: Transform
+ pos: 34.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25612
+ components:
+ - type: Transform
+ pos: 34.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25613
+ components:
+ - type: Transform
+ pos: 34.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25614
+ components:
+ - type: Transform
+ pos: 31.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25615
+ components:
+ - type: Transform
+ pos: 31.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25876
+ - uid: 25617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,43.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25886
+ - uid: 25618
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,44.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25936
+ - uid: 25619
components:
- type: Transform
- pos: -6.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,45.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25262
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25959
+ - uid: 25625
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,44.5
+ pos: 32.5,44.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25990
+ color: '#0055CCFF'
+ - uid: 25626
components:
- type: Transform
- pos: -20.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26010
+ - uid: 25638
components:
- type: Transform
- pos: -33.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26029
+ - uid: 25639
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,39.5
+ pos: 35.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26032
+ - uid: 25640
components:
- type: Transform
- pos: 14.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15850
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26035
+ - uid: 25641
components:
- type: Transform
- pos: 7.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25195
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26036
+ - uid: 25642
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,45.5
+ pos: 38.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25198
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26078
+ - uid: 25643
components:
- type: Transform
- pos: -34.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26084
+ - uid: 25644
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,46.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25144
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26086
+ - uid: 25645
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,46.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26090
+ - uid: 25646
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25684
+ components:
+ - type: Transform
+ pos: 56.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25685
+ components:
+ - type: Transform
+ pos: 56.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25686
+ components:
+ - type: Transform
+ pos: 55.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25687
+ components:
+ - type: Transform
+ pos: 55.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25809
+ components:
+ - type: Transform
+ pos: -39.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25830
+ components:
+ - type: Transform
+ pos: 9.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25831
+ components:
+ - type: Transform
+ pos: 9.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25832
+ components:
+ - type: Transform
+ pos: 10.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25833
+ components:
+ - type: Transform
+ pos: 10.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25862
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25911
+ components:
+ - type: Transform
+ pos: -12.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25912
+ components:
+ - type: Transform
+ pos: -12.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25913
+ components:
+ - type: Transform
+ pos: -12.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25914
+ components:
+ - type: Transform
+ pos: -12.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25915
+ components:
+ - type: Transform
+ pos: -12.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25916
+ components:
+ - type: Transform
+ pos: -12.5,35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25918
+ components:
+ - type: Transform
+ pos: -12.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25919
+ components:
+ - type: Transform
+ pos: -12.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25922
+ components:
+ - type: Transform
+ pos: -12.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25923
+ components:
+ - type: Transform
+ pos: -12.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25924
+ components:
+ - type: Transform
+ pos: -12.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25926
+ components:
+ - type: Transform
+ pos: -13.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25927
+ components:
+ - type: Transform
+ pos: -13.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25928
+ components:
+ - type: Transform
+ pos: -13.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25929
+ components:
+ - type: Transform
+ pos: -13.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25930
+ components:
+ - type: Transform
+ pos: -13.5,35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25931
+ components:
+ - type: Transform
+ pos: -13.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25933
+ components:
+ - type: Transform
+ pos: -13.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25934
+ components:
+ - type: Transform
+ pos: -13.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25935
+ components:
+ - type: Transform
+ pos: -13.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25938
+ components:
+ - type: Transform
+ pos: -13.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25939
+ components:
+ - type: Transform
+ pos: -13.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,52.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26048
+ components:
+ - type: Transform
+ pos: -17.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26049
+ components:
+ - type: Transform
+ pos: -17.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26051
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26052
+ components:
+ - type: Transform
+ pos: -17.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26101
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26112
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26168
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26170
+ components:
+ - type: Transform
+ pos: 8.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26192
+ components:
+ - type: Transform
+ pos: -25.5,62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26193
+ components:
+ - type: Transform
+ pos: -25.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26194
+ components:
+ - type: Transform
+ pos: -25.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26195
+ components:
+ - type: Transform
+ pos: -25.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26196
+ components:
+ - type: Transform
+ pos: -25.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26200
+ components:
+ - type: Transform
+ pos: -27.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26201
+ components:
+ - type: Transform
+ pos: -27.5,62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26202
+ components:
+ - type: Transform
+ pos: -27.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26203
+ components:
+ - type: Transform
+ pos: -27.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26204
+ components:
+ - type: Transform
+ pos: -27.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26206
+ components:
+ - type: Transform
+ pos: -27.5,57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26207
+ components:
+ - type: Transform
+ pos: -27.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26222
+ components:
+ - type: Transform
+ pos: -10.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26224
+ components:
+ - type: Transform
+ pos: -8.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26225
+ components:
+ - type: Transform
+ pos: -8.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26227
+ components:
+ - type: Transform
+ pos: -2.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26228
+ components:
+ - type: Transform
+ pos: -2.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -61.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -63.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -64.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -61.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -64.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26338
+ components:
+ - type: Transform
+ pos: -67.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26339
+ components:
+ - type: Transform
+ pos: -69.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26350
+ components:
+ - type: Transform
+ pos: -69.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26351
+ components:
+ - type: Transform
+ pos: -69.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26352
+ components:
+ - type: Transform
+ pos: -67.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -91.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -90.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26774
+ components:
+ - type: Transform
+ pos: -95.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26778
+ components:
+ - type: Transform
+ pos: -94.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26779
+ components:
+ - type: Transform
+ pos: -94.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26837
+ components:
+ - type: Transform
+ pos: -77.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26838
+ components:
+ - type: Transform
+ pos: -77.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26839
+ components:
+ - type: Transform
+ pos: -78.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26840
+ components:
+ - type: Transform
+ pos: -78.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26841
+ components:
+ - type: Transform
+ pos: -78.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26842
+ components:
+ - type: Transform
+ pos: -78.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26857
+ components:
+ - type: Transform
+ pos: 8.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,50.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -51.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26915
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -51.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26925
+ components:
+ - type: Transform
+ pos: -60.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26927
+ components:
+ - type: Transform
+ pos: -60.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26928
+ components:
+ - type: Transform
+ pos: -60.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26929
+ components:
+ - type: Transform
+ pos: -60.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26930
+ components:
+ - type: Transform
+ pos: -58.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26931
+ components:
+ - type: Transform
+ pos: -58.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26932
+ components:
+ - type: Transform
+ pos: -58.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26982
+ components:
+ - type: Transform
+ pos: -59.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26983
+ components:
+ - type: Transform
+ pos: -59.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26988
+ components:
+ - type: Transform
+ pos: -58.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26989
+ components:
+ - type: Transform
+ pos: -58.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26990
+ components:
+ - type: Transform
+ pos: -58.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -56.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27042
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27050
+ components:
+ - type: Transform
+ pos: -53.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27051
+ components:
+ - type: Transform
+ pos: -53.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27052
+ components:
+ - type: Transform
+ pos: -53.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27054
+ components:
+ - type: Transform
+ pos: -52.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27055
+ components:
+ - type: Transform
+ pos: -52.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: -52.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -52.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,48.5
+ parent: 2
+ - uid: 27125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,49.5
+ parent: 2
+ - uid: 27126
+ components:
+ - type: Transform
+ pos: -37.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27127
+ components:
+ - type: Transform
+ pos: -36.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27128
+ components:
+ - type: Transform
+ pos: -36.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27138
+ components:
+ - type: Transform
+ pos: -40.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27139
+ components:
+ - type: Transform
+ pos: -40.5,-34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27140
+ components:
+ - type: Transform
+ pos: -40.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27141
+ components:
+ - type: Transform
+ pos: -38.5,-34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27142
+ components:
+ - type: Transform
+ pos: -38.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27143
+ components:
+ - type: Transform
+ pos: -59.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-8.5
+ parent: 2
+ - uid: 27150
+ components:
+ - type: Transform
+ pos: -58.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27151
+ components:
+ - type: Transform
+ pos: -58.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27229
+ components:
+ - type: Transform
+ pos: -14.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27279
+ components:
+ - type: Transform
+ pos: -22.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27280
+ components:
+ - type: Transform
+ pos: -22.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27281
+ components:
+ - type: Transform
+ pos: -20.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27282
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27283
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27284
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27285
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27286
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27287
+ components:
+ - type: Transform
+ pos: -16.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27288
+ components:
+ - type: Transform
+ pos: -14.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27289
+ components:
+ - type: Transform
+ pos: -14.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27291
+ components:
+ - type: Transform
+ pos: -14.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27292
+ components:
+ - type: Transform
+ pos: -14.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27312
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27348
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27376
+ components:
+ - type: Transform
+ pos: 29.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27378
+ components:
+ - type: Transform
+ pos: 29.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27398
+ components:
+ - type: Transform
+ pos: 25.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27404
+ components:
+ - type: Transform
+ pos: 25.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27405
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27462
+ components:
+ - type: Transform
+ pos: -45.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27465
+ components:
+ - type: Transform
+ pos: -45.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27468
+ components:
+ - type: Transform
+ pos: -33.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27469
+ components:
+ - type: Transform
+ pos: -33.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27470
+ components:
+ - type: Transform
+ pos: -33.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27471
+ components:
+ - type: Transform
+ pos: -33.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27472
+ components:
+ - type: Transform
+ pos: -33.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27473
+ components:
+ - type: Transform
+ pos: -33.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27474
+ components:
+ - type: Transform
+ pos: -33.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27475
+ components:
+ - type: Transform
+ pos: -33.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27476
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27477
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27478
+ components:
+ - type: Transform
+ pos: -32.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27479
+ components:
+ - type: Transform
+ pos: -32.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27480
+ components:
+ - type: Transform
+ pos: -32.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27481
+ components:
+ - type: Transform
+ pos: -32.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27485
+ components:
+ - type: Transform
+ pos: -4.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27486
+ components:
+ - type: Transform
+ pos: -4.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27487
+ components:
+ - type: Transform
+ pos: -4.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27488
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27490
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27613
+ components:
+ - type: Transform
+ pos: 60.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27640
+ components:
+ - type: Transform
+ pos: 60.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27643
+ components:
+ - type: Transform
+ pos: 60.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27644
+ components:
+ - type: Transform
+ pos: 60.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27645
+ components:
+ - type: Transform
+ pos: 60.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27646
+ components:
+ - type: Transform
+ pos: 60.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27647
+ components:
+ - type: Transform
+ pos: 60.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27648
+ components:
+ - type: Transform
+ pos: 60.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27649
+ components:
+ - type: Transform
+ pos: 60.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27650
+ components:
+ - type: Transform
+ pos: 60.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27651
+ components:
+ - type: Transform
+ pos: 60.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27652
+ components:
+ - type: Transform
+ pos: 60.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27654
+ components:
+ - type: Transform
+ pos: 60.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27655
+ components:
+ - type: Transform
+ pos: 60.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27656
+ components:
+ - type: Transform
+ pos: 60.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27657
+ components:
+ - type: Transform
+ pos: 60.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27658
+ components:
+ - type: Transform
+ pos: 60.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27659
+ components:
+ - type: Transform
+ pos: 60.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27660
+ components:
+ - type: Transform
+ pos: 60.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27661
+ components:
+ - type: Transform
+ pos: 60.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27662
+ components:
+ - type: Transform
+ pos: 60.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27663
+ components:
+ - type: Transform
+ pos: 60.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27664
+ components:
+ - type: Transform
+ pos: 60.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27665
+ components:
+ - type: Transform
+ pos: 60.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27666
+ components:
+ - type: Transform
+ pos: 60.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27668
+ components:
+ - type: Transform
+ pos: 60.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27669
+ components:
+ - type: Transform
+ pos: 62.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27670
+ components:
+ - type: Transform
+ pos: 62.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27671
+ components:
+ - type: Transform
+ pos: 62.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27672
+ components:
+ - type: Transform
+ pos: 62.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27673
+ components:
+ - type: Transform
+ pos: 62.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27674
+ components:
+ - type: Transform
+ pos: 62.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27675
+ components:
+ - type: Transform
+ pos: 62.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27676
+ components:
+ - type: Transform
+ pos: 62.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27677
+ components:
+ - type: Transform
+ pos: 62.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27678
+ components:
+ - type: Transform
+ pos: 62.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27679
+ components:
+ - type: Transform
+ pos: 62.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27681
+ components:
+ - type: Transform
+ pos: 62.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27682
+ components:
+ - type: Transform
+ pos: 62.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27683
+ components:
+ - type: Transform
+ pos: 62.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27684
+ components:
+ - type: Transform
+ pos: 62.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27685
+ components:
+ - type: Transform
+ pos: 62.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27686
+ components:
+ - type: Transform
+ pos: 62.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27687
+ components:
+ - type: Transform
+ pos: 62.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27688
+ components:
+ - type: Transform
+ pos: 62.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27689
+ components:
+ - type: Transform
+ pos: 62.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27690
+ components:
+ - type: Transform
+ pos: 62.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27691
+ components:
+ - type: Transform
+ pos: 62.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27692
+ components:
+ - type: Transform
+ pos: 62.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27758
+ components:
+ - type: Transform
+ pos: 54.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27759
+ components:
+ - type: Transform
+ pos: 54.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27760
+ components:
+ - type: Transform
+ pos: 54.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27761
+ components:
+ - type: Transform
+ pos: 54.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27762
+ components:
+ - type: Transform
+ pos: 54.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27763
+ components:
+ - type: Transform
+ pos: 54.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27764
+ components:
+ - type: Transform
+ pos: 54.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27765
+ components:
+ - type: Transform
+ pos: 54.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27766
+ components:
+ - type: Transform
+ pos: 53.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27767
+ components:
+ - type: Transform
+ pos: 53.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27768
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27769
+ components:
+ - type: Transform
+ pos: 53.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27770
+ components:
+ - type: Transform
+ pos: 53.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28063
+ components:
+ - type: Transform
+ pos: 36.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28064
+ components:
+ - type: Transform
+ pos: 36.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28065
+ components:
+ - type: Transform
+ pos: 36.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28066
+ components:
+ - type: Transform
+ pos: 36.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28067
+ components:
+ - type: Transform
+ pos: 36.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28068
+ components:
+ - type: Transform
+ pos: 37.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28069
+ components:
+ - type: Transform
+ pos: 37.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,47.5
+ parent: 2
+ - uid: 28152
+ components:
+ - type: Transform
+ pos: -21.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28153
+ components:
+ - type: Transform
+ pos: -21.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28154
+ components:
+ - type: Transform
+ pos: -21.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28156
+ components:
+ - type: Transform
+ pos: -21.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28157
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28166
+ components:
+ - type: Transform
+ pos: -21.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28167
+ components:
+ - type: Transform
+ pos: -21.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28168
+ components:
+ - type: Transform
+ pos: -21.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28169
+ components:
+ - type: Transform
+ pos: -21.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28170
+ components:
+ - type: Transform
+ pos: -21.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28171
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28172
+ components:
+ - type: Transform
+ pos: -19.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28182
+ components:
+ - type: Transform
+ pos: -19.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28183
+ components:
+ - type: Transform
+ pos: -19.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28184
+ components:
+ - type: Transform
+ pos: -19.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28185
+ components:
+ - type: Transform
+ pos: -19.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28186
+ components:
+ - type: Transform
+ pos: -19.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28187
+ components:
+ - type: Transform
+ pos: -19.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28255
+ components:
+ - type: Transform
+ pos: -12.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28256
+ components:
+ - type: Transform
+ pos: -12.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28257
+ components:
+ - type: Transform
+ pos: -12.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28261
+ components:
+ - type: Transform
+ pos: -10.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28291
+ components:
+ - type: Transform
+ pos: -10.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28292
+ components:
+ - type: Transform
+ pos: -10.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28293
+ components:
+ - type: Transform
+ pos: -10.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28294
+ components:
+ - type: Transform
+ pos: -9.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28295
+ components:
+ - type: Transform
+ pos: -9.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28296
+ components:
+ - type: Transform
+ pos: -9.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28303
+ components:
+ - type: Transform
+ pos: -10.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28304
+ components:
+ - type: Transform
+ pos: -10.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28376
+ components:
+ - type: Transform
+ pos: -71.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28438
+ components:
+ - type: Transform
+ pos: 21.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28442
+ components:
+ - type: Transform
+ pos: 21.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28443
+ components:
+ - type: Transform
+ pos: 21.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28444
+ components:
+ - type: Transform
+ pos: 21.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28445
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28446
+ components:
+ - type: Transform
+ pos: 22.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28447
+ components:
+ - type: Transform
+ pos: 22.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28448
+ components:
+ - type: Transform
+ pos: 22.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28453
+ components:
+ - type: Transform
+ pos: 29.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28455
+ components:
+ - type: Transform
+ pos: 29.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28459
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,51.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28576
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,44.5
+ parent: 2
+ - uid: 28743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28765
+ components:
+ - type: Transform
+ pos: -28.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28766
+ components:
+ - type: Transform
+ pos: -28.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28767
+ components:
+ - type: Transform
+ pos: -28.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28768
+ components:
+ - type: Transform
+ pos: -28.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28769
+ components:
+ - type: Transform
+ pos: -28.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28770
+ components:
+ - type: Transform
+ pos: -29.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28771
+ components:
+ - type: Transform
+ pos: -29.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28772
+ components:
+ - type: Transform
+ pos: -29.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28773
+ components:
+ - type: Transform
+ pos: -29.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28774
+ components:
+ - type: Transform
+ pos: -28.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,44.5
+ parent: 2
+ - uid: 28824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -51.5,44.5
+ parent: 2
+ - uid: 29125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29162
+ components:
+ - type: Transform
+ pos: -49.5,44.5
+ parent: 2
+ - uid: 29288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29311
+ components:
+ - type: Transform
+ pos: 11.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29610
+ components:
+ - type: Transform
+ pos: 11.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29693
+ components:
+ - type: Transform
+ pos: -33.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29694
+ components:
+ - type: Transform
+ pos: -33.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29695
+ components:
+ - type: Transform
+ pos: -33.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29696
+ components:
+ - type: Transform
+ pos: -33.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29697
+ components:
+ - type: Transform
+ pos: -33.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,53.5
+ parent: 2
+ - uid: 29987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30222
+ components:
+ - type: Transform
+ pos: -33.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30236
+ components:
+ - type: Transform
+ pos: -53.5,23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31787
+ components:
+ - type: Transform
+ pos: -19.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32089
+ components:
+ - type: Transform
+ pos: 43.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32096
+ components:
+ - type: Transform
+ pos: 43.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32098
+ components:
+ - type: Transform
+ pos: 12.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33125
+ components:
+ - type: Transform
+ pos: 73.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33128
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33130
+ components:
+ - type: Transform
+ pos: 72.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33170
+ components:
+ - type: Transform
+ pos: 76.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33171
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,52.5
+ parent: 2
+ - uid: 33188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,48.5
+ parent: 2
+ - uid: 33189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,59.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33208
+ components:
+ - type: Transform
+ pos: 57.5,62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,62.5
+ parent: 2
+ - uid: 33217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,48.5
+ parent: 2
+ - uid: 33218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,48.5
+ parent: 2
+ - uid: 33219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,49.5
+ parent: 2
+ - uid: 33220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,49.5
+ parent: 2
+ - uid: 33221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,49.5
+ parent: 2
+ - uid: 33224
+ components:
+ - type: Transform
+ pos: 92.5,61.5
+ parent: 2
+ - uid: 33225
+ components:
+ - type: Transform
+ pos: 93.5,61.5
+ parent: 2
+ - uid: 33228
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 2
+ - uid: 33230
+ components:
+ - type: Transform
+ pos: 92.5,52.5
+ parent: 2
+ - uid: 33231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,50.5
+ parent: 2
+ - uid: 33232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,51.5
+ parent: 2
+ - uid: 33233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33247
+ components:
+ - type: Transform
+ pos: 84.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33248
+ components:
+ - type: Transform
+ pos: 84.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33249
+ components:
+ - type: Transform
+ pos: 84.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33250
+ components:
+ - type: Transform
+ pos: 84.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33252
+ components:
+ - type: Transform
+ pos: 84.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33253
+ components:
+ - type: Transform
+ pos: 85.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33254
+ components:
+ - type: Transform
+ pos: 85.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33256
+ components:
+ - type: Transform
+ pos: 85.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33257
+ components:
+ - type: Transform
+ pos: 85.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33275
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,10.5
+ parent: 2
+ - uid: 33283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,10.5
+ parent: 2
+ - uid: 33750
+ components:
+ - type: Transform
+ pos: 2.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33751
+ components:
+ - type: Transform
+ pos: 2.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33752
+ components:
+ - type: Transform
+ pos: 2.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33753
+ components:
+ - type: Transform
+ pos: 2.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33754
+ components:
+ - type: Transform
+ pos: 2.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33755
+ components:
+ - type: Transform
+ pos: 0.5,-43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33756
+ components:
+ - type: Transform
+ pos: 0.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33757
+ components:
+ - type: Transform
+ pos: 0.5,-41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33758
+ components:
+ - type: Transform
+ pos: 0.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33759
+ components:
+ - type: Transform
+ pos: 0.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -71.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33887
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -70.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -67.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,-0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33970
+ components:
+ - type: Transform
+ pos: -64.5,0.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33993
+ components:
+ - type: Transform
+ pos: -64.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34013
+ components:
+ - type: Transform
+ pos: -64.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34014
+ components:
+ - type: Transform
+ pos: -64.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34032
+ components:
+ - type: Transform
+ pos: -64.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34188
+ components:
+ - type: Transform
+ pos: -64.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34189
+ components:
+ - type: Transform
+ pos: -64.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34674
+ components:
+ - type: Transform
+ pos: 71.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34682
+ components:
+ - type: Transform
+ pos: 75.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34683
+ components:
+ - type: Transform
+ pos: 75.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34684
+ components:
+ - type: Transform
+ pos: 75.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34685
+ components:
+ - type: Transform
+ pos: 75.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 36579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,81.5
+ parent: 2
+ - uid: 36582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,81.5
+ parent: 2
+ - uid: 36583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,81.5
+ parent: 2
+ - uid: 36586
+ components:
+ - type: Transform
+ pos: 69.5,82.5
+ parent: 2
+ - uid: 36660
+ components:
+ - type: Transform
+ pos: 10.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36733
+ components:
+ - type: Transform
+ pos: 11.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36734
+ components:
+ - type: Transform
+ pos: 10.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37385
+ components:
+ - type: Transform
+ pos: 53.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37386
+ components:
+ - type: Transform
+ pos: 53.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38187
+ components:
+ - type: Transform
+ pos: -35.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38820
+ components:
+ - type: Transform
+ pos: 26.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38821
+ components:
+ - type: Transform
+ pos: 26.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38822
+ components:
+ - type: Transform
+ pos: 26.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38823
+ components:
+ - type: Transform
+ pos: 26.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38824
+ components:
+ - type: Transform
+ pos: 28.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38825
+ components:
+ - type: Transform
+ pos: 28.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38826
+ components:
+ - type: Transform
+ pos: 28.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38827
+ components:
+ - type: Transform
+ pos: 28.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38828
+ components:
+ - type: Transform
+ pos: 28.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38834
+ components:
+ - type: Transform
+ pos: 27.5,47.5
+ parent: 2
+ - uid: 38835
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,60.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38869
+ components:
+ - type: Transform
+ pos: -23.5,62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38870
+ components:
+ - type: Transform
+ pos: -20.5,62.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39163
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39164
+ components:
+ - type: Transform
+ pos: 10.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39166
+ components:
+ - type: Transform
+ pos: 10.5,-6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39168
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39170
+ components:
+ - type: Transform
+ pos: 10.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39171
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39172
+ components:
+ - type: Transform
+ pos: 10.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39175
+ components:
+ - type: Transform
+ pos: 11.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39176
+ components:
+ - type: Transform
+ pos: 11.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39202
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39206
+ components:
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39207
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 19
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 747
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: -29.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2336
+ components:
+ - type: Transform
+ pos: -25.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3564
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -83.5,-3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4699
+ components:
+ - type: Transform
+ pos: 15.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4703
+ components:
+ - type: Transform
+ pos: 14.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4707
+ components:
+ - type: Transform
+ pos: 21.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5110
+ components:
+ - type: Transform
+ pos: -46.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5568
+ components:
+ - type: Transform
+ pos: -27.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5982
+ components:
+ - type: Transform
+ pos: -44.5,43.5
+ parent: 2
+ - uid: 6008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6332
+ components:
+ - type: Transform
+ pos: -23.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6333
+ components:
+ - type: Transform
+ pos: -20.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,44.5
+ parent: 2
+ - uid: 7329
+ components:
+ - type: Transform
+ pos: -40.5,43.5
+ parent: 2
+ - uid: 7370
+ components:
+ - type: Transform
+ pos: -33.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8365
+ components:
+ - type: Transform
+ pos: -37.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8366
+ components:
+ - type: Transform
+ pos: -36.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8415
+ components:
+ - type: Transform
+ pos: -96.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -83.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -87.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,44.5
+ parent: 2
+ - uid: 9308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,44.5
+ parent: 2
+ - uid: 9310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,44.5
+ parent: 2
+ - uid: 9674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -43.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,-34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10063
+ components:
+ - type: Transform
+ pos: 47.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10392
+ components:
+ - type: Transform
+ pos: -27.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11213
+ components:
+ - type: Transform
+ pos: -42.5,43.5
+ parent: 2
+ - uid: 11440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12301
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12341
+ components:
+ - type: Transform
+ pos: 10.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,68.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,3.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14077
+ components:
+ - type: Transform
+ pos: -11.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15273
+ components:
+ - type: Transform
+ pos: 18.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15429
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15437
+ components:
+ - type: Transform
+ pos: 30.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15827
+ components:
+ - type: Transform
+ pos: -14.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15871
+ components:
+ - type: Transform
+ pos: -95.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15903
+ components:
+ - type: Transform
+ pos: -57.5,-27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16409
+ components:
+ - type: Transform
+ pos: 74.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -95.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16507
+ components:
+ - type: Transform
+ pos: -95.5,-8.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,57.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,34.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16671
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17581
+ components:
+ - type: Transform
+ pos: 75.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17648
+ components:
+ - type: Transform
+ pos: 71.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18093
+ components:
+ - type: Transform
+ pos: -84.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,71.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18663
+ components:
+ - type: Transform
+ pos: 72.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18717
+ components:
+ - type: Transform
+ pos: 73.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19322
+ components:
+ - type: Transform
+ pos: 24.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -73.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20563
+ components:
+ - type: Transform
+ pos: 20.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -92.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -53.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21333
+ components:
+ - type: Transform
+ pos: -5.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,6.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22539
+ components:
+ - type: Transform
+ pos: 17.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22804
+ components:
+ - type: Transform
+ pos: 14.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22805
+ components:
+ - type: Transform
+ pos: 17.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,65.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,58.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23335
+ components:
+ - type: Transform
+ pos: -76.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,37.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,55.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23871
+ components:
+ - type: Transform
+ pos: -13.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23984
+ components:
+ - type: Transform
+ pos: -45.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24002
+ components:
+ - type: Transform
+ pos: 34.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24023
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24130
+ components:
+ - type: Transform
+ pos: 37.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24143
+ components:
+ - type: Transform
+ pos: 36.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24206
+ components:
+ - type: Transform
+ pos: -47.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24257
+ components:
+ - type: Transform
+ pos: -33.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24276
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24286
+ components:
+ - type: Transform
+ pos: -21.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24301
+ components:
+ - type: Transform
+ pos: -25.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24346
+ components:
+ - type: Transform
+ pos: 25.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24370
+ components:
+ - type: Transform
+ pos: -4.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24379
+ components:
+ - type: Transform
+ pos: 48.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24402
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24411
+ components:
+ - type: Transform
+ pos: -10.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24420
+ components:
+ - type: Transform
+ pos: -12.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24424
+ components:
+ - type: Transform
+ pos: -21.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24464
+ components:
+ - type: Transform
+ pos: 8.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24493
+ components:
+ - type: Transform
+ pos: -17.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24507
+ components:
+ - type: Transform
+ pos: 10.5,20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24585
+ components:
+ - type: Transform
+ pos: -7.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24596
+ components:
+ - type: Transform
+ pos: -16.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24629
+ components:
+ - type: Transform
+ pos: -63.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24649
+ components:
+ - type: Transform
+ pos: 22.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24680
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24977
+ components:
+ - type: Transform
+ pos: -10.5,12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24978
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25053
+ components:
+ - type: Transform
+ pos: -38.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25070
+ components:
+ - type: Transform
+ pos: -39.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25157
+ components:
+ - type: Transform
+ pos: 29.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25167
+ components:
+ - type: Transform
+ pos: 28.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25273
+ components:
+ - type: Transform
+ pos: -28.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25385
+ components:
+ - type: Transform
+ pos: 35.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25394
+ components:
+ - type: Transform
+ pos: 34.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -85.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,38.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25524
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25525
+ components:
+ - type: Transform
+ pos: 24.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25634
+ components:
+ - type: Transform
+ pos: 38.5,49.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -60.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -55.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25692
+ components:
+ - type: Transform
+ pos: -15.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25735
+ components:
+ - type: Transform
+ pos: 4.5,41.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25778
+ components:
+ - type: Transform
+ pos: -68.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25785
+ components:
+ - type: Transform
+ pos: -42.5,-10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,56.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25904
+ components:
+ - type: Transform
+ pos: -16.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,-14.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,42.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25940
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25962
+ components:
+ - type: Transform
+ pos: -20.5,44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25989
+ components:
+ - type: Transform
+ pos: 12.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26518
+ components:
+ - type: Transform
+ pos: 34.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,48.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,47.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,27.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-11.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -58.5,-12.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -85.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27071
+ components:
+ - type: Transform
+ pos: -40.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: -38.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-7.5
+ parent: 2
+ - uid: 27261
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27272
+ components:
+ - type: Transform
+ pos: -14.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27304
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27305
+ components:
+ - type: Transform
+ pos: 36.5,29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,26.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27595
+ components:
+ - type: Transform
+ pos: 60.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27624
+ components:
+ - type: Transform
+ pos: 62.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,-15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27823
+ components:
+ - type: Transform
+ pos: -63.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,31.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28085
+ components:
+ - type: Transform
+ pos: 43.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28151
+ components:
+ - type: Transform
+ pos: -21.5,13.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28155
+ components:
+ - type: Transform
+ pos: -29.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-44.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-2.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -75.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-25.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28289
+ components:
+ - type: Transform
+ pos: -89.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28299
+ components:
+ - type: Transform
+ pos: -10.5,-29.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28300
+ components:
+ - type: Transform
+ pos: -11.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28454
+ components:
+ - type: Transform
+ pos: 27.5,5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-1.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,15.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29971
+ components:
+ - type: Transform
+ pos: -42.5,63.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -43.5,64.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30759
+ components:
+ - type: Transform
+ pos: -64.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 31620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,32.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-28.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,53.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,54.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,39.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,61.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,9.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,10.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33909
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34065
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,40.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34676
+ components:
+ - type: Transform
+ pos: 70.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34677
+ components:
+ - type: Transform
+ pos: 72.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34678
+ components:
+ - type: Transform
+ pos: 73.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,43.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,81.5
+ parent: 2
+ - uid: 36584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,81.5
+ parent: 2
+ - uid: 36585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,81.5
+ parent: 2
+ - uid: 38810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38811
+ components:
+ - type: Transform
+ pos: 28.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38814
+ components:
+ - type: Transform
+ pos: 26.5,46.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,45.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-5.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-7.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPort
+ entities:
+ - uid: 2834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,46.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,46.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,74.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 6555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 7250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,46.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 10374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 12140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,46.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 14891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 18566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -53.5,49.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 28437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-1.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 34653
+ components:
+ - type: Transform
+ pos: -42.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34654
+ components:
+ - type: Transform
+ pos: -41.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34655
+ components:
+ - type: Transform
+ pos: -40.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34656
+ components:
+ - type: Transform
+ pos: -39.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,81.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasPressurePump
+ entities:
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: 43.5,47.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,47.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 2542
+ components:
+ - type: Transform
+ pos: 41.5,47.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 3631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,47.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4349
+ components:
+ - type: Transform
+ pos: -45.5,45.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4350
+ components:
+ - type: Transform
+ pos: -49.5,45.5
+ parent: 2
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4354
+ components:
+ - type: Transform
+ pos: -43.5,45.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: -41.5,45.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4383
+ components:
+ - type: Transform
+ pos: -39.5,45.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4965
+ components:
+ - type: Transform
+ pos: -47.5,45.5
+ parent: 2
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 16542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,44.5
+ parent: 2
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 25058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,50.5
+ parent: 2
+ - type: GasPressurePump
+ targetPressure: 4500
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 34066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasRecycler
+ entities:
+ - uid: 9578
+ components:
+ - type: Transform
+ pos: -60.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 19.5,17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9507
+ components:
+ - type: Transform
+ pos: -54.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 17015
+ components:
+ - type: Transform
+ pos: -53.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasThermoMachineFreezerEnabled
+ entities:
+ - uid: 24774
+ components:
+ - type: Transform
+ pos: -58.5,-6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 9508
+ components:
+ - type: Transform
+ pos: -55.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9511
+ components:
+ - type: Transform
+ pos: -56.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasValve
+ entities:
+ - uid: 6556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -51.5,46.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: GasVentPump
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 18.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,20.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,47.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25700
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: -87.5,24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1256
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-18.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25333
+ - 27414
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -85.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2285
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2458
+ components:
+ - type: Transform
+ pos: -39.5,28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25115
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,-28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12404
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -86.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-31.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,72.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 3525
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-37.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,55.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12411
+ - 12440
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-36.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11473
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-21.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5623
+ components:
+ - type: Transform
+ pos: -95.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -59.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25239
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6192
+ components:
+ - type: Transform
+ pos: 57.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -47.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: -22.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-18.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25261
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 28192
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6973
+ components:
+ - type: Transform
+ pos: -55.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-22.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11474
+ - 21934
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22065
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,1.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,40.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25195
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8835
+ components:
+ - type: Transform
+ pos: -34.5,14.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25290
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,51.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,64.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25185
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-22.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,49.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13136
+ components:
+ - type: Transform
+ pos: -73.5,13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25229
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25291
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13378
+ components:
+ - type: Transform
+ pos: -68.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25224
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -51.5,13.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,20.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16161
+ components:
+ - type: Transform
+ pos: -13.5,48.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,58.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,-16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29087
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-25.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,-21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18332
+ components:
+ - type: Transform
+ pos: -10.5,66.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18950
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25275
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19439
+ components:
+ - type: Transform
+ pos: -96.5,10.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19725
+ components:
+ - type: Transform
+ pos: 26.5,-29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19822
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,64.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18239
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19766
+ components:
+ - type: Transform
+ pos: -43.5,65.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22291
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20648
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,60.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20795
+ components:
+ - type: Transform
+ pos: -37.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2655
+ - 7120
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -89.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21811
+ components:
+ - type: Transform
+ pos: 17.5,58.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8213
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22282
+ components:
+ - type: Transform
+ pos: -78.5,11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,32.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25234
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22899
+ components:
+ - type: Transform
+ pos: -84.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-32.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25250
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,12.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25274
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25343
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25345
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,53.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24737
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25293
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25353
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30925
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25631
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,54.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25742
+ components:
+ - type: Transform
+ pos: 15.5,47.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25198
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,63.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-22.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25256
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25794
+ components:
+ - type: Transform
+ pos: 53.5,3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25300
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,40.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25835
+ components:
+ - type: Transform
+ pos: 6.5,50.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,43.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,60.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,55.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,51.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34110
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25234
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,44.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25196
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26056
+ components:
+ - type: Transform
+ pos: -18.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25166
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26079
+ components:
+ - type: Transform
+ pos: -35.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,63.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26083
+ components:
+ - type: Transform
+ pos: -59.5,31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 28740
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,26.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26121
+ components:
+ - type: Transform
+ pos: -7.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,41.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26137
+ components:
+ - type: Transform
+ pos: 49.5,4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25247
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-5.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25247
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,34.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21100
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26219
+ components:
+ - type: Transform
+ pos: -4.5,66.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6298
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,22.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,20.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,18.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -61.5,12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -69.5,26.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -73.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25339
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -78.5,4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22045
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,74.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,73.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,-5.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -61.5,-1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 28752
+ - 25239
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26885
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-50.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27007
+ components:
+ - type: Transform
+ pos: -54.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4313
+ - 175
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,30.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27017
+ components:
+ - type: Transform
+ pos: 34.5,-13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27130
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-14.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-31.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27152
+ components:
+ - type: Transform
+ pos: -57.5,-6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 27191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,12.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37709
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,14.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-5.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25267
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -76.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-1.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25338
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27438
+ components:
+ - type: Transform
+ pos: 17.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27466
+ components:
+ - type: Transform
+ pos: -46.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-19.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25246
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,71.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25223
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25191
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-2.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27748
+ components:
+ - type: Transform
+ pos: 76.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27751
+ components:
+ - type: Transform
+ pos: 60.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -84.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-1.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28110
+ components:
+ - type: Transform
+ pos: -55.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23688
+ - 25334
+ - 7606
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28213
+ components:
+ - type: Transform
+ pos: 76.5,-1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25298
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25302
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,-32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-28.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28331
+ components:
+ - type: Transform
+ pos: -27.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28452
+ components:
+ - type: Transform
+ pos: 28.5,-11.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25293
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28501
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23957
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28546
+ components:
+ - type: Transform
+ pos: 18.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28583
+ components:
+ - type: Transform
+ pos: 12.5,27.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,49.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25307
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,43.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25234
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-18.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29289
+ components:
+ - type: Transform
+ pos: -2.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25251
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,30.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,40.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,40.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,49.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,61.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33274
+ components:
+ - type: Transform
+ pos: 91.5,11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33895
+ components:
+ - type: Transform
+ pos: 26.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33929
+ components:
+ - type: Transform
+ pos: 13.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33932
+ components:
+ - type: Transform
+ pos: 13.5,18.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34059
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,40.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25346
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34123
+ components:
+ - type: Transform
+ pos: -22.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 35889
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34760
+ components:
+ - type: Transform
+ pos: -18.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 35889
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 36078
+ components:
+ - type: Transform
+ pos: -30.5,33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36079
+ components:
+ - type: Transform
+ pos: -26.5,33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-34.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37414
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9212
+ - 28628
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18513
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-25.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,56.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,46.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25201
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38831
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4870
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,61.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 38928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,59.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39153
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 39215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,54.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25700
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -76.5,11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-22.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-21.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 792
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 6.5,19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 33892
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,30.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25345
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,0.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -83.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2285
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-1.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,40.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29631
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3550
+ components:
+ - type: Transform
+ pos: -56.5,-28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12404
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-31.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: -89.5,24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1256
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4456
+ components:
+ - type: Transform
+ pos: -36.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2655
+ - 7120
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4480
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6114
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 3525
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -38.5,-37.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,72.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 4816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-38.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -95.5,-9.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,62.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12411
+ - 12440
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 69
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6966
+ components:
+ - type: Transform
+ pos: -53.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25098
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-44.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,22.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22065
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8418
+ components:
+ - type: Transform
+ pos: -95.5,23.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -100.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 8213
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -68.5,-0.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9132
+ components:
+ - type: Transform
+ pos: -15.5,45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34109
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10230
+ components:
+ - type: Transform
+ pos: 19.5,58.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10623
+ components:
+ - type: Transform
+ pos: -13.5,-39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12292
+ components:
+ - type: Transform
+ pos: 12.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 2594
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25224
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13382
+ components:
+ - type: Transform
+ pos: 49.5,-13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14205
+ components:
+ - type: Transform
+ pos: -37.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25115
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25291
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 20000
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -51.5,12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,34.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21100
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,47.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 34110
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15689
+ components:
+ - type: Transform
+ pos: -12.5,48.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,42.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26091
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15936
+ components:
+ - type: Transform
+ pos: -59.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25223
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15945
+ components:
+ - type: Transform
+ pos: -75.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-22.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 26732
+ - 7608
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,48.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -99.5,-8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11473
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16549
+ components:
+ - type: Transform
+ pos: 72.5,-16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 29087
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-22.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 11474
+ - 21934
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18113
+ components:
+ - type: Transform
+ pos: -14.5,3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25275
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18234
+ components:
+ - type: Transform
+ pos: -8.5,66.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18356
+ components:
+ - type: Transform
+ pos: 18.5,5.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31752
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-32.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 19822
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19972
+ components:
+ - type: Transform
+ pos: -71.5,13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25229
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -96.5,6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,59.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -71.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22580
+ components:
+ - type: Transform
+ pos: 15.5,18.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22808
+ components:
+ - type: Transform
+ pos: 29.5,-11.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25293
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-18.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25261
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,57.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 28192
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24007
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25246
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24040
+ components:
+ - type: Transform
+ pos: 33.5,19.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25206
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25343
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25191
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24728
+ components:
+ - type: Transform
+ pos: -6.5,63.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,3.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25293
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,63.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - 22291
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25253
+ components:
+ - type: Transform
+ pos: -1.5,63.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37193
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -84.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25440
+ components:
+ - type: Transform
+ pos: 39.5,48.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,36.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30925
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25621
+ components:
+ - type: Transform
+ pos: 32.5,47.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -54.5,16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25185
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25635
+ components:
+ - type: Transform
+ pos: 15.5,33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25234
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,25.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25234
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25655
+ components:
+ - type: Transform
+ pos: -58.5,2.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25239
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25696
+ components:
+ - type: Transform
+ pos: -13.5,-4.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,41.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25196
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25757
+ components:
+ - type: Transform
+ pos: -27.5,29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25166
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,62.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,56.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25316
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -63.5,28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 28740
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25779
+ components:
+ - type: Transform
+ pos: -44.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25244
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25247
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25247
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,28.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25158
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25834
+ components:
+ - type: Transform
+ pos: 7.5,49.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,54.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,58.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22157
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25936
+ components:
+ - type: Transform
+ pos: -6.5,-15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26032
+ components:
+ - type: Transform
+ pos: 14.5,38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 15850
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26035
+ components:
+ - type: Transform
+ pos: 7.5,38.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25195
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25198
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26078
+ components:
+ - type: Transform
+ pos: -34.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25267
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,40.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26152
+ components:
+ - type: Transform
+ pos: 17.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,11.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25290
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25256
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26220
+ components:
+ - type: Transform
+ pos: -2.5,66.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,21.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,17.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -60.5,12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,26.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-25.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6715
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26698
+ components:
+ - type: Transform
+ pos: 54.5,3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25300
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,20.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -77.5,4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22045
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,74.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,73.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26886
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-50.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 12403
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27006
+ components:
+ - type: Transform
+ pos: -53.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4313
+ - 175
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27008
+ components:
+ - type: Transform
+ pos: -12.5,20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27122
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-32.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25250
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -61.5,-16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,-33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27149
+ components:
+ - type: Transform
+ pos: -58.5,-9.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37709
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27252
+ components:
+ - type: Transform
+ pos: -56.5,-11.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23688
+ - 25334
+ - 7606
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-17.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25333
+ - 27414
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,12.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: -23.5,13.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25274
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27271
+ components:
+ - type: Transform
+ pos: 35.5,-1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 6298
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27299
+ components:
+ - type: Transform
+ pos: 76.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25298
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25302
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27339
+ components:
+ - type: Transform
+ pos: 28.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-2.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27422
+ components:
+ - type: Transform
+ pos: 35.5,6.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27425
+ components:
+ - type: Transform
+ pos: -92.5,8.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27437
+ components:
+ - type: Transform
+ pos: 19.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27440
+ components:
+ - type: Transform
+ pos: -20.5,34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27467
+ components:
+ - type: Transform
+ pos: -45.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,-23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 22060
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27491
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-19.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-34.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-5.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-31.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27747
+ components:
+ - type: Transform
+ pos: 77.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27752
+ components:
+ - type: Transform
+ pos: 62.5,-11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -84.5,16.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,-24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27853
+ components:
+ - type: Transform
+ pos: -26.5,20.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 17901
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,53.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,68.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-2.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,15.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28098
+ components:
+ - type: Transform
+ pos: 36.5,-15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25248
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-27.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 400
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-19.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -84.5,6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30714
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28290
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-32.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28330
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,1.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 38117
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28500
+ components:
+ - type: Transform
+ pos: 66.5,26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 23957
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,28.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28545
+ components:
+ - type: Transform
+ pos: 19.5,24.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28566
+ components:
+ - type: Transform
+ pos: 9.5,28.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28584
+ components:
+ - type: Transform
+ pos: 14.5,29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,29.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,49.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,61.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33276
+ components:
+ - type: Transform
+ pos: 92.5,11.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33931
+ components:
+ - type: Transform
+ pos: 15.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 36760
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,39.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25346
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34120
+ components:
+ - type: Transform
+ pos: -23.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 35889
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-7.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34741
+ components:
+ - type: Transform
+ pos: 46.5,23.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25349
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,15.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 21
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35715
+ components:
+ - type: Transform
+ pos: -17.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 35889
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -28.5,25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,25.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36076
+ components:
+ - type: Transform
+ pos: -24.5,33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36077
+ components:
+ - type: Transform
+ pos: -28.5,33.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37409
+ components:
+ - type: Transform
+ pos: 46.5,-33.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 37414
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-29.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 9212
+ - 28628
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-17.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 18513
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-26.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-31.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1320
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,49.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,42.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,45.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25201
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,39.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38832
+ components:
+ - type: Transform
+ pos: 27.5,48.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 4870
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 38872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,61.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 38927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,61.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 1690
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39156
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 39141
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-10.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-9.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-5.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25288
+ - 28702
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 25276
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 39216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,5.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: Gauze
+ entities:
+ - uid: 3465
+ components:
+ - type: Transform
+ pos: 41.734196,-21.431963
+ parent: 2
+ - uid: 7809
+ components:
+ - type: Transform
+ pos: 7.383627,-12.568948
+ parent: 2
+ - uid: 26688
+ components:
+ - type: Transform
+ pos: -22.984537,-0.22695684
+ parent: 2
+- proto: Gauze1
+ entities:
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: 41.89826,-21.256182
+ parent: 2
+ - uid: 5523
+ components:
+ - type: Transform
+ pos: 50.135185,46.605064
+ parent: 2
+ - uid: 6906
+ components:
+ - type: Transform
+ pos: 43.00011,-21.318933
+ parent: 2
+ - uid: 6907
+ components:
+ - type: Transform
+ pos: 44.675472,-22.29713
+ parent: 2
+ - uid: 8312
+ components:
+ - type: Transform
+ pos: 49.830498,46.441
+ parent: 2
+- proto: GeigerCounter
+ entities:
+ - uid: 8311
+ components:
+ - type: Transform
+ pos: 49.279716,46.65194
+ parent: 2
+ - uid: 30215
+ components:
+ - type: Transform
+ pos: 81.80029,-15.172077
+ parent: 2
+ - uid: 32194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.58154,-24.718952
+ parent: 2
+- proto: GeneratorWallmountBasic
+ entities:
+ - uid: 4862
+ components:
+ - type: Transform
+ pos: 97.5,76.5
+ parent: 2
+- proto: Girder
+ entities:
+ - uid: 26707
+ components:
+ - type: Transform
+ pos: 60.5,47.5
+ parent: 2
+ - uid: 26710
+ components:
+ - type: Transform
+ pos: 60.5,37.5
+ parent: 2
+ - uid: 27166
+ components:
+ - type: Transform
+ pos: 65.5,37.5
+ parent: 2
+ - uid: 27907
+ components:
+ - type: Transform
+ pos: 87.5,21.5
+ parent: 2
+ - uid: 29735
+ components:
+ - type: Transform
+ pos: 88.5,23.5
+ parent: 2
+- proto: GlassBoxLaserFilled
+ entities:
+ - uid: 15115
+ components:
+ - type: Transform
+ pos: 26.5,52.5
+ parent: 2
+- proto: GlimmerProber
+ entities:
+ - uid: 38848
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 2
+- proto: GlowstickBase
+ entities:
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: -19.598991,16.747276
+ parent: 2
+- proto: GlowstickBlue
+ entities:
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: -8.70348,10.857905
+ parent: 2
+ - uid: 2095
+ components:
+ - type: Transform
+ pos: -8.6214485,10.799312
+ parent: 2
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: -16.575478,16.641808
+ parent: 2
+- proto: GlowstickPurple
+ entities:
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: -28.622429,9.716027
+ parent: 2
+- proto: GlowstickRed
+ entities:
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: -28.552116,16.747276
+ parent: 2
+- proto: GlowstickYellow
+ entities:
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: -25.575554,16.723839
+ parent: 2
+- proto: GravityGenerator
+ entities:
+ - uid: 2402
+ components:
+ - type: Transform
+ pos: -60.5,18.5
+ parent: 2
+ - type: ApcPowerReceiver
+ needsPower: False
+- proto: Grille
+ entities:
+ - uid: 8
+ components:
+ - type: Transform
+ pos: -1.5,11.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -1.5,13.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ pos: -1.5,12.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 4.5,9.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 4.5,11.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 4.5,13.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 4.5,15.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: -1.5,14.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 23.5,-12.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 24.5,-12.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: 25.5,-12.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 11.5,-54.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: -15.5,-47.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 9.5,-54.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 15.5,35.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 43.5,-35.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: 15.5,36.5
+ parent: 2
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 6.5,22.5
+ parent: 2
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 12.5,22.5
+ parent: 2
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 20.5,22.5
+ parent: 2
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 19.5,22.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: -13.5,17.5
+ parent: 2
+ - uid: 902
+ components:
+ - type: Transform
+ pos: 23.5,-3.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 24.5,-3.5
+ parent: 2
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 18.5,3.5
+ parent: 2
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 25.5,4.5
+ parent: 2
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 11.5,3.5
+ parent: 2
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 11.5,2.5
+ parent: 2
+ - uid: 1074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-46.5
+ parent: 2
+ - uid: 1139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-15.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 18.5,2.5
+ parent: 2
+ - uid: 1149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -85.5,32.5
+ parent: 2
+ - uid: 1152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -86.5,32.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -82.5,-15.5
+ parent: 2
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 35.5,-11.5
+ parent: 2
+ - uid: 1185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,25.5
+ parent: 2
+ - uid: 1188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,26.5
+ parent: 2
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 20.5,-0.5
+ parent: 2
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 18.5,1.5
+ parent: 2
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 27.5,4.5
+ parent: 2
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 26.5,4.5
+ parent: 2
+ - uid: 1304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-46.5
+ parent: 2
+ - uid: 1305
+ components:
+ - type: Transform
+ pos: 21.5,-0.5
+ parent: 2
+ - uid: 1356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,5.5
+ parent: 2
+ - uid: 1375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,83.5
+ parent: 2
+ - uid: 1419
+ components:
+ - type: Transform
+ pos: -98.5,64.5
+ parent: 2
+ - uid: 1462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,34.5
+ parent: 2
+ - uid: 1469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,35.5
+ parent: 2
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: -78.5,10.5
+ parent: 2
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: -97.5,64.5
+ parent: 2
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: -96.5,64.5
+ parent: 2
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: -95.5,65.5
+ parent: 2
+ - uid: 1567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,18.5
+ parent: 2
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: -94.5,66.5
+ parent: 2
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-37.5
+ parent: 2
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: -93.5,66.5
+ parent: 2
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: -92.5,66.5
+ parent: 2
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -92.5,67.5
+ parent: 2
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: -92.5,69.5
+ parent: 2
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: -92.5,73.5
+ parent: 2
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: -92.5,79.5
+ parent: 2
+ - uid: 1746
+ components:
+ - type: Transform
+ pos: -92.5,81.5
+ parent: 2
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: -92.5,82.5
+ parent: 2
+ - uid: 1749
+ components:
+ - type: Transform
+ pos: -92.5,83.5
+ parent: 2
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: -92.5,84.5
+ parent: 2
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: -92.5,86.5
+ parent: 2
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: -96.5,84.5
+ parent: 2
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: -96.5,85.5
+ parent: 2
+ - uid: 1754
+ components:
+ - type: Transform
+ pos: -96.5,86.5
+ parent: 2
+ - uid: 1755
+ components:
+ - type: Transform
+ pos: -96.5,88.5
+ parent: 2
+ - uid: 1756
+ components:
+ - type: Transform
+ pos: -96.5,90.5
+ parent: 2
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: -96.5,91.5
+ parent: 2
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: -96.5,92.5
+ parent: 2
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: -96.5,93.5
+ parent: 2
+ - uid: 1777
+ components:
+ - type: Transform
+ pos: -97.5,95.5
+ parent: 2
+ - uid: 1778
+ components:
+ - type: Transform
+ pos: -96.5,98.5
+ parent: 2
+ - uid: 1780
+ components:
+ - type: Transform
+ pos: -92.5,94.5
+ parent: 2
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: -92.5,95.5
+ parent: 2
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: -92.5,96.5
+ parent: 2
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: -92.5,97.5
+ parent: 2
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: -92.5,98.5
+ parent: 2
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: -92.5,99.5
+ parent: 2
+ - uid: 1817
+ components:
+ - type: Transform
+ pos: -92.5,101.5
+ parent: 2
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 3.5,28.5
+ parent: 2
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 3.5,27.5
+ parent: 2
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: 3.5,29.5
+ parent: 2
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: 9.5,26.5
+ parent: 2
+ - uid: 1889
+ components:
+ - type: Transform
+ pos: 3.5,30.5
+ parent: 2
+ - uid: 1930
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 2
+ - uid: 2041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,8.5
+ parent: 2
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: -92.5,103.5
+ parent: 2
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: -91.5,100.5
+ parent: 2
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: -91.5,99.5
+ parent: 2
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: -97.5,101.5
+ parent: 2
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: -97.5,102.5
+ parent: 2
+ - uid: 2094
+ components:
+ - type: Transform
+ pos: -97.5,103.5
+ parent: 2
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: -97.5,104.5
+ parent: 2
+ - uid: 2104
+ components:
+ - type: Transform
+ pos: -97.5,105.5
+ parent: 2
+ - uid: 2122
+ components:
+ - type: Transform
+ pos: -96.5,100.5
+ parent: 2
+ - uid: 2123
+ components:
+ - type: Transform
+ pos: -97.5,107.5
+ parent: 2
+ - uid: 2129
+ components:
+ - type: Transform
+ pos: -97.5,108.5
+ parent: 2
+ - uid: 2133
+ components:
+ - type: Transform
+ pos: -97.5,109.5
+ parent: 2
+ - uid: 2135
+ components:
+ - type: Transform
+ pos: -96.5,110.5
+ parent: 2
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: -96.5,111.5
+ parent: 2
+ - uid: 2145
+ components:
+ - type: Transform
+ pos: -96.5,112.5
+ parent: 2
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: -96.5,113.5
+ parent: 2
+ - uid: 2154
+ components:
+ - type: Transform
+ pos: -96.5,114.5
+ parent: 2
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: -95.5,115.5
+ parent: 2
+ - uid: 2156
+ components:
+ - type: Transform
+ pos: -94.5,115.5
+ parent: 2
+ - uid: 2165
+ components:
+ - type: Transform
+ pos: -93.5,115.5
+ parent: 2
+ - uid: 2182
+ components:
+ - type: Transform
+ pos: -44.5,-4.5
+ parent: 2
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: -44.5,-2.5
+ parent: 2
+ - uid: 2197
+ components:
+ - type: Transform
+ pos: -44.5,-3.5
+ parent: 2
+ - uid: 2198
+ components:
+ - type: Transform
+ pos: -44.5,0.5
+ parent: 2
+ - uid: 2200
+ components:
+ - type: Transform
+ pos: -44.5,1.5
+ parent: 2
+ - uid: 2201
+ components:
+ - type: Transform
+ pos: 29.5,22.5
+ parent: 2
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: -44.5,-0.5
+ parent: 2
+ - uid: 2276
+ components:
+ - type: Transform
+ pos: 40.5,52.5
+ parent: 2
+ - uid: 2288
+ components:
+ - type: Transform
+ pos: 59.5,25.5
+ parent: 2
+ - uid: 2299
+ components:
+ - type: Transform
+ pos: -43.5,5.5
+ parent: 2
+ - uid: 2300
+ components:
+ - type: Transform
+ pos: -43.5,6.5
+ parent: 2
+ - uid: 2305
+ components:
+ - type: Transform
+ pos: -43.5,4.5
+ parent: 2
+ - uid: 2318
+ components:
+ - type: Transform
+ pos: -31.5,-39.5
+ parent: 2
+ - uid: 2319
+ components:
+ - type: Transform
+ pos: -27.5,-39.5
+ parent: 2
+ - uid: 2329
+ components:
+ - type: Transform
+ pos: -92.5,115.5
+ parent: 2
+ - uid: 2335
+ components:
+ - type: Transform
+ pos: -91.5,116.5
+ parent: 2
+ - uid: 2354
+ components:
+ - type: Transform
+ pos: -90.5,116.5
+ parent: 2
+ - uid: 2367
+ components:
+ - type: Transform
+ pos: -89.5,116.5
+ parent: 2
+ - uid: 2375
+ components:
+ - type: Transform
+ pos: -88.5,117.5
+ parent: 2
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: -61.5,6.5
+ parent: 2
+ - uid: 2392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-34.5
+ parent: 2
+ - uid: 2396
+ components:
+ - type: Transform
+ pos: 76.5,-22.5
+ parent: 2
+ - uid: 2397
+ components:
+ - type: Transform
+ pos: 74.5,-22.5
+ parent: 2
+ - uid: 2405
+ components:
+ - type: Transform
+ pos: 75.5,-22.5
+ parent: 2
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: 48.5,-35.5
+ parent: 2
+ - uid: 2466
+ components:
+ - type: Transform
+ pos: 8.5,-40.5
+ parent: 2
+ - uid: 2467
+ components:
+ - type: Transform
+ pos: -1.5,-46.5
+ parent: 2
+ - uid: 2471
+ components:
+ - type: Transform
+ pos: 6.5,-44.5
+ parent: 2
+ - uid: 2480
+ components:
+ - type: Transform
+ pos: -1.5,-45.5
+ parent: 2
+ - uid: 2481
+ components:
+ - type: Transform
+ pos: -88.5,115.5
+ parent: 2
+ - uid: 2482
+ components:
+ - type: Transform
+ pos: -2.5,-44.5
+ parent: 2
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: -4.5,-44.5
+ parent: 2
+ - uid: 2517
+ components:
+ - type: Transform
+ pos: 111.5,-4.5
+ parent: 2
+ - uid: 2548
+ components:
+ - type: Transform
+ pos: -79.5,-14.5
+ parent: 2
+ - uid: 2550
+ components:
+ - type: Transform
+ pos: -89.5,-14.5
+ parent: 2
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: 4.5,-46.5
+ parent: 2
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: 4.5,-47.5
+ parent: 2
+ - uid: 2563
+ components:
+ - type: Transform
+ pos: -78.5,-13.5
+ parent: 2
+ - uid: 2564
+ components:
+ - type: Transform
+ pos: 5.5,-44.5
+ parent: 2
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: 7.5,-44.5
+ parent: 2
+ - uid: 2566
+ components:
+ - type: Transform
+ pos: 8.5,-42.5
+ parent: 2
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: 8.5,-43.5
+ parent: 2
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: 4.5,-45.5
+ parent: 2
+ - uid: 2571
+ components:
+ - type: Transform
+ pos: -1.5,-47.5
+ parent: 2
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: -3.5,-44.5
+ parent: 2
+ - uid: 2577
+ components:
+ - type: Transform
+ pos: 8.5,-41.5
+ parent: 2
+ - uid: 2608
+ components:
+ - type: Transform
+ pos: 28.5,42.5
+ parent: 2
+ - uid: 2640
+ components:
+ - type: Transform
+ pos: 8.5,36.5
+ parent: 2
+ - uid: 2644
+ components:
+ - type: Transform
+ pos: 10.5,41.5
+ parent: 2
+ - uid: 2650
+ components:
+ - type: Transform
+ pos: 12.5,55.5
+ parent: 2
+ - uid: 2663
+ components:
+ - type: Transform
+ pos: 8.5,35.5
+ parent: 2
+ - uid: 2725
+ components:
+ - type: Transform
+ pos: -77.5,-11.5
+ parent: 2
+ - uid: 2726
+ components:
+ - type: Transform
+ pos: -90.5,30.5
+ parent: 2
+ - uid: 2759
+ components:
+ - type: Transform
+ pos: 78.5,-20.5
+ parent: 2
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: 78.5,-21.5
+ parent: 2
+ - uid: 2765
+ components:
+ - type: Transform
+ pos: 30.5,55.5
+ parent: 2
+ - uid: 2770
+ components:
+ - type: Transform
+ pos: 27.5,57.5
+ parent: 2
+ - uid: 2781
+ components:
+ - type: Transform
+ pos: 78.5,-19.5
+ parent: 2
+ - uid: 2788
+ components:
+ - type: Transform
+ pos: -24.5,57.5
+ parent: 2
+ - uid: 2828
+ components:
+ - type: Transform
+ pos: -79.5,31.5
+ parent: 2
+ - uid: 2838
+ components:
+ - type: Transform
+ pos: 41.5,52.5
+ parent: 2
+ - uid: 2840
+ components:
+ - type: Transform
+ pos: 45.5,52.5
+ parent: 2
+ - uid: 2855
+ components:
+ - type: Transform
+ pos: -1.5,49.5
+ parent: 2
+ - uid: 2857
+ components:
+ - type: Transform
+ pos: 44.5,52.5
+ parent: 2
+ - uid: 2858
+ components:
+ - type: Transform
+ pos: 43.5,52.5
+ parent: 2
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: 24.5,58.5
+ parent: 2
+ - uid: 2867
+ components:
+ - type: Transform
+ pos: 12.5,56.5
+ parent: 2
+ - uid: 2876
+ components:
+ - type: Transform
+ pos: -50.5,6.5
+ parent: 2
+ - uid: 2915
+ components:
+ - type: Transform
+ pos: 39.5,52.5
+ parent: 2
+ - uid: 2917
+ components:
+ - type: Transform
+ pos: 7.5,-56.5
+ parent: 2
+ - uid: 2918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-41.5
+ parent: 2
+ - uid: 2920
+ components:
+ - type: Transform
+ pos: -87.5,115.5
+ parent: 2
+ - uid: 2922
+ components:
+ - type: Transform
+ pos: -86.5,115.5
+ parent: 2
+ - uid: 2924
+ components:
+ - type: Transform
+ pos: -85.5,115.5
+ parent: 2
+ - uid: 2942
+ components:
+ - type: Transform
+ pos: -83.5,115.5
+ parent: 2
+ - uid: 2979
+ components:
+ - type: Transform
+ pos: -20.5,-17.5
+ parent: 2
+ - uid: 2981
+ components:
+ - type: Transform
+ pos: -21.5,-17.5
+ parent: 2
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 2
+ - uid: 3000
+ components:
+ - type: Transform
+ pos: -82.5,115.5
+ parent: 2
+ - uid: 3059
+ components:
+ - type: Transform
+ pos: -81.5,115.5
+ parent: 2
+ - uid: 3096
+ components:
+ - type: Transform
+ pos: 7.5,-55.5
+ parent: 2
+ - uid: 3159
+ components:
+ - type: Transform
+ pos: 19.5,-37.5
+ parent: 2
+ - uid: 3162
+ components:
+ - type: Transform
+ pos: 20.5,-37.5
+ parent: 2
+ - uid: 3164
+ components:
+ - type: Transform
+ pos: 17.5,-37.5
+ parent: 2
+ - uid: 3167
+ components:
+ - type: Transform
+ pos: 15.5,-37.5
+ parent: 2
+ - uid: 3189
+ components:
+ - type: Transform
+ pos: 18.5,-37.5
+ parent: 2
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: -80.5,115.5
+ parent: 2
+ - uid: 3214
+ components:
+ - type: Transform
+ pos: -66.5,-18.5
+ parent: 2
+ - uid: 3216
+ components:
+ - type: Transform
+ pos: 7.5,-54.5
+ parent: 2
+ - uid: 3221
+ components:
+ - type: Transform
+ pos: 9.5,-56.5
+ parent: 2
+ - uid: 3222
+ components:
+ - type: Transform
+ pos: 9.5,-55.5
+ parent: 2
+ - uid: 3223
+ components:
+ - type: Transform
+ pos: -79.5,115.5
+ parent: 2
+ - uid: 3225
+ components:
+ - type: Transform
+ pos: -1.5,54.5
+ parent: 2
+ - uid: 3226
+ components:
+ - type: Transform
+ pos: 6.5,57.5
+ parent: 2
+ - uid: 3260
+ components:
+ - type: Transform
+ pos: -14.5,-26.5
+ parent: 2
+ - uid: 3261
+ components:
+ - type: Transform
+ pos: -8.5,-26.5
+ parent: 2
+ - uid: 3262
+ components:
+ - type: Transform
+ pos: -8.5,-26.5
+ parent: 2
+ - uid: 3265
+ components:
+ - type: Transform
+ pos: -15.5,-17.5
+ parent: 2
+ - uid: 3270
+ components:
+ - type: Transform
+ pos: -78.5,115.5
+ parent: 2
+ - uid: 3274
+ components:
+ - type: Transform
+ pos: -77.5,115.5
+ parent: 2
+ - uid: 3290
+ components:
+ - type: Transform
+ pos: -76.5,115.5
+ parent: 2
+ - uid: 3326
+ components:
+ - type: Transform
+ pos: 21.5,-37.5
+ parent: 2
+ - uid: 3328
+ components:
+ - type: Transform
+ pos: 14.5,-37.5
+ parent: 2
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: -75.5,115.5
+ parent: 2
+ - uid: 3346
+ components:
+ - type: Transform
+ pos: -17.5,-29.5
+ parent: 2
+ - uid: 3350
+ components:
+ - type: Transform
+ pos: -15.5,-26.5
+ parent: 2
+ - uid: 3496
+ components:
+ - type: Transform
+ pos: 35.5,-35.5
+ parent: 2
+ - uid: 3497
+ components:
+ - type: Transform
+ pos: 33.5,-35.5
+ parent: 2
+ - uid: 3498
+ components:
+ - type: Transform
+ pos: 31.5,-35.5
+ parent: 2
+ - uid: 3499
+ components:
+ - type: Transform
+ pos: 36.5,-35.5
+ parent: 2
+ - uid: 3500
+ components:
+ - type: Transform
+ pos: 38.5,-35.5
+ parent: 2
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: 34.5,-35.5
+ parent: 2
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: 37.5,-35.5
+ parent: 2
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: 29.5,-35.5
+ parent: 2
+ - uid: 3537
+ components:
+ - type: Transform
+ pos: 30.5,-35.5
+ parent: 2
+ - uid: 3538
+ components:
+ - type: Transform
+ pos: 32.5,-35.5
+ parent: 2
+ - uid: 3546
+ components:
+ - type: Transform
+ pos: -73.5,115.5
+ parent: 2
+ - uid: 3549
+ components:
+ - type: Transform
+ pos: -71.5,115.5
+ parent: 2
+ - uid: 3561
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-29.5
+ parent: 2
+ - uid: 3572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,10.5
+ parent: 2
+ - uid: 3618
+ components:
+ - type: Transform
+ pos: -70.5,115.5
+ parent: 2
+ - uid: 3626
+ components:
+ - type: Transform
+ pos: 43.5,-15.5
+ parent: 2
+ - uid: 3629
+ components:
+ - type: Transform
+ pos: 48.5,-8.5
+ parent: 2
+ - uid: 3636
+ components:
+ - type: Transform
+ pos: 41.5,-15.5
+ parent: 2
+ - uid: 3638
+ components:
+ - type: Transform
+ pos: 48.5,-7.5
+ parent: 2
+ - uid: 3639
+ components:
+ - type: Transform
+ pos: 42.5,-15.5
+ parent: 2
+ - uid: 3643
+ components:
+ - type: Transform
+ pos: -69.5,115.5
+ parent: 2
+ - uid: 3644
+ components:
+ - type: Transform
+ pos: 47.5,4.5
+ parent: 2
+ - uid: 3645
+ components:
+ - type: Transform
+ pos: 47.5,3.5
+ parent: 2
+ - uid: 3646
+ components:
+ - type: Transform
+ pos: 47.5,11.5
+ parent: 2
+ - uid: 3648
+ components:
+ - type: Transform
+ pos: 47.5,5.5
+ parent: 2
+ - uid: 3649
+ components:
+ - type: Transform
+ pos: -68.5,114.5
+ parent: 2
+ - uid: 3664
+ components:
+ - type: Transform
+ pos: -50.5,35.5
+ parent: 2
+ - uid: 3674
+ components:
+ - type: Transform
+ pos: -0.5,63.5
+ parent: 2
+ - uid: 3677
+ components:
+ - type: Transform
+ pos: -58.5,21.5
+ parent: 2
+ - uid: 3682
+ components:
+ - type: Transform
+ pos: 79.5,6.5
+ parent: 2
+ - uid: 3718
+ components:
+ - type: Transform
+ pos: -67.5,114.5
+ parent: 2
+ - uid: 3738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,44.5
+ parent: 2
+ - uid: 3747
+ components:
+ - type: Transform
+ pos: -66.5,115.5
+ parent: 2
+ - uid: 3748
+ components:
+ - type: Transform
+ pos: -65.5,115.5
+ parent: 2
+ - uid: 3750
+ components:
+ - type: Transform
+ pos: -63.5,115.5
+ parent: 2
+ - uid: 3751
+ components:
+ - type: Transform
+ pos: -62.5,114.5
+ parent: 2
+ - uid: 3752
+ components:
+ - type: Transform
+ pos: -61.5,113.5
+ parent: 2
+ - uid: 3753
+ components:
+ - type: Transform
+ pos: -61.5,112.5
+ parent: 2
+ - uid: 3759
+ components:
+ - type: Transform
+ pos: -61.5,111.5
+ parent: 2
+ - uid: 3792
+ components:
+ - type: Transform
+ pos: -61.5,110.5
+ parent: 2
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: -16.5,-17.5
+ parent: 2
+ - uid: 3797
+ components:
+ - type: Transform
+ pos: 44.5,-35.5
+ parent: 2
+ - uid: 3799
+ components:
+ - type: Transform
+ pos: -61.5,109.5
+ parent: 2
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: -62.5,109.5
+ parent: 2
+ - uid: 3822
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 2
+ - uid: 3837
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 2
+ - uid: 3838
+ components:
+ - type: Transform
+ pos: 51.5,14.5
+ parent: 2
+ - uid: 3839
+ components:
+ - type: Transform
+ pos: -62.5,108.5
+ parent: 2
+ - uid: 3845
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 2
+ - uid: 3846
+ components:
+ - type: Transform
+ pos: 51.5,13.5
+ parent: 2
+ - uid: 3859
+ components:
+ - type: Transform
+ pos: 42.5,-20.5
+ parent: 2
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: 39.5,-20.5
+ parent: 2
+ - uid: 3862
+ components:
+ - type: Transform
+ pos: 41.5,-20.5
+ parent: 2
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: 61.5,9.5
+ parent: 2
+ - uid: 3870
+ components:
+ - type: Transform
+ pos: 51.5,11.5
+ parent: 2
+ - uid: 3873
+ components:
+ - type: Transform
+ pos: 58.5,1.5
+ parent: 2
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: 59.5,1.5
+ parent: 2
+ - uid: 3876
+ components:
+ - type: Transform
+ pos: 63.5,1.5
+ parent: 2
+ - uid: 3878
+ components:
+ - type: Transform
+ pos: 52.5,-3.5
+ parent: 2
+ - uid: 3880
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 2
+ - uid: 3890
+ components:
+ - type: Transform
+ pos: 52.5,-7.5
+ parent: 2
+ - uid: 3891
+ components:
+ - type: Transform
+ pos: -62.5,107.5
+ parent: 2
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: -62.5,106.5
+ parent: 2
+ - uid: 3896
+ components:
+ - type: Transform
+ pos: -62.5,105.5
+ parent: 2
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: 66.5,1.5
+ parent: 2
+ - uid: 3904
+ components:
+ - type: Transform
+ pos: 51.5,12.5
+ parent: 2
+ - uid: 3905
+ components:
+ - type: Transform
+ pos: -106.5,27.5
+ parent: 2
+ - uid: 3909
+ components:
+ - type: Transform
+ pos: -105.5,29.5
+ parent: 2
+ - uid: 3918
+ components:
+ - type: Transform
+ pos: 52.5,-13.5
+ parent: 2
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: 53.5,-11.5
+ parent: 2
+ - uid: 3920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,54.5
+ parent: 2
+ - uid: 3921
+ components:
+ - type: Transform
+ pos: 38.5,-20.5
+ parent: 2
+ - uid: 3922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,56.5
+ parent: 2
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: 43.5,-20.5
+ parent: 2
+ - uid: 3931
+ components:
+ - type: Transform
+ pos: -106.5,28.5
+ parent: 2
+ - uid: 3938
+ components:
+ - type: Transform
+ pos: -61.5,106.5
+ parent: 2
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: -62.5,96.5
+ parent: 2
+ - uid: 3940
+ components:
+ - type: Transform
+ pos: -62.5,102.5
+ parent: 2
+ - uid: 3942
+ components:
+ - type: Transform
+ pos: -104.5,30.5
+ parent: 2
+ - uid: 3950
+ components:
+ - type: Transform
+ pos: -34.5,-13.5
+ parent: 2
+ - uid: 3951
+ components:
+ - type: Transform
+ pos: 41.5,44.5
+ parent: 2
+ - uid: 3953
+ components:
+ - type: Transform
+ pos: -34.5,-16.5
+ parent: 2
+ - uid: 3977
+ components:
+ - type: Transform
+ pos: 41.5,42.5
+ parent: 2
+ - uid: 3980
+ components:
+ - type: Transform
+ pos: 27.5,22.5
+ parent: 2
+ - uid: 3984
+ components:
+ - type: Transform
+ pos: -62.5,101.5
+ parent: 2
+ - uid: 3986
+ components:
+ - type: Transform
+ pos: 28.5,22.5
+ parent: 2
+ - uid: 3994
+ components:
+ - type: Transform
+ pos: 40.5,-30.5
+ parent: 2
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: -62.5,100.5
+ parent: 2
+ - uid: 4012
+ components:
+ - type: Transform
+ pos: -45.5,66.5
+ parent: 2
+ - uid: 4023
+ components:
+ - type: Transform
+ pos: 59.5,9.5
+ parent: 2
+ - uid: 4057
+ components:
+ - type: Transform
+ pos: -101.5,31.5
+ parent: 2
+ - uid: 4111
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 2
+ - uid: 4120
+ components:
+ - type: Transform
+ pos: -106.5,21.5
+ parent: 2
+ - uid: 4140
+ components:
+ - type: Transform
+ pos: -102.5,17.5
+ parent: 2
+ - uid: 4145
+ components:
+ - type: Transform
+ pos: 55.5,9.5
+ parent: 2
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: 42.5,54.5
+ parent: 2
+ - uid: 4149
+ components:
+ - type: Transform
+ pos: -102.5,31.5
+ parent: 2
+ - uid: 4153
+ components:
+ - type: Transform
+ pos: 57.5,9.5
+ parent: 2
+ - uid: 4154
+ components:
+ - type: Transform
+ pos: 42.5,56.5
+ parent: 2
+ - uid: 4166
+ components:
+ - type: Transform
+ pos: 36.5,55.5
+ parent: 2
+ - uid: 4176
+ components:
+ - type: Transform
+ pos: -101.5,-14.5
+ parent: 2
+ - uid: 4178
+ components:
+ - type: Transform
+ pos: -62.5,99.5
+ parent: 2
+ - uid: 4179
+ components:
+ - type: Transform
+ pos: -63.5,101.5
+ parent: 2
+ - uid: 4182
+ components:
+ - type: Transform
+ pos: 36.5,54.5
+ parent: 2
+ - uid: 4188
+ components:
+ - type: Transform
+ pos: 48.5,54.5
+ parent: 2
+ - uid: 4189
+ components:
+ - type: Transform
+ pos: 36.5,56.5
+ parent: 2
+ - uid: 4193
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 2
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: 48.5,56.5
+ parent: 2
+ - uid: 4202
+ components:
+ - type: Transform
+ pos: 42.5,55.5
+ parent: 2
+ - uid: 4206
+ components:
+ - type: Transform
+ pos: 62.5,1.5
+ parent: 2
+ - uid: 4207
+ components:
+ - type: Transform
+ pos: 60.5,1.5
+ parent: 2
+ - uid: 4208
+ components:
+ - type: Transform
+ pos: 61.5,1.5
+ parent: 2
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: -62.5,95.5
+ parent: 2
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: -100.5,31.5
+ parent: 2
+ - uid: 4216
+ components:
+ - type: Transform
+ pos: -103.5,30.5
+ parent: 2
+ - uid: 4248
+ components:
+ - type: Transform
+ pos: 40.5,-31.5
+ parent: 2
+ - uid: 4250
+ components:
+ - type: Transform
+ pos: 65.5,9.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26122
+ - uid: 4252
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,32.5
+ pos: 65.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26123
+ - uid: 4254
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-4.5
+ pos: 63.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25267
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26129
+ - uid: 4256
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,40.5
+ pos: 61.5,25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26152
+ - uid: 4258
components:
- type: Transform
- pos: 17.5,-15.5
+ pos: 57.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26168
+ - uid: 4263
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-0.5
+ pos: 55.5,25.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25276
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26198
+ - uid: 4288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,11.5
+ pos: 63.5,9.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25290
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26209
+ - uid: 4307
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,9.5
+ pos: -62.5,94.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25277
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26210
+ - uid: 4310
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-0.5
+ pos: 37.5,-19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25287
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26211
+ - uid: 4318
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-20.5
+ pos: -62.5,93.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25256
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26220
+ - uid: 4319
components:
- type: Transform
- pos: -2.5,66.5
+ pos: -62.5,92.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26249
+ - uid: 4320
components:
- type: Transform
- pos: -37.5,23.5
+ pos: -62.5,90.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26256
+ - uid: 4321
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,21.5
+ pos: -62.5,87.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26268
+ - uid: 4322
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,15.5
+ pos: -61.5,86.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26280
+ - uid: 4325
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,17.5
+ pos: -61.5,85.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26283
+ - uid: 4326
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,12.5
+ pos: -62.5,84.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26308
+ - uid: 4327
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -60.5,12.5
+ pos: -63.5,83.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26353
+ - uid: 4351
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -67.5,26.5
+ pos: 40.5,-29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26633
+ - uid: 4352
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-33.5
+ pos: 40.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 400
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26698
+ - uid: 4353
components:
- type: Transform
- pos: 54.5,3.5
+ pos: 44.5,-20.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25300
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26699
+ - uid: 4527
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-46.5
+ pos: 81.5,28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7137
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26767
+ - uid: 4579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,20.5
+ pos: -104.5,18.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26790
+ - uid: 4632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-44.5
+ pos: -1.5,48.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 7137
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26835
+ - uid: 4634
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -77.5,4.5
+ pos: 4.5,-48.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 22045
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26866
+ - uid: 4635
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,74.5
+ pos: -1.5,-48.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26867
+ - uid: 4650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,73.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-31.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26886
+ - uid: 4651
components:
- type: Transform
- pos: 2.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-32.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26896
+ - uid: 4666
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-50.5
+ pos: 92.5,41.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26945
+ - uid: 4682
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -54.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,31.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27006
+ - uid: 4683
components:
- type: Transform
- pos: -53.5,-7.5
+ pos: -66.5,31.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 4313
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27008
+ - uid: 4767
components:
- type: Transform
- pos: -12.5,20.5
+ pos: 53.5,-12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27010
+ - uid: 4768
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,47.5
+ pos: 6.5,69.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27011
+ - uid: 4775
components:
- type: Transform
- pos: 12.5,19.5
+ pos: 12.5,69.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25206
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27108
+ - uid: 4776
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-33.5
+ pos: 49.5,-16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27114
+ - uid: 4788
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-22.5
+ pos: 90.5,14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27122
+ - uid: 4943
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -103.5,18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25262
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27123
+ - uid: 4960
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-10.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25250
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27129
+ - uid: 4962
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -61.5,-16.5
+ pos: -22.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27134
+ - uid: 4964
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,-33.5
+ pos: -106.5,20.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27137
+ - uid: 5014
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-36.5
+ pos: 48.5,-17.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27149
+ - uid: 5020
components:
- type: Transform
- pos: -58.5,-9.5
+ pos: 56.5,-28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27165
+ - uid: 5028
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,1.5
+ pos: 55.5,-28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27190
+ - uid: 5029
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,10.5
+ pos: 54.5,-28.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27252
+ - uid: 5032
components:
- type: Transform
- pos: -56.5,-11.5
+ pos: 57.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23688
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27253
+ - uid: 5033
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-17.5
+ pos: 58.5,-28.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15565
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27255
+ - uid: 5034
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,12.5
+ pos: 70.5,-14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27257
+ - uid: 5038
components:
- type: Transform
- pos: -23.5,13.5
+ pos: 113.5,-6.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25274
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27271
+ - uid: 5054
components:
- type: Transform
- pos: 35.5,-1.5
+ pos: 67.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 6298
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27293
+ - uid: 5055
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,-11.5
+ pos: 68.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27294
+ - uid: 5056
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-7.5
+ pos: 69.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27299
+ - uid: 5057
components:
- type: Transform
- pos: 76.5,-4.5
+ pos: 70.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25298
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27300
+ - uid: 5058
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,27.5
+ pos: 71.5,1.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25302
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27301
+ - uid: 5063
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-41.5
+ pos: -105.5,19.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25340
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27302
+ - uid: 5082
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-41.5
+ pos: 22.5,59.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25341
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27306
+ - uid: 5095
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-7.5
+ pos: 70.5,-13.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27350
+ - uid: 5283
components:
- type: Transform
- pos: 19.5,10.5
+ pos: -15.5,40.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27373
+ - uid: 5298
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,11.5
+ pos: 22.5,60.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27383
+ - uid: 5315
components:
- type: Transform
- pos: 31.5,15.5
+ pos: 60.5,58.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27389
+ - uid: 5316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,1.5
+ pos: 59.5,58.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27395
+ - uid: 5317
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-2.5
+ pos: 58.5,58.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27422
+ - uid: 5326
components:
- type: Transform
- pos: 35.5,6.5
+ pos: -102.5,-14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27425
+ - uid: 5360
components:
- type: Transform
- pos: -92.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,83.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27437
+ - uid: 5362
components:
- type: Transform
- pos: 19.5,-11.5
+ pos: -100.5,-14.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27440
+ - uid: 5681
components:
- type: Transform
- pos: -20.5,34.5
+ pos: -20.5,23.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27467
+ - uid: 5755
components:
- type: Transform
- pos: -45.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,-0.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27482
+ - uid: 5785
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-23.5
+ pos: 12.5,-52.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27491
+ - uid: 5786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-19.5
+ pos: -9.5,-50.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27494
+ - uid: 5790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-29.5
+ pos: -4.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27507
+ - uid: 5791
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-22.5
+ pos: -6.5,-53.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25260
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27559
+ - uid: 5792
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-34.5
+ pos: -8.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27560
+ - uid: 5798
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-29.5
+ pos: 11.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27641
+ - uid: 5799
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-5.5
+ pos: 9.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27695
+ - uid: 5800
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-31.5
+ pos: 7.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27696
+ - uid: 5804
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-34.5
+ pos: 12.5,-50.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27747
+ - uid: 5805
components:
- type: Transform
- pos: 77.5,-11.5
+ pos: 12.5,-51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27752
+ - uid: 5808
components:
- type: Transform
- pos: 62.5,-11.5
+ pos: 1.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27754
+ - uid: 5809
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -84.5,16.5
+ pos: 3.5,-53.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27756
+ - uid: 5810
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 62.5,-24.5
+ pos: -0.5,-53.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27853
+ - uid: 5811
components:
- type: Transform
- pos: -26.5,20.5
+ pos: 1.5,-54.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 17901
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 27888
+ - uid: 5812
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,53.5
+ pos: 1.5,-55.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28055
+ - uid: 5813
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,68.5
+ pos: -0.5,-54.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 1690
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28060
+ - uid: 5814
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-2.5
+ pos: -0.5,-55.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28070
+ - uid: 5815
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 37.5,15.5
+ pos: 3.5,-54.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28098
+ - uid: 5816
components:
- type: Transform
- pos: 36.5,-15.5
+ pos: 3.5,-55.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25248
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28099
+ - uid: 5819
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-23.5
+ pos: 1.5,-56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25249
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28108
+ - uid: 5820
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-34.5
+ pos: -0.5,-56.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28113
+ - uid: 5821
components:
- type: Transform
- pos: -53.5,-15.5
+ pos: 3.5,-56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25333
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28116
+ - uid: 5834
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -44.5,-28.5
+ pos: 11.5,-55.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25330
- - 25331
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28149
+ - uid: 5835
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-24.5
+ pos: 11.5,-56.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28173
+ - uid: 5836
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-19.5
+ pos: -4.5,-54.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28211
+ - uid: 5837
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-29.5
+ pos: -4.5,-55.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25252
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28244
+ - uid: 5838
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-21.5
+ pos: -4.5,-56.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25254
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28265
+ - uid: 5839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-21.5
+ pos: -6.5,-54.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28283
+ - uid: 5840
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,6.5
+ pos: -6.5,-55.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 30714
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28290
+ - uid: 5841
components:
- type: Transform
- pos: -5.5,-24.5
+ pos: -6.5,-56.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28302
+ - uid: 5842
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-32.5
+ pos: -8.5,-54.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28316
+ - uid: 5843
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-29.5
+ pos: -8.5,-55.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28330
+ - uid: 5844
components:
- type: Transform
- pos: -26.5,-8.5
+ pos: -8.5,-56.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28449
+ - uid: 5872
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,1.5
+ pos: -9.5,-51.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28452
+ - uid: 5873
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,0.5
+ pos: -9.5,-52.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28500
+ - uid: 6014
components:
- type: Transform
- pos: 66.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-18.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 23957
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28536
+ - uid: 6145
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,28.5
+ pos: -14.5,-41.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28545
+ - uid: 6183
components:
- type: Transform
- pos: 19.5,24.5
+ pos: -62.5,82.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28566
+ - uid: 6208
components:
- type: Transform
- pos: 9.5,28.5
+ pos: -62.5,81.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28584
+ - uid: 6209
components:
- type: Transform
- pos: 14.5,29.5
+ pos: -62.5,79.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28612
+ - uid: 6210
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-24.5
+ pos: -62.5,78.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25253
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 28776
+ - uid: 6212
+ components:
+ - type: Transform
+ pos: -51.5,63.5
+ parent: 2
+ - uid: 6215
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-9.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34073
+ - uid: 6367
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,39.5
+ pos: 32.5,-12.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25346
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34681
+ - uid: 6368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-7.5
+ pos: 34.5,-12.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 34741
+ - uid: 6369
components:
- type: Transform
- pos: 46.5,23.5
+ pos: 35.5,-10.5
parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 25349
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36074
+ - uid: 6439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,25.5
+ pos: 78.5,-16.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36075
+ - uid: 6442
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,25.5
+ pos: 115.5,-23.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36076
+ - uid: 6443
components:
- type: Transform
- pos: -24.5,33.5
+ pos: 115.5,-24.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 36077
+ - uid: 6444
components:
- type: Transform
- pos: -28.5,33.5
+ pos: 115.5,-25.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - type: AtmosPipeColor
- color: '#990000FF'
-- proto: Gauze
- entities:
- - uid: 3465
+ - uid: 6446
components:
- type: Transform
- pos: 41.734196,-21.431963
+ pos: 115.5,-30.5
parent: 2
- - uid: 7809
+ - uid: 6447
components:
- type: Transform
- pos: 7.5685353,-11.376604
+ pos: 113.5,-31.5
parent: 2
- - uid: 26688
+ - uid: 6448
components:
- type: Transform
- pos: -22.984537,-0.22695684
+ pos: 112.5,-31.5
parent: 2
-- proto: Gauze1
- entities:
- - uid: 3464
+ - uid: 6452
components:
- type: Transform
- pos: 41.89826,-21.256182
+ pos: 111.5,-31.5
parent: 2
- - uid: 5523
+ - uid: 6453
components:
- type: Transform
- pos: 50.135185,46.605064
+ pos: 111.5,-30.5
parent: 2
- - uid: 6906
+ - uid: 6454
components:
- type: Transform
- pos: 43.00011,-21.318933
+ pos: 110.5,-30.5
parent: 2
- - uid: 6907
+ - uid: 6455
components:
- type: Transform
- pos: 44.640736,-22.748621
+ pos: 109.5,-30.5
parent: 2
- - uid: 8312
+ - uid: 6470
components:
- type: Transform
- pos: 49.830498,46.441
+ pos: 58.5,-35.5
parent: 2
-- proto: GeigerCounter
- entities:
- - uid: 8311
+ - uid: 6485
components:
- type: Transform
- pos: 49.279716,46.65194
+ pos: -17.5,-28.5
parent: 2
-- proto: GlimmerProber
- entities:
- - uid: 30921
+ - uid: 6500
components:
- type: Transform
- pos: 45.5,30.5
+ pos: -16.5,-26.5
parent: 2
-- proto: GlowstickBase
- entities:
- - uid: 2099
+ - uid: 6507
components:
- type: Transform
- pos: -19.598991,16.747276
+ pos: 108.5,-30.5
parent: 2
-- proto: GlowstickBlue
- entities:
- - uid: 2093
+ - uid: 6512
components:
- type: Transform
- pos: -8.70348,10.857905
+ pos: -9.5,-26.5
parent: 2
- - uid: 2095
+ - uid: 6537
components:
- type: Transform
- pos: -8.6214485,10.799312
+ pos: -14.5,-17.5
parent: 2
- - uid: 2096
+ - uid: 6538
components:
- type: Transform
- pos: -16.575478,16.641808
+ pos: -8.5,-17.5
parent: 2
-- proto: GlowstickPurple
- entities:
- - uid: 2100
+ - uid: 6539
components:
- type: Transform
- pos: -28.622429,9.716027
+ pos: -7.5,-17.5
parent: 2
- - uid: 33601
+ - uid: 6540
components:
- type: Transform
- pos: 82.8568,57.574116
+ pos: -6.5,-17.5
parent: 2
-- proto: GlowstickRed
- entities:
- - uid: 2098
+ - uid: 6569
components:
- type: Transform
- pos: -28.552116,16.747276
+ pos: -19.5,23.5
parent: 2
-- proto: GlowstickYellow
- entities:
- - uid: 2097
+ - uid: 6573
components:
- type: Transform
- pos: -25.575554,16.723839
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-33.5
parent: 2
-- proto: GoldDoor
- entities:
- - uid: 32466
+ - uid: 6634
components:
- type: Transform
- pos: 83.5,69.5
+ pos: -20.5,-49.5
parent: 2
-- proto: GravityGenerator
- entities:
- - uid: 2402
+ - uid: 6635
components:
- type: Transform
- pos: -60.5,18.5
+ pos: 107.5,-30.5
parent: 2
- - type: ApcPowerReceiver
- needsPower: False
-- proto: Grille
- entities:
- - uid: 8
+ - uid: 6653
components:
- type: Transform
- pos: -1.5,11.5
+ pos: 106.5,-30.5
parent: 2
- - uid: 18
+ - uid: 6657
components:
- type: Transform
- pos: -9.5,7.5
+ pos: -48.5,38.5
parent: 2
- - uid: 31
+ - uid: 6668
components:
- type: Transform
- pos: -9.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-45.5
parent: 2
- - uid: 48
+ - uid: 6673
components:
- type: Transform
- pos: -1.5,13.5
+ pos: -44.5,-39.5
parent: 2
- - uid: 58
+ - uid: 6697
components:
- type: Transform
- pos: -9.5,5.5
+ pos: 105.5,-30.5
parent: 2
- - uid: 60
+ - uid: 6698
components:
- type: Transform
- pos: -1.5,12.5
+ pos: -43.5,-39.5
parent: 2
- - uid: 106
+ - uid: 6740
components:
- type: Transform
- pos: -9.5,-2.5
+ pos: -17.5,-20.5
parent: 2
- - uid: 107
+ - uid: 6741
components:
- type: Transform
- pos: -9.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-46.5
parent: 2
- - uid: 108
+ - uid: 6745
components:
- type: Transform
- pos: 6.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-21.5
parent: 2
- - uid: 123
+ - uid: 6766
components:
- type: Transform
- pos: 4.5,9.5
+ pos: -37.5,-17.5
parent: 2
- - uid: 125
+ - uid: 6772
components:
- type: Transform
- pos: 4.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-45.5
parent: 2
- - uid: 127
+ - uid: 6930
components:
- type: Transform
- pos: 4.5,13.5
+ pos: -48.5,32.5
parent: 2
- - uid: 132
+ - uid: 7100
components:
- type: Transform
- pos: 4.5,15.5
+ pos: -51.5,-14.5
parent: 2
- - uid: 138
+ - uid: 7150
components:
- type: Transform
- pos: -1.5,14.5
+ pos: -35.5,-17.5
parent: 2
- - uid: 141
+ - uid: 7158
components:
- type: Transform
- pos: 23.5,-12.5
+ pos: -47.5,-12.5
parent: 2
- - uid: 142
+ - uid: 7166
components:
- type: Transform
- pos: 24.5,-12.5
+ pos: -36.5,-17.5
parent: 2
- - uid: 143
+ - uid: 7181
components:
- type: Transform
- pos: 25.5,-12.5
+ pos: -58.5,-5.5
parent: 2
- - uid: 158
+ - uid: 7247
components:
- type: Transform
- pos: -7.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-8.5
parent: 2
- - uid: 201
+ - uid: 7248
components:
- type: Transform
- pos: 11.5,-54.5
+ pos: 70.5,40.5
parent: 2
- - uid: 222
+ - uid: 7251
components:
- type: Transform
- pos: -12.5,17.5
+ pos: -51.5,-22.5
parent: 2
- - uid: 224
+ - uid: 7253
components:
- type: Transform
- pos: -11.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,9.5
parent: 2
- - uid: 247
+ - uid: 7260
components:
- type: Transform
- pos: 13.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-9.5
parent: 2
- - uid: 248
+ - uid: 7267
components:
- type: Transform
- pos: 7.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-8.5
parent: 2
- - uid: 250
+ - uid: 7317
components:
- type: Transform
- pos: 11.5,17.5
+ pos: -59.5,-5.5
parent: 2
- - uid: 251
+ - uid: 7321
components:
- type: Transform
- pos: 12.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,55.5
parent: 2
- - uid: 397
+ - uid: 7334
components:
- type: Transform
- pos: -6.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,0.5
parent: 2
- - uid: 620
+ - uid: 7377
components:
- type: Transform
- pos: 9.5,-54.5
+ pos: 70.5,39.5
parent: 2
- - uid: 621
+ - uid: 7378
components:
- type: Transform
- pos: 15.5,35.5
+ pos: 70.5,43.5
parent: 2
- - uid: 716
+ - uid: 7408
components:
- type: Transform
- pos: -11.5,-43.5
+ pos: 90.5,-30.5
parent: 2
- - uid: 724
+ - uid: 7409
components:
- type: Transform
- pos: -8.5,-43.5
+ pos: 89.5,-30.5
parent: 2
- - uid: 731
+ - uid: 7412
components:
- type: Transform
- pos: 15.5,36.5
+ pos: -58.5,-0.5
parent: 2
- - uid: 772
+ - uid: 7413
components:
- type: Transform
- pos: 26.5,-17.5
+ pos: -57.5,-0.5
parent: 2
- - uid: 775
+ - uid: 7443
components:
- type: Transform
- pos: 27.5,-17.5
+ pos: -87.5,32.5
parent: 2
- - uid: 776
+ - uid: 7462
components:
- type: Transform
- pos: 23.5,-17.5
+ pos: -51.5,62.5
parent: 2
- - uid: 779
+ - uid: 7464
components:
- type: Transform
- pos: 22.5,-17.5
+ pos: -51.5,61.5
parent: 2
- - uid: 809
+ - uid: 7469
components:
- type: Transform
- pos: -9.5,-43.5
+ pos: -51.5,60.5
parent: 2
- - uid: 810
+ - uid: 7484
components:
- type: Transform
- pos: -10.5,-43.5
+ pos: -51.5,59.5
parent: 2
- - uid: 811
+ - uid: 7485
components:
- type: Transform
- pos: -7.5,-43.5
+ pos: -51.5,58.5
parent: 2
- - uid: 820
+ - uid: 7486
components:
- type: Transform
- pos: -2.5,58.5
+ pos: -51.5,57.5
parent: 2
- - uid: 821
+ - uid: 7490
components:
- type: Transform
- pos: -2.5,60.5
+ pos: -51.5,56.5
parent: 2
- - uid: 834
+ - uid: 7491
components:
- type: Transform
- pos: 6.5,22.5
+ pos: -51.5,55.5
parent: 2
- - uid: 840
+ - uid: 7494
components:
- type: Transform
- pos: 12.5,22.5
+ pos: -61.5,77.5
parent: 2
- - uid: 844
+ - uid: 7495
components:
- type: Transform
- pos: 20.5,22.5
+ pos: -60.5,77.5
parent: 2
- - uid: 847
+ - uid: 7496
components:
- type: Transform
- pos: 19.5,22.5
+ pos: -43.5,77.5
parent: 2
- - uid: 859
+ - uid: 7497
components:
- type: Transform
- pos: 13.5,-17.5
+ pos: -58.5,77.5
parent: 2
- - uid: 871
+ - uid: 7498
components:
- type: Transform
- pos: -13.5,17.5
+ pos: -57.5,77.5
parent: 2
- - uid: 902
+ - uid: 7499
components:
- type: Transform
- pos: 23.5,-3.5
+ pos: -56.5,77.5
parent: 2
- - uid: 905
+ - uid: 7500
components:
- type: Transform
- pos: 24.5,-3.5
+ pos: -55.5,77.5
parent: 2
- - uid: 923
+ - uid: 7501
components:
- type: Transform
- pos: 18.5,3.5
+ pos: -54.5,77.5
parent: 2
- - uid: 1010
+ - uid: 7502
components:
- type: Transform
- pos: 25.5,4.5
+ pos: -53.5,78.5
parent: 2
- - uid: 1032
+ - uid: 7503
components:
- type: Transform
- pos: 11.5,3.5
+ pos: -52.5,78.5
parent: 2
- - uid: 1049
+ - uid: 7506
components:
- type: Transform
- pos: 11.5,2.5
+ pos: -51.5,78.5
parent: 2
- - uid: 1116
+ - uid: 7510
components:
- type: Transform
- pos: -20.5,-43.5
+ pos: -50.5,78.5
parent: 2
- - uid: 1139
+ - uid: 7533
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-15.5
+ pos: -49.5,78.5
parent: 2
- - uid: 1144
+ - uid: 7534
components:
- type: Transform
- pos: 18.5,2.5
+ pos: -48.5,78.5
parent: 2
- - uid: 1149
+ - uid: 7547
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,32.5
+ pos: -47.5,77.5
parent: 2
- - uid: 1152
+ - uid: 7549
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,32.5
+ pos: -46.5,77.5
parent: 2
- - uid: 1155
+ - uid: 7550
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,3.5
parent: 2
- - uid: 1183
+ - uid: 7561
components:
- type: Transform
- pos: 35.5,-11.5
+ pos: -45.5,77.5
parent: 2
- - uid: 1185
+ - uid: 7564
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,25.5
+ pos: -39.5,77.5
parent: 2
- - uid: 1188
+ - uid: 7565
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,59.5
parent: 2
- - uid: 1267
+ - uid: 7572
components:
- type: Transform
- pos: 20.5,-0.5
+ pos: -38.5,77.5
parent: 2
- - uid: 1271
+ - uid: 7586
components:
- type: Transform
- pos: 18.5,1.5
+ pos: -37.5,77.5
parent: 2
- - uid: 1272
+ - uid: 7587
components:
- type: Transform
- pos: 27.5,4.5
+ pos: -36.5,77.5
parent: 2
- - uid: 1283
+ - uid: 7589
components:
- type: Transform
- pos: 26.5,4.5
+ pos: -35.5,77.5
parent: 2
- - uid: 1305
+ - uid: 7590
components:
- type: Transform
- pos: 21.5,-0.5
+ pos: -81.5,32.5
parent: 2
- - uid: 1419
+ - uid: 7592
components:
- type: Transform
- pos: -98.5,64.5
+ pos: -98.5,26.5
parent: 2
- - uid: 1518
+ - uid: 7593
components:
- type: Transform
- pos: -31.5,71.5
+ pos: -11.5,68.5
parent: 2
- - uid: 1533
+ - uid: 7596
components:
- type: Transform
- pos: -97.5,64.5
+ pos: -44.5,80.5
parent: 2
- - uid: 1538
+ - uid: 7597
components:
- type: Transform
- pos: -96.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,1.5
parent: 2
- - uid: 1540
+ - uid: 7602
components:
- type: Transform
- pos: -95.5,64.5
+ pos: -45.5,80.5
parent: 2
- - uid: 1547
+ - uid: 7603
components:
- type: Transform
- pos: -95.5,65.5
+ pos: -98.5,27.5
parent: 2
- - uid: 1649
+ - uid: 7612
components:
- type: Transform
- pos: -94.5,65.5
+ pos: -98.5,28.5
parent: 2
- - uid: 1681
+ - uid: 7614
components:
- type: Transform
- pos: -94.5,66.5
+ pos: -31.5,75.5
parent: 2
- - uid: 1723
+ - uid: 7615
components:
- type: Transform
- pos: -93.5,66.5
+ pos: -30.5,75.5
parent: 2
- - uid: 1724
+ - uid: 7617
components:
- type: Transform
- pos: -92.5,66.5
+ pos: -29.5,75.5
parent: 2
- - uid: 1725
+ - uid: 7618
components:
- type: Transform
- pos: -92.5,67.5
+ pos: -29.5,76.5
parent: 2
- - uid: 1726
+ - uid: 7655
components:
- type: Transform
- pos: -92.5,69.5
+ pos: -98.5,19.5
parent: 2
- - uid: 1727
+ - uid: 7657
components:
- type: Transform
- pos: -92.5,73.5
+ pos: -28.5,76.5
parent: 2
- - uid: 1745
+ - uid: 7661
components:
- type: Transform
- pos: -92.5,79.5
+ pos: -27.5,76.5
parent: 2
- - uid: 1746
+ - uid: 7662
components:
- type: Transform
- pos: -92.5,81.5
+ pos: -27.5,75.5
parent: 2
- - uid: 1748
+ - uid: 7663
components:
- type: Transform
- pos: -92.5,82.5
+ pos: -98.5,24.5
parent: 2
- - uid: 1749
+ - uid: 7665
components:
- type: Transform
- pos: -92.5,83.5
+ pos: -98.5,20.5
parent: 2
- - uid: 1750
+ - uid: 7670
components:
- type: Transform
- pos: -92.5,84.5
+ pos: -98.5,23.5
parent: 2
- - uid: 1751
+ - uid: 7677
components:
- type: Transform
- pos: -92.5,86.5
+ pos: -26.5,75.5
parent: 2
- - uid: 1752
+ - uid: 7685
components:
- type: Transform
- pos: -96.5,84.5
+ pos: -25.5,75.5
parent: 2
- - uid: 1753
+ - uid: 7686
components:
- type: Transform
- pos: -96.5,85.5
+ pos: -24.5,75.5
parent: 2
- - uid: 1754
+ - uid: 7687
components:
- type: Transform
- pos: -96.5,86.5
+ pos: -23.5,75.5
parent: 2
- - uid: 1755
+ - uid: 7689
components:
- type: Transform
- pos: -96.5,88.5
+ pos: -22.5,75.5
parent: 2
- - uid: 1756
+ - uid: 7690
components:
- type: Transform
- pos: -96.5,90.5
+ pos: -21.5,75.5
parent: 2
- - uid: 1757
+ - uid: 7693
components:
- type: Transform
- pos: -96.5,91.5
+ pos: -19.5,75.5
parent: 2
- - uid: 1758
+ - uid: 7698
components:
- type: Transform
- pos: -96.5,92.5
+ pos: -14.5,75.5
parent: 2
- - uid: 1767
+ - uid: 7699
components:
- type: Transform
- pos: -96.5,93.5
+ pos: -15.5,75.5
parent: 2
- - uid: 1777
+ - uid: 7700
components:
- type: Transform
- pos: -97.5,95.5
+ pos: -16.5,75.5
parent: 2
- - uid: 1778
+ - uid: 7702
components:
- type: Transform
- pos: -96.5,98.5
+ pos: 20.5,81.5
parent: 2
- - uid: 1780
+ - uid: 7703
components:
- type: Transform
- pos: -92.5,94.5
+ pos: 21.5,81.5
parent: 2
- - uid: 1812
+ - uid: 7704
components:
- type: Transform
- pos: -92.5,95.5
+ pos: -98.5,25.5
parent: 2
- - uid: 1813
+ - uid: 7705
components:
- type: Transform
- pos: -92.5,96.5
+ pos: -86.5,13.5
parent: 2
- - uid: 1814
+ - uid: 7706
components:
- type: Transform
- pos: -92.5,97.5
+ pos: -86.5,14.5
parent: 2
- - uid: 1815
+ - uid: 7707
components:
- type: Transform
- pos: -92.5,98.5
+ pos: -86.5,0.5
parent: 2
- - uid: 1816
+ - uid: 7709
components:
- type: Transform
- pos: -92.5,99.5
+ pos: 37.5,76.5
parent: 2
- - uid: 1817
+ - uid: 7711
components:
- type: Transform
- pos: -92.5,101.5
+ pos: -98.5,21.5
parent: 2
- - uid: 1832
+ - uid: 7712
components:
- type: Transform
- pos: 15.5,-17.5
+ pos: -98.5,22.5
parent: 2
- - uid: 1841
+ - uid: 7714
components:
- type: Transform
- pos: 3.5,28.5
+ pos: -86.5,1.5
parent: 2
- - uid: 1842
+ - uid: 7732
components:
- type: Transform
- pos: 3.5,27.5
+ pos: -86.5,2.5
parent: 2
- - uid: 1883
+ - uid: 7733
components:
- type: Transform
- pos: 3.5,29.5
+ pos: -82.5,15.5
parent: 2
- - uid: 1887
+ - uid: 7734
components:
- type: Transform
- pos: 9.5,26.5
+ pos: -82.5,14.5
parent: 2
- - uid: 1889
+ - uid: 7735
components:
- type: Transform
- pos: 3.5,30.5
+ pos: -82.5,13.5
parent: 2
- - uid: 1930
+ - uid: 7739
components:
- type: Transform
- pos: 8.5,26.5
+ pos: -86.5,3.5
parent: 2
- - uid: 2044
+ - uid: 7740
components:
- type: Transform
- pos: -92.5,103.5
+ pos: -82.5,16.5
parent: 2
- - uid: 2045
+ - uid: 7741
components:
- type: Transform
- pos: -91.5,100.5
+ pos: -86.5,16.5
parent: 2
- - uid: 2052
+ - uid: 7742
components:
- type: Transform
- pos: -91.5,99.5
+ pos: -86.5,15.5
parent: 2
- - uid: 2087
+ - uid: 7795
components:
- type: Transform
- pos: -97.5,101.5
+ pos: -91.5,-8.5
parent: 2
- - uid: 2092
+ - uid: 7799
components:
- type: Transform
- pos: -97.5,102.5
+ pos: -91.5,-9.5
parent: 2
- - uid: 2094
+ - uid: 7800
components:
- type: Transform
- pos: -97.5,103.5
+ pos: -90.5,-12.5
parent: 2
- - uid: 2101
+ - uid: 7801
components:
- type: Transform
- pos: -97.5,104.5
+ pos: -91.5,-10.5
parent: 2
- - uid: 2104
+ - uid: 7802
components:
- type: Transform
- pos: -97.5,105.5
+ pos: -77.5,-9.5
parent: 2
- - uid: 2122
+ - uid: 7803
components:
- type: Transform
- pos: -96.5,100.5
+ pos: -77.5,-10.5
parent: 2
- - uid: 2123
+ - uid: 7804
components:
- type: Transform
- pos: -97.5,107.5
+ pos: -90.5,-11.5
parent: 2
- - uid: 2129
+ - uid: 7805
components:
- type: Transform
- pos: -97.5,108.5
+ pos: -89.5,-13.5
parent: 2
- - uid: 2133
+ - uid: 7806
components:
- type: Transform
- pos: -97.5,109.5
+ pos: -88.5,-14.5
parent: 2
- - uid: 2135
+ - uid: 7807
components:
- type: Transform
- pos: -96.5,110.5
+ pos: -87.5,-14.5
parent: 2
- - uid: 2140
+ - uid: 7813
components:
- type: Transform
- pos: -96.5,111.5
+ pos: -81.5,-14.5
parent: 2
- - uid: 2145
+ - uid: 7814
components:
- type: Transform
- pos: -96.5,112.5
+ pos: -80.5,-14.5
parent: 2
- - uid: 2153
+ - uid: 7815
components:
- type: Transform
- pos: -96.5,113.5
+ pos: -79.5,-13.5
parent: 2
- - uid: 2154
+ - uid: 7816
components:
- type: Transform
- pos: -96.5,114.5
+ pos: -78.5,-12.5
parent: 2
- - uid: 2155
+ - uid: 7817
components:
- type: Transform
- pos: -95.5,115.5
+ pos: -78.5,-11.5
parent: 2
- - uid: 2156
+ - uid: 7830
components:
- type: Transform
- pos: -94.5,115.5
+ pos: -91.5,25.5
parent: 2
- - uid: 2165
+ - uid: 7831
components:
- type: Transform
- pos: -93.5,115.5
+ pos: -91.5,26.5
parent: 2
- - uid: 2182
+ - uid: 7832
components:
- type: Transform
- pos: -44.5,-4.5
+ pos: -91.5,27.5
parent: 2
- - uid: 2183
+ - uid: 7833
components:
- type: Transform
- pos: -44.5,-2.5
+ pos: -77.5,27.5
parent: 2
- - uid: 2185
+ - uid: 7834
components:
- type: Transform
- pos: 4.5,58.5
+ pos: -77.5,26.5
parent: 2
- - uid: 2197
+ - uid: 7838
components:
- type: Transform
- pos: -44.5,-3.5
+ pos: -90.5,28.5
parent: 2
- - uid: 2198
+ - uid: 7839
components:
- type: Transform
- pos: -44.5,0.5
+ pos: -90.5,29.5
parent: 2
- - uid: 2200
+ - uid: 7840
components:
- type: Transform
- pos: -44.5,1.5
+ pos: -89.5,30.5
parent: 2
- - uid: 2201
+ - uid: 7841
components:
- type: Transform
- pos: 29.5,22.5
+ pos: -88.5,31.5
parent: 2
- - uid: 2256
+ - uid: 7842
components:
- type: Transform
- pos: -44.5,-0.5
+ pos: -87.5,31.5
parent: 2
- - uid: 2276
+ - uid: 7848
components:
- type: Transform
- pos: 40.5,52.5
+ pos: -81.5,31.5
parent: 2
- - uid: 2288
+ - uid: 7849
components:
- type: Transform
- pos: 59.5,25.5
+ pos: -80.5,31.5
parent: 2
- - uid: 2299
+ - uid: 7850
components:
- type: Transform
- pos: -43.5,5.5
+ pos: -79.5,30.5
parent: 2
- - uid: 2300
+ - uid: 7851
components:
- type: Transform
- pos: -43.5,6.5
+ pos: -78.5,29.5
parent: 2
- - uid: 2305
+ - uid: 7852
components:
- type: Transform
- pos: -43.5,4.5
+ pos: -78.5,28.5
parent: 2
- - uid: 2315
+ - uid: 7870
components:
- type: Transform
- pos: -32.5,-39.5
+ pos: -98.5,-11.5
parent: 2
- - uid: 2318
+ - uid: 7891
components:
- type: Transform
- pos: -31.5,-39.5
+ pos: 47.5,-5.5
parent: 2
- - uid: 2319
+ - uid: 7892
components:
- type: Transform
- pos: -27.5,-39.5
+ pos: -98.5,-12.5
parent: 2
- - uid: 2322
+ - uid: 7893
components:
- type: Transform
- pos: -30.5,-39.5
+ pos: -98.5,-9.5
parent: 2
- - uid: 2326
+ - uid: 7894
components:
- type: Transform
- pos: -26.5,-39.5
+ pos: -98.5,-10.5
parent: 2
- - uid: 2329
+ - uid: 7895
components:
- type: Transform
- pos: -92.5,115.5
+ pos: -98.5,-8.5
parent: 2
- - uid: 2335
+ - uid: 7926
components:
- type: Transform
- pos: -91.5,116.5
+ pos: 61.5,-32.5
parent: 2
- - uid: 2354
+ - uid: 7927
components:
- type: Transform
- pos: -90.5,116.5
+ pos: 60.5,-32.5
parent: 2
- - uid: 2367
+ - uid: 7942
components:
- type: Transform
- pos: -89.5,116.5
+ pos: -102.5,15.5
parent: 2
- - uid: 2375
+ - uid: 7943
components:
- type: Transform
- pos: -88.5,117.5
+ pos: -103.5,15.5
parent: 2
- - uid: 2380
+ - uid: 7945
components:
- type: Transform
- pos: 16.5,-19.5
+ pos: -105.5,14.5
parent: 2
- - uid: 2385
+ - uid: 7947
components:
- type: Transform
- pos: -61.5,6.5
+ pos: -107.5,12.5
parent: 2
- - uid: 2391
+ - uid: 7948
components:
- type: Transform
- pos: -12.5,-43.5
+ pos: -107.5,11.5
parent: 2
- - uid: 2396
+ - uid: 7954
components:
- type: Transform
- pos: 76.5,-22.5
+ pos: -107.5,5.5
parent: 2
- - uid: 2397
+ - uid: 7955
components:
- type: Transform
- pos: 74.5,-22.5
+ pos: -106.5,3.5
parent: 2
- - uid: 2405
+ - uid: 7956
components:
- type: Transform
- pos: 75.5,-22.5
+ pos: -107.5,4.5
parent: 2
- - uid: 2435
+ - uid: 7957
components:
- type: Transform
- pos: 48.5,-35.5
+ pos: -105.5,2.5
parent: 2
- - uid: 2466
+ - uid: 7958
components:
- type: Transform
- pos: 8.5,-40.5
+ pos: -104.5,2.5
parent: 2
- - uid: 2467
+ - uid: 7967
components:
- type: Transform
- pos: -1.5,-46.5
+ pos: -24.5,60.5
parent: 2
- - uid: 2471
+ - uid: 7973
components:
- type: Transform
- pos: 6.5,-44.5
+ pos: 44.5,81.5
parent: 2
- - uid: 2480
+ - uid: 7974
components:
- type: Transform
- pos: -1.5,-45.5
+ pos: 46.5,81.5
parent: 2
- - uid: 2481
+ - uid: 7977
components:
- type: Transform
- pos: -88.5,115.5
+ pos: 43.5,81.5
parent: 2
- - uid: 2482
+ - uid: 7979
components:
- type: Transform
- pos: -2.5,-44.5
+ pos: 45.5,81.5
parent: 2
- - uid: 2501
+ - uid: 7984
components:
- type: Transform
- pos: -4.5,-44.5
+ pos: 18.5,80.5
parent: 2
- - uid: 2548
+ - uid: 7994
components:
- type: Transform
- pos: -79.5,-14.5
+ pos: 32.5,76.5
parent: 2
- - uid: 2550
+ - uid: 7995
components:
- type: Transform
- pos: -89.5,-14.5
+ pos: 17.5,80.5
parent: 2
- - uid: 2560
+ - uid: 7997
components:
- type: Transform
- pos: 4.5,-46.5
+ pos: 41.5,76.5
parent: 2
- - uid: 2562
+ - uid: 7998
components:
- type: Transform
- pos: 4.5,-47.5
+ pos: 30.5,76.5
parent: 2
- - uid: 2563
+ - uid: 8000
components:
- type: Transform
- pos: -78.5,-13.5
+ pos: 31.5,76.5
parent: 2
- - uid: 2564
+ - uid: 8001
components:
- type: Transform
- pos: 5.5,-44.5
+ pos: 29.5,76.5
parent: 2
- - uid: 2565
+ - uid: 8003
components:
- type: Transform
- pos: 7.5,-44.5
+ pos: 27.5,76.5
parent: 2
- - uid: 2566
+ - uid: 8004
components:
- type: Transform
- pos: 8.5,-42.5
+ pos: 36.5,76.5
parent: 2
- - uid: 2567
+ - uid: 8005
components:
- type: Transform
- pos: 8.5,-43.5
+ pos: 33.5,76.5
parent: 2
- - uid: 2569
+ - uid: 8006
components:
- type: Transform
- pos: 4.5,-45.5
+ pos: 50.5,77.5
parent: 2
- - uid: 2571
+ - uid: 8023
components:
- type: Transform
- pos: -1.5,-47.5
+ pos: 25.5,76.5
parent: 2
- - uid: 2574
+ - uid: 8028
components:
- type: Transform
- pos: -3.5,-44.5
+ pos: 24.5,76.5
parent: 2
- - uid: 2577
+ - uid: 8029
components:
- type: Transform
- pos: 8.5,-41.5
+ pos: 23.5,81.5
parent: 2
- - uid: 2608
+ - uid: 8032
components:
- type: Transform
- pos: 28.5,42.5
+ pos: 22.5,81.5
parent: 2
- - uid: 2640
+ - uid: 8033
components:
- type: Transform
- pos: 8.5,36.5
+ pos: 29.5,44.5
parent: 2
- - uid: 2642
+ - uid: 8036
components:
- type: Transform
- pos: -2.5,61.5
+ pos: -89.5,-6.5
parent: 2
- - uid: 2644
+ - uid: 8038
components:
- type: Transform
- pos: 10.5,41.5
+ pos: -88.5,-6.5
parent: 2
- - uid: 2650
+ - uid: 8039
components:
- type: Transform
- pos: 12.5,55.5
+ pos: -87.5,-6.5
parent: 2
- - uid: 2661
+ - uid: 8041
components:
- type: Transform
- pos: 14.5,60.5
+ pos: -86.5,-6.5
parent: 2
- - uid: 2663
+ - uid: 8042
components:
- type: Transform
- pos: 8.5,35.5
+ pos: -85.5,-6.5
parent: 2
- - uid: 2685
+ - uid: 8043
components:
- type: Transform
- pos: 22.5,47.5
+ pos: -84.5,-6.5
parent: 2
- - uid: 2725
+ - uid: 8044
components:
- type: Transform
- pos: -77.5,-11.5
+ pos: -83.5,-6.5
parent: 2
- - uid: 2726
+ - uid: 8045
components:
- type: Transform
- pos: -90.5,30.5
+ pos: -82.5,-6.5
parent: 2
- - uid: 2740
+ - uid: 8046
components:
- type: Transform
- pos: 26.5,57.5
+ pos: -81.5,-6.5
parent: 2
- - uid: 2759
+ - uid: 8047
components:
- type: Transform
- pos: 78.5,-20.5
+ pos: -80.5,-6.5
parent: 2
- - uid: 2760
+ - uid: 8048
components:
- type: Transform
- pos: 78.5,-21.5
+ pos: -79.5,-6.5
parent: 2
- - uid: 2765
+ - uid: 8051
components:
- type: Transform
- pos: 30.5,55.5
+ pos: -99.5,12.5
parent: 2
- - uid: 2770
+ - uid: 8052
components:
- type: Transform
- pos: 27.5,57.5
+ pos: -99.5,11.5
parent: 2
- - uid: 2774
+ - uid: 8053
components:
- type: Transform
- pos: 28.5,57.5
+ pos: -99.5,10.5
parent: 2
- - uid: 2779
+ - uid: 8054
components:
- type: Transform
- pos: 23.5,47.5
+ pos: -99.5,9.5
parent: 2
- - uid: 2781
+ - uid: 8055
components:
- type: Transform
- pos: 78.5,-19.5
+ pos: -99.5,8.5
parent: 2
- - uid: 2785
+ - uid: 8056
components:
- type: Transform
- pos: 81.5,-2.5
+ pos: -99.5,7.5
parent: 2
- - uid: 2788
+ - uid: 8057
components:
- type: Transform
- pos: -24.5,57.5
+ pos: -99.5,6.5
parent: 2
- - uid: 2828
+ - uid: 8058
components:
- type: Transform
- pos: -79.5,31.5
+ pos: -99.5,5.5
parent: 2
- - uid: 2829
+ - uid: 8059
components:
- type: Transform
- pos: 81.5,-4.5
+ pos: -99.5,4.5
parent: 2
- - uid: 2838
+ - uid: 8060
components:
- type: Transform
- pos: 41.5,52.5
+ pos: -99.5,3.5
parent: 2
- - uid: 2840
+ - uid: 8063
components:
- type: Transform
- pos: 45.5,52.5
+ pos: -89.5,23.5
parent: 2
- - uid: 2854
+ - uid: 8064
components:
- type: Transform
- pos: 12.5,58.5
+ pos: -88.5,23.5
parent: 2
- - uid: 2855
+ - uid: 8065
components:
- type: Transform
- pos: -1.5,49.5
+ pos: -87.5,23.5
parent: 2
- - uid: 2857
+ - uid: 8066
components:
- type: Transform
- pos: 44.5,52.5
+ pos: -86.5,23.5
parent: 2
- - uid: 2858
+ - uid: 8067
components:
- type: Transform
- pos: 43.5,52.5
+ pos: 44.5,77.5
parent: 2
- - uid: 2861
+ - uid: 8068
components:
- type: Transform
- pos: 24.5,58.5
+ pos: -84.5,23.5
parent: 2
- - uid: 2867
+ - uid: 8069
components:
- type: Transform
- pos: 12.5,56.5
+ pos: 42.5,77.5
parent: 2
- - uid: 2876
+ - uid: 8070
components:
- type: Transform
- pos: -50.5,6.5
+ pos: -82.5,23.5
parent: 2
- - uid: 2903
+ - uid: 8071
components:
- type: Transform
- pos: 81.5,-0.5
+ pos: -81.5,23.5
parent: 2
- - uid: 2915
+ - uid: 8072
components:
- type: Transform
- pos: 39.5,52.5
+ pos: -80.5,23.5
parent: 2
- - uid: 2917
+ - uid: 8073
components:
- type: Transform
- pos: 7.5,-56.5
+ pos: -79.5,23.5
parent: 2
- - uid: 2918
+ - uid: 8076
components:
- type: Transform
- pos: -24.5,58.5
+ pos: 52.5,77.5
parent: 2
- - uid: 2920
+ - uid: 8086
components:
- type: Transform
- pos: -87.5,115.5
+ pos: 35.5,81.5
parent: 2
- - uid: 2922
+ - uid: 8097
components:
- type: Transform
- pos: -86.5,115.5
+ pos: 47.5,80.5
parent: 2
- - uid: 2924
+ - uid: 8102
components:
- type: Transform
- pos: -85.5,115.5
+ pos: 48.5,80.5
parent: 2
- - uid: 2942
+ - uid: 8104
components:
- type: Transform
- pos: -83.5,115.5
+ pos: 49.5,80.5
parent: 2
- - uid: 2964
+ - uid: 8123
components:
- type: Transform
- pos: -30.5,-1.5
+ pos: 51.5,79.5
parent: 2
- - uid: 2971
+ - uid: 8124
components:
- type: Transform
- pos: -30.5,-2.5
+ pos: 56.5,-32.5
parent: 2
- - uid: 2974
+ - uid: 8134
components:
- type: Transform
- pos: -30.5,5.5
+ pos: 66.5,43.5
parent: 2
- - uid: 2975
+ - uid: 8272
components:
- type: Transform
- pos: -30.5,7.5
+ pos: -47.5,38.5
parent: 2
- - uid: 2976
+ - uid: 8275
components:
- type: Transform
- pos: -30.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,11.5
parent: 2
- - uid: 2977
+ - uid: 8505
components:
- type: Transform
- pos: -30.5,-0.5
+ pos: 86.5,-28.5
parent: 2
- - uid: 2979
+ - uid: 8506
components:
- type: Transform
- pos: -20.5,-17.5
+ pos: 86.5,-29.5
parent: 2
- - uid: 2981
+ - uid: 8508
components:
- type: Transform
- pos: -21.5,-17.5
+ pos: 87.5,-29.5
parent: 2
- - uid: 2989
+ - uid: 8510
components:
- type: Transform
- pos: -19.5,-17.5
+ pos: 78.5,-39.5
parent: 2
- - uid: 3000
+ - uid: 8511
components:
- type: Transform
- pos: -82.5,115.5
+ pos: 86.5,-31.5
parent: 2
- - uid: 3059
+ - uid: 8513
components:
- type: Transform
- pos: -81.5,115.5
+ pos: 86.5,-30.5
parent: 2
- - uid: 3090
+ - uid: 8519
components:
- type: Transform
- pos: 33.5,-19.5
+ pos: 87.5,-33.5
parent: 2
- - uid: 3096
+ - uid: 8525
components:
- type: Transform
- pos: 7.5,-55.5
+ pos: 87.5,-35.5
parent: 2
- - uid: 3141
+ - uid: 8526
components:
- type: Transform
- pos: 16.5,-21.5
+ pos: 88.5,-36.5
parent: 2
- - uid: 3159
+ - uid: 8527
components:
- type: Transform
- pos: 19.5,-37.5
+ pos: 88.5,-35.5
parent: 2
- - uid: 3161
+ - uid: 8528
components:
- type: Transform
- pos: 16.5,-37.5
+ pos: 87.5,-37.5
parent: 2
- - uid: 3162
+ - uid: 8529
components:
- type: Transform
- pos: 20.5,-37.5
+ pos: 87.5,-38.5
parent: 2
- - uid: 3164
+ - uid: 8530
components:
- type: Transform
- pos: 17.5,-37.5
+ pos: 85.5,-38.5
parent: 2
- - uid: 3167
+ - uid: 8533
components:
- type: Transform
- pos: 15.5,-37.5
+ pos: 84.5,-38.5
parent: 2
- - uid: 3189
+ - uid: 8541
components:
- type: Transform
- pos: 18.5,-37.5
+ pos: 83.5,-38.5
parent: 2
- - uid: 3198
+ - uid: 8548
components:
- type: Transform
- pos: -80.5,115.5
+ pos: 81.5,-38.5
parent: 2
- - uid: 3214
+ - uid: 8555
components:
- type: Transform
- pos: -66.5,-18.5
+ pos: 80.5,-38.5
parent: 2
- - uid: 3216
+ - uid: 8561
components:
- type: Transform
- pos: 7.5,-54.5
+ pos: 77.5,-39.5
parent: 2
- - uid: 3221
+ - uid: 8572
components:
- type: Transform
- pos: 9.5,-56.5
+ pos: 76.5,-39.5
parent: 2
- - uid: 3222
+ - uid: 8576
components:
- type: Transform
- pos: 9.5,-55.5
+ pos: 75.5,-39.5
parent: 2
- - uid: 3223
+ - uid: 8578
components:
- type: Transform
- pos: -79.5,115.5
+ pos: 75.5,-40.5
parent: 2
- - uid: 3225
+ - uid: 8581
components:
- type: Transform
- pos: -1.5,54.5
+ pos: 74.5,-41.5
parent: 2
- - uid: 3226
+ - uid: 8582
components:
- type: Transform
- pos: 6.5,57.5
+ pos: 73.5,-42.5
parent: 2
- - uid: 3254
+ - uid: 8585
components:
- type: Transform
- pos: -17.5,-18.5
+ pos: 73.5,-44.5
parent: 2
- - uid: 3260
+ - uid: 8587
components:
- type: Transform
- pos: -14.5,-26.5
+ pos: 74.5,-46.5
parent: 2
- - uid: 3261
+ - uid: 8590
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: 74.5,-47.5
parent: 2
- - uid: 3262
+ - uid: 8592
components:
- type: Transform
- pos: -8.5,-26.5
+ pos: 74.5,-48.5
parent: 2
- - uid: 3263
+ - uid: 8593
components:
- type: Transform
- pos: -23.5,-18.5
+ pos: 73.5,-49.5
parent: 2
- - uid: 3264
+ - uid: 8600
components:
- type: Transform
- pos: -23.5,-19.5
+ pos: 16.5,19.5
parent: 2
- - uid: 3265
+ - uid: 8603
components:
- type: Transform
- pos: -15.5,-17.5
+ pos: 73.5,-50.5
parent: 2
- - uid: 3270
+ - uid: 8607
components:
- type: Transform
- pos: -78.5,115.5
+ pos: 73.5,-51.5
parent: 2
- - uid: 3274
+ - uid: 8611
components:
- type: Transform
- pos: -77.5,115.5
+ pos: 73.5,-52.5
parent: 2
- - uid: 3290
+ - uid: 8612
components:
- type: Transform
- pos: -76.5,115.5
+ pos: 74.5,-54.5
parent: 2
- - uid: 3326
+ - uid: 8615
components:
- type: Transform
- pos: 21.5,-37.5
+ pos: 74.5,-55.5
parent: 2
- - uid: 3328
+ - uid: 8618
components:
- type: Transform
- pos: 14.5,-37.5
+ pos: 73.5,-57.5
parent: 2
- - uid: 3331
+ - uid: 8619
components:
- type: Transform
- pos: -75.5,115.5
+ pos: 73.5,-58.5
parent: 2
- - uid: 3338
+ - uid: 8625
components:
- type: Transform
- pos: -21.5,-26.5
+ pos: 73.5,-59.5
parent: 2
- - uid: 3346
+ - uid: 8627
components:
- type: Transform
- pos: -17.5,-29.5
+ pos: 73.5,-60.5
parent: 2
- - uid: 3350
+ - uid: 8628
components:
- type: Transform
- pos: -15.5,-26.5
+ pos: 73.5,-55.5
parent: 2
- - uid: 3417
+ - uid: 8629
components:
- type: Transform
- pos: 14.5,59.5
+ pos: 73.5,-62.5
parent: 2
- - uid: 3431
+ - uid: 8630
components:
- type: Transform
- pos: 13.5,59.5
+ pos: 73.5,-63.5
parent: 2
- - uid: 3482
+ - uid: 8631
components:
- type: Transform
- pos: 27.5,-28.5
+ pos: 73.5,-64.5
parent: 2
- - uid: 3484
+ - uid: 8632
components:
- type: Transform
- pos: 27.5,-30.5
+ pos: 73.5,-65.5
parent: 2
- - uid: 3485
+ - uid: 8633
components:
- type: Transform
- pos: 27.5,-29.5
+ pos: 73.5,-66.5
parent: 2
- - uid: 3496
+ - uid: 8634
components:
- type: Transform
- pos: 35.5,-35.5
+ pos: 74.5,-67.5
parent: 2
- - uid: 3497
+ - uid: 8635
components:
- type: Transform
- pos: 33.5,-35.5
+ pos: 76.5,-67.5
parent: 2
- - uid: 3498
+ - uid: 8667
components:
- type: Transform
- pos: 31.5,-35.5
+ pos: 78.5,-68.5
parent: 2
- - uid: 3499
+ - uid: 8683
components:
- type: Transform
- pos: 36.5,-35.5
+ pos: 79.5,-68.5
parent: 2
- - uid: 3500
+ - uid: 8684
components:
- type: Transform
- pos: 38.5,-35.5
+ pos: 79.5,-69.5
parent: 2
- - uid: 3501
+ - uid: 8685
components:
- type: Transform
- pos: 34.5,-35.5
+ pos: 79.5,-71.5
parent: 2
- - uid: 3503
+ - uid: 8686
components:
- type: Transform
- pos: 37.5,-35.5
+ pos: 80.5,-73.5
parent: 2
- - uid: 3536
+ - uid: 8687
components:
- type: Transform
- pos: 29.5,-35.5
+ pos: 80.5,-74.5
parent: 2
- - uid: 3537
+ - uid: 8688
components:
- type: Transform
- pos: 30.5,-35.5
+ pos: 80.5,-75.5
parent: 2
- - uid: 3538
+ - uid: 8689
components:
- type: Transform
- pos: 32.5,-35.5
+ pos: 80.5,-76.5
parent: 2
- - uid: 3546
+ - uid: 8696
components:
- type: Transform
- pos: -73.5,115.5
+ pos: -57.5,42.5
parent: 2
- - uid: 3549
+ - uid: 8697
components:
- type: Transform
- pos: -71.5,115.5
+ pos: -58.5,42.5
parent: 2
- - uid: 3572
+ - uid: 8705
components:
- type: Transform
- pos: 47.5,12.5
+ pos: -56.5,18.5
parent: 2
- - uid: 3618
+ - uid: 8710
components:
- type: Transform
- pos: -70.5,115.5
+ pos: -56.5,17.5
parent: 2
- - uid: 3626
+ - uid: 8711
components:
- type: Transform
- pos: 43.5,-15.5
+ pos: -56.5,19.5
parent: 2
- - uid: 3629
+ - uid: 8718
components:
- type: Transform
- pos: 48.5,-8.5
+ pos: -21.5,23.5
parent: 2
- - uid: 3636
+ - uid: 8719
components:
- type: Transform
- pos: 41.5,-15.5
+ pos: -29.5,23.5
parent: 2
- - uid: 3638
+ - uid: 8728
components:
- type: Transform
- pos: 48.5,-7.5
+ pos: 80.5,-77.5
parent: 2
- - uid: 3639
+ - uid: 8735
components:
- type: Transform
- pos: 42.5,-15.5
+ pos: -30.5,23.5
parent: 2
- - uid: 3643
+ - uid: 8762
components:
- type: Transform
- pos: -69.5,115.5
+ pos: 80.5,-78.5
parent: 2
- - uid: 3644
+ - uid: 8776
components:
- type: Transform
- pos: 47.5,4.5
+ pos: 80.5,-79.5
parent: 2
- - uid: 3645
+ - uid: 8794
components:
- type: Transform
- pos: 47.5,3.5
+ pos: -56.5,22.5
parent: 2
- - uid: 3646
+ - uid: 8804
components:
- type: Transform
- pos: 47.5,11.5
+ pos: -56.5,27.5
parent: 2
- - uid: 3647
+ - uid: 8805
components:
- type: Transform
- pos: 47.5,10.5
+ pos: -56.5,23.5
parent: 2
- - uid: 3648
+ - uid: 8806
components:
- type: Transform
- pos: 47.5,5.5
+ pos: -56.5,26.5
parent: 2
- - uid: 3649
+ - uid: 8829
components:
- type: Transform
- pos: -68.5,114.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,18.5
parent: 2
- - uid: 3664
+ - uid: 8837
components:
- type: Transform
- pos: -50.5,35.5
+ pos: -47.5,24.5
parent: 2
- - uid: 3674
+ - uid: 8855
components:
- type: Transform
- pos: -0.5,63.5
+ pos: 68.5,-93.5
parent: 2
- - uid: 3677
+ - uid: 8876
components:
- type: Transform
- pos: -58.5,21.5
+ pos: -62.5,21.5
parent: 2
- - uid: 3706
+ - uid: 8891
components:
- type: Transform
- pos: -35.5,5.5
+ pos: -61.5,21.5
parent: 2
- - uid: 3718
+ - uid: 8892
components:
- type: Transform
- pos: -67.5,114.5
+ pos: -60.5,21.5
parent: 2
- - uid: 3747
+ - uid: 8893
components:
- type: Transform
- pos: -66.5,115.5
+ pos: -59.5,21.5
parent: 2
- - uid: 3748
+ - uid: 8909
components:
- type: Transform
- pos: -65.5,115.5
+ pos: -50.5,33.5
parent: 2
- - uid: 3750
+ - uid: 8913
components:
- type: Transform
- pos: -63.5,115.5
+ pos: -51.5,24.5
parent: 2
- - uid: 3751
+ - uid: 8927
components:
- type: Transform
- pos: -62.5,114.5
+ pos: -57.5,29.5
parent: 2
- - uid: 3752
+ - uid: 8928
components:
- type: Transform
- pos: -61.5,113.5
+ pos: -57.5,30.5
parent: 2
- - uid: 3753
+ - uid: 8937
components:
- type: Transform
- pos: -61.5,112.5
+ pos: -50.5,24.5
parent: 2
- - uid: 3759
+ - uid: 8949
components:
- type: Transform
- pos: -61.5,111.5
+ pos: -48.5,24.5
parent: 2
- - uid: 3792
+ - uid: 8965
components:
- type: Transform
- pos: -61.5,110.5
+ pos: -58.5,33.5
parent: 2
- - uid: 3794
+ - uid: 8969
components:
- type: Transform
- pos: -16.5,-17.5
+ pos: -50.5,34.5
parent: 2
- - uid: 3797
+ - uid: 9059
components:
- type: Transform
- pos: 44.5,-35.5
+ pos: -55.5,42.5
parent: 2
- - uid: 3799
+ - uid: 9061
components:
- type: Transform
- pos: -61.5,109.5
+ pos: -46.5,32.5
parent: 2
- - uid: 3805
+ - uid: 9062
components:
- type: Transform
- pos: -62.5,109.5
+ pos: -47.5,32.5
parent: 2
- - uid: 3813
+ - uid: 9071
components:
- type: Transform
- pos: -14.5,-37.5
+ pos: -28.5,23.5
parent: 2
- - uid: 3822
+ - uid: 9100
components:
- type: Transform
- pos: 51.5,20.5
+ pos: 80.5,-81.5
parent: 2
- - uid: 3836
+ - uid: 9109
components:
- type: Transform
- pos: -33.5,52.5
+ pos: 116.5,6.5
parent: 2
- - uid: 3837
+ - uid: 9113
components:
- type: Transform
- pos: 41.5,40.5
+ pos: -25.5,23.5
parent: 2
- - uid: 3838
+ - uid: 9114
components:
- type: Transform
- pos: 51.5,14.5
+ pos: -26.5,23.5
parent: 2
- - uid: 3839
+ - uid: 9117
components:
- type: Transform
- pos: -62.5,108.5
+ pos: 81.5,-82.5
parent: 2
- - uid: 3841
+ - uid: 9118
components:
- type: Transform
- pos: 54.5,-33.5
+ pos: 81.5,-83.5
parent: 2
- - uid: 3845
+ - uid: 9122
components:
- type: Transform
- pos: 51.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,18.5
parent: 2
- - uid: 3846
+ - uid: 9153
components:
- type: Transform
- pos: 51.5,13.5
+ pos: -106.5,-11.5
parent: 2
- - uid: 3847
+ - uid: 9154
components:
- type: Transform
- pos: -32.5,52.5
+ pos: -105.5,-12.5
parent: 2
- - uid: 3850
+ - uid: 9155
components:
- type: Transform
- pos: -31.5,52.5
+ pos: 81.5,-84.5
parent: 2
- - uid: 3859
+ - uid: 9172
components:
- type: Transform
- pos: 42.5,-20.5
+ pos: 81.5,-85.5
parent: 2
- - uid: 3860
+ - uid: 9179
components:
- type: Transform
- pos: 39.5,-20.5
+ pos: 80.5,-85.5
parent: 2
- - uid: 3862
+ - uid: 9181
components:
- type: Transform
- pos: 41.5,-20.5
+ pos: 80.5,-86.5
parent: 2
- - uid: 3868
+ - uid: 9183
components:
- type: Transform
- pos: 61.5,9.5
+ pos: -49.5,47.5
parent: 2
- - uid: 3870
+ - uid: 9184
components:
- type: Transform
- pos: 51.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,10.5
parent: 2
- - uid: 3873
+ - uid: 9185
components:
- type: Transform
- pos: 58.5,1.5
+ pos: -45.5,47.5
parent: 2
- - uid: 3874
+ - uid: 9186
components:
- type: Transform
- pos: 59.5,1.5
+ pos: 80.5,-87.5
parent: 2
- - uid: 3876
+ - uid: 9189
components:
- type: Transform
- pos: 63.5,1.5
+ pos: 79.5,-88.5
parent: 2
- - uid: 3878
+ - uid: 9191
components:
- type: Transform
- pos: 52.5,-3.5
+ pos: -41.5,47.5
parent: 2
- - uid: 3880
+ - uid: 9192
components:
- type: Transform
- pos: 52.5,0.5
+ pos: -39.5,47.5
parent: 2
- - uid: 3890
+ - uid: 9193
components:
- type: Transform
- pos: 52.5,-7.5
+ pos: -47.5,47.5
parent: 2
- - uid: 3891
+ - uid: 9194
components:
- type: Transform
- pos: -62.5,107.5
+ pos: 79.5,-89.5
parent: 2
- - uid: 3895
+ - uid: 9195
components:
- type: Transform
- pos: -62.5,106.5
+ pos: 79.5,-91.5
parent: 2
- - uid: 3896
+ - uid: 9196
components:
- type: Transform
- pos: -62.5,105.5
+ pos: 77.5,-91.5
parent: 2
- - uid: 3901
+ - uid: 9198
components:
- type: Transform
- pos: 66.5,1.5
+ pos: 77.5,-92.5
parent: 2
- - uid: 3904
+ - uid: 9199
components:
- type: Transform
- pos: 51.5,12.5
+ pos: 76.5,-92.5
parent: 2
- - uid: 3905
+ - uid: 9200
components:
- type: Transform
- pos: -106.5,27.5
+ pos: -103.5,-13.5
parent: 2
- - uid: 3909
+ - uid: 9201
components:
- type: Transform
- pos: -105.5,29.5
+ pos: -106.5,-10.5
parent: 2
- - uid: 3910
+ - uid: 9202
components:
- type: Transform
- pos: 54.5,-35.5
+ pos: 74.5,-93.5
parent: 2
- - uid: 3918
+ - uid: 9203
components:
- type: Transform
- pos: 52.5,-13.5
+ pos: 73.5,-93.5
parent: 2
- - uid: 3919
+ - uid: 9205
components:
- type: Transform
- pos: 53.5,-11.5
+ pos: 72.5,-93.5
parent: 2
- - uid: 3921
+ - uid: 9210
components:
- type: Transform
- pos: 38.5,-20.5
+ pos: -104.5,-13.5
parent: 2
- - uid: 3924
+ - uid: 9211
components:
- type: Transform
- pos: 43.5,-20.5
+ pos: 71.5,-93.5
parent: 2
- - uid: 3931
+ - uid: 9215
components:
- type: Transform
- pos: -106.5,28.5
+ pos: -24.5,23.5
parent: 2
- - uid: 3938
+ - uid: 9221
components:
- type: Transform
- pos: -61.5,106.5
+ pos: 41.5,58.5
parent: 2
- - uid: 3939
+ - uid: 9222
components:
- type: Transform
- pos: -62.5,96.5
+ pos: 70.5,-93.5
parent: 2
- - uid: 3940
+ - uid: 9225
components:
- type: Transform
- pos: -62.5,102.5
+ pos: 49.5,52.5
parent: 2
- - uid: 3942
+ - uid: 9245
components:
- type: Transform
- pos: -104.5,30.5
+ pos: 47.5,-10.5
parent: 2
- - uid: 3950
+ - uid: 9258
components:
- type: Transform
- pos: -34.5,-13.5
+ pos: 47.5,58.5
parent: 2
- - uid: 3951
+ - uid: 9261
components:
- type: Transform
- pos: 41.5,44.5
+ pos: 69.5,-93.5
parent: 2
- - uid: 3953
+ - uid: 9266
components:
- type: Transform
- pos: -34.5,-16.5
+ pos: 37.5,58.5
parent: 2
- - uid: 3977
+ - uid: 9267
components:
- type: Transform
- pos: 41.5,42.5
+ pos: 43.5,58.5
parent: 2
- - uid: 3980
+ - uid: 9276
components:
- type: Transform
- pos: 27.5,22.5
+ pos: 66.5,-93.5
parent: 2
- - uid: 3984
+ - uid: 9281
components:
- type: Transform
- pos: -62.5,101.5
+ pos: -98.5,-4.5
parent: 2
- - uid: 3986
+ - uid: 9282
components:
- type: Transform
- pos: 28.5,22.5
+ pos: -98.5,-5.5
parent: 2
- - uid: 3994
+ - uid: 9283
components:
- type: Transform
- pos: 40.5,-30.5
+ pos: -98.5,-3.5
parent: 2
- - uid: 4000
+ - uid: 9284
components:
- type: Transform
- pos: -62.5,100.5
+ pos: -98.5,-2.5
parent: 2
- - uid: 4012
+ - uid: 9285
components:
- type: Transform
- pos: -45.5,66.5
+ pos: -98.5,-7.5
parent: 2
- - uid: 4023
+ - uid: 9290
components:
- type: Transform
- pos: 59.5,9.5
+ pos: -43.5,47.5
parent: 2
- - uid: 4057
+ - uid: 9292
components:
- type: Transform
- pos: -101.5,31.5
+ pos: 35.5,52.5
parent: 2
- - uid: 4111
+ - uid: 9294
components:
- type: Transform
- pos: 41.5,39.5
+ pos: 64.5,-93.5
parent: 2
- - uid: 4120
+ - uid: 9296
components:
- type: Transform
- pos: -106.5,21.5
+ pos: 63.5,-93.5
parent: 2
- - uid: 4140
+ - uid: 9297
components:
- type: Transform
- pos: -102.5,17.5
+ pos: 62.5,-93.5
parent: 2
- - uid: 4145
+ - uid: 9304
components:
- type: Transform
- pos: 55.5,9.5
+ pos: 34.5,52.5
parent: 2
- - uid: 4147
+ - uid: 9306
components:
- type: Transform
- pos: 42.5,54.5
+ pos: -89.5,31.5
parent: 2
- - uid: 4149
+ - uid: 9320
components:
- type: Transform
- pos: -102.5,31.5
+ pos: 117.5,8.5
parent: 2
- - uid: 4153
+ - uid: 9330
components:
- type: Transform
- pos: 57.5,9.5
+ pos: 117.5,9.5
parent: 2
- - uid: 4154
+ - uid: 9338
components:
- type: Transform
- pos: 42.5,56.5
+ pos: -99.5,-14.5
parent: 2
- - uid: 4166
+ - uid: 9343
components:
- type: Transform
- pos: 36.5,55.5
+ pos: -98.5,-6.5
parent: 2
- - uid: 4176
+ - uid: 9353
components:
- type: Transform
- pos: -101.5,-14.5
+ pos: -54.5,42.5
parent: 2
- - uid: 4178
+ - uid: 9377
components:
- type: Transform
- pos: -62.5,99.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-14.5
parent: 2
- - uid: 4179
+ - uid: 9404
components:
- type: Transform
- pos: -63.5,101.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-8.5
parent: 2
- - uid: 4182
+ - uid: 9463
components:
- type: Transform
- pos: 36.5,54.5
+ pos: -39.5,52.5
parent: 2
- - uid: 4188
+ - uid: 9464
components:
- type: Transform
- pos: 48.5,54.5
+ pos: -41.5,52.5
parent: 2
- - uid: 4189
+ - uid: 9465
components:
- type: Transform
- pos: 36.5,56.5
+ pos: -43.5,52.5
parent: 2
- - uid: 4193
+ - uid: 9466
components:
- type: Transform
- pos: 48.5,55.5
+ pos: -45.5,52.5
parent: 2
- - uid: 4194
+ - uid: 9467
components:
- type: Transform
- pos: 54.5,-34.5
+ pos: -47.5,52.5
parent: 2
- - uid: 4198
+ - uid: 9468
components:
- type: Transform
- pos: 48.5,56.5
+ pos: -49.5,52.5
parent: 2
- - uid: 4200
+ - uid: 9481
components:
- type: Transform
- pos: 42.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-3.5
parent: 2
- - uid: 4202
+ - uid: 9496
components:
- type: Transform
- pos: 42.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-12.5
parent: 2
- - uid: 4206
+ - uid: 9527
components:
- type: Transform
- pos: 62.5,1.5
+ pos: -66.5,-14.5
parent: 2
- - uid: 4207
+ - uid: 9535
components:
- type: Transform
- pos: 60.5,1.5
+ pos: -66.5,-15.5
parent: 2
- - uid: 4208
+ - uid: 9555
components:
- type: Transform
- pos: 61.5,1.5
+ pos: -90.5,-13.5
parent: 2
- - uid: 4209
+ - uid: 9559
components:
- type: Transform
- pos: -62.5,95.5
+ pos: -104.5,15.5
parent: 2
- - uid: 4214
+ - uid: 9579
components:
- type: Transform
- pos: -100.5,31.5
+ pos: -91.5,-11.5
parent: 2
- - uid: 4216
+ - uid: 9580
components:
- type: Transform
- pos: -103.5,30.5
+ pos: -106.5,2.5
parent: 2
- - uid: 4248
+ - uid: 9582
components:
- type: Transform
- pos: 40.5,-31.5
+ pos: -107.5,3.5
parent: 2
- - uid: 4250
+ - uid: 9583
components:
- type: Transform
- pos: 65.5,9.5
+ pos: 61.5,-94.5
parent: 2
- - uid: 4252
+ - uid: 9623
components:
- type: Transform
- pos: 65.5,25.5
+ pos: -55.5,48.5
parent: 2
- - uid: 4254
+ - uid: 9647
components:
- type: Transform
- pos: 63.5,25.5
+ pos: 60.5,-94.5
parent: 2
- - uid: 4256
+ - uid: 9652
components:
- type: Transform
- pos: 61.5,25.5
+ pos: 4.5,53.5
parent: 2
- - uid: 4258
+ - uid: 9653
components:
- type: Transform
- pos: 57.5,25.5
+ pos: 4.5,55.5
parent: 2
- - uid: 4263
+ - uid: 9660
components:
- type: Transform
- pos: 55.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,17.5
parent: 2
- - uid: 4288
+ - uid: 9677
components:
- type: Transform
- pos: 63.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-6.5
parent: 2
- - uid: 4292
+ - uid: 9681
components:
- type: Transform
- pos: 33.5,-20.5
+ pos: -107.5,13.5
parent: 2
- - uid: 4307
+ - uid: 9687
components:
- type: Transform
- pos: -62.5,94.5
+ pos: -53.5,42.5
parent: 2
- - uid: 4310
+ - uid: 9721
components:
- type: Transform
- pos: 37.5,-19.5
+ pos: 59.5,-94.5
parent: 2
- - uid: 4318
+ - uid: 9722
components:
- type: Transform
- pos: -62.5,93.5
+ pos: 58.5,-94.5
parent: 2
- - uid: 4319
+ - uid: 9785
components:
- type: Transform
- pos: -62.5,92.5
+ pos: 57.5,-94.5
parent: 2
- - uid: 4320
+ - uid: 9818
components:
- type: Transform
- pos: -62.5,90.5
+ pos: 56.5,-94.5
parent: 2
- - uid: 4321
+ - uid: 9819
components:
- type: Transform
- pos: -62.5,87.5
+ pos: 55.5,-94.5
parent: 2
- - uid: 4322
+ - uid: 9822
components:
- type: Transform
- pos: -61.5,86.5
+ pos: 54.5,-94.5
parent: 2
- - uid: 4325
+ - uid: 9840
components:
- type: Transform
- pos: -61.5,85.5
+ pos: 53.5,-94.5
parent: 2
- - uid: 4326
+ - uid: 9848
components:
- type: Transform
- pos: -62.5,84.5
+ pos: 51.5,-94.5
parent: 2
- - uid: 4327
+ - uid: 9860
components:
- type: Transform
- pos: -63.5,83.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-1.5
parent: 2
- - uid: 4351
+ - uid: 9917
components:
- type: Transform
- pos: 40.5,-29.5
+ pos: 104.5,-30.5
parent: 2
- - uid: 4352
+ - uid: 9927
components:
- type: Transform
- pos: 40.5,-28.5
+ pos: 99.5,-30.5
parent: 2
- - uid: 4353
+ - uid: 9928
components:
- type: Transform
- pos: 44.5,-20.5
+ pos: 96.5,-30.5
parent: 2
- - uid: 4576
+ - uid: 9929
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,4.5
+ pos: 102.5,-30.5
parent: 2
- - uid: 4577
+ - uid: 9930
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,4.5
+ pos: 94.5,-30.5
parent: 2
- - uid: 4578
+ - uid: 9931
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,4.5
+ pos: 93.5,-30.5
parent: 2
- - uid: 4579
+ - uid: 9932
components:
- type: Transform
- pos: -104.5,18.5
+ pos: 92.5,-30.5
parent: 2
- - uid: 4586
+ - uid: 10023
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,4.5
+ pos: -41.5,18.5
parent: 2
- - uid: 4593
+ - uid: 10032
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,4.5
+ pos: 50.5,-93.5
parent: 2
- - uid: 4615
+ - uid: 10096
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,4.5
+ pos: 49.5,-94.5
parent: 2
- - uid: 4618
+ - uid: 10151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,4.5
+ pos: 47.5,-94.5
parent: 2
- - uid: 4632
+ - uid: 10331
components:
- type: Transform
- pos: -1.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-4.5
parent: 2
- - uid: 4634
+ - uid: 10332
components:
- type: Transform
- pos: 4.5,-48.5
+ pos: 46.5,-93.5
parent: 2
- - uid: 4635
+ - uid: 10333
components:
- type: Transform
- pos: -1.5,-48.5
+ pos: 45.5,-93.5
parent: 2
- - uid: 4640
+ - uid: 10334
components:
- type: Transform
- pos: -1.5,47.5
+ pos: 44.5,-93.5
parent: 2
- - uid: 4666
+ - uid: 10335
components:
- type: Transform
- pos: 92.5,41.5
+ pos: 43.5,-93.5
parent: 2
- - uid: 4788
+ - uid: 10383
components:
- type: Transform
- pos: 90.5,14.5
+ pos: 4.5,54.5
parent: 2
- - uid: 4939
+ - uid: 10385
components:
- type: Transform
- pos: -24.5,59.5
+ pos: 42.5,-93.5
parent: 2
- - uid: 4943
+ - uid: 10386
components:
- type: Transform
- pos: -103.5,18.5
+ pos: 41.5,-92.5
parent: 2
- - uid: 4964
+ - uid: 10387
components:
- type: Transform
- pos: -106.5,20.5
+ pos: 40.5,-91.5
parent: 2
- - uid: 5014
+ - uid: 10388
components:
- type: Transform
- pos: 48.5,-17.5
+ pos: 39.5,-91.5
parent: 2
- - uid: 5020
+ - uid: 10391
components:
- type: Transform
- pos: 56.5,-28.5
+ pos: 36.5,81.5
parent: 2
- - uid: 5028
+ - uid: 10398
components:
- type: Transform
- pos: 55.5,-28.5
+ pos: -63.5,-34.5
parent: 2
- - uid: 5029
+ - uid: 10399
components:
- type: Transform
- pos: 54.5,-28.5
+ pos: -61.5,-36.5
parent: 2
- - uid: 5030
+ - uid: 10400
components:
- type: Transform
- pos: 13.5,58.5
+ pos: -60.5,-36.5
parent: 2
- - uid: 5032
+ - uid: 10401
components:
- type: Transform
- pos: 57.5,-28.5
+ pos: -59.5,-36.5
parent: 2
- - uid: 5033
+ - uid: 10438
components:
- type: Transform
- pos: 58.5,-28.5
+ pos: 38.5,-89.5
parent: 2
- - uid: 5034
+ - uid: 10477
components:
- type: Transform
- pos: 70.5,-14.5
+ pos: 38.5,-88.5
parent: 2
- - uid: 5054
+ - uid: 10646
components:
- type: Transform
- pos: 67.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-46.5
parent: 2
- - uid: 5055
+ - uid: 10648
components:
- type: Transform
- pos: 68.5,1.5
+ pos: 91.5,-30.5
parent: 2
- - uid: 5056
+ - uid: 11231
components:
- type: Transform
- pos: 69.5,1.5
+ pos: -9.5,-0.5
parent: 2
- - uid: 5057
+ - uid: 11245
components:
- type: Transform
- pos: 70.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-5.5
parent: 2
- - uid: 5058
+ - uid: 11262
components:
- type: Transform
- pos: 71.5,1.5
+ pos: 35.5,-52.5
parent: 2
- - uid: 5063
+ - uid: 11275
components:
- type: Transform
- pos: -105.5,19.5
+ pos: 34.5,-52.5
parent: 2
- - uid: 5082
+ - uid: 11276
components:
- type: Transform
- pos: 22.5,59.5
+ pos: 33.5,-52.5
parent: 2
- - uid: 5085
+ - uid: 11278
components:
- type: Transform
- pos: 4.5,62.5
+ pos: 32.5,-52.5
parent: 2
- - uid: 5095
+ - uid: 11279
components:
- type: Transform
- pos: 70.5,-13.5
+ pos: 31.5,-52.5
parent: 2
- - uid: 5235
+ - uid: 11283
components:
- type: Transform
- pos: -35.5,8.5
+ pos: 29.5,-52.5
parent: 2
- - uid: 5283
+ - uid: 11288
components:
- type: Transform
- pos: -15.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-15.5
parent: 2
- - uid: 5298
+ - uid: 11290
components:
- type: Transform
- pos: 22.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,32.5
parent: 2
- - uid: 5315
+ - uid: 11295
components:
- type: Transform
- pos: 60.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,23.5
parent: 2
- - uid: 5316
+ - uid: 11303
components:
- type: Transform
- pos: 59.5,58.5
+ pos: 27.5,-52.5
parent: 2
- - uid: 5317
+ - uid: 11312
components:
- type: Transform
- pos: 58.5,58.5
+ pos: 26.5,-52.5
parent: 2
- - uid: 5326
+ - uid: 11313
components:
- type: Transform
- pos: -102.5,-14.5
+ pos: 25.5,-52.5
parent: 2
- - uid: 5362
+ - uid: 11314
components:
- type: Transform
- pos: -100.5,-14.5
+ pos: 24.5,-52.5
parent: 2
- - uid: 5577
+ - uid: 11315
components:
- type: Transform
- pos: -48.5,36.5
+ pos: 23.5,-52.5
parent: 2
- - uid: 5681
+ - uid: 11316
components:
- type: Transform
- pos: -20.5,23.5
+ pos: 22.5,-52.5
parent: 2
- - uid: 5785
+ - uid: 11317
components:
- type: Transform
- pos: 12.5,-52.5
+ pos: 21.5,-52.5
parent: 2
- - uid: 5786
+ - uid: 11318
components:
- type: Transform
- pos: -9.5,-50.5
+ pos: -60.5,-39.5
parent: 2
- - uid: 5790
+ - uid: 11319
components:
- type: Transform
- pos: -4.5,-53.5
+ pos: 19.5,-52.5
parent: 2
- - uid: 5791
+ - uid: 11320
components:
- type: Transform
- pos: -6.5,-53.5
+ pos: 18.5,-52.5
parent: 2
- - uid: 5792
+ - uid: 11321
components:
- type: Transform
- pos: -8.5,-53.5
+ pos: 17.5,-52.5
parent: 2
- - uid: 5798
+ - uid: 11329
components:
- type: Transform
- pos: 11.5,-53.5
+ pos: 15.5,-52.5
parent: 2
- - uid: 5799
+ - uid: 11330
components:
- type: Transform
- pos: 9.5,-53.5
+ pos: -61.5,-39.5
parent: 2
- - uid: 5800
+ - uid: 11339
components:
- type: Transform
- pos: 7.5,-53.5
+ pos: -62.5,-39.5
parent: 2
- - uid: 5804
+ - uid: 11340
components:
- type: Transform
- pos: 12.5,-50.5
+ pos: -58.5,-39.5
parent: 2
- - uid: 5805
+ - uid: 11345
components:
- type: Transform
- pos: 12.5,-51.5
+ pos: -24.5,-47.5
parent: 2
- - uid: 5808
+ - uid: 11349
components:
- type: Transform
- pos: 1.5,-53.5
+ pos: -65.5,-38.5
parent: 2
- - uid: 5809
+ - uid: 11350
components:
- type: Transform
- pos: 3.5,-53.5
+ pos: -66.5,-38.5
parent: 2
- - uid: 5810
+ - uid: 11351
components:
- type: Transform
- pos: -0.5,-53.5
+ pos: -67.5,-38.5
parent: 2
- - uid: 5811
+ - uid: 11352
components:
- type: Transform
- pos: 1.5,-54.5
+ pos: -69.5,-38.5
parent: 2
- - uid: 5812
+ - uid: 11353
components:
- type: Transform
- pos: 1.5,-55.5
+ pos: -72.5,-40.5
parent: 2
- - uid: 5813
+ - uid: 11385
components:
- type: Transform
- pos: -0.5,-54.5
+ pos: -74.5,-41.5
parent: 2
- - uid: 5814
+ - uid: 11386
components:
- type: Transform
- pos: -0.5,-55.5
+ pos: -74.5,-43.5
parent: 2
- - uid: 5815
+ - uid: 11387
components:
- type: Transform
- pos: 3.5,-54.5
+ pos: -74.5,-44.5
parent: 2
- - uid: 5816
+ - uid: 11388
components:
- type: Transform
- pos: 3.5,-55.5
+ pos: -74.5,-45.5
parent: 2
- - uid: 5819
+ - uid: 11396
components:
- type: Transform
- pos: 1.5,-56.5
+ pos: -74.5,-46.5
parent: 2
- - uid: 5820
+ - uid: 11397
components:
- type: Transform
- pos: -0.5,-56.5
+ pos: -74.5,-47.5
parent: 2
- - uid: 5821
+ - uid: 11403
components:
- type: Transform
- pos: 3.5,-56.5
+ pos: -74.5,-49.5
parent: 2
- - uid: 5834
+ - uid: 11482
components:
- type: Transform
- pos: 11.5,-55.5
+ pos: -73.5,-50.5
parent: 2
- - uid: 5835
+ - uid: 11485
components:
- type: Transform
- pos: 11.5,-56.5
+ pos: -74.5,-51.5
parent: 2
- - uid: 5836
+ - uid: 11486
components:
- type: Transform
- pos: -4.5,-54.5
+ pos: -74.5,-52.5
parent: 2
- - uid: 5837
+ - uid: 11487
components:
- type: Transform
- pos: -4.5,-55.5
+ pos: -74.5,-53.5
parent: 2
- - uid: 5838
+ - uid: 11488
components:
- type: Transform
- pos: -4.5,-56.5
+ pos: -74.5,-54.5
parent: 2
- - uid: 5839
+ - uid: 11489
components:
- type: Transform
- pos: -6.5,-54.5
+ pos: -74.5,-55.5
parent: 2
- - uid: 5840
+ - uid: 11490
components:
- type: Transform
- pos: -6.5,-55.5
+ pos: -74.5,-56.5
parent: 2
- - uid: 5841
+ - uid: 11511
components:
- type: Transform
- pos: -6.5,-56.5
+ pos: -73.5,-57.5
parent: 2
- - uid: 5842
+ - uid: 11533
components:
- type: Transform
- pos: -8.5,-54.5
+ pos: -74.5,-59.5
parent: 2
- - uid: 5843
+ - uid: 11540
components:
- type: Transform
- pos: -8.5,-55.5
+ pos: -74.5,-60.5
parent: 2
- - uid: 5844
+ - uid: 11640
components:
- type: Transform
- pos: -8.5,-56.5
+ pos: 8.5,72.5
parent: 2
- - uid: 5872
+ - uid: 11642
components:
- type: Transform
- pos: -9.5,-51.5
+ pos: 10.5,72.5
parent: 2
- - uid: 5873
+ - uid: 11643
components:
- type: Transform
- pos: -9.5,-52.5
+ pos: 9.5,72.5
parent: 2
- - uid: 6007
+ - uid: 11871
components:
- type: Transform
- pos: -40.5,72.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,61.5
parent: 2
- - uid: 6144
+ - uid: 11974
components:
- type: Transform
- pos: -14.5,-40.5
+ pos: 3.5,-21.5
parent: 2
- - uid: 6145
+ - uid: 11987
components:
- type: Transform
- pos: -14.5,-41.5
+ pos: 3.5,-25.5
parent: 2
- - uid: 6154
+ - uid: 12033
components:
- type: Transform
- pos: 80.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,59.5
parent: 2
- - uid: 6155
+ - uid: 12141
components:
- type: Transform
- pos: 79.5,-18.5
+ pos: -106.5,14.5
parent: 2
- - uid: 6183
+ - uid: 12145
components:
- type: Transform
- pos: -62.5,82.5
+ pos: 47.5,-4.5
parent: 2
- - uid: 6208
+ - uid: 12213
components:
- type: Transform
- pos: -62.5,81.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-30.5
parent: 2
- - uid: 6209
+ - uid: 12239
components:
- type: Transform
- pos: -62.5,79.5
+ pos: -91.5,28.5
parent: 2
- - uid: 6210
+ - uid: 12477
components:
- type: Transform
- pos: -62.5,78.5
+ pos: -67.5,31.5
parent: 2
- - uid: 6212
+ - uid: 12927
components:
- type: Transform
- pos: -51.5,63.5
+ pos: 50.5,52.5
parent: 2
- - uid: 6367
+ - uid: 12945
components:
- type: Transform
- pos: 32.5,-12.5
+ pos: 44.5,-13.5
parent: 2
- - uid: 6368
+ - uid: 12948
components:
- type: Transform
- pos: 34.5,-12.5
+ pos: 48.5,-16.5
parent: 2
- - uid: 6369
+ - uid: 12949
components:
- type: Transform
- pos: 35.5,-10.5
+ pos: 49.5,-15.5
parent: 2
- - uid: 6424
+ - uid: 12952
components:
- type: Transform
- pos: 81.5,-6.5
+ pos: 52.5,-12.5
parent: 2
- - uid: 6436
+ - uid: 12958
components:
- type: Transform
- pos: 79.5,-14.5
+ pos: 46.5,-10.5
parent: 2
- - uid: 6437
+ - uid: 12961
components:
- type: Transform
- pos: 80.5,-14.5
+ pos: 44.5,-12.5
parent: 2
- - uid: 6439
+ - uid: 13010
components:
- type: Transform
- pos: 78.5,-16.5
+ pos: -78.5,30.5
parent: 2
- - uid: 6441
+ - uid: 13013
components:
- type: Transform
- pos: 79.5,-16.5
+ pos: -77.5,28.5
parent: 2
- - uid: 6442
+ - uid: 13032
components:
- type: Transform
- pos: 80.5,-16.5
+ pos: -75.5,-61.5
parent: 2
- - uid: 6443
+ - uid: 13033
components:
- type: Transform
- pos: 81.5,-16.5
+ pos: -74.5,-62.5
parent: 2
- - uid: 6468
+ - uid: 13056
components:
- type: Transform
- pos: 58.5,-33.5
+ pos: -74.5,-63.5
parent: 2
- - uid: 6469
+ - uid: 13057
components:
- type: Transform
- pos: 58.5,-34.5
+ pos: -74.5,-64.5
parent: 2
- - uid: 6470
+ - uid: 13058
components:
- type: Transform
- pos: 58.5,-35.5
+ pos: 8.5,57.5
parent: 2
- - uid: 6485
+ - uid: 13062
components:
- type: Transform
- pos: -17.5,-28.5
+ pos: -74.5,-65.5
parent: 2
- - uid: 6500
+ - uid: 13066
components:
- type: Transform
- pos: -16.5,-26.5
+ pos: -74.5,-66.5
parent: 2
- - uid: 6512
+ - uid: 13067
components:
- type: Transform
- pos: -9.5,-26.5
+ pos: -74.5,-67.5
parent: 2
- - uid: 6537
+ - uid: 13073
components:
- type: Transform
- pos: -14.5,-17.5
+ pos: -103.5,-1.5
parent: 2
- - uid: 6538
+ - uid: 13082
components:
- type: Transform
- pos: -8.5,-17.5
+ pos: -70.5,-60.5
parent: 2
- - uid: 6539
+ - uid: 13086
components:
- type: Transform
- pos: -7.5,-17.5
+ pos: -70.5,-61.5
parent: 2
- - uid: 6540
+ - uid: 13087
components:
- type: Transform
- pos: -6.5,-17.5
+ pos: -104.5,-1.5
parent: 2
- - uid: 6569
+ - uid: 13089
components:
- type: Transform
- pos: -19.5,23.5
+ pos: -70.5,-47.5
parent: 2
- - uid: 6664
+ - uid: 13090
components:
- type: Transform
- pos: -46.5,-48.5
+ pos: -70.5,-63.5
parent: 2
- - uid: 6665
+ - uid: 13091
components:
- type: Transform
- pos: -46.5,-47.5
+ pos: -70.5,-64.5
parent: 2
- - uid: 6673
+ - uid: 13092
components:
- type: Transform
- pos: -44.5,-39.5
+ pos: -70.5,-65.5
parent: 2
- - uid: 6698
+ - uid: 13115
components:
- type: Transform
- pos: -43.5,-39.5
+ pos: -106.5,-4.5
parent: 2
- - uid: 6720
+ - uid: 13121
components:
- type: Transform
- pos: -31.5,-45.5
+ pos: -69.5,-66.5
parent: 2
- - uid: 6726
+ - uid: 13122
components:
- type: Transform
- pos: -42.5,-45.5
+ pos: -70.5,-56.5
parent: 2
- - uid: 6736
+ - uid: 13123
components:
- type: Transform
- pos: -43.5,-45.5
+ pos: -70.5,-46.5
parent: 2
- - uid: 6766
+ - uid: 13124
components:
- type: Transform
- pos: -37.5,-17.5
+ pos: -106.5,-3.5
parent: 2
- - uid: 6767
+ - uid: 13125
components:
- type: Transform
- pos: -41.5,-45.5
+ pos: -105.5,-2.5
parent: 2
- - uid: 6768
+ - uid: 13137
components:
- type: Transform
- pos: -39.5,-45.5
+ pos: -69.5,-71.5
parent: 2
- - uid: 6769
+ - uid: 13138
components:
- type: Transform
- pos: -38.5,-45.5
+ pos: -70.5,-72.5
parent: 2
- - uid: 6797
+ - uid: 13139
components:
- type: Transform
- pos: -49.5,-50.5
+ pos: -71.5,-73.5
parent: 2
- - uid: 6930
+ - uid: 13140
components:
- type: Transform
- pos: -48.5,32.5
+ pos: -72.5,-73.5
parent: 2
- - uid: 7100
+ - uid: 13141
components:
- type: Transform
- pos: -51.5,-14.5
+ pos: -73.5,-73.5
parent: 2
- - uid: 7150
+ - uid: 13142
components:
- type: Transform
- pos: -35.5,-17.5
+ pos: -74.5,-73.5
parent: 2
- - uid: 7158
+ - uid: 13143
components:
- type: Transform
- pos: -47.5,-12.5
+ pos: -75.5,-73.5
parent: 2
- - uid: 7166
+ - uid: 13144
components:
- type: Transform
- pos: -36.5,-17.5
+ pos: -75.5,-74.5
parent: 2
- - uid: 7181
+ - uid: 13145
components:
- type: Transform
- pos: -58.5,-5.5
+ pos: -77.5,-73.5
parent: 2
- - uid: 7251
+ - uid: 13146
components:
- type: Transform
- pos: -51.5,-22.5
+ pos: -79.5,-73.5
parent: 2
- - uid: 7253
+ - uid: 13147
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,9.5
+ pos: -80.5,-73.5
parent: 2
- - uid: 7260
+ - uid: 13148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-9.5
+ pos: -82.5,-73.5
parent: 2
- - uid: 7267
+ - uid: 13149
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-8.5
+ pos: -83.5,-73.5
parent: 2
- - uid: 7271
+ - uid: 13150
components:
- type: Transform
- pos: -38.5,-37.5
+ pos: -84.5,-73.5
parent: 2
- - uid: 7272
+ - uid: 13151
components:
- type: Transform
- pos: -39.5,-37.5
+ pos: -85.5,-74.5
parent: 2
- - uid: 7273
+ - uid: 13152
components:
- type: Transform
- pos: -40.5,-37.5
+ pos: -86.5,-74.5
parent: 2
- - uid: 7274
+ - uid: 13153
components:
- type: Transform
- pos: -41.5,-37.5
+ pos: -87.5,-74.5
parent: 2
- - uid: 7275
+ - uid: 13154
components:
- type: Transform
- pos: -42.5,-37.5
+ pos: -88.5,-73.5
parent: 2
- - uid: 7276
+ - uid: 13155
components:
- type: Transform
- pos: -43.5,-37.5
+ pos: -89.5,-73.5
parent: 2
- - uid: 7277
+ - uid: 13156
components:
- type: Transform
- pos: -44.5,-37.5
+ pos: -90.5,-73.5
parent: 2
- - uid: 7317
+ - uid: 13157
components:
- type: Transform
- pos: -59.5,-5.5
+ pos: -91.5,-73.5
parent: 2
- - uid: 7412
+ - uid: 13158
components:
- type: Transform
- pos: -58.5,-0.5
+ pos: -92.5,-73.5
parent: 2
- - uid: 7413
+ - uid: 13159
components:
- type: Transform
- pos: -57.5,-0.5
+ pos: -93.5,-73.5
parent: 2
- - uid: 7443
+ - uid: 13160
components:
- type: Transform
- pos: -87.5,32.5
+ pos: -94.5,-73.5
parent: 2
- - uid: 7462
+ - uid: 13161
components:
- type: Transform
- pos: -51.5,62.5
+ pos: -96.5,-73.5
parent: 2
- - uid: 7464
+ - uid: 13162
components:
- type: Transform
- pos: -51.5,61.5
+ pos: -98.5,-73.5
parent: 2
- - uid: 7469
+ - uid: 13163
components:
- type: Transform
- pos: -51.5,60.5
+ pos: -100.5,-73.5
parent: 2
- - uid: 7471
+ - uid: 13164
components:
- type: Transform
- pos: -51.5,-15.5
+ pos: -101.5,-73.5
parent: 2
- - uid: 7484
+ - uid: 13165
components:
- type: Transform
- pos: -51.5,59.5
+ pos: -102.5,-73.5
parent: 2
- - uid: 7485
+ - uid: 13166
components:
- type: Transform
- pos: -51.5,58.5
+ pos: -103.5,-73.5
parent: 2
- - uid: 7486
+ - uid: 13167
components:
- type: Transform
- pos: -51.5,57.5
+ pos: -104.5,-73.5
parent: 2
- - uid: 7490
+ - uid: 13168
components:
- type: Transform
- pos: -51.5,56.5
+ pos: -99.5,-73.5
parent: 2
- - uid: 7491
+ - uid: 13169
components:
- type: Transform
- pos: -51.5,55.5
+ pos: -101.5,-74.5
parent: 2
- - uid: 7494
+ - uid: 13170
components:
- type: Transform
- pos: -61.5,77.5
+ pos: -105.5,-72.5
parent: 2
- - uid: 7495
+ - uid: 13171
components:
- type: Transform
- pos: -60.5,77.5
+ pos: -105.5,-71.5
parent: 2
- - uid: 7496
+ - uid: 13172
components:
- type: Transform
- pos: -43.5,77.5
+ pos: -105.5,-70.5
parent: 2
- - uid: 7497
+ - uid: 13173
components:
- type: Transform
- pos: -58.5,77.5
+ pos: -105.5,-69.5
parent: 2
- - uid: 7498
+ - uid: 13174
components:
- type: Transform
- pos: -57.5,77.5
+ pos: -105.5,-66.5
parent: 2
- - uid: 7499
+ - uid: 13175
components:
- type: Transform
- pos: -56.5,77.5
+ pos: -105.5,-63.5
parent: 2
- - uid: 7500
+ - uid: 13176
components:
- type: Transform
- pos: -55.5,77.5
+ pos: -105.5,-62.5
parent: 2
- - uid: 7501
+ - uid: 13178
components:
- type: Transform
- pos: -54.5,77.5
+ pos: -105.5,-61.5
parent: 2
- - uid: 7502
+ - uid: 13179
components:
- type: Transform
- pos: -53.5,78.5
+ pos: -105.5,-60.5
parent: 2
- - uid: 7503
+ - uid: 13180
components:
- type: Transform
- pos: -52.5,78.5
+ pos: -105.5,-59.5
parent: 2
- - uid: 7506
+ - uid: 13181
components:
- type: Transform
- pos: -51.5,78.5
+ pos: -105.5,-58.5
parent: 2
- - uid: 7510
+ - uid: 13182
components:
- type: Transform
- pos: -50.5,78.5
+ pos: 77.5,2.5
parent: 2
- - uid: 7533
+ - uid: 13183
components:
- type: Transform
- pos: -49.5,78.5
+ pos: -105.5,-64.5
parent: 2
- - uid: 7534
+ - uid: 13184
components:
- type: Transform
- pos: -48.5,78.5
+ pos: -106.5,-60.5
parent: 2
- - uid: 7547
+ - uid: 13185
components:
- type: Transform
- pos: -47.5,77.5
+ pos: -105.5,-56.5
parent: 2
- - uid: 7549
+ - uid: 13186
components:
- type: Transform
- pos: -46.5,77.5
+ pos: -105.5,-55.5
parent: 2
- - uid: 7561
+ - uid: 13187
components:
- type: Transform
- pos: -45.5,77.5
+ pos: -105.5,-54.5
parent: 2
- - uid: 7564
+ - uid: 13188
components:
- type: Transform
- pos: -39.5,77.5
+ pos: -106.5,-56.5
parent: 2
- - uid: 7572
+ - uid: 13189
components:
- type: Transform
- pos: -38.5,77.5
+ pos: -106.5,-57.5
parent: 2
- - uid: 7586
+ - uid: 13190
components:
- type: Transform
- pos: -37.5,77.5
+ pos: -106.5,-58.5
parent: 2
- - uid: 7587
+ - uid: 13191
components:
- type: Transform
- pos: -36.5,77.5
+ pos: -105.5,-51.5
parent: 2
- - uid: 7589
+ - uid: 13196
components:
- type: Transform
- pos: -35.5,77.5
+ pos: -107.5,27.5
parent: 2
- - uid: 7590
+ - uid: 13197
components:
- type: Transform
- pos: -81.5,32.5
+ pos: -106.5,29.5
parent: 2
- - uid: 7592
+ - uid: 13198
components:
- type: Transform
- pos: -98.5,26.5
+ pos: -105.5,30.5
parent: 2
- - uid: 7593
+ - uid: 13199
components:
- type: Transform
- pos: -11.5,68.5
+ pos: -103.5,31.5
parent: 2
- - uid: 7596
+ - uid: 13200
components:
- type: Transform
- pos: -35.5,76.5
+ pos: -107.5,21.5
parent: 2
- - uid: 7600
+ - uid: 13201
components:
- type: Transform
- pos: -33.5,75.5
+ pos: -106.5,19.5
parent: 2
- - uid: 7602
+ - uid: 13202
components:
- type: Transform
- pos: -32.5,75.5
+ pos: -105.5,18.5
parent: 2
- - uid: 7603
+ - uid: 13203
components:
- type: Transform
- pos: -98.5,27.5
+ pos: -103.5,17.5
parent: 2
- - uid: 7612
+ - uid: 13204
components:
- type: Transform
- pos: -98.5,28.5
+ pos: -105.5,-50.5
parent: 2
- - uid: 7614
+ - uid: 13212
components:
- type: Transform
- pos: -31.5,75.5
+ pos: -105.5,-49.5
parent: 2
- - uid: 7615
+ - uid: 13213
components:
- type: Transform
- pos: -30.5,75.5
+ pos: 56.5,-36.5
parent: 2
- - uid: 7617
+ - uid: 13215
components:
- type: Transform
- pos: -29.5,75.5
+ pos: -105.5,-48.5
parent: 2
- - uid: 7618
+ - uid: 13220
components:
- type: Transform
- pos: -29.5,76.5
+ pos: -107.5,-4.5
parent: 2
- - uid: 7655
+ - uid: 13221
components:
- type: Transform
- pos: -98.5,19.5
+ pos: -106.5,-2.5
parent: 2
- - uid: 7657
+ - uid: 13222
components:
- type: Transform
- pos: -28.5,76.5
+ pos: -105.5,-1.5
parent: 2
- - uid: 7661
+ - uid: 13223
components:
- type: Transform
- pos: -27.5,76.5
+ pos: -105.5,-46.5
parent: 2
- - uid: 7662
+ - uid: 13224
components:
- type: Transform
- pos: -27.5,75.5
+ pos: -107.5,-10.5
parent: 2
- - uid: 7663
+ - uid: 13225
components:
- type: Transform
- pos: -98.5,24.5
+ pos: -106.5,-12.5
parent: 2
- - uid: 7665
+ - uid: 13226
components:
- type: Transform
- pos: -98.5,20.5
+ pos: -105.5,-13.5
parent: 2
- - uid: 7670
+ - uid: 13227
components:
- type: Transform
- pos: -98.5,23.5
+ pos: -103.5,-14.5
parent: 2
- - uid: 7677
+ - uid: 13228
components:
- type: Transform
- pos: -26.5,75.5
+ pos: -106.5,-44.5
parent: 2
- - uid: 7685
+ - uid: 13229
components:
- type: Transform
- pos: -25.5,75.5
+ pos: -106.5,-43.5
parent: 2
- - uid: 7686
+ - uid: 13230
components:
- type: Transform
- pos: -24.5,75.5
+ pos: -106.5,-42.5
parent: 2
- - uid: 7687
+ - uid: 13231
components:
- type: Transform
- pos: -23.5,75.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-2.5
parent: 2
- - uid: 7689
+ - uid: 13357
components:
- type: Transform
- pos: -22.5,75.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-15.5
parent: 2
- - uid: 7690
+ - uid: 13717
components:
- type: Transform
- pos: -21.5,75.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,3.5
parent: 2
- - uid: 7693
+ - uid: 13725
components:
- type: Transform
- pos: -19.5,75.5
+ pos: 40.5,-39.5
parent: 2
- - uid: 7698
+ - uid: 13728
components:
- type: Transform
- pos: -14.5,75.5
+ pos: 47.5,-35.5
parent: 2
- - uid: 7699
+ - uid: 13739
components:
- type: Transform
- pos: -15.5,75.5
+ pos: 49.5,-35.5
parent: 2
- - uid: 7700
+ - uid: 13740
components:
- type: Transform
- pos: -16.5,75.5
+ pos: 40.5,-37.5
parent: 2
- - uid: 7701
+ - uid: 13742
components:
- type: Transform
- pos: 37.5,71.5
+ pos: 52.5,-39.5
parent: 2
- - uid: 7702
+ - uid: 13743
components:
- type: Transform
- pos: 20.5,81.5
+ pos: 52.5,-36.5
parent: 2
- - uid: 7703
+ - uid: 13747
components:
- type: Transform
- pos: 21.5,81.5
+ pos: 45.5,-35.5
parent: 2
- - uid: 7704
+ - uid: 13749
components:
- type: Transform
- pos: -98.5,25.5
+ pos: 40.5,-41.5
parent: 2
- - uid: 7705
+ - uid: 13750
components:
- type: Transform
- pos: -86.5,13.5
+ pos: 39.5,-42.5
parent: 2
- - uid: 7706
+ - uid: 13751
components:
- type: Transform
- pos: -86.5,14.5
+ pos: 39.5,-38.5
parent: 2
- - uid: 7707
+ - uid: 13798
components:
- type: Transform
- pos: -86.5,0.5
+ pos: 92.5,18.5
parent: 2
- - uid: 7708
+ - uid: 13802
components:
- type: Transform
- pos: 23.5,80.5
+ pos: 89.5,14.5
parent: 2
- - uid: 7709
+ - uid: 13804
components:
- type: Transform
- pos: 24.5,80.5
+ pos: 90.5,20.5
parent: 2
- - uid: 7711
+ - uid: 13809
components:
- type: Transform
- pos: -98.5,21.5
+ pos: 59.5,37.5
parent: 2
- - uid: 7712
+ - uid: 13810
components:
- type: Transform
- pos: -98.5,22.5
+ pos: 58.5,37.5
parent: 2
- - uid: 7714
+ - uid: 13811
components:
- type: Transform
- pos: -86.5,1.5
+ pos: 58.5,40.5
parent: 2
- - uid: 7732
+ - uid: 13840
components:
- type: Transform
- pos: -86.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-13.5
parent: 2
- - uid: 7733
+ - uid: 13936
components:
- type: Transform
- pos: -82.5,15.5
+ pos: 19.5,60.5
parent: 2
- - uid: 7734
+ - uid: 13939
components:
- type: Transform
- pos: -82.5,14.5
+ pos: 18.5,60.5
parent: 2
- - uid: 7735
+ - uid: 13949
components:
- type: Transform
- pos: -82.5,13.5
+ pos: 9.5,57.5
parent: 2
- - uid: 7739
+ - uid: 13950
components:
- type: Transform
- pos: -86.5,3.5
+ pos: 17.5,60.5
parent: 2
- - uid: 7740
+ - uid: 13955
components:
- type: Transform
- pos: -82.5,16.5
+ pos: -1.5,55.5
parent: 2
- - uid: 7741
+ - uid: 13960
components:
- type: Transform
- pos: -86.5,16.5
+ pos: 7.5,57.5
parent: 2
- - uid: 7742
+ - uid: 14003
components:
- type: Transform
- pos: -86.5,15.5
+ pos: 21.5,39.5
parent: 2
- - uid: 7788
+ - uid: 14004
components:
- type: Transform
- pos: -74.5,14.5
+ pos: 21.5,38.5
parent: 2
- - uid: 7795
+ - uid: 14005
components:
- type: Transform
- pos: -91.5,-8.5
+ pos: 21.5,37.5
parent: 2
- - uid: 7799
+ - uid: 14006
components:
- type: Transform
- pos: -91.5,-9.5
+ pos: 21.5,36.5
parent: 2
- - uid: 7800
+ - uid: 14018
components:
- type: Transform
- pos: -90.5,-12.5
+ pos: 10.5,51.5
parent: 2
- - uid: 7801
+ - uid: 14019
components:
- type: Transform
- pos: -91.5,-10.5
+ pos: 11.5,51.5
parent: 2
- - uid: 7802
+ - uid: 14048
components:
- type: Transform
- pos: -77.5,-9.5
+ pos: 23.5,58.5
parent: 2
- - uid: 7803
+ - uid: 14049
components:
- type: Transform
- pos: -77.5,-10.5
+ pos: 23.5,59.5
parent: 2
- - uid: 7804
+ - uid: 14082
components:
- type: Transform
- pos: -90.5,-11.5
+ pos: 26.5,42.5
parent: 2
- - uid: 7805
+ - uid: 14089
components:
- type: Transform
- pos: -89.5,-13.5
+ pos: 25.5,37.5
parent: 2
- - uid: 7806
+ - uid: 14093
components:
- type: Transform
- pos: -88.5,-14.5
+ pos: 29.5,38.5
parent: 2
- - uid: 7807
+ - uid: 14094
components:
- type: Transform
- pos: -87.5,-14.5
+ pos: 29.5,37.5
parent: 2
- - uid: 7813
+ - uid: 14095
components:
- type: Transform
- pos: -81.5,-14.5
+ pos: 28.5,36.5
parent: 2
- - uid: 7814
+ - uid: 14096
components:
- type: Transform
- pos: -80.5,-14.5
+ pos: 27.5,36.5
parent: 2
- - uid: 7815
+ - uid: 14099
components:
- type: Transform
- pos: -79.5,-13.5
+ pos: 23.5,44.5
parent: 2
- - uid: 7816
+ - uid: 14100
components:
- type: Transform
- pos: -78.5,-12.5
+ pos: 26.5,36.5
parent: 2
- - uid: 7817
+ - uid: 14101
components:
- type: Transform
- pos: -78.5,-11.5
+ pos: 25.5,38.5
parent: 2
- - uid: 7830
+ - uid: 14110
components:
- type: Transform
- pos: -91.5,25.5
+ pos: 24.5,44.5
parent: 2
- - uid: 7831
+ - uid: 14115
components:
- type: Transform
- pos: -91.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,9.5
parent: 2
- - uid: 7832
+ - uid: 14121
components:
- type: Transform
- pos: -91.5,27.5
+ pos: 22.5,44.5
parent: 2
- - uid: 7833
+ - uid: 14130
components:
- type: Transform
- pos: -77.5,27.5
+ pos: -28.5,39.5
parent: 2
- - uid: 7834
+ - uid: 14273
components:
- type: Transform
- pos: -77.5,26.5
+ pos: -26.5,32.5
parent: 2
- - uid: 7838
+ - uid: 14276
components:
- type: Transform
- pos: -90.5,28.5
+ pos: -30.5,26.5
parent: 2
- - uid: 7839
+ - uid: 14291
components:
- type: Transform
- pos: -90.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,51.5
parent: 2
- - uid: 7840
+ - uid: 14351
components:
- type: Transform
- pos: -89.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,49.5
parent: 2
- - uid: 7841
+ - uid: 14453
components:
- type: Transform
- pos: -88.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,4.5
parent: 2
- - uid: 7842
+ - uid: 14508
components:
- type: Transform
- pos: -87.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-28.5
parent: 2
- - uid: 7848
+ - uid: 14721
components:
- type: Transform
- pos: -81.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-11.5
parent: 2
- - uid: 7849
+ - uid: 14890
components:
- type: Transform
- pos: -80.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,32.5
parent: 2
- - uid: 7850
+ - uid: 14893
components:
- type: Transform
- pos: -79.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,10.5
parent: 2
- - uid: 7851
+ - uid: 14894
components:
- type: Transform
- pos: -78.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,21.5
parent: 2
- - uid: 7852
+ - uid: 14895
components:
- type: Transform
- pos: -78.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-5.5
parent: 2
- - uid: 7854
+ - uid: 14956
components:
- type: Transform
- pos: -74.5,16.5
+ pos: 58.5,39.5
parent: 2
- - uid: 7855
+ - uid: 14958
components:
- type: Transform
- pos: -74.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-3.5
parent: 2
- - uid: 7870
+ - uid: 14959
components:
- type: Transform
- pos: -98.5,-11.5
+ pos: 58.5,38.5
parent: 2
- - uid: 7891
+ - uid: 14960
components:
- type: Transform
- pos: 47.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-22.5
parent: 2
- - uid: 7892
+ - uid: 14965
components:
- type: Transform
- pos: -98.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-22.5
parent: 2
- - uid: 7893
+ - uid: 14966
components:
- type: Transform
- pos: -98.5,-9.5
+ pos: 13.5,-20.5
parent: 2
- - uid: 7894
+ - uid: 14973
components:
- type: Transform
- pos: -98.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-22.5
parent: 2
- - uid: 7895
+ - uid: 15126
components:
- type: Transform
- pos: -98.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,14.5
parent: 2
- - uid: 7926
+ - uid: 15141
components:
- type: Transform
- pos: 61.5,-32.5
+ pos: -23.5,65.5
parent: 2
- - uid: 7927
+ - uid: 15154
components:
- type: Transform
- pos: 60.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,7.5
parent: 2
- - uid: 7942
+ - uid: 15167
components:
- type: Transform
- pos: -102.5,15.5
+ pos: -25.5,65.5
parent: 2
- - uid: 7943
+ - uid: 15170
components:
- type: Transform
- pos: -103.5,15.5
+ pos: -27.5,65.5
parent: 2
- - uid: 7945
+ - uid: 15181
components:
- type: Transform
- pos: -105.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,12.5
parent: 2
- - uid: 7947
+ - uid: 15204
components:
- type: Transform
- pos: -107.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,58.5
parent: 2
- - uid: 7948
+ - uid: 15210
components:
- type: Transform
- pos: -107.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,13.5
parent: 2
- - uid: 7954
+ - uid: 15211
components:
- type: Transform
- pos: -107.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,25.5
parent: 2
- - uid: 7955
+ - uid: 15215
components:
- type: Transform
- pos: -106.5,3.5
+ pos: 15.5,65.5
parent: 2
- - uid: 7956
+ - uid: 15222
components:
- type: Transform
- pos: -107.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,9.5
parent: 2
- - uid: 7957
+ - uid: 15223
components:
- type: Transform
- pos: -105.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,31.5
parent: 2
- - uid: 7958
+ - uid: 15228
components:
- type: Transform
- pos: -104.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,59.5
parent: 2
- - uid: 7965
+ - uid: 15233
components:
- type: Transform
- pos: -102.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-40.5
parent: 2
- - uid: 7966
+ - uid: 15249
components:
- type: Transform
- pos: -103.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,3.5
parent: 2
- - uid: 7973
+ - uid: 15250
components:
- type: Transform
- pos: 24.5,79.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-1.5
parent: 2
- - uid: 7974
+ - uid: 15252
components:
- type: Transform
- pos: 25.5,78.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,8.5
parent: 2
- - uid: 7977
+ - uid: 15256
components:
- type: Transform
- pos: 25.5,76.5
+ pos: -22.5,62.5
parent: 2
- - uid: 7979
+ - uid: 15270
components:
- type: Transform
- pos: 26.5,75.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,4.5
parent: 2
- - uid: 7982
+ - uid: 15311
components:
- type: Transform
- pos: 26.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,5.5
parent: 2
- - uid: 7983
+ - uid: 15336
components:
- type: Transform
- pos: 25.5,73.5
+ pos: -26.5,31.5
parent: 2
- - uid: 7984
+ - uid: 15338
components:
- type: Transform
- pos: 25.5,72.5
+ pos: -24.5,32.5
parent: 2
- - uid: 7985
+ - uid: 15339
components:
- type: Transform
- pos: 26.5,71.5
+ pos: -28.5,31.5
parent: 2
- - uid: 7986
+ - uid: 15353
components:
- type: Transform
- pos: 26.5,70.5
+ pos: -30.5,31.5
parent: 2
- - uid: 7994
+ - uid: 15355
components:
- type: Transform
- pos: 27.5,70.5
+ pos: -28.5,32.5
parent: 2
- - uid: 7995
+ - uid: 15364
components:
- type: Transform
- pos: 28.5,70.5
+ pos: -30.5,27.5
parent: 2
- - uid: 7997
+ - uid: 15365
components:
- type: Transform
- pos: 29.5,70.5
+ pos: -28.5,27.5
parent: 2
- - uid: 7998
+ - uid: 15366
components:
- type: Transform
- pos: 30.5,70.5
+ pos: -26.5,27.5
parent: 2
- - uid: 8000
+ - uid: 15367
components:
- type: Transform
- pos: 31.5,70.5
+ pos: -24.5,27.5
parent: 2
- - uid: 8001
+ - uid: 15382
components:
- type: Transform
- pos: 34.5,70.5
+ pos: -28.5,26.5
parent: 2
- - uid: 8002
+ - uid: 15383
components:
- type: Transform
- pos: 36.5,70.5
+ pos: -26.5,26.5
parent: 2
- - uid: 8003
+ - uid: 15384
components:
- type: Transform
- pos: 37.5,70.5
+ pos: -24.5,26.5
parent: 2
- - uid: 8004
+ - uid: 15401
components:
- type: Transform
- pos: 38.5,70.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,6.5
parent: 2
- - uid: 8005
+ - uid: 15412
components:
- type: Transform
- pos: 39.5,70.5
+ pos: -23.5,30.5
parent: 2
- - uid: 8006
+ - uid: 15420
components:
- type: Transform
- pos: 40.5,70.5
+ pos: 11.5,41.5
parent: 2
- - uid: 8017
+ - uid: 15448
components:
- type: Transform
- pos: 5.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,29.5
parent: 2
- - uid: 8023
+ - uid: 15452
components:
- type: Transform
- pos: 43.5,70.5
+ pos: -30.5,32.5
parent: 2
- - uid: 8028
+ - uid: 15458
components:
- type: Transform
- pos: 44.5,71.5
+ pos: -24.5,31.5
parent: 2
- - uid: 8029
+ - uid: 15500
components:
- type: Transform
- pos: 44.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,28.5
parent: 2
- - uid: 8032
+ - uid: 15508
components:
- type: Transform
- pos: 44.5,75.5
+ pos: -15.5,41.5
parent: 2
- - uid: 8033
+ - uid: 15540
components:
- type: Transform
- pos: 29.5,44.5
+ pos: -18.5,43.5
parent: 2
- - uid: 8036
+ - uid: 15544
components:
- type: Transform
- pos: -89.5,-6.5
+ pos: -93.5,80.5
parent: 2
- - uid: 8038
+ - uid: 15545
components:
- type: Transform
- pos: -88.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-28.5
parent: 2
- - uid: 8039
+ - uid: 15561
components:
- type: Transform
- pos: -87.5,-6.5
+ pos: -58.5,47.5
parent: 2
- - uid: 8041
+ - uid: 15563
components:
- type: Transform
- pos: -86.5,-6.5
+ pos: -9.5,37.5
parent: 2
- - uid: 8042
+ - uid: 15571
components:
- type: Transform
- pos: -85.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,27.5
parent: 2
- - uid: 8043
+ - uid: 15582
components:
- type: Transform
- pos: -84.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,23.5
parent: 2
- - uid: 8044
+ - uid: 15630
components:
- type: Transform
- pos: -83.5,-6.5
+ pos: -13.5,65.5
parent: 2
- - uid: 8045
+ - uid: 15632
components:
- type: Transform
- pos: -82.5,-6.5
+ pos: -11.5,42.5
parent: 2
- - uid: 8046
+ - uid: 15635
components:
- type: Transform
- pos: -81.5,-6.5
+ pos: -25.5,52.5
parent: 2
- - uid: 8047
+ - uid: 15637
components:
- type: Transform
- pos: -80.5,-6.5
+ pos: -27.5,52.5
parent: 2
- - uid: 8048
+ - uid: 15648
components:
- type: Transform
- pos: -79.5,-6.5
+ pos: -27.5,40.5
parent: 2
- - uid: 8051
+ - uid: 15649
components:
- type: Transform
- pos: -99.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,15.5
parent: 2
- - uid: 8052
+ - uid: 15658
components:
- type: Transform
- pos: -99.5,11.5
+ pos: -127.5,68.5
parent: 2
- - uid: 8053
+ - uid: 15659
components:
- type: Transform
- pos: -99.5,10.5
+ pos: -126.5,68.5
parent: 2
- - uid: 8054
+ - uid: 15660
components:
- type: Transform
- pos: -99.5,9.5
+ pos: -122.5,69.5
parent: 2
- - uid: 8055
+ - uid: 15665
components:
- type: Transform
- pos: -99.5,8.5
+ pos: -107.5,68.5
parent: 2
- - uid: 8056
+ - uid: 15675
components:
- type: Transform
- pos: -99.5,7.5
+ pos: -102.5,66.5
parent: 2
- - uid: 8057
+ - uid: 15679
components:
- type: Transform
- pos: -99.5,6.5
+ pos: -98.5,65.5
parent: 2
- - uid: 8058
+ - uid: 15694
components:
- type: Transform
- pos: -99.5,5.5
+ pos: -95.5,68.5
parent: 2
- - uid: 8059
+ - uid: 15698
components:
- type: Transform
- pos: -99.5,4.5
+ pos: -25.5,47.5
parent: 2
- - uid: 8060
+ - uid: 15711
components:
- type: Transform
- pos: -99.5,3.5
+ pos: -91.5,73.5
parent: 2
- - uid: 8063
+ - uid: 15724
components:
- type: Transform
- pos: -89.5,23.5
+ pos: -92.5,89.5
parent: 2
- - uid: 8064
+ - uid: 15725
components:
- type: Transform
- pos: -88.5,23.5
+ pos: -92.5,91.5
parent: 2
- - uid: 8065
+ - uid: 15773
components:
- type: Transform
- pos: -87.5,23.5
+ pos: -96.5,103.5
parent: 2
- - uid: 8066
+ - uid: 15774
components:
- type: Transform
- pos: -86.5,23.5
+ pos: -92.5,108.5
parent: 2
- - uid: 8067
+ - uid: 15779
components:
- type: Transform
- pos: 44.5,72.5
+ pos: -92.5,110.5
parent: 2
- - uid: 8068
+ - uid: 15803
components:
- type: Transform
- pos: -84.5,23.5
+ pos: -90.5,111.5
parent: 2
- - uid: 8069
+ - uid: 15804
components:
- type: Transform
- pos: 45.5,77.5
+ pos: -88.5,111.5
parent: 2
- - uid: 8070
+ - uid: 15807
components:
- type: Transform
- pos: -82.5,23.5
+ pos: -85.5,111.5
parent: 2
- - uid: 8071
+ - uid: 15811
components:
- type: Transform
- pos: -81.5,23.5
+ pos: -84.5,111.5
parent: 2
- - uid: 8072
+ - uid: 15812
components:
- type: Transform
- pos: -80.5,23.5
+ pos: -83.5,111.5
parent: 2
- - uid: 8073
+ - uid: 15817
components:
- type: Transform
- pos: -79.5,23.5
+ pos: -15.5,65.5
parent: 2
- - uid: 8076
+ - uid: 15819
components:
- type: Transform
- pos: 46.5,78.5
+ pos: -17.5,65.5
parent: 2
- - uid: 8086
+ - uid: 15821
components:
- type: Transform
- pos: 47.5,79.5
+ pos: -19.5,65.5
parent: 2
- - uid: 8097
+ - uid: 15823
components:
- type: Transform
- pos: 47.5,80.5
+ pos: -21.5,65.5
parent: 2
- - uid: 8102
+ - uid: 15824
components:
- type: Transform
- pos: 48.5,80.5
+ pos: 11.5,69.5
parent: 2
- - uid: 8104
+ - uid: 15834
components:
- type: Transform
- pos: 49.5,80.5
+ pos: -27.5,43.5
parent: 2
- - uid: 8105
+ - uid: 15835
components:
- type: Transform
- pos: 58.5,81.5
+ pos: -25.5,43.5
parent: 2
- - uid: 8123
+ - uid: 15849
components:
- type: Transform
- pos: 51.5,79.5
+ pos: 10.5,69.5
parent: 2
- - uid: 8124
+ - uid: 15855
components:
- type: Transform
- pos: 56.5,-32.5
+ pos: -51.5,-0.5
parent: 2
- - uid: 8127
+ - uid: 15863
components:
- type: Transform
- pos: 52.5,79.5
+ pos: 109.5,-28.5
parent: 2
- - uid: 8131
+ - uid: 15869
components:
- type: Transform
- pos: 53.5,80.5
+ pos: 11.5,26.5
parent: 2
- - uid: 8134
+ - uid: 15989
components:
- type: Transform
- pos: 54.5,80.5
+ pos: -52.5,-0.5
parent: 2
- - uid: 8139
+ - uid: 15990
components:
- type: Transform
- pos: 55.5,80.5
+ pos: -54.5,-0.5
parent: 2
- - uid: 8146
+ - uid: 15995
components:
- type: Transform
- pos: 56.5,80.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,26.5
parent: 2
- - uid: 8150
+ - uid: 16003
components:
- type: Transform
- pos: 57.5,80.5
+ pos: -18.5,62.5
parent: 2
- - uid: 8154
+ - uid: 16041
components:
- type: Transform
- pos: 58.5,80.5
+ pos: -0.5,45.5
parent: 2
- - uid: 8157
+ - uid: 16243
components:
- type: Transform
- pos: 60.5,80.5
+ pos: -55.5,51.5
parent: 2
- - uid: 8158
+ - uid: 16304
components:
- type: Transform
- pos: 61.5,80.5
+ pos: -28.5,57.5
parent: 2
- - uid: 8159
+ - uid: 16305
components:
- type: Transform
- pos: 62.5,80.5
+ pos: -28.5,58.5
parent: 2
- - uid: 8160
+ - uid: 16307
components:
- type: Transform
- pos: 63.5,80.5
+ pos: -53.5,-0.5
parent: 2
- - uid: 8161
+ - uid: 16308
components:
- type: Transform
- pos: 64.5,80.5
+ pos: -28.5,62.5
parent: 2
- - uid: 8162
+ - uid: 16319
components:
- type: Transform
- pos: 64.5,79.5
+ pos: -28.5,61.5
parent: 2
- - uid: 8163
+ - uid: 16320
components:
- type: Transform
- pos: 65.5,79.5
+ pos: -50.5,-0.5
parent: 2
- - uid: 8164
+ - uid: 16341
components:
- type: Transform
- pos: 66.5,79.5
+ pos: -17.5,54.5
parent: 2
- - uid: 8165
+ - uid: 16342
components:
- type: Transform
- pos: 67.5,79.5
+ pos: -17.5,55.5
parent: 2
- - uid: 8166
+ - uid: 16343
components:
- type: Transform
- pos: 71.5,80.5
+ pos: -17.5,56.5
parent: 2
- - uid: 8167
+ - uid: 16344
components:
- type: Transform
- pos: 69.5,80.5
+ pos: -17.5,58.5
parent: 2
- - uid: 8168
+ - uid: 16345
components:
- type: Transform
- pos: 72.5,80.5
+ pos: -17.5,57.5
parent: 2
- - uid: 8169
+ - uid: 16357
components:
- type: Transform
- pos: 73.5,81.5
+ pos: -82.5,111.5
parent: 2
- - uid: 8170
+ - uid: 16358
components:
- type: Transform
- pos: 74.5,81.5
+ pos: -78.5,111.5
parent: 2
- - uid: 8171
+ - uid: 16359
components:
- type: Transform
- pos: 75.5,81.5
+ pos: -76.5,111.5
parent: 2
- - uid: 8172
+ - uid: 16360
components:
- type: Transform
- pos: 76.5,81.5
+ pos: -70.5,111.5
parent: 2
- - uid: 8173
+ - uid: 16363
components:
- type: Transform
- pos: 77.5,81.5
+ pos: -69.5,111.5
parent: 2
- - uid: 8174
+ - uid: 16427
components:
- type: Transform
- pos: 78.5,81.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,50.5
parent: 2
- - uid: 8175
+ - uid: 16428
components:
- type: Transform
- pos: 79.5,81.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,48.5
parent: 2
- - uid: 8176
+ - uid: 16473
components:
- type: Transform
- pos: 87.5,81.5
+ pos: -55.5,50.5
parent: 2
- - uid: 8177
+ - uid: 16477
components:
- type: Transform
- pos: 81.5,81.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,61.5
parent: 2
- - uid: 8178
+ - uid: 16498
components:
- type: Transform
- pos: 83.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,11.5
parent: 2
- - uid: 8179
+ - uid: 16509
components:
- type: Transform
- pos: 84.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,17.5
parent: 2
- - uid: 8184
+ - uid: 16510
components:
- type: Transform
- pos: 85.5,82.5
+ pos: -15.5,33.5
parent: 2
- - uid: 8185
+ - uid: 16517
components:
- type: Transform
- pos: 86.5,82.5
+ pos: -15.5,32.5
parent: 2
- - uid: 8186
+ - uid: 16534
components:
- type: Transform
- pos: 88.5,80.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,22.5
parent: 2
- - uid: 8187
+ - uid: 16554
components:
- type: Transform
- pos: 89.5,80.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,80.5
parent: 2
- - uid: 8188
+ - uid: 16602
components:
- type: Transform
- pos: 90.5,80.5
+ pos: 87.5,-3.5
parent: 2
- - uid: 8189
+ - uid: 16609
components:
- type: Transform
- pos: 90.5,81.5
+ pos: -20.5,40.5
parent: 2
- - uid: 8190
+ - uid: 16611
components:
- type: Transform
- pos: 91.5,81.5
+ pos: 85.5,-3.5
parent: 2
- - uid: 8191
+ - uid: 16686
components:
- type: Transform
- pos: 92.5,81.5
+ pos: -41.5,-9.5
parent: 2
- - uid: 8192
+ - uid: 17388
components:
- type: Transform
- pos: 93.5,81.5
+ pos: 15.5,-20.5
parent: 2
- - uid: 8193
+ - uid: 17769
components:
- type: Transform
- pos: 95.5,81.5
+ pos: -20.5,4.5
parent: 2
- - uid: 8194
+ - uid: 17804
components:
- type: Transform
- pos: 96.5,80.5
+ pos: -18.5,4.5
parent: 2
- - uid: 8195
+ - uid: 17818
components:
- type: Transform
- pos: 97.5,79.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,24.5
parent: 2
- - uid: 8196
+ - uid: 17872
components:
- type: Transform
- pos: 98.5,79.5
+ pos: 3.5,36.5
parent: 2
- - uid: 8197
+ - uid: 17873
components:
- type: Transform
- pos: 98.5,78.5
+ pos: 3.5,35.5
parent: 2
- - uid: 8198
+ - uid: 17916
components:
- type: Transform
- pos: 98.5,76.5
+ pos: -7.5,68.5
parent: 2
- - uid: 8199
+ - uid: 17963
components:
- type: Transform
- pos: 99.5,76.5
+ pos: -9.5,68.5
parent: 2
- - uid: 8200
+ - uid: 17992
components:
- type: Transform
- pos: 99.5,75.5
+ pos: -51.5,6.5
parent: 2
- - uid: 8201
+ - uid: 18021
components:
- type: Transform
- pos: 100.5,74.5
+ pos: -2.5,21.5
parent: 2
- - uid: 8202
+ - uid: 18022
components:
- type: Transform
- pos: 100.5,73.5
+ pos: -108.5,5.5
parent: 2
- - uid: 8205
+ - uid: 18024
components:
- type: Transform
- pos: 100.5,72.5
+ pos: -2.5,18.5
parent: 2
- - uid: 8206
+ - uid: 18029
components:
- type: Transform
- pos: 101.5,71.5
+ pos: 7.5,69.5
parent: 2
- - uid: 8207
+ - uid: 18095
components:
- type: Transform
- pos: 100.5,70.5
+ pos: -22.5,80.5
parent: 2
- - uid: 8208
+ - uid: 18116
components:
- type: Transform
- pos: 100.5,69.5
+ pos: -67.5,111.5
parent: 2
- - uid: 8209
+ - uid: 18122
components:
- type: Transform
- pos: 101.5,68.5
+ pos: -66.5,110.5
parent: 2
- - uid: 8210
+ - uid: 18139
components:
- type: Transform
- pos: 101.5,67.5
+ pos: -66.5,107.5
parent: 2
- - uid: 8211
+ - uid: 18145
components:
- type: Transform
- pos: 101.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,59.5
parent: 2
- - uid: 8212
+ - uid: 18172
components:
- type: Transform
- pos: 101.5,65.5
+ pos: -23.5,80.5
parent: 2
- - uid: 8214
+ - uid: 18174
components:
- type: Transform
- pos: 102.5,53.5
+ pos: -67.5,104.5
parent: 2
- - uid: 8215
+ - uid: 18178
components:
- type: Transform
- pos: 102.5,63.5
+ pos: -19.5,80.5
parent: 2
- - uid: 8216
+ - uid: 18183
components:
- type: Transform
- pos: 102.5,62.5
+ pos: -26.5,80.5
parent: 2
- - uid: 8217
+ - uid: 18191
components:
- type: Transform
- pos: 102.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-42.5
parent: 2
- - uid: 8218
+ - uid: 18192
components:
- type: Transform
- pos: 101.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,30.5
parent: 2
- - uid: 8219
+ - uid: 18196
components:
- type: Transform
- pos: 101.5,59.5
+ pos: -46.5,80.5
parent: 2
- - uid: 8220
+ - uid: 18221
components:
- type: Transform
- pos: 101.5,58.5
+ pos: -39.5,68.5
parent: 2
- - uid: 8221
+ - uid: 18222
components:
- type: Transform
- pos: 102.5,58.5
+ pos: -36.5,68.5
parent: 2
- - uid: 8222
+ - uid: 18224
components:
- type: Transform
- pos: 102.5,57.5
+ pos: -35.5,68.5
parent: 2
- - uid: 8223
+ - uid: 18242
components:
- type: Transform
- pos: 102.5,56.5
+ pos: -34.5,62.5
parent: 2
- - uid: 8224
+ - uid: 18252
components:
- type: Transform
- pos: 102.5,55.5
+ pos: -38.5,68.5
parent: 2
- - uid: 8225
+ - uid: 18270
components:
- type: Transform
- pos: 102.5,54.5
+ pos: -37.5,68.5
parent: 2
- - uid: 8226
+ - uid: 18333
components:
- type: Transform
- pos: 103.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-43.5
parent: 2
- - uid: 8227
+ - uid: 18346
components:
- type: Transform
- pos: 103.5,50.5
+ pos: -76.5,10.5
parent: 2
- - uid: 8228
+ - uid: 18372
components:
- type: Transform
- pos: 104.5,50.5
+ pos: -60.5,47.5
parent: 2
- - uid: 8229
+ - uid: 18383
components:
- type: Transform
- pos: 104.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,59.5
parent: 2
- - uid: 8238
+ - uid: 18384
components:
- type: Transform
- pos: 105.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,60.5
parent: 2
- - uid: 8239
+ - uid: 18386
components:
- type: Transform
- pos: 106.5,49.5
+ pos: -67.5,103.5
parent: 2
- - uid: 8242
+ - uid: 18391
components:
- type: Transform
- pos: 106.5,48.5
+ pos: -67.5,102.5
parent: 2
- - uid: 8243
+ - uid: 18398
components:
- type: Transform
- pos: 106.5,47.5
+ pos: -66.5,101.5
parent: 2
- - uid: 8244
+ - uid: 18403
components:
- type: Transform
- pos: 106.5,46.5
+ pos: -66.5,97.5
parent: 2
- - uid: 8245
+ - uid: 18406
components:
- type: Transform
- pos: 106.5,45.5
+ pos: -66.5,96.5
parent: 2
- - uid: 8246
+ - uid: 18408
components:
- type: Transform
- pos: 106.5,44.5
+ pos: -60.5,6.5
parent: 2
- - uid: 8247
+ - uid: 18409
components:
- type: Transform
- pos: 107.5,43.5
+ pos: -59.5,6.5
parent: 2
- - uid: 8248
+ - uid: 18410
components:
- type: Transform
- pos: 106.5,42.5
+ pos: -57.5,6.5
parent: 2
- - uid: 8249
+ - uid: 18411
components:
- type: Transform
- pos: 106.5,41.5
+ pos: -56.5,6.5
parent: 2
- - uid: 8250
+ - uid: 18412
components:
- type: Transform
- pos: 106.5,40.5
+ pos: -55.5,6.5
parent: 2
- - uid: 8251
+ - uid: 18413
components:
- type: Transform
- pos: 104.5,16.5
+ pos: -54.5,6.5
parent: 2
- - uid: 8252
+ - uid: 18414
components:
- type: Transform
- pos: 106.5,37.5
+ pos: -52.5,6.5
parent: 2
- - uid: 8253
+ - uid: 18440
components:
- type: Transform
- pos: 106.5,35.5
+ pos: -66.5,95.5
parent: 2
- - uid: 8254
+ - uid: 18441
components:
- type: Transform
- pos: 106.5,34.5
+ pos: -66.5,94.5
parent: 2
- - uid: 8255
+ - uid: 18498
components:
- type: Transform
- pos: 106.5,33.5
+ pos: -66.5,93.5
parent: 2
- - uid: 8256
+ - uid: 18520
components:
- type: Transform
- pos: 106.5,32.5
+ pos: -66.5,78.5
parent: 2
- - uid: 8257
+ - uid: 18530
components:
- type: Transform
- pos: 107.5,31.5
+ pos: -66.5,92.5
parent: 2
- - uid: 8260
+ - uid: 18543
components:
- type: Transform
- pos: 108.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,11.5
parent: 2
- - uid: 8261
+ - uid: 18549
components:
- type: Transform
- pos: 108.5,27.5
+ pos: -66.5,91.5
parent: 2
- - uid: 8262
+ - uid: 18554
components:
- type: Transform
- pos: 108.5,26.5
+ pos: -66.5,89.5
parent: 2
- - uid: 8263
+ - uid: 18578
components:
- type: Transform
- pos: 108.5,25.5
+ pos: -66.5,87.5
parent: 2
- - uid: 8264
+ - uid: 18579
components:
- type: Transform
- pos: 108.5,22.5
+ pos: -66.5,85.5
parent: 2
- - uid: 8265
+ - uid: 18616
components:
- type: Transform
- pos: 108.5,21.5
+ pos: -66.5,81.5
parent: 2
- - uid: 8266
+ - uid: 18635
components:
- type: Transform
- pos: 107.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-17.5
parent: 2
- - uid: 8267
+ - uid: 18659
components:
- type: Transform
- pos: 105.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-15.5
parent: 2
- - uid: 8272
+ - uid: 18667
components:
- type: Transform
- pos: 104.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-18.5
parent: 2
- - uid: 8273
+ - uid: 18686
components:
- type: Transform
- pos: 102.5,16.5
+ pos: -66.5,74.5
parent: 2
- - uid: 8275
+ - uid: 18687
components:
- type: Transform
- pos: 102.5,14.5
+ pos: -66.5,73.5
parent: 2
- - uid: 8276
+ - uid: 18690
components:
- type: Transform
- pos: 102.5,13.5
+ pos: -64.5,71.5
parent: 2
- - uid: 8277
+ - uid: 18691
components:
- type: Transform
- pos: 101.5,12.5
+ pos: -61.5,71.5
parent: 2
- - uid: 8278
+ - uid: 18692
components:
- type: Transform
- pos: 100.5,12.5
+ pos: -59.5,71.5
parent: 2
- - uid: 8279
+ - uid: 18693
components:
- type: Transform
- pos: 99.5,12.5
+ pos: -54.5,72.5
parent: 2
- - uid: 8285
+ - uid: 18694
components:
- type: Transform
- pos: 98.5,11.5
+ pos: -55.5,72.5
parent: 2
- - uid: 8286
+ - uid: 18696
components:
- type: Transform
- pos: 98.5,10.5
+ pos: -52.5,72.5
parent: 2
- - uid: 8287
+ - uid: 18782
components:
- type: Transform
- pos: 98.5,8.5
+ pos: 34.5,81.5
parent: 2
- - uid: 8288
+ - uid: 18789
components:
- type: Transform
- pos: 98.5,7.5
+ pos: 19.5,77.5
parent: 2
- - uid: 8289
+ - uid: 18792
components:
- type: Transform
- pos: 96.5,6.5
+ pos: 39.5,76.5
parent: 2
- - uid: 8290
+ - uid: 18793
components:
- type: Transform
- pos: 92.5,6.5
+ pos: 40.5,76.5
parent: 2
- - uid: 8291
+ - uid: 18794
components:
- type: Transform
- pos: 94.5,6.5
+ pos: 38.5,76.5
parent: 2
- - uid: 8292
+ - uid: 18807
components:
- type: Transform
- pos: 92.5,4.5
+ pos: -121.5,57.5
parent: 2
- - uid: 8293
+ - uid: 18810
components:
- type: Transform
- pos: 92.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,27.5
parent: 2
- - uid: 8294
+ - uid: 18815
components:
- type: Transform
- pos: 92.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,-21.5
parent: 2
- - uid: 8295
+ - uid: 18828
components:
- type: Transform
- pos: 92.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,-22.5
parent: 2
- - uid: 8296
+ - uid: 18833
components:
- type: Transform
- pos: 92.5,1.5
+ pos: -124.5,64.5
parent: 2
- - uid: 8297
+ - uid: 18834
components:
- type: Transform
- pos: 92.5,-2.5
+ pos: -120.5,64.5
parent: 2
- - uid: 8298
+ - uid: 18835
components:
- type: Transform
- pos: 93.5,1.5
+ pos: -118.5,64.5
parent: 2
- - uid: 8299
+ - uid: 18836
components:
- type: Transform
- pos: 92.5,-1.5
+ pos: -115.5,64.5
parent: 2
- - uid: 8300
+ - uid: 18837
components:
- type: Transform
- pos: 92.5,-0.5
+ pos: -116.5,64.5
parent: 2
- - uid: 8301
+ - uid: 18838
components:
- type: Transform
- pos: 92.5,-4.5
+ pos: -123.5,64.5
parent: 2
- - uid: 8302
+ - uid: 18840
components:
- type: Transform
- pos: 92.5,-7.5
+ pos: -113.5,65.5
parent: 2
- - uid: 8303
+ - uid: 18841
components:
- type: Transform
- pos: 92.5,-6.5
+ pos: -112.5,65.5
parent: 2
- - uid: 8305
+ - uid: 18842
components:
- type: Transform
- pos: 92.5,-9.5
+ pos: -108.5,64.5
parent: 2
- - uid: 8306
+ - uid: 18843
components:
- type: Transform
- pos: 91.5,-10.5
+ pos: -108.5,64.5
parent: 2
- - uid: 8307
+ - uid: 18844
components:
- type: Transform
- pos: 98.5,9.5
+ pos: -106.5,64.5
parent: 2
- - uid: 8308
+ - uid: 18845
components:
- type: Transform
- pos: 92.5,-8.5
+ pos: -105.5,64.5
parent: 2
- - uid: 8344
+ - uid: 18846
components:
- type: Transform
- pos: 82.5,-23.5
+ pos: -101.5,65.5
parent: 2
- - uid: 8345
+ - uid: 18847
components:
- type: Transform
- pos: 89.5,-10.5
+ pos: -100.5,65.5
parent: 2
- - uid: 8346
+ - uid: 18848
components:
- type: Transform
- pos: 88.5,-10.5
+ pos: -99.5,62.5
parent: 2
- - uid: 8347
+ - uid: 18849
components:
- type: Transform
- pos: 87.5,-10.5
+ pos: -99.5,62.5
parent: 2
- - uid: 8348
+ - uid: 18872
components:
- type: Transform
- pos: 86.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,12.5
parent: 2
- - uid: 8349
+ - uid: 18873
components:
- type: Transform
- pos: 85.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-14.5
parent: 2
- - uid: 8485
+ - uid: 18876
components:
- type: Transform
- pos: 83.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-21.5
parent: 2
- - uid: 8490
+ - uid: 18877
components:
- type: Transform
- pos: 83.5,-23.5
+ pos: -122.5,64.5
parent: 2
- - uid: 8498
+ - uid: 18878
components:
- type: Transform
- pos: 84.5,-23.5
+ pos: -119.5,65.5
parent: 2
- - uid: 8499
+ - uid: 18880
components:
- type: Transform
- pos: 85.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-18.5
parent: 2
- - uid: 8500
+ - uid: 18895
components:
- type: Transform
- pos: 86.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -118.5,-27.5
parent: 2
- - uid: 8502
+ - uid: 18917
components:
- type: Transform
- pos: 86.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,31.5
parent: 2
- - uid: 8503
+ - uid: 18918
components:
- type: Transform
- pos: 86.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,32.5
parent: 2
- - uid: 8505
+ - uid: 18924
components:
- type: Transform
- pos: 86.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,35.5
parent: 2
- - uid: 8506
+ - uid: 18927
components:
- type: Transform
- pos: 86.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,33.5
parent: 2
- - uid: 8508
+ - uid: 18949
components:
- type: Transform
- pos: 87.5,-29.5
+ pos: 26.5,76.5
parent: 2
- - uid: 8510
+ - uid: 18960
components:
- type: Transform
- pos: 78.5,-39.5
+ pos: 49.5,77.5
parent: 2
- - uid: 8511
+ - uid: 18961
components:
- type: Transform
- pos: 86.5,-31.5
+ pos: 51.5,77.5
parent: 2
- - uid: 8513
+ - uid: 18962
components:
- type: Transform
- pos: 86.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-14.5
parent: 2
- - uid: 8519
+ - uid: 18975
components:
- type: Transform
- pos: 87.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-16.5
parent: 2
- - uid: 8525
+ - uid: 18998
components:
- type: Transform
- pos: 87.5,-35.5
+ pos: -46.5,38.5
parent: 2
- - uid: 8526
+ - uid: 19001
components:
- type: Transform
- pos: 88.5,-36.5
+ pos: 115.5,-21.5
parent: 2
- - uid: 8527
+ - uid: 19004
components:
- type: Transform
- pos: 88.5,-35.5
+ pos: 115.5,-20.5
parent: 2
- - uid: 8528
+ - uid: 19005
components:
- type: Transform
- pos: 87.5,-37.5
+ pos: 115.5,-5.5
parent: 2
- - uid: 8529
+ - uid: 19006
components:
- type: Transform
- pos: 87.5,-38.5
+ pos: 115.5,-1.5
parent: 2
- - uid: 8530
+ - uid: 19007
components:
- type: Transform
- pos: 85.5,-38.5
+ pos: 115.5,-2.5
parent: 2
- - uid: 8533
+ - uid: 19008
components:
- type: Transform
- pos: 84.5,-38.5
+ pos: 115.5,-7.5
parent: 2
- - uid: 8541
+ - uid: 19009
components:
- type: Transform
- pos: 83.5,-38.5
+ pos: 115.5,-8.5
parent: 2
- - uid: 8548
+ - uid: 19010
components:
- type: Transform
- pos: 81.5,-38.5
+ pos: 115.5,-19.5
parent: 2
- - uid: 8555
+ - uid: 19013
components:
- type: Transform
- pos: 80.5,-38.5
+ pos: 115.5,4.5
parent: 2
- - uid: 8561
+ - uid: 19015
components:
- type: Transform
- pos: 77.5,-39.5
+ pos: 89.5,-8.5
parent: 2
- - uid: 8572
+ - uid: 19022
components:
- type: Transform
- pos: 76.5,-39.5
+ pos: 116.5,-3.5
parent: 2
- - uid: 8576
+ - uid: 19023
components:
- type: Transform
- pos: 75.5,-39.5
+ pos: 115.5,-9.5
parent: 2
- - uid: 8578
+ - uid: 19024
components:
- type: Transform
- pos: 75.5,-40.5
+ pos: 115.5,-10.5
parent: 2
- - uid: 8581
+ - uid: 19025
components:
- type: Transform
- pos: 74.5,-41.5
+ pos: 115.5,-13.5
parent: 2
- - uid: 8582
+ - uid: 19063
components:
- type: Transform
- pos: 73.5,-42.5
+ pos: 115.5,3.5
parent: 2
- - uid: 8585
+ - uid: 19064
components:
- type: Transform
- pos: 73.5,-44.5
+ pos: 115.5,2.5
parent: 2
- - uid: 8587
+ - uid: 19065
components:
- type: Transform
- pos: 74.5,-46.5
+ pos: 115.5,1.5
parent: 2
- - uid: 8590
+ - uid: 19066
components:
- type: Transform
- pos: 74.5,-47.5
+ pos: 115.5,0.5
parent: 2
- - uid: 8592
+ - uid: 19078
components:
- type: Transform
- pos: 74.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,5.5
parent: 2
- - uid: 8593
+ - uid: 19082
components:
- type: Transform
- pos: 73.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,5.5
parent: 2
- - uid: 8603
+ - uid: 19124
components:
- type: Transform
- pos: 73.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,5.5
parent: 2
- - uid: 8607
+ - uid: 19131
components:
- type: Transform
- pos: 73.5,-51.5
+ pos: 92.5,-4.5
parent: 2
- - uid: 8611
+ - uid: 19151
components:
- type: Transform
- pos: 73.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,8.5
parent: 2
- - uid: 8612
+ - uid: 19159
components:
- type: Transform
- pos: 74.5,-54.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,22.5
parent: 2
- - uid: 8615
+ - uid: 19194
components:
- type: Transform
- pos: 74.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-17.5
parent: 2
- - uid: 8618
+ - uid: 19195
components:
- type: Transform
- pos: 73.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-1.5
parent: 2
- - uid: 8619
+ - uid: 19216
components:
- type: Transform
- pos: 73.5,-58.5
+ pos: 82.5,-3.5
parent: 2
- - uid: 8625
+ - uid: 19217
components:
- type: Transform
- pos: 73.5,-59.5
+ pos: 89.5,-24.5
parent: 2
- - uid: 8627
+ - uid: 19220
components:
- type: Transform
- pos: 73.5,-60.5
+ pos: 84.5,-3.5
parent: 2
- - uid: 8628
+ - uid: 19221
components:
- type: Transform
- pos: 73.5,-55.5
+ pos: 110.5,-28.5
parent: 2
- - uid: 8629
+ - uid: 19222
components:
- type: Transform
- pos: 73.5,-62.5
+ pos: 108.5,-28.5
parent: 2
- - uid: 8630
+ - uid: 19223
components:
- type: Transform
- pos: 73.5,-63.5
+ pos: -38.5,-7.5
parent: 2
- - uid: 8631
+ - uid: 19226
components:
- type: Transform
- pos: 73.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,1.5
parent: 2
- - uid: 8632
+ - uid: 19229
components:
- type: Transform
- pos: 73.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-18.5
parent: 2
- - uid: 8633
+ - uid: 19234
components:
- type: Transform
- pos: 73.5,-66.5
+ pos: 93.5,-4.5
parent: 2
- - uid: 8634
+ - uid: 19235
components:
- type: Transform
- pos: 74.5,-67.5
+ pos: 89.5,-7.5
parent: 2
- - uid: 8635
+ - uid: 19238
components:
- type: Transform
- pos: 76.5,-67.5
+ pos: 91.5,-4.5
parent: 2
- - uid: 8667
+ - uid: 19243
components:
- type: Transform
- pos: 78.5,-68.5
+ pos: 89.5,-6.5
parent: 2
- - uid: 8683
+ - uid: 19317
components:
- type: Transform
- pos: 79.5,-68.5
+ pos: -45.5,64.5
parent: 2
- - uid: 8684
+ - uid: 19321
components:
- type: Transform
- pos: 79.5,-69.5
+ pos: 28.5,81.5
parent: 2
- - uid: 8685
+ - uid: 19327
components:
- type: Transform
- pos: 79.5,-71.5
+ pos: 25.5,81.5
parent: 2
- - uid: 8686
+ - uid: 19328
components:
- type: Transform
- pos: 80.5,-73.5
+ pos: -61.5,49.5
parent: 2
- - uid: 8687
+ - uid: 19330
components:
- type: Transform
- pos: 80.5,-74.5
+ pos: -61.5,46.5
parent: 2
- - uid: 8688
+ - uid: 19331
components:
- type: Transform
- pos: 80.5,-75.5
+ pos: -61.5,45.5
parent: 2
- - uid: 8689
+ - uid: 19340
components:
- type: Transform
- pos: 80.5,-76.5
+ pos: -108.5,11.5
parent: 2
- - uid: 8696
+ - uid: 19341
components:
- type: Transform
- pos: -57.5,42.5
+ pos: -87.5,-15.5
parent: 2
- - uid: 8697
+ - uid: 19342
components:
- type: Transform
- pos: -58.5,42.5
+ pos: -81.5,-15.5
parent: 2
- - uid: 8705
+ - uid: 19346
components:
- type: Transform
- pos: -56.5,18.5
+ pos: 24.5,81.5
parent: 2
- - uid: 8710
+ - uid: 19362
components:
- type: Transform
- pos: -56.5,17.5
+ pos: 23.5,76.5
parent: 2
- - uid: 8711
+ - uid: 19363
components:
- type: Transform
- pos: -56.5,19.5
+ pos: 22.5,76.5
parent: 2
- - uid: 8718
+ - uid: 19364
components:
- type: Transform
- pos: -21.5,23.5
+ pos: 21.5,77.5
parent: 2
- - uid: 8719
+ - uid: 19365
components:
- type: Transform
- pos: -29.5,23.5
+ pos: 22.5,77.5
parent: 2
- - uid: 8728
+ - uid: 19377
components:
- type: Transform
- pos: 80.5,-77.5
+ pos: -25.5,80.5
parent: 2
- - uid: 8732
+ - uid: 19388
components:
- type: Transform
- pos: -47.5,36.5
+ pos: 32.5,81.5
parent: 2
- - uid: 8733
+ - uid: 19399
components:
- type: Transform
- pos: -46.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-4.5
parent: 2
- - uid: 8735
+ - uid: 19401
components:
- type: Transform
- pos: -30.5,23.5
+ pos: 41.5,81.5
parent: 2
- - uid: 8762
+ - uid: 19404
components:
- type: Transform
- pos: 80.5,-78.5
+ pos: 42.5,81.5
parent: 2
- - uid: 8776
+ - uid: 19413
components:
- type: Transform
- pos: 80.5,-79.5
+ pos: 33.5,81.5
parent: 2
- - uid: 8794
+ - uid: 19433
components:
- type: Transform
- pos: -56.5,22.5
+ pos: 30.5,81.5
parent: 2
- - uid: 8804
+ - uid: 19457
components:
- type: Transform
- pos: -56.5,27.5
+ pos: -99.5,31.5
parent: 2
- - uid: 8805
+ - uid: 19463
components:
- type: Transform
- pos: -56.5,23.5
+ pos: -0.5,79.5
parent: 2
- - uid: 8806
+ - uid: 19464
components:
- type: Transform
- pos: -56.5,26.5
+ pos: 1.5,79.5
parent: 2
- - uid: 8837
+ - uid: 19465
components:
- type: Transform
- pos: -47.5,24.5
+ pos: 3.5,79.5
parent: 2
- - uid: 8855
+ - uid: 19472
components:
- type: Transform
- pos: 68.5,-93.5
+ pos: -4.5,79.5
parent: 2
- - uid: 8876
+ - uid: 19473
components:
- type: Transform
- pos: -62.5,21.5
+ pos: -6.5,79.5
parent: 2
- - uid: 8891
+ - uid: 19474
components:
- type: Transform
- pos: -61.5,21.5
+ pos: -8.5,79.5
parent: 2
- - uid: 8892
+ - uid: 19475
components:
- type: Transform
- pos: -60.5,21.5
+ pos: 7.5,79.5
parent: 2
- - uid: 8893
+ - uid: 19476
components:
- type: Transform
- pos: -59.5,21.5
+ pos: 9.5,79.5
parent: 2
- - uid: 8909
+ - uid: 19477
components:
- type: Transform
- pos: -50.5,33.5
+ pos: 11.5,79.5
parent: 2
- - uid: 8913
+ - uid: 19479
components:
- type: Transform
- pos: -51.5,24.5
+ pos: -83.5,23.5
parent: 2
- - uid: 8927
+ - uid: 19488
components:
- type: Transform
- pos: -57.5,29.5
+ pos: -8.5,80.5
parent: 2
- - uid: 8928
+ - uid: 19489
components:
- type: Transform
- pos: -57.5,30.5
+ pos: -8.5,81.5
parent: 2
- - uid: 8937
+ - uid: 19490
components:
- type: Transform
- pos: -50.5,24.5
+ pos: -8.5,82.5
parent: 2
- - uid: 8949
+ - uid: 19491
components:
- type: Transform
- pos: -48.5,24.5
+ pos: -6.5,80.5
parent: 2
- - uid: 8959
+ - uid: 19492
components:
- type: Transform
- pos: -37.5,-9.5
+ pos: -6.5,81.5
parent: 2
- - uid: 8963
+ - uid: 19493
components:
- type: Transform
- pos: -40.5,-9.5
+ pos: -6.5,82.5
parent: 2
- - uid: 8965
+ - uid: 19494
components:
- type: Transform
- pos: -58.5,33.5
+ pos: -4.5,80.5
parent: 2
- - uid: 8969
+ - uid: 19495
components:
- type: Transform
- pos: -50.5,34.5
+ pos: -4.5,81.5
parent: 2
- - uid: 9059
+ - uid: 19496
components:
- type: Transform
- pos: -55.5,42.5
+ pos: -4.5,82.5
parent: 2
- - uid: 9061
+ - uid: 19497
components:
- type: Transform
- pos: -46.5,32.5
+ pos: -0.5,80.5
parent: 2
- - uid: 9062
+ - uid: 19498
components:
- type: Transform
- pos: -47.5,32.5
+ pos: -0.5,81.5
parent: 2
- - uid: 9071
+ - uid: 19499
components:
- type: Transform
- pos: -28.5,23.5
+ pos: -0.5,82.5
parent: 2
- - uid: 9100
+ - uid: 19500
components:
- type: Transform
- pos: 80.5,-81.5
+ pos: 1.5,80.5
parent: 2
- - uid: 9113
+ - uid: 19501
components:
- type: Transform
- pos: -25.5,23.5
+ pos: 1.5,81.5
parent: 2
- - uid: 9114
+ - uid: 19502
components:
- type: Transform
- pos: -26.5,23.5
+ pos: 1.5,82.5
parent: 2
- - uid: 9117
+ - uid: 19503
components:
- type: Transform
- pos: 81.5,-82.5
+ pos: 3.5,80.5
parent: 2
- - uid: 9118
+ - uid: 19504
components:
- type: Transform
- pos: 81.5,-83.5
+ pos: 3.5,81.5
parent: 2
- - uid: 9153
+ - uid: 19505
components:
- type: Transform
- pos: -106.5,-11.5
+ pos: 3.5,82.5
parent: 2
- - uid: 9154
+ - uid: 19506
components:
- type: Transform
- pos: -105.5,-12.5
+ pos: 7.5,80.5
parent: 2
- - uid: 9155
+ - uid: 19507
components:
- type: Transform
- pos: 81.5,-84.5
+ pos: 7.5,81.5
parent: 2
- - uid: 9172
+ - uid: 19508
components:
- type: Transform
- pos: 81.5,-85.5
+ pos: 7.5,82.5
parent: 2
- - uid: 9179
+ - uid: 19509
components:
- type: Transform
- pos: 80.5,-85.5
+ pos: 9.5,80.5
parent: 2
- - uid: 9181
+ - uid: 19510
components:
- type: Transform
- pos: 80.5,-86.5
+ pos: 9.5,81.5
parent: 2
- - uid: 9183
+ - uid: 19511
components:
- type: Transform
- pos: -49.5,47.5
+ pos: 9.5,82.5
parent: 2
- - uid: 9184
+ - uid: 19512
components:
- type: Transform
- pos: -37.5,47.5
+ pos: 11.5,80.5
parent: 2
- - uid: 9185
+ - uid: 19513
components:
- type: Transform
- pos: -45.5,47.5
+ pos: 11.5,81.5
parent: 2
- - uid: 9186
+ - uid: 19514
components:
- type: Transform
- pos: 80.5,-87.5
+ pos: 11.5,82.5
parent: 2
- - uid: 9189
+ - uid: 19515
components:
- type: Transform
- pos: 79.5,-88.5
+ pos: 7.5,72.5
parent: 2
- - uid: 9191
+ - uid: 19602
components:
- type: Transform
- pos: -41.5,47.5
+ pos: 37.5,81.5
parent: 2
- - uid: 9192
+ - uid: 19611
components:
- type: Transform
- pos: -39.5,47.5
+ pos: -12.5,77.5
parent: 2
- - uid: 9193
+ - uid: 19612
components:
- type: Transform
- pos: -47.5,47.5
+ pos: -12.5,76.5
parent: 2
- - uid: 9194
+ - uid: 19613
components:
- type: Transform
- pos: 79.5,-89.5
+ pos: -12.5,75.5
parent: 2
- - uid: 9195
+ - uid: 19614
components:
- type: Transform
- pos: 79.5,-91.5
+ pos: -12.5,74.5
parent: 2
- - uid: 9196
+ - uid: 19615
components:
- type: Transform
- pos: 77.5,-91.5
+ pos: 15.5,77.5
parent: 2
- - uid: 9198
+ - uid: 19616
components:
- type: Transform
- pos: 77.5,-92.5
+ pos: 15.5,76.5
parent: 2
- - uid: 9199
+ - uid: 19617
components:
- type: Transform
- pos: 76.5,-92.5
+ pos: 15.5,75.5
parent: 2
- - uid: 9200
+ - uid: 19618
components:
- type: Transform
- pos: -103.5,-13.5
+ pos: 15.5,74.5
parent: 2
- - uid: 9201
+ - uid: 19655
components:
- type: Transform
- pos: -106.5,-10.5
+ pos: -34.5,61.5
parent: 2
- - uid: 9202
+ - uid: 19731
components:
- type: Transform
- pos: 74.5,-93.5
+ pos: 11.5,72.5
parent: 2
- - uid: 9203
+ - uid: 19799
components:
- type: Transform
- pos: 73.5,-93.5
+ pos: -12.5,71.5
parent: 2
- - uid: 9205
+ - uid: 19830
components:
- type: Transform
- pos: 72.5,-93.5
+ pos: -26.5,68.5
parent: 2
- - uid: 9210
+ - uid: 19831
components:
- type: Transform
- pos: -104.5,-13.5
+ pos: -27.5,68.5
parent: 2
- - uid: 9211
+ - uid: 19832
components:
- type: Transform
- pos: 71.5,-93.5
+ pos: -25.5,68.5
parent: 2
- - uid: 9215
+ - uid: 19833
components:
- type: Transform
- pos: -24.5,23.5
+ pos: -23.5,68.5
parent: 2
- - uid: 9221
+ - uid: 19834
components:
- type: Transform
- pos: 41.5,58.5
+ pos: -22.5,68.5
parent: 2
- - uid: 9222
+ - uid: 19835
components:
- type: Transform
- pos: 70.5,-93.5
+ pos: -21.5,68.5
parent: 2
- - uid: 9225
+ - uid: 19836
components:
- type: Transform
- pos: 49.5,52.5
+ pos: -19.5,68.5
parent: 2
- - uid: 9234
+ - uid: 19837
components:
- type: Transform
- pos: 43.5,12.5
+ pos: -18.5,68.5
parent: 2
- - uid: 9238
+ - uid: 19838
components:
- type: Transform
- pos: 41.5,12.5
+ pos: -17.5,68.5
parent: 2
- - uid: 9245
+ - uid: 19839
components:
- type: Transform
- pos: 47.5,-10.5
+ pos: -15.5,68.5
parent: 2
- - uid: 9258
+ - uid: 19840
components:
- type: Transform
- pos: 47.5,58.5
+ pos: -14.5,68.5
parent: 2
- - uid: 9261
+ - uid: 19841
components:
- type: Transform
- pos: 69.5,-93.5
+ pos: -13.5,68.5
parent: 2
- - uid: 9266
+ - uid: 19844
components:
- type: Transform
- pos: 37.5,58.5
+ pos: -12.5,70.5
parent: 2
- - uid: 9267
+ - uid: 19845
components:
- type: Transform
- pos: 43.5,58.5
+ pos: -12.5,69.5
parent: 2
- - uid: 9276
+ - uid: 19892
components:
- type: Transform
- pos: 66.5,-93.5
+ pos: 77.5,3.5
parent: 2
- - uid: 9281
+ - uid: 19908
components:
- type: Transform
- pos: -98.5,-4.5
+ pos: -66.5,-17.5
parent: 2
- - uid: 9282
+ - uid: 19911
components:
- type: Transform
- pos: -98.5,-5.5
+ pos: -63.5,-14.5
parent: 2
- - uid: 9283
+ - uid: 19918
components:
- type: Transform
- pos: -98.5,-3.5
+ pos: 113.5,-23.5
parent: 2
- - uid: 9284
+ - uid: 19919
components:
- type: Transform
- pos: -98.5,-2.5
+ pos: 113.5,-21.5
parent: 2
- - uid: 9285
+ - uid: 19923
components:
- type: Transform
- pos: -98.5,-7.5
+ pos: -63.5,-15.5
parent: 2
- - uid: 9290
+ - uid: 19949
components:
- type: Transform
- pos: -43.5,47.5
+ pos: 92.5,39.5
parent: 2
- - uid: 9292
+ - uid: 20007
components:
- type: Transform
- pos: 35.5,52.5
+ pos: 44.5,-32.5
parent: 2
- - uid: 9294
+ - uid: 20013
components:
- type: Transform
- pos: 64.5,-93.5
+ pos: -63.5,-17.5
parent: 2
- - uid: 9296
+ - uid: 20014
components:
- type: Transform
- pos: 63.5,-93.5
+ pos: -63.5,-18.5
parent: 2
- - uid: 9297
+ - uid: 20155
components:
- type: Transform
- pos: 62.5,-93.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-14.5
parent: 2
- - uid: 9298
+ - uid: 20160
components:
- type: Transform
- pos: 39.5,-86.5
+ pos: 19.5,-17.5
parent: 2
- - uid: 9304
+ - uid: 20163
components:
- type: Transform
- pos: 34.5,52.5
+ pos: -23.5,62.5
parent: 2
- - uid: 9306
+ - uid: 20255
components:
- type: Transform
- pos: -89.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,7.5
parent: 2
- - uid: 9338
+ - uid: 20272
components:
- type: Transform
- pos: -99.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,14.5
parent: 2
- - uid: 9343
+ - uid: 20373
components:
- type: Transform
- pos: -98.5,-6.5
+ pos: 67.5,39.5
parent: 2
- - uid: 9346
+ - uid: 20482
components:
- type: Transform
- pos: -37.5,5.5
+ pos: 47.5,-32.5
parent: 2
- - uid: 9353
+ - uid: 20491
components:
- type: Transform
- pos: -54.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,10.5
parent: 2
- - uid: 9462
+ - uid: 20492
components:
- type: Transform
- pos: -37.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,10.5
parent: 2
- - uid: 9463
+ - uid: 20504
components:
- type: Transform
- pos: -39.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,58.5
parent: 2
- - uid: 9464
+ - uid: 20506
components:
- type: Transform
- pos: -41.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,14.5
parent: 2
- - uid: 9465
+ - uid: 20515
components:
- type: Transform
- pos: -43.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,58.5
parent: 2
- - uid: 9466
+ - uid: 20641
components:
- type: Transform
- pos: -45.5,52.5
+ pos: -32.5,1.5
parent: 2
- - uid: 9467
+ - uid: 20718
components:
- type: Transform
- pos: -47.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-39.5
parent: 2
- - uid: 9468
+ - uid: 20724
components:
- type: Transform
- pos: -49.5,52.5
+ pos: -108.5,10.5
parent: 2
- - uid: 9489
+ - uid: 20772
components:
- type: Transform
- pos: 41.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,2.5
parent: 2
- - uid: 9527
+ - uid: 20854
components:
- type: Transform
- pos: -66.5,-14.5
+ pos: 103.5,-4.5
parent: 2
- - uid: 9535
+ - uid: 20855
components:
- type: Transform
- pos: -66.5,-15.5
+ pos: 95.5,-4.5
parent: 2
- - uid: 9555
+ - uid: 20863
components:
- type: Transform
- pos: -90.5,-13.5
+ pos: 108.5,-4.5
parent: 2
- - uid: 9559
+ - uid: 20866
components:
- type: Transform
- pos: -104.5,15.5
+ pos: -36.5,74.5
parent: 2
- - uid: 9579
+ - uid: 20867
components:
- type: Transform
- pos: -91.5,-11.5
+ pos: -35.5,74.5
parent: 2
- - uid: 9580
+ - uid: 20868
components:
- type: Transform
- pos: -106.5,2.5
+ pos: -38.5,74.5
parent: 2
- - uid: 9582
+ - uid: 20880
components:
- type: Transform
- pos: -107.5,3.5
+ pos: 113.5,-24.5
parent: 2
- - uid: 9583
+ - uid: 20881
components:
- type: Transform
- pos: 61.5,-94.5
+ pos: 113.5,-22.5
parent: 2
- - uid: 9623
+ - uid: 20883
components:
- type: Transform
- pos: -55.5,48.5
+ pos: 110.5,-4.5
parent: 2
- - uid: 9647
+ - uid: 20905
components:
- type: Transform
- pos: 60.5,-94.5
+ pos: -19.5,62.5
parent: 2
- - uid: 9652
+ - uid: 20929
components:
- type: Transform
- pos: 4.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,60.5
parent: 2
- - uid: 9653
+ - uid: 20934
components:
- type: Transform
- pos: 4.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -104.5,14.5
parent: 2
- - uid: 9681
+ - uid: 20990
components:
- type: Transform
- pos: -107.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,44.5
parent: 2
- - uid: 9687
+ - uid: 21045
components:
- type: Transform
- pos: -53.5,42.5
+ pos: -17.5,79.5
parent: 2
- - uid: 9721
+ - uid: 21077
components:
- type: Transform
- pos: 59.5,-94.5
+ pos: -41.5,73.5
parent: 2
- - uid: 9722
+ - uid: 21122
components:
- type: Transform
- pos: 58.5,-94.5
+ pos: -42.5,18.5
parent: 2
- - uid: 9785
+ - uid: 21129
components:
- type: Transform
- pos: 57.5,-94.5
+ pos: 82.5,-28.5
parent: 2
- - uid: 9818
+ - uid: 21131
components:
- type: Transform
- pos: 56.5,-94.5
+ pos: 80.5,-24.5
parent: 2
- - uid: 9819
+ - uid: 21132
components:
- type: Transform
- pos: 55.5,-94.5
+ pos: 80.5,-25.5
parent: 2
- - uid: 9822
+ - uid: 21163
components:
- type: Transform
- pos: 54.5,-94.5
+ pos: 82.5,-29.5
parent: 2
- - uid: 9840
+ - uid: 21188
components:
- type: Transform
- pos: 53.5,-94.5
+ pos: 82.5,-30.5
parent: 2
- - uid: 9848
+ - uid: 21189
components:
- type: Transform
- pos: 51.5,-94.5
+ pos: 82.5,-31.5
parent: 2
- - uid: 10032
+ - uid: 21190
components:
- type: Transform
- pos: 50.5,-93.5
+ pos: 82.5,-32.5
parent: 2
- - uid: 10096
+ - uid: 21191
components:
- type: Transform
- pos: 49.5,-94.5
+ pos: 81.5,-33.5
parent: 2
- - uid: 10151
+ - uid: 21204
components:
- type: Transform
- pos: 47.5,-94.5
+ pos: 80.5,-35.5
parent: 2
- - uid: 10190
+ - uid: 21467
components:
- type: Transform
- pos: -50.5,15.5
+ pos: 47.5,-1.5
parent: 2
- - uid: 10191
+ - uid: 21569
components:
- type: Transform
- pos: -49.5,15.5
+ pos: 79.5,-35.5
parent: 2
- - uid: 10192
+ - uid: 21793
components:
- type: Transform
- pos: -48.5,15.5
+ pos: -16.5,79.5
parent: 2
- - uid: 10332
+ - uid: 21795
components:
- type: Transform
- pos: 46.5,-93.5
+ pos: -20.5,80.5
parent: 2
- - uid: 10333
+ - uid: 21796
components:
- type: Transform
- pos: 45.5,-93.5
+ pos: -21.5,80.5
parent: 2
- - uid: 10334
+ - uid: 21797
components:
- type: Transform
- pos: 44.5,-93.5
+ pos: -18.5,80.5
parent: 2
- - uid: 10335
+ - uid: 21884
components:
- type: Transform
- pos: 43.5,-93.5
+ pos: 77.5,-35.5
parent: 2
- - uid: 10383
+ - uid: 21886
components:
- type: Transform
- pos: 4.5,54.5
+ pos: 76.5,-35.5
parent: 2
- - uid: 10385
+ - uid: 21888
components:
- type: Transform
- pos: 42.5,-93.5
+ pos: 75.5,-35.5
parent: 2
- - uid: 10386
+ - uid: 21890
components:
- type: Transform
- pos: 41.5,-92.5
+ pos: 74.5,-35.5
parent: 2
- - uid: 10387
+ - uid: 21894
components:
- type: Transform
- pos: 40.5,-91.5
+ pos: 72.5,-36.5
parent: 2
- - uid: 10388
+ - uid: 21897
components:
- type: Transform
- pos: 39.5,-91.5
+ pos: 25.5,-35.5
parent: 2
- - uid: 10398
+ - uid: 21898
components:
- type: Transform
- pos: -63.5,-34.5
+ pos: 25.5,-33.5
parent: 2
- - uid: 10399
+ - uid: 21900
components:
- type: Transform
- pos: -61.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 107.5,54.5
parent: 2
- - uid: 10400
+ - uid: 21901
components:
- type: Transform
- pos: -60.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,54.5
parent: 2
- - uid: 10401
+ - uid: 21913
components:
- type: Transform
- pos: -59.5,-36.5
+ pos: 71.5,-36.5
parent: 2
- - uid: 10438
+ - uid: 21914
components:
- type: Transform
- pos: 38.5,-89.5
+ pos: 70.5,-37.5
parent: 2
- - uid: 10477
+ - uid: 21915
components:
- type: Transform
- pos: 38.5,-88.5
+ pos: 70.5,-39.5
parent: 2
- - uid: 10478
+ - uid: 21927
components:
- type: Transform
- pos: 38.5,-87.5
+ pos: 69.5,-42.5
parent: 2
- - uid: 10570
+ - uid: 21928
components:
- type: Transform
- pos: 38.5,-86.5
+ pos: 69.5,-44.5
parent: 2
- - uid: 10576
+ - uid: 21929
components:
- type: Transform
- pos: 39.5,-85.5
+ pos: 68.5,-45.5
parent: 2
- - uid: 10577
+ - uid: 21944
components:
- type: Transform
- pos: 39.5,-84.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-17.5
parent: 2
- - uid: 10578
+ - uid: 21947
components:
- type: Transform
- pos: 39.5,-83.5
+ pos: 75.5,-72.5
parent: 2
- - uid: 10649
+ - uid: 21948
components:
- type: Transform
- pos: -27.5,-45.5
+ pos: 68.5,-43.5
parent: 2
- - uid: 11197
+ - uid: 21949
components:
- type: Transform
- pos: 39.5,-81.5
+ pos: 69.5,-41.5
parent: 2
- - uid: 11201
+ - uid: 21950
components:
- type: Transform
- pos: 40.5,-80.5
+ pos: 69.5,-43.5
parent: 2
- - uid: 11202
+ - uid: 21951
components:
- type: Transform
- pos: 40.5,-79.5
+ pos: 69.5,-45.5
parent: 2
- - uid: 11207
+ - uid: 21953
components:
- type: Transform
- pos: 40.5,-78.5
+ pos: 69.5,-46.5
parent: 2
- - uid: 11208
+ - uid: 21955
components:
- type: Transform
- pos: 40.5,-77.5
+ pos: 69.5,-48.5
parent: 2
- - uid: 11210
+ - uid: 21956
components:
- type: Transform
- pos: 40.5,-76.5
+ pos: 69.5,-49.5
parent: 2
- - uid: 11211
+ - uid: 21957
components:
- type: Transform
- pos: 40.5,-75.5
+ pos: 69.5,-50.5
parent: 2
- - uid: 11213
+ - uid: 21959
components:
- type: Transform
- pos: 40.5,-74.5
+ pos: 69.5,-51.5
parent: 2
- - uid: 11214
+ - uid: 21960
components:
- type: Transform
- pos: 39.5,-76.5
+ pos: 69.5,-52.5
parent: 2
- - uid: 11215
+ - uid: 21961
components:
- type: Transform
- pos: 39.5,-73.5
+ pos: 69.5,-55.5
parent: 2
- - uid: 11216
+ - uid: 21964
components:
- type: Transform
- pos: 39.5,-71.5
+ pos: 69.5,-63.5
parent: 2
- - uid: 11217
+ - uid: 21965
components:
- type: Transform
- pos: 38.5,-69.5
+ pos: 69.5,-64.5
parent: 2
- - uid: 11224
+ - uid: 21966
components:
- type: Transform
- pos: 38.5,-70.5
+ pos: 72.5,-71.5
parent: 2
- - uid: 11226
+ - uid: 21971
components:
- type: Transform
- pos: 38.5,-68.5
+ pos: 73.5,-71.5
parent: 2
- - uid: 11232
+ - uid: 21972
components:
- type: Transform
- pos: 38.5,-67.5
+ pos: 74.5,-71.5
parent: 2
- - uid: 11237
+ - uid: 21973
components:
- type: Transform
- pos: 38.5,-66.5
+ pos: 75.5,-73.5
parent: 2
- - uid: 11238
+ - uid: 21974
components:
- type: Transform
- pos: 38.5,-65.5
+ pos: 76.5,-77.5
parent: 2
- - uid: 11239
+ - uid: 21975
components:
- type: Transform
- pos: 38.5,-63.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,25.5
parent: 2
- - uid: 11243
+ - uid: 22028
components:
- type: Transform
- pos: 38.5,-62.5
+ pos: 76.5,-79.5
parent: 2
- - uid: 11245
+ - uid: 22033
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-5.5
+ pos: 76.5,-80.5
parent: 2
- - uid: 11252
+ - uid: 22034
components:
- type: Transform
- pos: 38.5,-61.5
+ pos: 76.5,-81.5
parent: 2
- - uid: 11253
+ - uid: 22035
components:
- type: Transform
- pos: 38.5,-60.5
+ pos: 75.5,-85.5
parent: 2
- - uid: 11255
+ - uid: 22036
components:
- type: Transform
- pos: 38.5,-58.5
+ pos: 75.5,-87.5
parent: 2
- - uid: 11259
+ - uid: 22037
components:
- type: Transform
- pos: 38.5,-56.5
+ pos: 69.5,-89.5
parent: 2
- - uid: 11261
+ - uid: 22039
components:
- type: Transform
- pos: 38.5,-55.5
+ pos: 66.5,-88.5
parent: 2
- - uid: 11262
+ - uid: 22042
components:
- type: Transform
- pos: 35.5,-52.5
+ pos: 65.5,-89.5
parent: 2
- - uid: 11264
+ - uid: 22049
components:
- type: Transform
- pos: 39.5,-54.5
+ pos: 62.5,-89.5
parent: 2
- - uid: 11266
+ - uid: 22067
components:
- type: Transform
- pos: 39.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,32.5
parent: 2
- - uid: 11271
+ - uid: 22069
components:
- type: Transform
- pos: 37.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,24.5
parent: 2
- - uid: 11275
+ - uid: 22070
components:
- type: Transform
- pos: 34.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-15.5
parent: 2
- - uid: 11276
+ - uid: 22080
components:
- type: Transform
- pos: 33.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-7.5
parent: 2
- - uid: 11278
+ - uid: 22082
components:
- type: Transform
- pos: 32.5,-52.5
+ pos: 64.5,-89.5
parent: 2
- - uid: 11279
+ - uid: 22084
components:
- type: Transform
- pos: 31.5,-52.5
+ pos: 55.5,-89.5
parent: 2
- - uid: 11283
+ - uid: 22085
components:
- type: Transform
- pos: 29.5,-52.5
+ pos: 54.5,-89.5
parent: 2
- - uid: 11288
+ - uid: 22091
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-15.5
+ pos: 53.5,-89.5
parent: 2
- - uid: 11290
+ - uid: 22092
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,32.5
+ pos: 52.5,-89.5
parent: 2
- - uid: 11295
+ - uid: 22097
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,23.5
+ pos: 51.5,-89.5
parent: 2
- - uid: 11303
+ - uid: 22100
components:
- type: Transform
- pos: 27.5,-52.5
+ pos: 56.5,-88.5
parent: 2
- - uid: 11312
+ - uid: 22102
components:
- type: Transform
- pos: 26.5,-52.5
+ pos: 46.5,-88.5
parent: 2
- - uid: 11313
+ - uid: 22103
components:
- type: Transform
- pos: 25.5,-52.5
+ pos: 44.5,-88.5
parent: 2
- - uid: 11314
+ - uid: 22109
components:
- type: Transform
- pos: 24.5,-52.5
+ pos: -85.5,23.5
parent: 2
- - uid: 11315
+ - uid: 22111
components:
- type: Transform
- pos: 23.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-19.5
parent: 2
- - uid: 11316
+ - uid: 22182
components:
- type: Transform
- pos: 22.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,18.5
parent: 2
- - uid: 11317
+ - uid: 22183
components:
- type: Transform
- pos: 21.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,54.5
parent: 2
- - uid: 11318
+ - uid: 22184
components:
- type: Transform
- pos: -60.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,13.5
parent: 2
- - uid: 11319
+ - uid: 22185
components:
- type: Transform
- pos: 19.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-20.5
parent: 2
- - uid: 11320
+ - uid: 22190
components:
- type: Transform
- pos: 18.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-16.5
parent: 2
- - uid: 11321
+ - uid: 22195
components:
- type: Transform
- pos: 17.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-16.5
parent: 2
- - uid: 11329
+ - uid: 22199
components:
- type: Transform
- pos: 15.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-19.5
parent: 2
- - uid: 11330
+ - uid: 22275
components:
- type: Transform
- pos: -61.5,-39.5
+ pos: -42.5,73.5
parent: 2
- - uid: 11339
+ - uid: 22300
components:
- type: Transform
- pos: -62.5,-39.5
+ pos: -39.5,80.5
parent: 2
- - uid: 11340
+ - uid: 22308
components:
- type: Transform
- pos: -58.5,-39.5
+ pos: -41.5,80.5
parent: 2
- - uid: 11349
+ - uid: 22315
components:
- type: Transform
- pos: -65.5,-38.5
+ pos: -27.5,47.5
parent: 2
- - uid: 11350
+ - uid: 22330
components:
- type: Transform
- pos: -66.5,-38.5
+ pos: 8.5,63.5
parent: 2
- - uid: 11351
+ - uid: 22338
components:
- type: Transform
- pos: -67.5,-38.5
+ pos: 9.5,63.5
parent: 2
- - uid: 11352
+ - uid: 22344
components:
- type: Transform
- pos: -69.5,-38.5
+ pos: 10.5,63.5
parent: 2
- - uid: 11353
+ - uid: 22362
components:
- type: Transform
- pos: -72.5,-40.5
+ pos: -45.5,65.5
parent: 2
- - uid: 11385
+ - uid: 22442
components:
- type: Transform
- pos: -74.5,-41.5
+ pos: 113.5,-19.5
parent: 2
- - uid: 11386
+ - uid: 22451
components:
- type: Transform
- pos: -74.5,-43.5
+ pos: 113.5,-12.5
parent: 2
- - uid: 11387
+ - uid: 22463
components:
- type: Transform
- pos: -74.5,-44.5
+ pos: -40.5,80.5
parent: 2
- - uid: 11388
+ - uid: 22494
components:
- type: Transform
- pos: -74.5,-45.5
+ pos: 38.5,-48.5
parent: 2
- - uid: 11396
+ - uid: 22510
components:
- type: Transform
- pos: -74.5,-46.5
+ pos: 113.5,-20.5
parent: 2
- - uid: 11397
+ - uid: 22512
components:
- type: Transform
- pos: -74.5,-47.5
+ pos: 113.5,-11.5
parent: 2
- - uid: 11403
+ - uid: 22513
components:
- type: Transform
- pos: -74.5,-49.5
+ pos: 113.5,-18.5
parent: 2
- - uid: 11482
+ - uid: 22515
components:
- type: Transform
- pos: -73.5,-50.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,22.5
parent: 2
- - uid: 11485
+ - uid: 22516
components:
- type: Transform
- pos: -74.5,-51.5
+ pos: 37.5,-48.5
parent: 2
- - uid: 11486
+ - uid: 22517
components:
- type: Transform
- pos: -74.5,-52.5
+ pos: 36.5,-48.5
parent: 2
- - uid: 11487
+ - uid: 22520
components:
- type: Transform
- pos: -74.5,-53.5
+ pos: 35.5,-48.5
parent: 2
- - uid: 11488
+ - uid: 22523
components:
- type: Transform
- pos: -74.5,-54.5
+ pos: -51.5,54.5
parent: 2
- - uid: 11489
+ - uid: 22525
components:
- type: Transform
- pos: -74.5,-55.5
+ pos: 34.5,-48.5
parent: 2
- - uid: 11490
+ - uid: 22535
components:
- type: Transform
- pos: -74.5,-56.5
+ pos: 30.5,-48.5
parent: 2
- - uid: 11498
+ - uid: 22538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-0.5
+ pos: -52.5,54.5
parent: 2
- - uid: 11511
+ - uid: 22555
components:
- type: Transform
- pos: -73.5,-57.5
+ pos: 24.5,-48.5
parent: 2
- - uid: 11533
+ - uid: 22558
components:
- type: Transform
- pos: -74.5,-59.5
+ pos: 21.5,-48.5
parent: 2
- - uid: 11540
+ - uid: 22559
components:
- type: Transform
- pos: -74.5,-60.5
+ pos: 21.5,-43.5
parent: 2
- - uid: 11640
+ - uid: 22561
components:
- type: Transform
- pos: 8.5,72.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,16.5
parent: 2
- - uid: 11642
+ - uid: 22562
components:
- type: Transform
- pos: 10.5,72.5
+ pos: -98.5,29.5
parent: 2
- - uid: 11643
+ - uid: 22575
components:
- type: Transform
- pos: 9.5,72.5
+ pos: -76.5,-69.5
parent: 2
- - uid: 11647
+ - uid: 22588
components:
- type: Transform
- pos: -17.5,-47.5
+ pos: 19.5,-48.5
parent: 2
- - uid: 11874
+ - uid: 22656
components:
- type: Transform
- pos: -20.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,44.5
parent: 2
- - uid: 12141
+ - uid: 22730
components:
- type: Transform
- pos: -106.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,13.5
parent: 2
- - uid: 12145
+ - uid: 22751
components:
- type: Transform
- pos: 47.5,-4.5
+ pos: 115.5,-18.5
parent: 2
- - uid: 12220
+ - uid: 22799
components:
- type: Transform
- pos: -104.5,1.5
+ pos: -37.5,74.5
parent: 2
- - uid: 12239
+ - uid: 22801
components:
- type: Transform
- pos: -91.5,28.5
+ pos: -14.5,4.5
parent: 2
- - uid: 12312
+ - uid: 22803
components:
- type: Transform
- pos: -54.5,-26.5
+ pos: 18.5,-49.5
parent: 2
- - uid: 12313
+ - uid: 22819
components:
- type: Transform
- pos: -55.5,-26.5
+ pos: 16.5,-51.5
parent: 2
- - uid: 12709
+ - uid: 22820
components:
- type: Transform
- pos: 50.5,-35.5
+ pos: -82.5,-69.5
parent: 2
- - uid: 12730
+ - uid: 22821
components:
- type: Transform
- pos: -76.5,11.5
+ pos: -84.5,-69.5
parent: 2
- - uid: 12927
+ - uid: 22845
components:
- type: Transform
- pos: 50.5,52.5
+ pos: -85.5,-69.5
parent: 2
- - uid: 12945
+ - uid: 22846
components:
- type: Transform
- pos: 44.5,-13.5
+ pos: -86.5,-69.5
parent: 2
- - uid: 12948
+ - uid: 22863
components:
- type: Transform
- pos: 48.5,-16.5
+ pos: -25.5,-47.5
parent: 2
- - uid: 12949
+ - uid: 22891
components:
- type: Transform
- pos: 49.5,-15.5
+ pos: -87.5,-69.5
parent: 2
- - uid: 12952
+ - uid: 22898
components:
- type: Transform
- pos: 52.5,-12.5
+ pos: -88.5,-69.5
parent: 2
- - uid: 12958
+ - uid: 22927
components:
- type: Transform
- pos: 46.5,-10.5
+ pos: 115.5,-22.5
parent: 2
- - uid: 12961
+ - uid: 22971
components:
- type: Transform
- pos: 44.5,-12.5
+ pos: -89.5,-69.5
parent: 2
- - uid: 13004
+ - uid: 22972
components:
- type: Transform
- pos: 43.5,14.5
+ pos: -90.5,-69.5
parent: 2
- - uid: 13006
+ - uid: 22973
components:
- type: Transform
- pos: 42.5,12.5
+ pos: -91.5,-69.5
parent: 2
- - uid: 13010
+ - uid: 22974
components:
- type: Transform
- pos: -78.5,30.5
+ pos: -94.5,-69.5
parent: 2
- - uid: 13013
+ - uid: 22975
components:
- type: Transform
- pos: -77.5,28.5
+ pos: -97.5,-69.5
parent: 2
- - uid: 13032
+ - uid: 22976
components:
- type: Transform
- pos: -75.5,-61.5
+ pos: -101.5,-66.5
parent: 2
- - uid: 13033
+ - uid: 22977
components:
- type: Transform
- pos: -74.5,-62.5
+ pos: -101.5,-64.5
parent: 2
- - uid: 13056
+ - uid: 22978
components:
- type: Transform
- pos: -74.5,-63.5
+ pos: -101.5,-62.5
parent: 2
- - uid: 13057
+ - uid: 22979
components:
- type: Transform
- pos: -74.5,-64.5
+ pos: -101.5,-63.5
parent: 2
- - uid: 13058
+ - uid: 22980
components:
- type: Transform
- pos: 8.5,57.5
+ pos: -101.5,-57.5
parent: 2
- - uid: 13062
+ - uid: 22981
components:
- type: Transform
- pos: -74.5,-65.5
+ pos: -101.5,-52.5
parent: 2
- - uid: 13066
+ - uid: 22982
components:
- type: Transform
- pos: -74.5,-66.5
+ pos: -101.5,-48.5
parent: 2
- - uid: 13067
+ - uid: 22984
components:
- type: Transform
- pos: -74.5,-67.5
+ pos: -101.5,-45.5
parent: 2
- - uid: 13073
+ - uid: 22987
components:
- type: Transform
- pos: -103.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,22.5
parent: 2
- - uid: 13082
+ - uid: 23016
components:
- type: Transform
- pos: -70.5,-60.5
+ pos: 15.5,66.5
parent: 2
- - uid: 13086
+ - uid: 23017
components:
- type: Transform
- pos: -70.5,-61.5
+ pos: 115.5,-6.5
parent: 2
- - uid: 13087
+ - uid: 23018
components:
- type: Transform
- pos: -104.5,-1.5
+ pos: 115.5,-0.5
parent: 2
- - uid: 13089
+ - uid: 23051
components:
- type: Transform
- pos: -70.5,-47.5
+ pos: -14.5,-43.5
parent: 2
- - uid: 13090
+ - uid: 23054
components:
- type: Transform
- pos: -70.5,-63.5
+ pos: 14.5,-20.5
parent: 2
- - uid: 13091
+ - uid: 23072
components:
- type: Transform
- pos: -70.5,-64.5
+ pos: 92.5,40.5
parent: 2
- - uid: 13092
+ - uid: 23103
components:
- type: Transform
- pos: -70.5,-65.5
+ pos: -14.5,-42.5
parent: 2
- - uid: 13115
+ - uid: 23117
components:
- type: Transform
- pos: -106.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-17.5
parent: 2
- - uid: 13121
+ - uid: 23123
components:
- type: Transform
- pos: -69.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-5.5
parent: 2
- - uid: 13122
+ - uid: 23133
components:
- type: Transform
- pos: -70.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-17.5
parent: 2
- - uid: 13123
+ - uid: 23153
components:
- type: Transform
- pos: -70.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-15.5
parent: 2
- - uid: 13124
+ - uid: 23169
components:
- type: Transform
- pos: -106.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -106.5,13.5
parent: 2
- - uid: 13125
+ - uid: 23170
components:
- type: Transform
- pos: -105.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,32.5
parent: 2
- - uid: 13137
+ - uid: 23206
components:
- type: Transform
- pos: -69.5,-71.5
+ pos: -23.5,40.5
parent: 2
- - uid: 13138
+ - uid: 23208
components:
- type: Transform
- pos: -70.5,-72.5
+ pos: -101.5,-41.5
parent: 2
- - uid: 13139
+ - uid: 23209
components:
- type: Transform
- pos: -71.5,-73.5
+ pos: -101.5,-44.5
parent: 2
- - uid: 13140
+ - uid: 23216
components:
- type: Transform
- pos: -72.5,-73.5
+ pos: -101.5,-37.5
parent: 2
- - uid: 13141
+ - uid: 23218
components:
- type: Transform
- pos: -73.5,-73.5
+ pos: -101.5,-36.5
parent: 2
- - uid: 13142
+ - uid: 23219
components:
- type: Transform
- pos: -74.5,-73.5
+ pos: -101.5,-35.5
parent: 2
- - uid: 13143
+ - uid: 23220
components:
- type: Transform
- pos: -75.5,-73.5
+ pos: -16.5,-47.5
parent: 2
- - uid: 13144
+ - uid: 23221
components:
- type: Transform
- pos: -75.5,-74.5
+ pos: -101.5,-34.5
parent: 2
- - uid: 13145
+ - uid: 23222
components:
- type: Transform
- pos: -77.5,-73.5
+ pos: 5.5,21.5
parent: 2
- - uid: 13146
+ - uid: 23223
components:
- type: Transform
- pos: -79.5,-73.5
+ pos: 5.5,18.5
parent: 2
- - uid: 13147
+ - uid: 23225
components:
- type: Transform
- pos: -80.5,-73.5
+ pos: -101.5,-33.5
parent: 2
- - uid: 13148
+ - uid: 23240
components:
- type: Transform
- pos: -82.5,-73.5
+ pos: -101.5,-32.5
parent: 2
- - uid: 13149
+ - uid: 23264
components:
- type: Transform
- pos: -83.5,-73.5
+ pos: -61.5,51.5
parent: 2
- - uid: 13150
+ - uid: 23343
components:
- type: Transform
- pos: -84.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,49.5
parent: 2
- - uid: 13151
+ - uid: 23452
components:
- type: Transform
- pos: -85.5,-74.5
+ pos: -16.5,4.5
parent: 2
- - uid: 13152
+ - uid: 23545
components:
- type: Transform
- pos: -86.5,-74.5
+ pos: -22.5,4.5
parent: 2
- - uid: 13153
+ - uid: 23546
components:
- type: Transform
- pos: -87.5,-74.5
+ pos: -14.5,-44.5
parent: 2
- - uid: 13154
+ - uid: 23566
components:
- type: Transform
- pos: -88.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-17.5
parent: 2
- - uid: 13155
+ - uid: 23700
components:
- type: Transform
- pos: -89.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-7.5
parent: 2
- - uid: 13156
+ - uid: 23707
components:
- type: Transform
- pos: -90.5,-73.5
+ pos: -55.5,49.5
parent: 2
- - uid: 13157
+ - uid: 23711
components:
- type: Transform
- pos: -91.5,-73.5
+ pos: -61.5,50.5
parent: 2
- - uid: 13158
+ - uid: 23727
components:
- type: Transform
- pos: -92.5,-73.5
+ pos: 95.5,-28.5
parent: 2
- - uid: 13159
+ - uid: 23743
components:
- type: Transform
- pos: -93.5,-73.5
+ pos: 92.5,-28.5
parent: 2
- - uid: 13160
+ - uid: 23760
components:
- type: Transform
- pos: -94.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-17.5
parent: 2
- - uid: 13161
+ - uid: 23762
components:
- type: Transform
- pos: -96.5,-73.5
+ pos: -56.5,47.5
parent: 2
- - uid: 13162
+ - uid: 23763
components:
- type: Transform
- pos: -98.5,-73.5
+ pos: -57.5,47.5
parent: 2
- - uid: 13163
+ - uid: 23765
components:
- type: Transform
- pos: -100.5,-73.5
+ pos: -59.5,47.5
parent: 2
- - uid: 13164
+ - uid: 23807
components:
- type: Transform
- pos: -101.5,-73.5
+ pos: 47.5,-3.5
parent: 2
- - uid: 13165
+ - uid: 23809
components:
- type: Transform
- pos: -102.5,-73.5
+ pos: 47.5,-2.5
parent: 2
- - uid: 13166
+ - uid: 23810
components:
- type: Transform
- pos: -103.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-17.5
parent: 2
- - uid: 13167
+ - uid: 23853
components:
- type: Transform
- pos: -104.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,36.5
parent: 2
- - uid: 13168
+ - uid: 23854
components:
- type: Transform
- pos: -99.5,-73.5
+ pos: 91.5,-28.5
parent: 2
- - uid: 13169
+ - uid: 24229
components:
- type: Transform
- pos: -101.5,-74.5
+ pos: -28.5,48.5
parent: 2
- - uid: 13170
+ - uid: 24344
components:
- type: Transform
- pos: -105.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,17.5
parent: 2
- - uid: 13171
+ - uid: 24582
components:
- type: Transform
- pos: -105.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,18.5
parent: 2
- - uid: 13172
+ - uid: 24595
components:
- type: Transform
- pos: -105.5,-70.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,17.5
parent: 2
- - uid: 13173
+ - uid: 24712
components:
- type: Transform
- pos: -105.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,19.5
parent: 2
- - uid: 13174
+ - uid: 24775
components:
- type: Transform
- pos: -105.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,20.5
parent: 2
- - uid: 13175
+ - uid: 24779
components:
- type: Transform
- pos: -105.5,-63.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,15.5
parent: 2
- - uid: 13176
+ - uid: 24783
components:
- type: Transform
- pos: -105.5,-62.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,14.5
parent: 2
- - uid: 13178
+ - uid: 24791
components:
- type: Transform
- pos: -105.5,-61.5
+ pos: -5.5,-40.5
parent: 2
- - uid: 13179
+ - uid: 24792
components:
- type: Transform
- pos: -105.5,-60.5
+ pos: -5.5,-41.5
parent: 2
- - uid: 13180
+ - uid: 24793
components:
- type: Transform
- pos: -105.5,-59.5
+ pos: -5.5,-42.5
parent: 2
- - uid: 13181
+ - uid: 25056
components:
- type: Transform
- pos: -105.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,15.5
parent: 2
- - uid: 13182
+ - uid: 25068
components:
- type: Transform
- pos: 77.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,12.5
parent: 2
- - uid: 13183
+ - uid: 25170
components:
- type: Transform
- pos: -105.5,-64.5
+ pos: 33.5,-12.5
parent: 2
- - uid: 13184
+ - uid: 25172
components:
- type: Transform
- pos: -106.5,-60.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,45.5
parent: 2
- - uid: 13185
+ - uid: 25203
components:
- type: Transform
- pos: -105.5,-56.5
+ pos: -69.5,31.5
parent: 2
- - uid: 13186
+ - uid: 25252
components:
- type: Transform
- pos: -105.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,45.5
parent: 2
- - uid: 13187
+ - uid: 25322
components:
- type: Transform
- pos: -105.5,-54.5
+ pos: -42.5,80.5
parent: 2
- - uid: 13188
+ - uid: 25360
components:
- type: Transform
- pos: -106.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,25.5
parent: 2
- - uid: 13189
+ - uid: 25537
components:
- type: Transform
- pos: -106.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-31.5
parent: 2
- - uid: 13190
+ - uid: 25752
components:
- type: Transform
- pos: -106.5,-58.5
+ pos: -25.5,40.5
parent: 2
- - uid: 13191
+ - uid: 25932
components:
- type: Transform
- pos: -105.5,-51.5
+ pos: -27.5,80.5
parent: 2
- - uid: 13196
+ - uid: 25945
components:
- type: Transform
- pos: -107.5,27.5
+ pos: -24.5,80.5
parent: 2
- - uid: 13197
+ - uid: 25967
components:
- type: Transform
- pos: -106.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,26.5
parent: 2
- - uid: 13198
+ - uid: 26159
components:
- type: Transform
- pos: -105.5,30.5
+ pos: -18.5,61.5
parent: 2
- - uid: 13199
+ - uid: 26205
components:
- type: Transform
- pos: -103.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,27.5
parent: 2
- - uid: 13200
+ - uid: 26218
components:
- type: Transform
- pos: -107.5,21.5
+ pos: -61.5,48.5
parent: 2
- - uid: 13201
+ - uid: 26294
components:
- type: Transform
- pos: -106.5,19.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,6.5
parent: 2
- - uid: 13202
+ - uid: 26329
components:
- type: Transform
- pos: -105.5,18.5
+ pos: -28.5,49.5
parent: 2
- - uid: 13203
+ - uid: 26370
components:
- type: Transform
- pos: -103.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-15.5
parent: 2
- - uid: 13204
+ - uid: 26371
components:
- type: Transform
- pos: -105.5,-50.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-16.5
parent: 2
- - uid: 13212
+ - uid: 26383
components:
- type: Transform
- pos: -105.5,-49.5
+ pos: -92.5,93.5
parent: 2
- - uid: 13213
+ - uid: 26389
components:
- type: Transform
- pos: 56.5,-36.5
+ pos: -104.5,63.5
parent: 2
- - uid: 13215
+ - uid: 26391
components:
- type: Transform
- pos: -105.5,-48.5
+ pos: -103.5,63.5
parent: 2
- - uid: 13220
+ - uid: 26392
components:
- type: Transform
- pos: -107.5,-4.5
+ pos: -102.5,63.5
parent: 2
- - uid: 13221
+ - uid: 26393
components:
- type: Transform
- pos: -106.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,7.5
parent: 2
- - uid: 13222
+ - uid: 26485
components:
- type: Transform
- pos: -105.5,-1.5
+ pos: -43.5,80.5
parent: 2
- - uid: 13223
+ - uid: 26531
components:
- type: Transform
- pos: -105.5,-46.5
+ pos: -21.5,50.5
parent: 2
- - uid: 13224
+ - uid: 26577
components:
- type: Transform
- pos: -107.5,-10.5
+ pos: -108.5,6.5
parent: 2
- - uid: 13225
+ - uid: 26578
components:
- type: Transform
- pos: -106.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,8.5
parent: 2
- - uid: 13226
+ - uid: 26588
components:
- type: Transform
- pos: -105.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,-6.5
parent: 2
- - uid: 13227
+ - uid: 26624
components:
- type: Transform
- pos: -103.5,-14.5
+ pos: 64.5,37.5
parent: 2
- - uid: 13228
+ - uid: 26627
components:
- type: Transform
- pos: -106.5,-44.5
+ pos: 62.5,37.5
parent: 2
- - uid: 13229
+ - uid: 26709
components:
- type: Transform
- pos: -106.5,-43.5
+ pos: 63.5,37.5
parent: 2
- - uid: 13230
+ - uid: 26723
components:
- type: Transform
- pos: -106.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-32.5
parent: 2
- - uid: 13231
+ - uid: 26729
components:
- type: Transform
- pos: -106.5,-41.5
+ pos: 67.5,37.5
parent: 2
- - uid: 13232
+ - uid: 26844
components:
- type: Transform
- pos: -106.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,50.5
parent: 2
- - uid: 13233
+ - uid: 26861
components:
- type: Transform
- pos: -107.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,39.5
parent: 2
- - uid: 13234
+ - uid: 26870
components:
- type: Transform
- pos: -105.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,39.5
parent: 2
- - uid: 13235
+ - uid: 26898
components:
- type: Transform
- pos: -105.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,13.5
parent: 2
- - uid: 13238
+ - uid: 26958
components:
- type: Transform
- pos: -53.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,39.5
parent: 2
- - uid: 13251
+ - uid: 27110
components:
- type: Transform
- pos: -39.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,16.5
parent: 2
- - uid: 13266
+ - uid: 27112
components:
- type: Transform
- pos: -105.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-29.5
parent: 2
- - uid: 13277
+ - uid: 27160
components:
- type: Transform
- pos: -105.5,-36.5
+ pos: 68.5,47.5
parent: 2
- - uid: 13278
+ - uid: 27161
components:
- type: Transform
- pos: -105.5,-35.5
+ pos: 67.5,47.5
parent: 2
- - uid: 13288
+ - uid: 27162
components:
- type: Transform
- pos: -105.5,-34.5
+ pos: 66.5,47.5
parent: 2
- - uid: 13289
+ - uid: 27163
components:
- type: Transform
- pos: -105.5,-33.5
+ pos: 65.5,47.5
parent: 2
- - uid: 13290
+ - uid: 27205
components:
- type: Transform
- pos: -105.5,-31.5
+ pos: 63.5,47.5
parent: 2
- - uid: 13291
+ - uid: 27219
components:
- type: Transform
- pos: -108.5,-32.5
+ pos: 62.5,47.5
parent: 2
- - uid: 13292
+ - uid: 27240
components:
- type: Transform
- pos: -109.5,-31.5
+ pos: 61.5,47.5
parent: 2
- - uid: 13293
+ - uid: 27413
components:
- type: Transform
- pos: -110.5,-31.5
+ pos: 7.5,2.5
parent: 2
- - uid: 13300
+ - uid: 27439
components:
- type: Transform
- pos: -111.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,47.5
parent: 2
- - uid: 13313
+ - uid: 27446
components:
- type: Transform
- pos: -113.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,45.5
parent: 2
- - uid: 13315
+ - uid: 27447
components:
- type: Transform
- pos: -114.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,47.5
parent: 2
- - uid: 13325
+ - uid: 27448
components:
- type: Transform
- pos: -115.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,44.5
parent: 2
- - uid: 13326
+ - uid: 27449
components:
- type: Transform
- pos: -116.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,41.5
parent: 2
- - uid: 13327
+ - uid: 27452
components:
- type: Transform
- pos: -117.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,41.5
parent: 2
- - uid: 13331
+ - uid: 27464
components:
- type: Transform
- pos: -118.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,41.5
parent: 2
- - uid: 13333
+ - uid: 27514
components:
- type: Transform
- pos: -119.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 56.5,43.5
parent: 2
- - uid: 13334
+ - uid: 27540
components:
- type: Transform
- pos: -119.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,41.5
parent: 2
- - uid: 13335
+ - uid: 27552
components:
- type: Transform
- pos: -119.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,43.5
parent: 2
- - uid: 13339
+ - uid: 27584
components:
- type: Transform
- pos: -119.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,58.5
parent: 2
- - uid: 13344
+ - uid: 27638
components:
- type: Transform
- pos: -119.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,43.5
parent: 2
- - uid: 13355
+ - uid: 27749
components:
- type: Transform
- pos: -119.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 57.5,43.5
parent: 2
- - uid: 13357
+ - uid: 27787
components:
- type: Transform
- pos: -119.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-30.5
parent: 2
- - uid: 13361
+ - uid: 27810
components:
- type: Transform
- pos: -119.5,-23.5
+ pos: -0.5,43.5
parent: 2
- - uid: 13362
+ - uid: 27901
components:
- type: Transform
- pos: -119.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,45.5
parent: 2
- - uid: 13363
+ - uid: 28106
components:
- type: Transform
- pos: -119.5,-21.5
+ pos: 21.5,-17.5
parent: 2
- - uid: 13364
+ - uid: 28164
components:
- type: Transform
- pos: -119.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-39.5
parent: 2
- - uid: 13365
+ - uid: 28175
components:
- type: Transform
- pos: -119.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-39.5
parent: 2
- - uid: 13366
+ - uid: 28177
components:
- type: Transform
- pos: -119.5,-17.5
+ pos: -42.5,-39.5
parent: 2
- - uid: 13367
+ - uid: 28198
components:
- type: Transform
- pos: -119.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-45.5
parent: 2
- - uid: 13460
+ - uid: 28266
components:
- type: Transform
- pos: -119.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,5.5
parent: 2
- - uid: 13461
+ - uid: 28366
components:
- type: Transform
- pos: -119.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-8.5
parent: 2
- - uid: 13484
+ - uid: 28424
components:
- type: Transform
- pos: -119.5,-13.5
+ pos: -70.5,34.5
parent: 2
- - uid: 13485
+ - uid: 28440
components:
- type: Transform
- pos: -119.5,-12.5
+ pos: 15.5,19.5
parent: 2
- - uid: 13577
+ - uid: 28465
components:
- type: Transform
- pos: -119.5,-11.5
+ pos: 18.5,18.5
parent: 2
- - uid: 13725
+ - uid: 28504
components:
- type: Transform
- pos: 40.5,-39.5
+ pos: -70.5,33.5
parent: 2
- - uid: 13740
+ - uid: 28508
components:
- type: Transform
- pos: 40.5,-37.5
+ pos: -70.5,32.5
parent: 2
- - uid: 13741
+ - uid: 28573
components:
- type: Transform
- pos: 46.5,-39.5
+ pos: 13.5,19.5
parent: 2
- - uid: 13742
+ - uid: 28620
components:
- type: Transform
- pos: 52.5,-39.5
+ pos: 55.5,37.5
parent: 2
- - uid: 13743
+ - uid: 28622
components:
- type: Transform
- pos: 52.5,-36.5
+ pos: 55.5,38.5
parent: 2
- - uid: 13745
+ - uid: 28640
components:
- type: Transform
- pos: 47.5,-41.5
+ pos: 55.5,36.5
parent: 2
- - uid: 13746
+ - uid: 28669
components:
- type: Transform
- pos: 48.5,-41.5
+ pos: 96.5,-4.5
parent: 2
- - uid: 13747
+ - uid: 28723
components:
- type: Transform
- pos: 43.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,43.5
parent: 2
- - uid: 13748
+ - uid: 28794
components:
- type: Transform
- pos: 49.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: -69.5,4.5
parent: 2
- - uid: 13749
+ - uid: 28803
components:
- type: Transform
- pos: 40.5,-41.5
+ pos: 100.5,-4.5
parent: 2
- - uid: 13750
+ - uid: 28825
components:
- type: Transform
- pos: 39.5,-42.5
+ pos: 94.5,-4.5
parent: 2
- - uid: 13751
+ - uid: 28827
components:
- type: Transform
- pos: 39.5,-38.5
+ pos: 111.5,-28.5
parent: 2
- - uid: 13752
+ - uid: 28835
components:
- type: Transform
- pos: 84.5,-8.5
+ pos: -33.5,63.5
parent: 2
- - uid: 13753
+ - uid: 28913
components:
- type: Transform
- pos: 85.5,-8.5
+ pos: -19.5,52.5
parent: 2
- - uid: 13754
+ - uid: 28928
components:
- type: Transform
- pos: 82.5,-9.5
+ pos: 113.5,-25.5
parent: 2
- - uid: 13755
+ - uid: 28942
components:
- type: Transform
- pos: 81.5,-9.5
+ pos: -20.5,52.5
parent: 2
- - uid: 13758
+ - uid: 28965
components:
- type: Transform
- pos: 87.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-0.5
parent: 2
- - uid: 13759
+ - uid: 28979
components:
- type: Transform
- pos: 87.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,61.5
parent: 2
- - uid: 13760
+ - uid: 28984
components:
- type: Transform
- pos: 87.5,0.5
+ pos: 106.5,-4.5
parent: 2
- - uid: 13761
+ - uid: 29011
components:
- type: Transform
- pos: 86.5,1.5
+ pos: -12.5,25.5
parent: 2
- - uid: 13762
+ - uid: 29013
components:
- type: Transform
- pos: 83.5,1.5
+ pos: -12.5,24.5
parent: 2
- - uid: 13763
+ - uid: 29018
components:
- type: Transform
- pos: 84.5,2.5
+ pos: 104.5,-4.5
parent: 2
- - uid: 13764
+ - uid: 29023
components:
- type: Transform
- pos: 87.5,-7.5
+ pos: 105.5,-4.5
parent: 2
- - uid: 13797
+ - uid: 29034
components:
- type: Transform
- pos: 91.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-8.5
parent: 2
- - uid: 13798
+ - uid: 29036
components:
- type: Transform
- pos: 92.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-7.5
parent: 2
- - uid: 13799
+ - uid: 29037
components:
- type: Transform
- pos: 88.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,61.5
parent: 2
- - uid: 13800
+ - uid: 29042
components:
- type: Transform
- pos: 88.5,2.5
+ pos: 102.5,-4.5
parent: 2
- - uid: 13801
+ - uid: 29118
components:
- type: Transform
- pos: 88.5,8.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,61.5
parent: 2
- - uid: 13802
+ - uid: 29120
components:
- type: Transform
- pos: 89.5,14.5
+ pos: -28.5,51.5
parent: 2
- - uid: 13803
+ - uid: 29127
components:
- type: Transform
- pos: 90.5,10.5
+ pos: -21.5,51.5
parent: 2
- - uid: 13804
+ - uid: 29128
components:
- type: Transform
- pos: 90.5,20.5
+ pos: -28.5,50.5
parent: 2
- - uid: 13840
+ - uid: 29147
components:
- type: Transform
- pos: -119.5,-10.5
+ pos: 101.5,-4.5
parent: 2
- - uid: 13912
+ - uid: 29152
components:
- type: Transform
- pos: -119.5,-9.5
+ pos: 99.5,-4.5
parent: 2
- - uid: 13913
+ - uid: 29231
components:
- type: Transform
- pos: -119.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,3.5
parent: 2
- - uid: 13919
+ - uid: 29270
components:
- type: Transform
- pos: 11.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,2.5
parent: 2
- - uid: 13931
+ - uid: 29273
components:
- type: Transform
- pos: -119.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-0.5
parent: 2
- - uid: 13936
+ - uid: 29276
components:
- type: Transform
- pos: 19.5,60.5
+ pos: 94.5,-28.5
parent: 2
- - uid: 13939
+ - uid: 29277
components:
- type: Transform
- pos: 18.5,60.5
+ pos: 100.5,-28.5
parent: 2
- - uid: 13949
+ - uid: 29280
components:
- type: Transform
- pos: 9.5,57.5
+ pos: 103.5,-28.5
parent: 2
- - uid: 13950
+ - uid: 29281
components:
- type: Transform
- pos: 17.5,60.5
+ pos: 96.5,-28.5
parent: 2
- - uid: 13955
+ - uid: 29298
components:
- type: Transform
- pos: -1.5,55.5
+ pos: -32.5,63.5
parent: 2
- - uid: 13960
+ - uid: 29336
components:
- type: Transform
- pos: 7.5,57.5
+ pos: 98.5,-4.5
parent: 2
- - uid: 13961
+ - uid: 29340
components:
- type: Transform
- pos: -1.5,56.5
+ pos: 98.5,-28.5
parent: 2
- - uid: 13974
+ - uid: 29368
components:
- type: Transform
- pos: -119.5,-5.5
+ pos: 97.5,-4.5
parent: 2
- - uid: 14003
+ - uid: 29496
components:
- type: Transform
- pos: 21.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,3.5
parent: 2
- - uid: 14004
+ - uid: 29571
components:
- type: Transform
- pos: 21.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,4.5
parent: 2
- - uid: 14005
+ - uid: 29606
components:
- type: Transform
- pos: 21.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,7.5
parent: 2
- - uid: 14006
+ - uid: 29655
components:
- type: Transform
- pos: 21.5,36.5
+ pos: -4.5,2.5
parent: 2
- - uid: 14018
+ - uid: 29671
components:
- type: Transform
- pos: 10.5,51.5
+ pos: -2.5,-13.5
parent: 2
- - uid: 14019
+ - uid: 29739
components:
- type: Transform
- pos: 11.5,51.5
+ pos: 113.5,-26.5
parent: 2
- - uid: 14048
+ - uid: 29740
components:
- type: Transform
- pos: 23.5,58.5
+ pos: 109.5,-4.5
parent: 2
- - uid: 14049
+ - uid: 29741
components:
- type: Transform
- pos: 23.5,59.5
+ pos: 107.5,-4.5
parent: 2
- - uid: 14055
+ - uid: 29742
components:
- type: Transform
- pos: 28.5,53.5
+ pos: 89.5,-25.5
parent: 2
- - uid: 14075
+ - uid: 29743
components:
- type: Transform
- pos: -119.5,-4.5
+ pos: 113.5,-13.5
parent: 2
- - uid: 14076
+ - uid: 29757
components:
- type: Transform
- pos: -119.5,-3.5
+ pos: 106.5,-28.5
parent: 2
- - uid: 14082
+ - uid: 29847
components:
- type: Transform
- pos: 26.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 94.5,8.5
parent: 2
- - uid: 14089
+ - uid: 29932
components:
- type: Transform
- pos: 25.5,37.5
+ pos: 92.5,17.5
parent: 2
- - uid: 14093
+ - uid: 29942
components:
- type: Transform
- pos: 29.5,38.5
+ pos: 92.5,16.5
parent: 2
- - uid: 14094
+ - uid: 29955
components:
- type: Transform
- pos: 29.5,37.5
+ pos: -41.5,-39.5
parent: 2
- - uid: 14095
+ - uid: 29956
components:
- type: Transform
- pos: 28.5,36.5
+ pos: -40.5,-39.5
parent: 2
- - uid: 14096
+ - uid: 29957
components:
- type: Transform
- pos: 27.5,36.5
+ pos: -38.5,-39.5
parent: 2
- - uid: 14099
+ - uid: 29958
components:
- type: Transform
- pos: 23.5,44.5
+ pos: -39.5,-39.5
parent: 2
- - uid: 14100
+ - uid: 29972
components:
- type: Transform
- pos: 26.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-6.5
parent: 2
- - uid: 14101
+ - uid: 30007
components:
- type: Transform
- pos: 25.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,11.5
parent: 2
- - uid: 14110
+ - uid: 30020
components:
- type: Transform
- pos: 24.5,44.5
+ pos: 89.5,20.5
parent: 2
- - uid: 14115
+ - uid: 30264
components:
- type: Transform
- pos: -119.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,10.5
parent: 2
- - uid: 14121
+ - uid: 30287
components:
- type: Transform
- pos: 22.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,61.5
parent: 2
- - uid: 14176
+ - uid: 30293
components:
- type: Transform
- pos: -119.5,-0.5
+ pos: 77.5,8.5
parent: 2
- - uid: 14189
+ - uid: 30295
components:
- type: Transform
- pos: -119.5,1.5
+ pos: 78.5,8.5
parent: 2
- - uid: 14207
+ - uid: 30299
components:
- type: Transform
- pos: -119.5,2.5
+ pos: -20.5,47.5
parent: 2
- - uid: 14255
+ - uid: 30332
components:
- type: Transform
- pos: 24.5,55.5
+ pos: 14.5,19.5
parent: 2
- - uid: 14273
+ - uid: 30333
components:
- type: Transform
- pos: -26.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,18.5
parent: 2
- - uid: 14276
+ - uid: 30463
components:
- type: Transform
- pos: -30.5,26.5
+ pos: 48.5,-32.5
parent: 2
- - uid: 14285
+ - uid: 30465
components:
- type: Transform
- pos: -119.5,3.5
+ pos: 49.5,-32.5
parent: 2
- - uid: 14288
+ - uid: 30469
components:
- type: Transform
- pos: -119.5,4.5
+ pos: -70.5,36.5
parent: 2
- - uid: 14358
+ - uid: 30632
components:
- type: Transform
- pos: -119.5,5.5
+ pos: -70.5,35.5
parent: 2
- - uid: 14359
+ - uid: 30634
components:
- type: Transform
- pos: -119.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,13.5
parent: 2
- - uid: 14453
+ - uid: 30655
components:
- type: Transform
- pos: -119.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-5.5
parent: 2
- - uid: 14721
+ - uid: 30687
components:
- type: Transform
- pos: -119.5,8.5
+ pos: 15.5,64.5
parent: 2
- - uid: 14882
+ - uid: 30688
components:
- type: Transform
- pos: -119.5,9.5
+ pos: -48.5,61.5
parent: 2
- - uid: 14883
+ - uid: 30710
components:
- type: Transform
- pos: -124.5,17.5
+ pos: 12.5,68.5
parent: 2
- - uid: 14884
+ - uid: 30728
components:
- type: Transform
- pos: -119.5,11.5
+ pos: -47.5,67.5
parent: 2
- - uid: 14885
+ - uid: 30742
components:
- type: Transform
- pos: -120.5,12.5
+ pos: -47.5,65.5
parent: 2
- - uid: 14886
+ - uid: 30743
components:
- type: Transform
- pos: -120.5,13.5
+ pos: -47.5,64.5
parent: 2
- - uid: 14887
+ - uid: 30744
components:
- type: Transform
- pos: -120.5,14.5
+ pos: -47.5,63.5
parent: 2
- - uid: 14888
+ - uid: 30748
components:
- type: Transform
- pos: -120.5,15.5
+ pos: 6.5,68.5
parent: 2
- - uid: 14889
+ - uid: 30834
components:
- type: Transform
- pos: -120.5,16.5
+ pos: -19.5,47.5
parent: 2
- - uid: 14890
+ - uid: 30865
components:
- type: Transform
- pos: -119.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,18.5
parent: 2
- - uid: 14891
+ - uid: 30903
components:
- type: Transform
- pos: -119.5,19.5
+ pos: -14.5,79.5
parent: 2
- - uid: 14892
+ - uid: 30931
components:
- type: Transform
- pos: -119.5,20.5
+ pos: 8.5,69.5
parent: 2
- - uid: 14893
+ - uid: 30935
components:
- type: Transform
- pos: -119.5,21.5
+ pos: 9.5,69.5
parent: 2
- - uid: 14894
+ - uid: 30996
components:
- type: Transform
- pos: -119.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,8.5
parent: 2
- - uid: 14895
+ - uid: 30998
components:
- type: Transform
- pos: -119.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,7.5
parent: 2
- - uid: 14958
+ - uid: 31090
components:
- type: Transform
- pos: -119.5,24.5
+ pos: -47.5,66.5
parent: 2
- - uid: 15074
+ - uid: 31155
components:
- type: Transform
- pos: 27.5,53.5
+ pos: 20.5,-17.5
parent: 2
- - uid: 15126
+ - uid: 31183
components:
- type: Transform
- pos: -119.5,25.5
+ pos: -43.5,73.5
parent: 2
- - uid: 15141
+ - uid: 31186
components:
- type: Transform
- pos: -23.5,65.5
+ pos: -44.5,73.5
parent: 2
- - uid: 15154
+ - uid: 31187
components:
- type: Transform
- pos: -119.5,26.5
+ pos: -45.5,73.5
parent: 2
- - uid: 15167
+ - uid: 31188
components:
- type: Transform
- pos: -25.5,65.5
+ pos: -46.5,73.5
parent: 2
- - uid: 15170
+ - uid: 31189
components:
- type: Transform
- pos: -27.5,65.5
+ pos: -47.5,73.5
parent: 2
- - uid: 15181
+ - uid: 31190
components:
- type: Transform
- pos: -119.5,27.5
+ pos: -48.5,73.5
parent: 2
- - uid: 15210
+ - uid: 31191
components:
- type: Transform
- pos: -119.5,28.5
+ pos: -49.5,73.5
parent: 2
- - uid: 15211
+ - uid: 31192
components:
- type: Transform
- pos: -120.5,26.5
+ pos: -50.5,73.5
parent: 2
- - uid: 15215
+ - uid: 31193
components:
- type: Transform
- pos: 15.5,65.5
+ pos: -51.5,73.5
parent: 2
- - uid: 15222
+ - uid: 31194
components:
- type: Transform
- pos: -120.5,27.5
+ pos: -51.5,72.5
parent: 2
- - uid: 15223
+ - uid: 31195
components:
- type: Transform
- pos: -119.5,30.5
+ pos: -51.5,71.5
parent: 2
- - uid: 15233
+ - uid: 31196
components:
- type: Transform
- pos: -23.5,60.5
+ pos: -51.5,70.5
parent: 2
- - uid: 15244
+ - uid: 31197
components:
- type: Transform
- pos: -119.5,31.5
+ pos: -51.5,69.5
parent: 2
- - uid: 15248
+ - uid: 31198
components:
- type: Transform
- pos: -22.5,60.5
+ pos: -51.5,68.5
parent: 2
- - uid: 15249
+ - uid: 31199
components:
- type: Transform
- pos: -119.5,32.5
+ pos: -51.5,67.5
parent: 2
- - uid: 15250
+ - uid: 31200
components:
- type: Transform
- pos: -121.5,33.5
+ pos: -51.5,66.5
parent: 2
- - uid: 15251
+ - uid: 31201
components:
- type: Transform
- pos: -21.5,60.5
+ pos: -51.5,65.5
parent: 2
- - uid: 15252
+ - uid: 31202
components:
- type: Transform
- pos: -122.5,33.5
+ pos: -51.5,64.5
parent: 2
- - uid: 15253
+ - uid: 31203
components:
- type: Transform
- pos: -20.5,60.5
+ pos: 12.5,-23.5
parent: 2
- - uid: 15255
+ - uid: 31204
components:
- type: Transform
- pos: -19.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,5.5
parent: 2
- - uid: 15270
+ - uid: 31205
components:
- type: Transform
- pos: -123.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,6.5
parent: 2
- - uid: 15311
+ - uid: 31219
components:
- type: Transform
- pos: -128.5,33.5
+ pos: 113.5,-14.5
parent: 2
- - uid: 15336
+ - uid: 31308
components:
- type: Transform
- pos: -26.5,31.5
+ pos: 107.5,-28.5
parent: 2
- - uid: 15338
+ - uid: 31315
components:
- type: Transform
- pos: -24.5,32.5
+ pos: 102.5,-28.5
parent: 2
- - uid: 15339
+ - uid: 31325
components:
- type: Transform
- pos: -28.5,31.5
+ pos: 113.5,-7.5
parent: 2
- - uid: 15353
+ - uid: 31732
components:
- type: Transform
- pos: -30.5,31.5
+ pos: 93.5,-28.5
parent: 2
- - uid: 15355
+ - uid: 31740
components:
- type: Transform
- pos: -28.5,32.5
+ pos: 12.5,19.5
parent: 2
- - uid: 15364
+ - uid: 31932
components:
- type: Transform
- pos: -30.5,27.5
+ pos: 113.5,-9.5
parent: 2
- - uid: 15365
+ - uid: 32211
components:
- type: Transform
- pos: -28.5,27.5
+ pos: 113.5,-8.5
parent: 2
- - uid: 15366
+ - uid: 32212
components:
- type: Transform
- pos: -26.5,27.5
+ pos: 113.5,-10.5
parent: 2
- - uid: 15367
+ - uid: 32214
components:
- type: Transform
- pos: -24.5,27.5
+ pos: 113.5,-17.5
parent: 2
- - uid: 15382
+ - uid: 32218
components:
- type: Transform
- pos: -28.5,26.5
+ pos: 113.5,-16.5
parent: 2
- - uid: 15383
+ - uid: 32219
components:
- type: Transform
- pos: -26.5,26.5
+ pos: 113.5,-15.5
parent: 2
- - uid: 15384
+ - uid: 32227
components:
- type: Transform
- pos: -24.5,26.5
+ pos: 89.5,-26.5
parent: 2
- - uid: 15391
+ - uid: 32228
components:
- type: Transform
- pos: -23.5,28.5
+ pos: 97.5,-28.5
parent: 2
- - uid: 15401
+ - uid: 32229
components:
- type: Transform
- pos: -129.5,38.5
+ pos: 104.5,-28.5
parent: 2
- - uid: 15412
+ - uid: 32230
components:
- type: Transform
- pos: -23.5,30.5
+ pos: 105.5,-28.5
parent: 2
- - uid: 15448
+ - uid: 32232
components:
- type: Transform
- pos: -129.5,43.5
+ pos: 115.5,-17.5
parent: 2
- - uid: 15452
+ - uid: 32236
components:
- type: Transform
- pos: -30.5,32.5
+ pos: 99.5,-28.5
parent: 2
- - uid: 15458
+ - uid: 32254
components:
- type: Transform
- pos: -24.5,31.5
+ pos: 101.5,-28.5
parent: 2
- - uid: 15459
+ - uid: 32256
components:
- type: Transform
- pos: -26.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,22.5
parent: 2
- - uid: 15460
+ - uid: 32257
components:
- type: Transform
- pos: -25.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,22.5
parent: 2
- - uid: 15461
+ - uid: 32258
components:
- type: Transform
- pos: -24.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,22.5
parent: 2
- - uid: 15465
+ - uid: 32261
components:
- type: Transform
- pos: -28.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,22.5
parent: 2
- - uid: 15466
+ - uid: 32265
components:
- type: Transform
- pos: -29.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,22.5
parent: 2
- - uid: 15467
+ - uid: 32340
components:
- type: Transform
- pos: -30.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,22.5
parent: 2
- - uid: 15500
+ - uid: 32341
components:
- type: Transform
- pos: -129.5,44.5
+ pos: -38.5,14.5
parent: 2
- - uid: 15508
+ - uid: 32346
components:
- type: Transform
- pos: -15.5,41.5
+ pos: -108.5,-41.5
parent: 2
- - uid: 15540
+ - uid: 32438
components:
- type: Transform
- pos: -18.5,43.5
+ pos: 12.5,-21.5
parent: 2
- - uid: 15544
+ - uid: 32679
components:
- type: Transform
- pos: -93.5,80.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,28.5
parent: 2
- - uid: 15561
+ - uid: 32680
components:
- type: Transform
- pos: -58.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,28.5
parent: 2
- - uid: 15563
+ - uid: 33121
components:
- type: Transform
- pos: -9.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,28.5
parent: 2
- - uid: 15571
+ - uid: 33693
components:
- type: Transform
- pos: -130.5,45.5
+ pos: 68.5,83.5
parent: 2
- - uid: 15582
+ - uid: 33711
components:
- type: Transform
- pos: -130.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,16.5
parent: 2
- - uid: 15608
+ - uid: 33714
components:
- type: Transform
- pos: -21.5,45.5
+ pos: -7.5,-8.5
parent: 2
- - uid: 15630
+ - uid: 33883
components:
- type: Transform
- pos: -13.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,12.5
parent: 2
- - uid: 15632
+ - uid: 33890
components:
- type: Transform
- pos: -11.5,42.5
+ pos: 28.5,8.5
parent: 2
- - uid: 15648
+ - uid: 33896
components:
- type: Transform
- pos: -24.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,17.5
parent: 2
- - uid: 15649
+ - uid: 33897
components:
- type: Transform
- pos: -129.5,63.5
+ pos: 26.5,8.5
parent: 2
- - uid: 15651
+ - uid: 33898
components:
- type: Transform
- pos: -26.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,8.5
parent: 2
- - uid: 15652
+ - uid: 33917
components:
- type: Transform
- pos: -25.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-0.5
parent: 2
- - uid: 15658
+ - uid: 33948
components:
- type: Transform
- pos: -127.5,68.5
+ pos: 3.5,7.5
parent: 2
- - uid: 15659
+ - uid: 34047
components:
- type: Transform
- pos: -126.5,68.5
+ pos: 3.5,4.5
parent: 2
- - uid: 15660
+ - uid: 34056
components:
- type: Transform
- pos: -122.5,69.5
+ pos: 6.5,4.5
parent: 2
- - uid: 15665
+ - uid: 34200
components:
- type: Transform
- pos: -107.5,68.5
+ pos: -9.5,-2.5
parent: 2
- - uid: 15675
+ - uid: 34392
components:
- type: Transform
- pos: -102.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,58.5
parent: 2
- - uid: 15679
+ - uid: 34393
components:
- type: Transform
- pos: -98.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,58.5
parent: 2
- - uid: 15694
+ - uid: 34794
components:
- type: Transform
- pos: -95.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-0.5
parent: 2
- - uid: 15711
+ - uid: 34795
components:
- type: Transform
- pos: -91.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,1.5
parent: 2
- - uid: 15724
+ - uid: 34960
components:
- type: Transform
- pos: -92.5,89.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,8.5
parent: 2
- - uid: 15725
+ - uid: 34977
components:
- type: Transform
- pos: -92.5,91.5
+ pos: -11.5,-6.5
parent: 2
- - uid: 15773
+ - uid: 35467
components:
- type: Transform
- pos: -96.5,103.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,26.5
parent: 2
- - uid: 15774
+ - uid: 35571
components:
- type: Transform
- pos: -92.5,108.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,88.5
parent: 2
- - uid: 15779
+ - uid: 35577
components:
- type: Transform
- pos: -92.5,110.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,88.5
parent: 2
- - uid: 15803
+ - uid: 35578
components:
- type: Transform
- pos: -90.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,88.5
parent: 2
- - uid: 15804
+ - uid: 35581
components:
- type: Transform
- pos: -88.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,85.5
parent: 2
- - uid: 15807
+ - uid: 35585
components:
- type: Transform
- pos: -85.5,111.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,24.5
parent: 2
- - uid: 15811
+ - uid: 35587
components:
- type: Transform
- pos: -84.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,84.5
parent: 2
- - uid: 15812
+ - uid: 35588
components:
- type: Transform
- pos: -83.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,83.5
parent: 2
- - uid: 15817
+ - uid: 35601
components:
- type: Transform
- pos: -15.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -117.5,-26.5
parent: 2
- - uid: 15819
+ - uid: 35668
components:
- type: Transform
- pos: -17.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,21.5
parent: 2
- - uid: 15821
+ - uid: 35674
components:
- type: Transform
- pos: -19.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,28.5
parent: 2
- - uid: 15823
+ - uid: 35855
components:
- type: Transform
- pos: -21.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,13.5
parent: 2
- - uid: 15824
+ - uid: 35891
components:
- type: Transform
- pos: 11.5,69.5
+ pos: -15.5,34.5
parent: 2
- - uid: 15849
+ - uid: 35910
components:
- type: Transform
- pos: 10.5,69.5
+ pos: 74.5,83.5
parent: 2
- - uid: 15855
+ - uid: 35944
components:
- type: Transform
- pos: -51.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,34.5
parent: 2
- - uid: 15869
+ - uid: 35945
components:
- type: Transform
- pos: 11.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,83.5
parent: 2
- - uid: 15928
+ - uid: 35976
components:
- type: Transform
- pos: -11.5,42.5
+ pos: -118.5,39.5
parent: 2
- - uid: 15989
+ - uid: 35977
components:
- type: Transform
- pos: -52.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,2.5
parent: 2
- - uid: 15990
+ - uid: 35979
components:
- type: Transform
- pos: -54.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-2.5
parent: 2
- - uid: 16243
+ - uid: 36226
components:
- type: Transform
- pos: -55.5,51.5
+ pos: -129.5,67.5
parent: 2
- - uid: 16304
+ - uid: 36258
components:
- type: Transform
- pos: -28.5,57.5
+ pos: -121.5,68.5
parent: 2
- - uid: 16305
+ - uid: 36279
components:
- type: Transform
- pos: -28.5,58.5
+ pos: -119.5,68.5
parent: 2
- - uid: 16307
+ - uid: 36283
components:
- type: Transform
- pos: -53.5,-0.5
+ pos: -120.5,68.5
parent: 2
- - uid: 16308
+ - uid: 36284
components:
- type: Transform
- pos: -28.5,62.5
+ pos: -117.5,68.5
parent: 2
- - uid: 16319
+ - uid: 36350
components:
- type: Transform
- pos: -28.5,61.5
+ pos: -118.5,68.5
parent: 2
- - uid: 16320
+ - uid: 36351
components:
- type: Transform
- pos: -50.5,-0.5
+ pos: -115.5,68.5
parent: 2
- - uid: 16341
+ - uid: 36390
components:
- type: Transform
- pos: -17.5,54.5
+ pos: -38.5,-9.5
parent: 2
- - uid: 16342
+ - uid: 36391
components:
- type: Transform
- pos: -17.5,55.5
+ pos: -116.5,68.5
parent: 2
- - uid: 16343
+ - uid: 36408
components:
- type: Transform
- pos: -17.5,56.5
+ pos: -121.5,43.5
parent: 2
- - uid: 16344
+ - uid: 36409
components:
- type: Transform
- pos: -17.5,58.5
+ pos: -50.5,53.5
parent: 2
- - uid: 16345
+ - uid: 36416
components:
- type: Transform
- pos: -17.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-10.5
parent: 2
- - uid: 16357
+ - uid: 36467
components:
- type: Transform
- pos: -82.5,111.5
+ pos: -7.5,-7.5
parent: 2
- - uid: 16358
+ - uid: 36662
components:
- type: Transform
- pos: -78.5,111.5
+ pos: 80.5,83.5
parent: 2
- - uid: 16359
+ - uid: 36663
components:
- type: Transform
- pos: -76.5,111.5
+ pos: 82.5,83.5
parent: 2
- - uid: 16360
+ - uid: 36730
components:
- type: Transform
- pos: -70.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-23.5
parent: 2
- - uid: 16363
+ - uid: 36944
components:
- type: Transform
- pos: -69.5,111.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,59.5
parent: 2
- - uid: 16413
+ - uid: 36945
components:
- type: Transform
- pos: -17.5,45.5
+ pos: -24.5,62.5
parent: 2
- - uid: 16473
+ - uid: 37186
components:
- type: Transform
- pos: -55.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,10.5
parent: 2
- - uid: 16686
+ - uid: 37187
components:
- type: Transform
- pos: -41.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,10.5
parent: 2
- - uid: 16687
+ - uid: 37263
components:
- type: Transform
- pos: -38.5,-9.5
+ pos: -38.5,80.5
parent: 2
- - uid: 17117
+ - uid: 37265
components:
- type: Transform
- pos: -17.5,35.5
+ pos: -39.5,74.5
parent: 2
- - uid: 17122
+ - uid: 37436
components:
- type: Transform
- pos: -20.5,35.5
+ pos: -34.5,77.5
parent: 2
- - uid: 17872
+ - uid: 37438
components:
- type: Transform
- pos: 3.5,36.5
+ pos: -32.5,77.5
parent: 2
- - uid: 17873
+ - uid: 37439
components:
- type: Transform
- pos: 3.5,35.5
+ pos: -31.5,77.5
parent: 2
- - uid: 17874
+ - uid: 37440
components:
- type: Transform
- pos: 3.5,42.5
+ pos: -31.5,76.5
parent: 2
- - uid: 17878
+ - uid: 37442
components:
- type: Transform
- pos: 3.5,41.5
+ pos: -33.5,80.5
parent: 2
- - uid: 17916
+ - uid: 37443
components:
- type: Transform
- pos: -7.5,68.5
+ pos: -34.5,80.5
parent: 2
- - uid: 17963
+ - uid: 37444
components:
- type: Transform
- pos: -9.5,68.5
+ pos: -31.5,79.5
parent: 2
- - uid: 17973
+ - uid: 37800
components:
- type: Transform
- pos: -19.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-46.5
parent: 2
- - uid: 17992
+ - uid: 37960
components:
- type: Transform
- pos: -51.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,-3.5
parent: 2
- - uid: 18021
+ - uid: 37961
components:
- type: Transform
- pos: -2.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 107.5,-3.5
parent: 2
- - uid: 18022
+ - uid: 37962
components:
- type: Transform
- pos: -108.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 114.5,-9.5
parent: 2
- - uid: 18024
+ - uid: 37963
components:
- type: Transform
- pos: -2.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 114.5,-20.5
parent: 2
- - uid: 18029
+ - uid: 37965
components:
- type: Transform
- pos: 7.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 114.5,-26.5
parent: 2
- - uid: 18076
+ - uid: 37966
components:
- type: Transform
- pos: -14.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,-29.5
parent: 2
- - uid: 18077
+ - uid: 37967
components:
- type: Transform
- pos: -14.5,62.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,-29.5
parent: 2
- - uid: 18116
+ - uid: 37968
components:
- type: Transform
- pos: -67.5,111.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,-29.5
parent: 2
- - uid: 18122
+ - uid: 38105
components:
- type: Transform
- pos: -66.5,110.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,3.5
parent: 2
- - uid: 18139
+ - uid: 38106
components:
- type: Transform
- pos: -66.5,107.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,0.5
parent: 2
- - uid: 18174
+ - uid: 38122
components:
- type: Transform
- pos: -67.5,104.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-46.5
parent: 2
- - uid: 18196
+ - uid: 38129
components:
- type: Transform
- pos: -32.5,71.5
+ pos: -6.5,-46.5
parent: 2
- - uid: 18221
+ - uid: 38149
components:
- type: Transform
- pos: -39.5,68.5
+ pos: -7.5,-46.5
parent: 2
- - uid: 18222
+ - uid: 38191
components:
- type: Transform
- pos: -36.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-15.5
parent: 2
- - uid: 18224
+ - uid: 38267
components:
- type: Transform
- pos: -35.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-17.5
parent: 2
- - uid: 18242
+ - uid: 38268
components:
- type: Transform
- pos: -34.5,62.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-18.5
parent: 2
- - uid: 18252
+ - uid: 38512
components:
- type: Transform
- pos: -38.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -127.5,50.5
parent: 2
- - uid: 18270
+ - uid: 38647
components:
- type: Transform
- pos: -37.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,-24.5
parent: 2
- - uid: 18372
+ - uid: 38648
components:
- type: Transform
- pos: -60.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-22.5
parent: 2
- - uid: 18386
+ - uid: 38652
components:
- type: Transform
- pos: -67.5,103.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,53.5
parent: 2
- - uid: 18391
+ - uid: 38679
components:
- type: Transform
- pos: -67.5,102.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-7.5
parent: 2
- - uid: 18398
+ - uid: 38680
components:
- type: Transform
- pos: -66.5,101.5
+ pos: -121.5,59.5
parent: 2
- - uid: 18403
+ - uid: 38681
components:
- type: Transform
- pos: -66.5,97.5
+ pos: -125.5,62.5
parent: 2
- - uid: 18406
+ - uid: 38687
components:
- type: Transform
- pos: -66.5,96.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,33.5
parent: 2
- - uid: 18408
+ - uid: 38688
components:
- type: Transform
- pos: -60.5,6.5
+ pos: -107.5,-41.5
parent: 2
- - uid: 18409
+ - uid: 38689
components:
- type: Transform
- pos: -59.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,52.5
parent: 2
- - uid: 18410
+ - uid: 38692
components:
- type: Transform
- pos: -57.5,6.5
+ pos: -0.5,41.5
parent: 2
- - uid: 18411
+ - uid: 38703
components:
- type: Transform
- pos: -56.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,55.5
parent: 2
- - uid: 18412
+ - uid: 38704
components:
- type: Transform
- pos: -55.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,55.5
parent: 2
- - uid: 18413
+ - uid: 38716
components:
- type: Transform
- pos: -54.5,6.5
+ pos: -110.5,-41.5
parent: 2
- - uid: 18414
+ - uid: 38717
components:
- type: Transform
- pos: -52.5,6.5
+ pos: -109.5,-41.5
parent: 2
- - uid: 18440
+ - uid: 38718
components:
- type: Transform
- pos: -66.5,95.5
+ pos: -111.5,-41.5
parent: 2
- - uid: 18441
+ - uid: 38719
components:
- type: Transform
- pos: -66.5,94.5
+ pos: -112.5,-41.5
parent: 2
- - uid: 18498
+ - uid: 38720
components:
- type: Transform
- pos: -66.5,93.5
+ pos: -114.5,-42.5
parent: 2
- - uid: 18520
+ - uid: 38721
components:
- type: Transform
- pos: -66.5,78.5
+ pos: -115.5,-42.5
parent: 2
- - uid: 18530
+ - uid: 38722
components:
- type: Transform
- pos: -66.5,92.5
+ pos: -116.5,-42.5
parent: 2
- - uid: 18549
+ - uid: 38723
components:
- type: Transform
- pos: -66.5,91.5
+ pos: -117.5,-42.5
parent: 2
- - uid: 18554
+ - uid: 38724
components:
- type: Transform
- pos: -66.5,89.5
+ pos: -118.5,-42.5
parent: 2
- - uid: 18560
+ - uid: 38728
components:
- type: Transform
- pos: -92.5,50.5
+ pos: -109.5,-42.5
parent: 2
- - uid: 18563
+ - uid: 38798
components:
- type: Transform
- pos: -96.5,55.5
+ pos: -45.5,38.5
parent: 2
- - uid: 18564
+ - uid: 38857
components:
- type: Transform
- pos: -95.5,55.5
+ pos: -5.5,44.5
parent: 2
- - uid: 18565
+ - uid: 38882
components:
- type: Transform
- pos: -94.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,59.5
parent: 2
- - uid: 18572
+ - uid: 38934
components:
- type: Transform
- pos: -94.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,28.5
parent: 2
- - uid: 18574
+ - uid: 38935
components:
- type: Transform
- pos: -96.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,25.5
parent: 2
- - uid: 18577
+- proto: GrilleBroken
+ entities:
+ - uid: 1098
components:
- type: Transform
- pos: -90.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,64.5
parent: 2
- - uid: 18578
+ - uid: 1114
components:
- type: Transform
- pos: -66.5,87.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,64.5
parent: 2
- - uid: 18579
+ - uid: 4517
components:
- type: Transform
- pos: -66.5,85.5
+ pos: 96.5,72.5
parent: 2
- - uid: 18610
+ - uid: 5361
components:
- type: Transform
- pos: -91.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,85.5
parent: 2
- - uid: 18611
+ - uid: 5395
components:
- type: Transform
- pos: -90.5,50.5
+ pos: 58.5,53.5
parent: 2
- - uid: 18612
+ - uid: 5396
components:
- type: Transform
- pos: -91.5,52.5
+ pos: 57.5,53.5
parent: 2
- - uid: 18613
+ - uid: 5397
components:
- type: Transform
- pos: -92.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,56.5
parent: 2
- - uid: 18616
+ - uid: 7011
components:
- type: Transform
- pos: -66.5,81.5
+ pos: -29.5,-34.5
parent: 2
- - uid: 18628
+ - uid: 7012
components:
- type: Transform
- pos: -104.5,45.5
+ pos: -30.5,-34.5
parent: 2
- - uid: 18629
+ - uid: 7013
components:
- type: Transform
- pos: -103.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-31.5
parent: 2
- - uid: 18630
+ - uid: 7014
components:
- type: Transform
- pos: -102.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-31.5
parent: 2
- - uid: 18631
+ - uid: 7541
components:
- type: Transform
- pos: -104.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,42.5
parent: 2
- - uid: 18632
+ - uid: 13774
components:
- type: Transform
- pos: -103.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-36.5
parent: 2
- - uid: 18633
+ - uid: 13775
components:
- type: Transform
- pos: -102.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-38.5
parent: 2
- - uid: 18634
+ - uid: 13780
components:
- type: Transform
- pos: -104.5,55.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-42.5
parent: 2
- - uid: 18635
+ - uid: 13781
components:
- type: Transform
- pos: -103.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-39.5
parent: 2
- - uid: 18636
+ - uid: 13782
components:
- type: Transform
- pos: -102.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-37.5
parent: 2
- - uid: 18637
+ - uid: 18662
components:
- type: Transform
- pos: -104.5,57.5
+ pos: 74.5,69.5
parent: 2
- - uid: 18639
+ - uid: 18664
components:
- type: Transform
- pos: -102.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,67.5
parent: 2
- - uid: 18640
+ - uid: 18720
components:
- type: Transform
- pos: -103.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,42.5
parent: 2
- - uid: 18652
+ - uid: 18752
components:
- type: Transform
- pos: -102.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,81.5
parent: 2
- - uid: 18653
+ - uid: 18765
components:
- type: Transform
- pos: -102.5,52.5
+ rot: 3.141592653589793 rad
+ pos: -118.5,38.5
parent: 2
- - uid: 18654
+ - uid: 18767
components:
- type: Transform
- pos: -102.5,51.5
+ pos: -113.5,37.5
parent: 2
- - uid: 18655
+ - uid: 18796
components:
- type: Transform
- pos: -102.5,50.5
+ pos: -118.5,40.5
parent: 2
- - uid: 18656
+ - uid: 18808
components:
- type: Transform
- pos: -102.5,49.5
+ pos: -121.5,58.5
parent: 2
- - uid: 18657
+ - uid: 18832
components:
- type: Transform
- pos: -104.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -126.5,50.5
parent: 2
- - uid: 18658
+ - uid: 18933
components:
- type: Transform
- pos: -104.5,52.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,42.5
parent: 2
- - uid: 18659
+ - uid: 21028
components:
- type: Transform
- pos: -104.5,51.5
+ pos: 102.5,72.5
parent: 2
- - uid: 18660
+ - uid: 23019
components:
- type: Transform
- pos: -104.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -125.5,64.5
parent: 2
- - uid: 18661
+ - uid: 23020
components:
- type: Transform
- pos: -104.5,49.5
+ pos: -117.5,65.5
parent: 2
- - uid: 18686
+ - uid: 23021
components:
- type: Transform
- pos: -66.5,74.5
+ pos: -116.5,65.5
parent: 2
- - uid: 18687
+ - uid: 23022
components:
- type: Transform
- pos: -66.5,73.5
+ pos: -106.5,65.5
parent: 2
- - uid: 18690
+ - uid: 23023
components:
- type: Transform
- pos: -64.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,63.5
parent: 2
- - uid: 18691
+ - uid: 23024
components:
- type: Transform
- pos: -61.5,71.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,62.5
parent: 2
- - uid: 18692
+ - uid: 26613
components:
- type: Transform
- pos: -59.5,71.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,41.5
parent: 2
- - uid: 18693
+ - uid: 26619
components:
- type: Transform
- pos: -54.5,72.5
+ pos: 66.5,40.5
parent: 2
- - uid: 18694
+ - uid: 26747
components:
- type: Transform
- pos: -55.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,76.5
parent: 2
- - uid: 18696
+ - uid: 29071
components:
- type: Transform
- pos: -52.5,72.5
+ pos: 67.5,40.5
parent: 2
- - uid: 18723
+ - uid: 29736
components:
- type: Transform
- pos: -113.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,39.5
parent: 2
- - uid: 18724
+ - uid: 29870
components:
- type: Transform
- pos: -112.5,60.5
+ pos: 94.5,9.5
parent: 2
- - uid: 18725
+ - uid: 30143
components:
- type: Transform
- pos: -111.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,40.5
parent: 2
- - uid: 18741
+ - uid: 30144
components:
- type: Transform
- pos: -121.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,38.5
parent: 2
- - uid: 18742
+ - uid: 31215
components:
- type: Transform
- pos: -121.5,51.5
+ pos: 90.5,8.5
parent: 2
- - uid: 18743
+ - uid: 31229
components:
- type: Transform
- pos: -121.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -117.5,54.5
parent: 2
- - uid: 18759
+ - uid: 31328
components:
- type: Transform
- pos: -111.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -108.5,43.5
parent: 2
- - uid: 18760
+ - uid: 32359
components:
- type: Transform
- pos: -112.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -116.5,54.5
parent: 2
- - uid: 18761
+ - uid: 32902
components:
- type: Transform
- pos: -113.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,70.5
parent: 2
- - uid: 18782
+ - uid: 33856
components:
- type: Transform
- pos: 21.5,76.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,81.5
parent: 2
- - uid: 18789
+ - uid: 34806
components:
- type: Transform
- pos: 19.5,77.5
+ pos: -121.5,44.5
parent: 2
- - uid: 18792
+ - uid: 35006
components:
- type: Transform
- pos: 21.5,72.5
+ pos: 103.5,22.5
parent: 2
- - uid: 18793
+ - uid: 35076
components:
- type: Transform
- pos: 21.5,71.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,14.5
parent: 2
- - uid: 18794
+ - uid: 35078
components:
- type: Transform
- pos: 21.5,70.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,13.5
parent: 2
- - uid: 18799
+ - uid: 35525
components:
- type: Transform
- pos: -122.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,12.5
parent: 2
- - uid: 18828
+ - uid: 35526
components:
- type: Transform
- pos: -125.5,59.5
+ pos: 104.5,21.5
parent: 2
- - uid: 18829
+ - uid: 35580
components:
- type: Transform
- pos: -125.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,86.5
parent: 2
- - uid: 18830
+ - uid: 35683
components:
- type: Transform
- pos: -126.5,53.5
+ pos: 59.5,78.5
parent: 2
- - uid: 18831
+ - uid: 35688
components:
- type: Transform
- pos: -126.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,86.5
parent: 2
- - uid: 18832
+ - uid: 35695
components:
- type: Transform
- pos: -125.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,74.5
parent: 2
- - uid: 18833
+ - uid: 35696
components:
- type: Transform
- pos: -124.5,64.5
+ pos: 55.5,68.5
parent: 2
- - uid: 18834
+ - uid: 35709
components:
- type: Transform
- pos: -120.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,84.5
parent: 2
- - uid: 18835
+ - uid: 35716
components:
- type: Transform
- pos: -118.5,64.5
+ pos: 58.5,85.5
parent: 2
- - uid: 18836
+ - uid: 35873
components:
- type: Transform
- pos: -115.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,56.5
parent: 2
- - uid: 18837
+ - uid: 35874
components:
- type: Transform
- pos: -116.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 96.5,56.5
parent: 2
- - uid: 18838
+ - uid: 35875
components:
- type: Transform
- pos: -123.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 99.5,56.5
parent: 2
- - uid: 18839
+ - uid: 35876
components:
- type: Transform
- pos: -125.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: 97.5,52.5
parent: 2
- - uid: 18840
+ - uid: 35877
components:
- type: Transform
- pos: -113.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,52.5
parent: 2
- - uid: 18841
+ - uid: 35878
components:
- type: Transform
- pos: -112.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,52.5
parent: 2
- - uid: 18842
+ - uid: 36220
components:
- type: Transform
- pos: -108.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -127.5,54.5
parent: 2
- - uid: 18843
+ - uid: 36221
components:
- type: Transform
- pos: -108.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -128.5,50.5
parent: 2
- - uid: 18844
+ - uid: 36541
components:
- type: Transform
- pos: -106.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,83.5
parent: 2
- - uid: 18845
+ - uid: 36542
components:
- type: Transform
- pos: -105.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,83.5
parent: 2
- - uid: 18846
+ - uid: 36780
components:
- type: Transform
- pos: -101.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,64.5
parent: 2
- - uid: 18847
+ - uid: 36781
components:
- type: Transform
- pos: -100.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,61.5
parent: 2
- - uid: 18848
+ - uid: 36782
components:
- type: Transform
- pos: -99.5,62.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,62.5
parent: 2
- - uid: 18849
+ - uid: 36798
components:
- type: Transform
- pos: -99.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,70.5
parent: 2
- - uid: 18850
+ - uid: 36799
components:
- type: Transform
- pos: -98.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,67.5
parent: 2
- - uid: 18851
+ - uid: 36802
components:
- type: Transform
- pos: -98.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,70.5
parent: 2
- - uid: 18857
+ - uid: 36804
components:
- type: Transform
- pos: -121.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,67.5
parent: 2
- - uid: 18858
+ - uid: 36805
components:
- type: Transform
- pos: -122.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,67.5
parent: 2
- - uid: 18859
+ - uid: 36899
components:
- type: Transform
- pos: -123.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,64.5
parent: 2
- - uid: 18860
+ - uid: 36900
components:
- type: Transform
- pos: -125.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 75.5,64.5
parent: 2
- - uid: 18861
+ - uid: 38682
components:
- type: Transform
- pos: -125.5,41.5
+ pos: -121.5,60.5
parent: 2
- - uid: 18866
+ - uid: 38683
components:
- type: Transform
- pos: -123.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -125.5,61.5
parent: 2
- - uid: 18867
+- proto: GrilleDiagonal
+ entities:
+ - uid: 20317
components:
- type: Transform
- pos: -122.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,59.5
parent: 2
- - uid: 18868
+ - uid: 28481
components:
- type: Transform
- pos: -117.5,37.5
+ pos: 7.5,18.5
parent: 2
- - uid: 18870
+ - uid: 28489
components:
- type: Transform
- pos: -125.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,60.5
parent: 2
- - uid: 18871
+- proto: GunSafe
+ entities:
+ - uid: 30282
components:
- type: Transform
- pos: -125.5,39.5
+ pos: -6.5,35.5
parent: 2
- - uid: 18872
+ - 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:
+ - 22261
+ - 22260
+ - 22262
+ - 22263
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: GunSafeAdjutantShotgun
+ entities:
+ - uid: 16339
components:
- type: Transform
- pos: -126.5,43.5
+ pos: -31.5,38.5
parent: 2
- - uid: 18873
+ - uid: 26009
components:
- type: Transform
- pos: -125.5,48.5
+ pos: -31.5,39.5
parent: 2
- - uid: 18874
+- proto: GunSafeEnergyGunMini
+ entities:
+ - uid: 21802
components:
- type: Transform
- pos: -125.5,49.5
+ pos: -24.5,37.5
parent: 2
- - uid: 18875
+ - uid: 21805
components:
- type: Transform
- pos: -126.5,40.5
+ pos: -23.5,37.5
parent: 2
- - uid: 18876
+- proto: GunSafeLaserCarbine
+ entities:
+ - uid: 2753
components:
- type: Transform
- pos: -126.5,56.5
+ pos: -29.5,37.5
parent: 2
- - uid: 18877
+ - uid: 16524
components:
- type: Transform
- pos: -122.5,64.5
+ pos: -30.5,37.5
parent: 2
- - uid: 18878
+- proto: GunSafePistolMk58
+ entities:
+ - uid: 15645
components:
- type: Transform
- pos: -119.5,65.5
+ pos: -21.5,37.5
parent: 2
- - uid: 18881
+- proto: GunSafeSubMachineGunDrozd
+ entities:
+ - uid: 16159
components:
- type: Transform
- pos: -125.5,47.5
+ pos: -29.5,40.5
parent: 2
- - uid: 18899
+ - uid: 16160
components:
- type: Transform
- pos: -119.5,37.5
+ pos: -30.5,40.5
parent: 2
- - uid: 18948
+- proto: Handcuffs
+ entities:
+ - uid: 4331
components:
- type: Transform
- pos: 22.5,69.5
+ pos: 49.76617,34.08667
parent: 2
- - uid: 18949
+ - uid: 12055
components:
- type: Transform
- pos: 22.5,68.5
+ pos: 6.5493526,-20.872643
parent: 2
- - uid: 18954
+ - uid: 15379
components:
- type: Transform
- pos: 26.5,66.5
+ pos: 13.720597,54.94558
parent: 2
- - uid: 18959
+- proto: HandheldCrewMonitor
+ entities:
+ - uid: 13386
components:
- type: Transform
- pos: 28.5,66.5
+ pos: -36.664906,35.52062
parent: 2
- - uid: 18960
+- proto: HandheldGPSBasic
+ entities:
+ - uid: 1672
components:
- type: Transform
- pos: 30.5,66.5
+ pos: -25.51881,9.577614
parent: 2
- - uid: 18961
+- proto: HandheldHealthAnalyzer
+ entities:
+ - uid: 5561
components:
- type: Transform
- pos: 33.5,66.5
+ pos: 48.69378,46.593346
parent: 2
- - uid: 19317
+ - uid: 6909
components:
- type: Transform
- pos: -45.5,64.5
+ pos: 43.88972,-21.144852
parent: 2
- - uid: 19321
+ - uid: 6911
components:
- type: Transform
- pos: 34.5,66.5
+ pos: -8.399831,-45.355404
parent: 2
- - uid: 19327
+ - uid: 14206
components:
- type: Transform
- pos: 37.5,65.5
+ pos: 13.549272,55.62919
parent: 2
- - uid: 19328
+ - uid: 15727
components:
- type: Transform
- pos: -61.5,49.5
+ pos: -18.282223,50.640102
parent: 2
- - uid: 19330
+ - uid: 27221
components:
- type: Transform
- pos: -61.5,46.5
+ pos: -44.588486,60.89263
parent: 2
- - uid: 19331
+- proto: HandLabeler
+ entities:
+ - uid: 1084
components:
- type: Transform
- pos: -61.5,45.5
+ pos: 20.645819,-1.1453056
parent: 2
- - uid: 19340
+ - uid: 1984
components:
- type: Transform
- pos: -108.5,11.5
+ pos: 7.2949524,30.869534
parent: 2
- - uid: 19341
+ - uid: 5524
components:
- type: Transform
- pos: -87.5,-15.5
+ pos: 28.111671,30.624172
parent: 2
- - uid: 19342
+ - uid: 9550
components:
- type: Transform
- pos: -81.5,-15.5
+ pos: 36.36654,46.676826
parent: 2
- - uid: 19344
+ - uid: 35809
components:
- type: Transform
- pos: 38.5,65.5
+ pos: -3.414721,-6.6666975
parent: 2
- - uid: 19346
+- proto: HappyHonk
+ entities:
+ - uid: 5701
components:
- type: Transform
- pos: 39.5,65.5
+ pos: -77.61699,1.6966684
parent: 2
- - uid: 19348
+ - uid: 19431
components:
- type: Transform
- pos: 40.5,65.5
+ pos: -79.39417,3.798067
parent: 2
- - uid: 19351
+- proto: HappyHonkMime
+ entities:
+ - uid: 4210
components:
- type: Transform
- pos: 41.5,65.5
+ pos: -81.284096,1.8494835
parent: 2
- - uid: 19362
+- proto: HatSpawner
+ entities:
+ - uid: 1326
components:
- type: Transform
- pos: 42.5,66.5
+ pos: -45.5,-37.5
parent: 2
- - uid: 19363
+ - uid: 21090
components:
- type: Transform
- pos: 43.5,66.5
+ pos: -6.5,-38.5
parent: 2
- - uid: 19364
+ - uid: 21091
components:
- type: Transform
- pos: 41.5,66.5
+ pos: -3.5,-18.5
parent: 2
- - uid: 19365
+ - uid: 21093
components:
- type: Transform
- pos: 46.5,66.5
+ pos: -32.5,27.5
parent: 2
- - uid: 19382
+ - uid: 21095
components:
- type: Transform
- pos: -6.5,22.5
+ pos: -66.5,50.5
parent: 2
- - uid: 19388
+ - uid: 21098
components:
- type: Transform
- pos: 47.5,68.5
+ pos: -61.5,-31.5
parent: 2
- - uid: 19399
+- proto: HeadSkeleton
+ entities:
+ - uid: 26236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-4.5
+ pos: -33.213863,2.344686
parent: 2
- - uid: 19401
+ - uid: 30075
components:
- type: Transform
- pos: 48.5,70.5
+ pos: 90.89885,41.841835
parent: 2
- - uid: 19413
+ - uid: 30077
components:
- type: Transform
- pos: 48.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 90.6176,42.10746
parent: 2
- - uid: 19433
+ - uid: 32533
components:
- type: Transform
- pos: 49.5,72.5
+ pos: 90.62023,41.821255
parent: 2
- - uid: 19435
+ - uid: 32534
components:
- type: Transform
- pos: 55.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: 91.05773,41.61813
parent: 2
- - uid: 19438
+ - uid: 32535
components:
- type: Transform
- pos: 54.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: 90.30773,41.49313
parent: 2
- - uid: 19457
+ - uid: 32536
components:
- type: Transform
- pos: -99.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 90.22961,43.633755
parent: 2
- - uid: 19463
+ - uid: 32537
components:
- type: Transform
- pos: -0.5,79.5
+ pos: 90.62023,43.758755
parent: 2
- - uid: 19464
+ - uid: 32538
components:
- type: Transform
- pos: 1.5,79.5
+ pos: 84.76086,42.61813
parent: 2
- - uid: 19465
+ - uid: 36711
components:
- type: Transform
- pos: 3.5,79.5
+ pos: 82.08937,85.06662
parent: 2
- - uid: 19472
+ - uid: 36712
components:
- type: Transform
- pos: -4.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 82.429214,84.75021
parent: 2
- - uid: 19473
+ - uid: 36713
components:
- type: Transform
- pos: -6.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 80.917496,84.18771
parent: 2
- - uid: 19474
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 15524
components:
- type: Transform
- pos: -8.5,79.5
+ pos: -26.5,40.5
parent: 2
- - uid: 19475
+ - uid: 16528
components:
- type: Transform
- pos: 7.5,79.5
+ pos: -26.5,43.5
parent: 2
- - uid: 19476
+ - uid: 26521
components:
- type: Transform
- pos: 9.5,79.5
+ pos: -21.5,40.5
parent: 2
- - uid: 19477
+ - uid: 28950
components:
- type: Transform
- pos: 11.5,79.5
+ pos: -21.5,48.5
parent: 2
- - uid: 19479
+ - uid: 30385
components:
- type: Transform
- pos: -83.5,23.5
+ pos: -28.5,38.5
parent: 2
- - uid: 19488
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 1393
components:
- type: Transform
- pos: -8.5,80.5
+ pos: -77.5,10.5
parent: 2
- - uid: 19489
+ - uid: 22597
components:
- type: Transform
- pos: -8.5,81.5
+ pos: 20.5,45.5
parent: 2
- - uid: 19490
+ - uid: 22598
components:
- type: Transform
- pos: -8.5,82.5
+ pos: 27.5,40.5
parent: 2
- - uid: 19491
+- proto: Holoprojector
+ entities:
+ - uid: 18542
components:
- type: Transform
- pos: -6.5,80.5
+ pos: -33.863884,0.72903204
parent: 2
- - uid: 19492
+- proto: HoloprojectorEngineering
+ entities:
+ - uid: 6910
components:
- type: Transform
- pos: -6.5,81.5
+ pos: -58.591316,29.458557
parent: 2
- - uid: 19493
+ - uid: 30648
components:
- type: Transform
- pos: -6.5,82.5
+ pos: -47.505886,33.727592
parent: 2
- - uid: 19494
+ - uid: 30649
components:
- type: Transform
- pos: -4.5,80.5
+ pos: -47.349636,33.540092
parent: 2
- - uid: 19495
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 9130
components:
- type: Transform
- pos: -4.5,81.5
+ pos: -9.840599,42.63236
parent: 2
- - uid: 19496
+ - uid: 13236
components:
- type: Transform
- pos: -4.5,82.5
+ pos: -10.911072,31.50623
parent: 2
- - uid: 19497
+ - uid: 15496
components:
- type: Transform
- pos: -0.5,80.5
+ pos: -20.585493,43.45122
parent: 2
- - uid: 19498
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 402
components:
- type: Transform
- pos: -0.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,0.5
parent: 2
- - uid: 19499
+ - uid: 882
components:
- type: Transform
- pos: -0.5,82.5
+ pos: 25.5,-4.5
parent: 2
- - uid: 19500
+ - uid: 1006
components:
- type: Transform
- pos: 1.5,80.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,0.5
parent: 2
- - uid: 19501
+ - uid: 1025
components:
- type: Transform
- pos: 1.5,81.5
+ pos: 32.5,-11.5
parent: 2
- - uid: 19502
+ - uid: 1193
components:
- type: Transform
- pos: 1.5,82.5
+ pos: 25.5,-5.5
parent: 2
- - uid: 19503
+ - uid: 1194
components:
- type: Transform
- pos: 3.5,80.5
+ pos: 25.5,-7.5
parent: 2
- - uid: 19504
+ - uid: 1195
components:
- type: Transform
- pos: 3.5,81.5
+ pos: 25.5,-8.5
parent: 2
- - uid: 19505
+ - uid: 1196
components:
- type: Transform
- pos: 3.5,82.5
+ pos: 25.5,-10.5
parent: 2
- - uid: 19506
+ - uid: 1197
components:
- type: Transform
- pos: 7.5,80.5
+ pos: 25.5,-11.5
parent: 2
- - uid: 19507
+ - uid: 1208
components:
- type: Transform
- pos: 7.5,81.5
+ pos: 32.5,-10.5
parent: 2
- - uid: 19508
+ - uid: 1489
components:
- type: Transform
- pos: 7.5,82.5
+ pos: 7.5,13.5
parent: 2
- - uid: 19509
+ - uid: 1490
components:
- type: Transform
- pos: 9.5,80.5
+ pos: 21.5,15.5
parent: 2
- - uid: 19510
+ - uid: 1492
components:
- type: Transform
- pos: 9.5,81.5
+ pos: 7.5,11.5
parent: 2
- - uid: 19511
+ - uid: 1510
components:
- type: Transform
- pos: 9.5,82.5
+ pos: 21.5,11.5
parent: 2
- - uid: 19512
+ - uid: 1511
components:
- type: Transform
- pos: 11.5,80.5
+ pos: 21.5,13.5
parent: 2
- - uid: 19513
+ - uid: 1512
components:
- type: Transform
- pos: 11.5,81.5
+ pos: 21.5,14.5
parent: 2
- - uid: 19514
+ - uid: 1513
components:
- type: Transform
- pos: 11.5,82.5
+ pos: 7.5,15.5
parent: 2
- - uid: 19515
+ - uid: 1514
components:
- type: Transform
- pos: 7.5,72.5
+ pos: 7.5,9.5
parent: 2
- - uid: 19611
+ - uid: 4732
components:
- type: Transform
- pos: -12.5,77.5
+ pos: 91.5,76.5
parent: 2
- - uid: 19612
+ - uid: 4904
components:
- type: Transform
- pos: -12.5,76.5
+ pos: 99.5,75.5
parent: 2
- - uid: 19613
+ - uid: 4912
components:
- type: Transform
- pos: -12.5,75.5
+ pos: 98.5,75.5
parent: 2
- - uid: 19614
+ - uid: 5109
components:
- type: Transform
- pos: -12.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,59.5
parent: 2
- - uid: 19615
+ - uid: 5762
components:
- type: Transform
- pos: 15.5,77.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,64.5
parent: 2
- - uid: 19616
+ - uid: 6551
components:
- type: Transform
- pos: 15.5,76.5
+ pos: -15.5,4.5
parent: 2
- - uid: 19617
+ - uid: 6578
components:
- type: Transform
- pos: 15.5,75.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-9.5
parent: 2
- - uid: 19618
+ - uid: 7328
components:
- type: Transform
- pos: 15.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,60.5
parent: 2
- - uid: 19639
+ - uid: 7537
components:
- type: Transform
- pos: 49.5,75.5
+ pos: -70.5,14.5
parent: 2
- - uid: 19655
+ - uid: 8330
components:
- type: Transform
- pos: -34.5,61.5
+ pos: -19.5,0.5
parent: 2
- - uid: 19724
+ - uid: 8361
components:
- type: Transform
- pos: -40.5,73.5
+ pos: -20.5,0.5
parent: 2
- - uid: 19731
+ - uid: 8374
components:
- type: Transform
- pos: 11.5,72.5
+ pos: -13.5,0.5
parent: 2
- - uid: 19799
+ - uid: 8381
components:
- type: Transform
- pos: -12.5,71.5
+ pos: -14.5,0.5
parent: 2
- - uid: 19812
+ - uid: 9128
components:
- type: Transform
- pos: 50.5,75.5
+ pos: -13.5,4.5
parent: 2
- - uid: 19830
+ - uid: 9129
components:
- type: Transform
- pos: -26.5,68.5
+ pos: -19.5,4.5
parent: 2
- - uid: 19831
+ - uid: 11527
components:
- type: Transform
- pos: -27.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-8.5
parent: 2
- - uid: 19832
+ - uid: 11528
components:
- type: Transform
- pos: -25.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-5.5
parent: 2
- - uid: 19833
+ - uid: 11530
components:
- type: Transform
- pos: -23.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-7.5
parent: 2
- - uid: 19834
+ - uid: 13952
components:
- type: Transform
- pos: -22.5,68.5
+ pos: -24.5,55.5
parent: 2
- - uid: 19835
+ - uid: 14102
components:
- type: Transform
- pos: -21.5,68.5
+ pos: -21.5,4.5
parent: 2
- - uid: 19836
+ - uid: 14136
components:
- type: Transform
- pos: -19.5,68.5
+ pos: -17.5,4.5
parent: 2
- - uid: 19837
+ - uid: 14264
components:
- type: Transform
- pos: -18.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-10.5
parent: 2
- - uid: 19838
+ - uid: 15720
components:
- type: Transform
- pos: -17.5,68.5
+ pos: -2.5,60.5
parent: 2
- - uid: 19839
+ - uid: 15732
components:
- type: Transform
- pos: -15.5,68.5
+ pos: -2.5,58.5
parent: 2
- - uid: 19840
+ - uid: 15747
components:
- type: Transform
- pos: -14.5,68.5
+ pos: -2.5,61.5
parent: 2
- - uid: 19841
+ - uid: 18048
components:
- type: Transform
- pos: -13.5,68.5
+ pos: -26.5,65.5
parent: 2
- - uid: 19844
+ - uid: 18049
components:
- type: Transform
- pos: -12.5,70.5
+ pos: -22.5,65.5
parent: 2
- - uid: 19845
+ - uid: 18050
components:
- type: Transform
- pos: -12.5,69.5
+ pos: -18.5,65.5
parent: 2
- - uid: 19892
+ - uid: 18051
components:
- type: Transform
- pos: 77.5,3.5
+ pos: -14.5,65.5
parent: 2
- - uid: 19895
+ - uid: 19854
components:
- type: Transform
- pos: 81.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,65.5
parent: 2
- - uid: 19896
+ - uid: 19962
components:
- type: Transform
- pos: 81.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-4.5
parent: 2
- - uid: 19908
+ - uid: 19996
components:
- type: Transform
- pos: -66.5,-17.5
+ pos: 12.5,-12.5
parent: 2
- - uid: 19911
+ - uid: 20253
components:
- type: Transform
- pos: -63.5,-14.5
+ pos: 21.5,12.5
parent: 2
- - uid: 19918
+ - uid: 20283
components:
- type: Transform
- pos: -70.5,-19.5
+ pos: 7.5,12.5
parent: 2
- - uid: 19919
+ - uid: 20545
components:
- type: Transform
- pos: -71.5,-19.5
+ pos: 7.5,14.5
parent: 2
- - uid: 19920
+ - uid: 22367
components:
- type: Transform
- pos: -72.5,-18.5
+ pos: -66.5,-9.5
parent: 2
- - uid: 19921
+ - uid: 23095
components:
- type: Transform
- pos: -71.5,-13.5
+ pos: 7.5,10.5
parent: 2
- - uid: 19922
+ - uid: 23457
components:
- type: Transform
- pos: -68.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-6.5
parent: 2
- - uid: 19923
+ - uid: 25092
components:
- type: Transform
- pos: -63.5,-15.5
+ pos: 21.5,10.5
parent: 2
- - uid: 19949
+ - uid: 25129
components:
- type: Transform
- pos: 92.5,39.5
+ pos: 21.5,9.5
parent: 2
- - uid: 19956
+ - uid: 25801
components:
- type: Transform
- pos: 52.5,75.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,49.5
parent: 2
- - uid: 19957
+ - uid: 27192
components:
- type: Transform
- pos: 56.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,17.5
parent: 2
- - uid: 19958
+ - uid: 27193
components:
- type: Transform
- pos: 57.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,17.5
parent: 2
- - uid: 19959
+ - uid: 27194
components:
- type: Transform
- pos: 58.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,17.5
parent: 2
- - uid: 19960
+ - uid: 27195
components:
- type: Transform
- pos: 59.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,17.5
parent: 2
- - uid: 19963
+ - uid: 27196
components:
- type: Transform
- pos: 60.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,17.5
parent: 2
- - uid: 19965
+ - uid: 27197
components:
- type: Transform
- pos: 61.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,17.5
parent: 2
- - uid: 19968
+ - uid: 27198
components:
- type: Transform
- pos: 62.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,17.5
parent: 2
- - uid: 19969
+ - uid: 27199
components:
- type: Transform
- pos: 65.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,17.5
parent: 2
- - uid: 19971
+ - uid: 27200
components:
- type: Transform
- pos: 73.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,17.5
parent: 2
- - uid: 19973
+ - uid: 27201
components:
- type: Transform
- pos: 74.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,17.5
parent: 2
- - uid: 19981
+ - uid: 27332
components:
- type: Transform
- pos: 75.5,76.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,16.5
parent: 2
- - uid: 19982
+ - uid: 28352
components:
- type: Transform
- pos: 71.5,76.5
+ pos: 4.5,-5.5
parent: 2
- - uid: 19983
+ - uid: 28355
components:
- type: Transform
- pos: 70.5,76.5
+ pos: 13.5,-12.5
parent: 2
- - uid: 19984
+ - uid: 28946
components:
- type: Transform
- pos: 69.5,76.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,16.5
parent: 2
- - uid: 19993
+ - uid: 29395
components:
- type: Transform
- pos: 68.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,74.5
parent: 2
- - uid: 20007
+ - uid: 31046
components:
- type: Transform
- pos: 44.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,65.5
parent: 2
- - uid: 20008
+ - uid: 31113
components:
- type: Transform
- pos: 50.5,-32.5
+ pos: -33.5,65.5
parent: 2
- - uid: 20013
+ - uid: 32565
components:
- type: Transform
- pos: -63.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,35.5
parent: 2
- - uid: 20014
+ - uid: 33653
components:
- type: Transform
- pos: -63.5,-18.5
+ pos: -31.5,65.5
parent: 2
- - uid: 20314
+ - uid: 33655
components:
- type: Transform
- pos: 67.5,76.5
+ pos: -34.5,64.5
parent: 2
- - uid: 20320
+ - uid: 37539
components:
- type: Transform
- pos: 78.5,77.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,17.5
parent: 2
- - uid: 20365
+- proto: hydroponicsSoil
+ entities:
+ - uid: 2368
components:
- type: Transform
- pos: 79.5,77.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,4.5
parent: 2
- - uid: 20373
+ - uid: 5407
components:
- type: Transform
- pos: 80.5,77.5
+ pos: -33.5,62.5
parent: 2
- - uid: 20399
+ - uid: 5740
components:
- type: Transform
- pos: 81.5,77.5
+ pos: -33.5,61.5
parent: 2
- - uid: 20590
+ - uid: 6274
components:
- type: Transform
- pos: 82.5,77.5
+ pos: -33.5,60.5
parent: 2
- - uid: 20591
+ - uid: 6844
components:
- type: Transform
- pos: 83.5,77.5
+ pos: -33.5,59.5
parent: 2
- - uid: 20592
+ - uid: 9671
components:
- type: Transform
- pos: 84.5,77.5
+ pos: -33.5,57.5
parent: 2
- - uid: 20593
+ - uid: 18418
components:
- type: Transform
- pos: 85.5,77.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,5.5
parent: 2
- - uid: 20594
+ - uid: 18419
components:
- type: Transform
- pos: 86.5,77.5
+ rot: 3.141592653589793 rad
+ pos: -56.5,5.5
parent: 2
- - uid: 20595
+ - uid: 18420
components:
- type: Transform
- pos: 97.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,5.5
parent: 2
- - uid: 20596
+ - uid: 18421
components:
- type: Transform
- pos: 91.5,77.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,5.5
parent: 2
- - uid: 20716
+ - uid: 18425
components:
- type: Transform
- pos: -22.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,4.5
parent: 2
- - uid: 20724
+ - uid: 18429
components:
- type: Transform
- pos: -108.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,4.5
parent: 2
- - uid: 20934
+ - uid: 18430
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -104.5,14.5
+ pos: -54.5,4.5
parent: 2
- - uid: 20998
+ - uid: 30754
components:
- type: Transform
- pos: -38.5,73.5
+ pos: -33.5,58.5
parent: 2
- - uid: 21000
+- proto: HydroponicsToolClippers
+ entities:
+ - uid: 2286
components:
- type: Transform
- pos: 94.5,76.5
+ pos: -31.421663,62.557053
parent: 2
- - uid: 21018
+ - uid: 18156
components:
- type: Transform
- pos: -52.5,-47.5
+ pos: -31.554474,62.728928
parent: 2
- - uid: 21019
+ - uid: 18491
components:
- type: Transform
- pos: 95.5,75.5
+ pos: -49.48618,4.709147
parent: 2
- - uid: 21020
+- proto: HydroponicsToolHatchet
+ entities:
+ - uid: 18485
components:
- type: Transform
- pos: 96.5,70.5
+ pos: -52.588306,-1.3315754
parent: 2
- - uid: 21021
+ - uid: 18488
components:
- type: Transform
- pos: 96.5,68.5
+ pos: -62.501804,0.9122721
parent: 2
- - uid: 21022
+- proto: HydroponicsToolMiniHoe
+ entities:
+ - uid: 4102
components:
- type: Transform
- pos: 99.5,54.5
+ pos: -29.585726,62.510178
parent: 2
- - uid: 21023
+ - uid: 18153
components:
- type: Transform
- pos: 101.5,47.5
+ pos: -29.399925,62.64608
parent: 2
- - uid: 21024
+ - uid: 18489
components:
- type: Transform
- pos: 104.5,36.5
+ pos: -61.73618,0.5372721
parent: 2
- - uid: 21025
+ - uid: 18490
components:
- type: Transform
- pos: 104.5,31.5
+ pos: -61.42368,0.6466471
parent: 2
- - uid: 21026
+- proto: HydroponicsToolScythe
+ entities:
+ - uid: 18492
components:
- type: Transform
- pos: 104.5,29.5
+ pos: -52.60393,-1.3159504
parent: 2
- - uid: 21027
+- proto: HydroponicsToolSpade
+ entities:
+ - uid: 18493
components:
- type: Transform
- pos: 104.5,26.5
+ pos: -62.345554,1.4435221
parent: 2
- - uid: 21028
+ - uid: 18494
components:
- type: Transform
- pos: 103.5,24.5
+ pos: -51.51018,-1.3940754
parent: 2
- - uid: 21029
+- proto: hydroponicsTray
+ entities:
+ - uid: 2369
components:
- type: Transform
- pos: 103.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,4.5
parent: 2
- - uid: 21031
+ - uid: 2373
components:
- type: Transform
- pos: 103.5,22.5
+ pos: -50.5,4.5
parent: 2
- - uid: 21032
+ - uid: 7417
components:
- type: Transform
- pos: 103.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,5.5
parent: 2
- - uid: 21033
+ - uid: 17987
components:
- type: Transform
- pos: 102.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,4.5
parent: 2
- - uid: 21035
+ - uid: 17995
components:
- type: Transform
- pos: 101.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,4.5
parent: 2
- - uid: 21036
+ - uid: 18061
components:
- type: Transform
- pos: 100.5,20.5
+ pos: -29.5,58.5
parent: 2
- - uid: 21037
+ - uid: 18069
components:
- type: Transform
- pos: 99.5,19.5
+ pos: -30.5,58.5
parent: 2
- - uid: 21038
+ - uid: 18071
components:
- type: Transform
- pos: 98.5,19.5
+ pos: -31.5,57.5
parent: 2
- - uid: 21039
+ - uid: 18073
components:
- type: Transform
- pos: 98.5,18.5
+ pos: -31.5,58.5
parent: 2
- - uid: 21058
+ - uid: 18143
components:
- type: Transform
- pos: 97.5,16.5
+ pos: -29.5,57.5
parent: 2
- - uid: 21076
+ - uid: 18416
components:
- type: Transform
- pos: -39.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,5.5
parent: 2
- - uid: 21077
+ - uid: 18417
components:
- type: Transform
- pos: -41.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -61.5,5.5
parent: 2
- - uid: 21080
+ - uid: 18422
components:
- type: Transform
- pos: 97.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,5.5
parent: 2
- - uid: 21117
+ - uid: 18423
components:
- type: Transform
- pos: 97.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,5.5
parent: 2
- - uid: 21118
+ - uid: 18424
components:
- type: Transform
- pos: 97.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,5.5
parent: 2
- - uid: 21119
+ - uid: 18426
components:
- type: Transform
- pos: 97.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,4.5
parent: 2
- - uid: 21120
+ - uid: 18427
components:
- type: Transform
- pos: 95.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,4.5
parent: 2
- - uid: 21122
+- proto: Igniter
+ entities:
+ - uid: 25782
components:
- type: Transform
- pos: 89.5,-3.5
+ pos: -58.52908,50.271786
parent: 2
- - uid: 21129
+ - type: DeviceLinkSink
+ links:
+ - 19332
+ - uid: 35711
components:
+ - type: MetaData
+ name: igniter 2
- type: Transform
- pos: 82.5,-28.5
+ pos: -37.55961,37.32428
parent: 2
- - uid: 21130
+ - type: DeviceLinkSink
+ links:
+ - 35713
+ - uid: 35712
components:
+ - type: MetaData
+ name: igniter 1
- type: Transform
- pos: 80.5,-22.5
+ pos: -37.62211,37.66803
parent: 2
- - uid: 21131
+ - type: DeviceLinkSink
+ links:
+ - 35714
+- proto: InflatableDoor
+ entities:
+ - uid: 22720
components:
- type: Transform
- pos: 80.5,-24.5
+ pos: 57.5,57.5
parent: 2
- - uid: 21132
+- proto: InflatableWall
+ entities:
+ - uid: 1129
components:
- type: Transform
- pos: 80.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-24.5
parent: 2
- - uid: 21133
+ - uid: 22116
components:
- type: Transform
- pos: 79.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-25.5
parent: 2
- - uid: 21163
+ - uid: 23774
components:
- type: Transform
- pos: 82.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-24.5
parent: 2
- - uid: 21165
+- proto: IngotGold
+ entities:
+ - uid: 13997
components:
- type: Transform
- pos: -35.5,47.5
+ pos: 26.468767,39.52544
parent: 2
- - uid: 21188
+- proto: IngotSilver
+ entities:
+ - uid: 14129
components:
- type: Transform
- pos: 82.5,-30.5
+ pos: 26.586357,39.834373
parent: 2
- - uid: 21189
+- proto: IntercomCommand
+ entities:
+ - uid: 1520
components:
- type: Transform
- pos: 82.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,28.5
parent: 2
- - uid: 21190
+ - uid: 14214
components:
- type: Transform
- pos: 82.5,-32.5
+ pos: 14.5,44.5
parent: 2
- - uid: 21191
+ - uid: 14272
components:
- type: Transform
- pos: 81.5,-33.5
+ pos: 12.5,51.5
parent: 2
- - uid: 21204
+ - uid: 14277
components:
- type: Transform
- pos: 80.5,-35.5
+ pos: 25.5,57.5
parent: 2
- - uid: 21462
+ - uid: 22596
components:
- type: Transform
- pos: 5.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,48.5
parent: 2
- - uid: 21467
+ - uid: 22617
components:
- type: Transform
- pos: 47.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,53.5
parent: 2
- - uid: 21569
+- proto: IntercomCommon
+ entities:
+ - uid: 22919
components:
- type: Transform
- pos: 79.5,-35.5
+ pos: 51.5,5.5
parent: 2
- - uid: 21884
+ - uid: 22932
components:
- type: Transform
- pos: 77.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-38.5
parent: 2
- - uid: 21886
+ - uid: 22933
components:
- type: Transform
- pos: 76.5,-35.5
+ pos: 36.5,-12.5
parent: 2
- - uid: 21888
+ - uid: 22935
components:
- type: Transform
- pos: 75.5,-35.5
+ pos: 41.5,22.5
parent: 2
- - uid: 21890
+ - uid: 22936
components:
- type: Transform
- pos: 74.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,29.5
parent: 2
- - uid: 21894
+ - uid: 22937
components:
- type: Transform
- pos: 72.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,72.5
parent: 2
- - uid: 21913
+ - uid: 22940
components:
- type: Transform
- pos: 71.5,-36.5
+ pos: -36.5,-12.5
parent: 2
- - uid: 21914
+ - uid: 37234
components:
- type: Transform
- pos: 70.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: -63.5,6.5
parent: 2
- - uid: 21915
+ - uid: 37728
components:
- type: Transform
- pos: 70.5,-39.5
+ pos: -43.5,18.5
parent: 2
- - uid: 21927
+- proto: IntercomEngineering
+ entities:
+ - uid: 8828
components:
- type: Transform
- pos: 69.5,-42.5
+ pos: -60.5,13.5
parent: 2
- - uid: 21928
+ - uid: 22699
components:
- type: Transform
- pos: 69.5,-44.5
+ pos: -51.5,32.5
parent: 2
- - uid: 21929
+ - uid: 22700
components:
- type: Transform
- pos: 68.5,-45.5
+ pos: -36.5,47.5
parent: 2
- - uid: 21947
+- proto: IntercomMedical
+ entities:
+ - uid: 1951
components:
- type: Transform
- pos: 75.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,15.5
parent: 2
- - uid: 21948
+ - uid: 15070
components:
- type: Transform
- pos: 68.5,-43.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-2.5
parent: 2
- - uid: 21949
+ - uid: 22944
components:
- type: Transform
- pos: 69.5,-41.5
+ pos: -24.5,14.5
parent: 2
- - uid: 21950
+- proto: IntercomScience
+ entities:
+ - uid: 4041
components:
- type: Transform
- pos: 69.5,-43.5
+ pos: 43.5,31.5
parent: 2
- - uid: 21951
+- proto: IntercomSecurity
+ entities:
+ - uid: 2461
components:
- type: Transform
- pos: 69.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,46.5
parent: 2
- - uid: 21953
+ - uid: 15595
components:
- type: Transform
- pos: 69.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,61.5
parent: 2
- - uid: 21955
+ - uid: 15598
components:
- type: Transform
- pos: 69.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,37.5
parent: 2
- - uid: 21956
+ - uid: 16154
components:
- type: Transform
- pos: 69.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,49.5
parent: 2
- - uid: 21957
+ - uid: 23952
components:
- type: Transform
- pos: 69.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,51.5
parent: 2
- - uid: 21959
+ - uid: 30835
components:
- type: Transform
- pos: 69.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,40.5
parent: 2
- - uid: 21960
+ - uid: 37190
components:
- type: Transform
- pos: 69.5,-52.5
+ pos: -20.5,31.5
parent: 2
- - uid: 21961
+ - uid: 38880
components:
- type: Transform
- pos: 69.5,-55.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,62.5
parent: 2
- - uid: 21964
+- proto: IntercomService
+ entities:
+ - uid: 6308
components:
- type: Transform
- pos: 69.5,-63.5
+ pos: -51.5,-9.5
parent: 2
- - uid: 21965
+ - uid: 22941
components:
- type: Transform
- pos: 69.5,-64.5
+ pos: -61.5,-0.5
parent: 2
- - uid: 21966
+ - uid: 22943
components:
- type: Transform
- pos: 72.5,-71.5
+ pos: -71.5,15.5
parent: 2
- - uid: 21971
+- proto: IntercomSupply
+ entities:
+ - uid: 22946
components:
- type: Transform
- pos: 73.5,-71.5
+ pos: -28.5,-22.5
parent: 2
- - uid: 21972
+- proto: JanitorialTrolley
+ entities:
+ - uid: 1302
components:
- type: Transform
- pos: 74.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-2.5
parent: 2
- - uid: 21973
+ - uid: 19075
components:
- type: Transform
- pos: 75.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,12.5
parent: 2
- - uid: 21974
+ - uid: 37695
components:
- type: Transform
- pos: 76.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,12.5
parent: 2
- - uid: 22028
+- proto: JanitorServiceLight
+ entities:
+ - uid: 1566
components:
- type: Transform
- pos: 76.5,-79.5
+ pos: -13.5,26.5
parent: 2
- - uid: 22033
+ - type: DeviceLinkSink
+ links:
+ - 34347
+ - uid: 9521
components:
- type: Transform
- pos: 76.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,9.5
parent: 2
- - uid: 22034
+ - type: DeviceLinkSink
+ links:
+ - 22295
+ - uid: 19105
components:
- type: Transform
- pos: 76.5,-81.5
+ pos: -41.5,24.5
parent: 2
- - uid: 22035
+ - uid: 19178
components:
- type: Transform
- pos: 75.5,-85.5
+ pos: -42.5,24.5
parent: 2
- - uid: 22036
+ - uid: 21130
components:
- type: Transform
- pos: 75.5,-87.5
+ pos: -36.5,24.5
parent: 2
- - uid: 22037
+ - type: WirelessNetworkConnection
+ range: 500
+ - type: DeviceLinkSink
+ links:
+ - 37725
+ - uid: 23028
components:
- type: Transform
- pos: 69.5,-89.5
+ pos: -39.5,24.5
parent: 2
- - uid: 22039
+ - uid: 24317
components:
- type: Transform
- pos: 66.5,-88.5
+ pos: 32.5,21.5
parent: 2
- - uid: 22042
+ - type: DeviceLinkSink
+ links:
+ - 26832
+ - uid: 24343
components:
- type: Transform
- pos: 65.5,-89.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-0.5
parent: 2
- - uid: 22049
+ - type: DeviceLinkSink
+ links:
+ - 26827
+ - uid: 25517
components:
- type: Transform
- pos: 62.5,-89.5
+ pos: 3.5,-4.5
parent: 2
- - uid: 22067
+ - type: DeviceLinkSink
+ links:
+ - 22295
+ - uid: 29338
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,32.5
+ pos: -40.5,24.5
parent: 2
- - uid: 22069
+ - uid: 29343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,24.5
+ pos: -38.5,24.5
parent: 2
- - uid: 22070
+ - uid: 29344
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-15.5
+ pos: -37.5,24.5
parent: 2
- - uid: 22078
+ - type: DeviceLinkSink
+ links:
+ - 36182
+ - uid: 29345
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,18.5
+ pos: -35.5,24.5
parent: 2
- - uid: 22080
+ - type: WirelessNetworkConnection
+ range: 500
+ - uid: 29623
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 35.5,-7.5
+ pos: 2.5,40.5
parent: 2
- - uid: 22082
+ - type: DeviceLinkSink
+ links:
+ - 31151
+ - uid: 30932
components:
- type: Transform
- pos: 64.5,-89.5
+ pos: -51.5,9.5
parent: 2
- - uid: 22084
+ - type: DeviceLinkSink
+ links:
+ - 36182
+ - uid: 36181
components:
- type: Transform
- pos: 55.5,-89.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-12.5
parent: 2
- - uid: 22085
+ - type: DeviceLinkSink
+ links:
+ - 36931
+ - uid: 37226
components:
- type: Transform
- pos: 54.5,-89.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-16.5
parent: 2
- - uid: 22091
+ - type: DeviceLinkSink
+ links:
+ - 37228
+ - 37229
+ - uid: 37230
components:
- type: Transform
- pos: 53.5,-89.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,-16.5
parent: 2
- - uid: 22092
+ - type: DeviceLinkSink
+ links:
+ - 37227
+ - uid: 37231
components:
- type: Transform
- pos: 52.5,-89.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,19.5
parent: 2
- - uid: 22097
+ - type: DeviceLinkSink
+ links:
+ - 37232
+ - uid: 37233
components:
- type: Transform
- pos: 51.5,-89.5
+ pos: -65.5,9.5
parent: 2
- - uid: 22100
+ - type: DeviceLinkSink
+ links:
+ - 427
+ - uid: 37724
components:
- type: Transform
- pos: 56.5,-88.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,62.5
parent: 2
- - uid: 22102
+ - type: DeviceLinkSink
+ links:
+ - 37725
+- proto: JetpackBlueFilled
+ entities:
+ - uid: 6071
components:
- type: Transform
- pos: 46.5,-88.5
+ pos: 17.448954,30.694199
parent: 2
- - uid: 22103
+ - uid: 6072
components:
- type: Transform
- pos: 44.5,-88.5
+ pos: 20.48411,30.741074
parent: 2
- - uid: 22104
+- proto: JetpackMini
+ entities:
+ - uid: 8617
components:
- type: Transform
- pos: 43.5,-85.5
- parent: 2
- - uid: 22107
+ parent: 1789
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 8626
components:
- type: Transform
- pos: 43.5,-84.5
- parent: 2
- - uid: 22109
+ parent: 1790
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 8653
components:
- type: Transform
- pos: -85.5,23.5
- parent: 2
- - uid: 22110
+ parent: 1791
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 9229
components:
- type: Transform
- pos: 43.5,-83.5
+ pos: -36.344593,35.450306
parent: 2
- - uid: 22111
+ - type: GasTank
+ toggleActionEntity: 20874
+ - type: Jetpack
+ toggleActionEntity: 20873
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 20873
+ - 20874
+- proto: JetpackMiniFilled
+ entities:
+ - uid: 108
components:
+ - type: MetaData
+ name: paramedic mini jetpack
- type: Transform
- pos: 43.5,-82.5
+ pos: 33.52899,2.8553786
parent: 2
- - uid: 22117
+ - uid: 251
components:
+ - type: MetaData
+ name: paramedic mini jetpack
- type: Transform
- pos: 43.5,-81.5
+ pos: 33.52118,2.8475661
parent: 2
- - uid: 22118
+ - uid: 724
components:
+ - type: MetaData
+ name: paramedic mini jetpack
- type: Transform
- pos: 43.5,-80.5
+ pos: 33.52118,2.8475661
parent: 2
- - uid: 22119
+- proto: Jug
+ entities:
+ - uid: 5275
components:
- type: Transform
- pos: 44.5,-78.5
+ pos: 42.85205,40.919205
parent: 2
- - uid: 22124
+ - uid: 24942
components:
- type: Transform
- pos: 43.5,-74.5
+ pos: -55.68302,-7.3708677
parent: 2
- - uid: 22125
+ - uid: 30866
components:
- type: Transform
- pos: 43.5,-73.5
+ pos: 13.884043,12.768498
parent: 2
- - uid: 22126
+- proto: KitchenDeepFryer
+ entities:
+ - uid: 27019
components:
- type: Transform
- pos: 43.5,-72.5
+ pos: -57.5,-23.5
parent: 2
- - uid: 22127
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 2988
components:
- type: Transform
- pos: 44.5,-68.5
+ pos: -54.5,-16.5
parent: 2
- - uid: 22153
+- proto: KitchenKnife
+ entities:
+ - uid: 1676
components:
- type: Transform
- pos: 44.5,-67.5
+ pos: -57.579845,-20.655062
parent: 2
- - uid: 22157
+ - uid: 3041
components:
- type: Transform
- pos: 44.5,-66.5
+ pos: -54.432423,-15.75873
parent: 2
- - uid: 22158
+ - uid: 5706
components:
- type: Transform
- pos: 44.5,-65.5
+ pos: 71.50539,29.491495
parent: 2
- - uid: 22168
+- proto: KitchenMicrowave
+ entities:
+ - uid: 1616
components:
- type: Transform
- pos: 44.5,-64.5
+ pos: -5.5,9.5
parent: 2
- - uid: 22170
+ - uid: 2348
components:
- type: Transform
- pos: 43.5,-64.5
+ pos: -54.5,-14.5
parent: 2
- - uid: 22171
+ - uid: 3696
components:
- type: Transform
- pos: 43.5,-62.5
+ pos: 95.5,55.5
parent: 2
- - uid: 22173
+ - uid: 5529
components:
- type: Transform
- pos: 42.5,-61.5
+ pos: 37.5,30.5
parent: 2
- - uid: 22174
+ - uid: 6839
components:
- type: Transform
- pos: 42.5,-60.5
+ pos: -16.5,-27.5
parent: 2
- - uid: 22275
+ - uid: 9080
components:
- type: Transform
- pos: -42.5,73.5
+ pos: -48.5,23.5
parent: 2
- - uid: 22298
+ - uid: 15600
components:
- type: Transform
- pos: -24.5,70.5
+ pos: -10.5,28.5
parent: 2
- - uid: 22300
+ - uid: 18088
components:
- type: Transform
- pos: -33.5,71.5
+ pos: -18.5,56.5
parent: 2
- - uid: 22301
+ - uid: 18453
components:
- type: Transform
- pos: -26.5,70.5
+ pos: -62.5,-2.5
parent: 2
- - uid: 22302
+ - uid: 20020
components:
- type: Transform
- pos: -15.5,71.5
+ pos: -73.5,15.5
parent: 2
- - uid: 22307
+ - uid: 30613
components:
- type: Transform
- pos: -30.5,70.5
+ pos: -53.5,-25.5
parent: 2
- - uid: 22308
+ - uid: 36784
components:
- type: Transform
- pos: -31.5,70.5
+ pos: 90.5,13.5
parent: 2
- - uid: 22309
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 1671
components:
- type: Transform
- pos: -20.5,70.5
+ pos: 19.5,-1.5
parent: 2
- - uid: 22310
+ - uid: 3094
components:
- type: Transform
- pos: -36.5,71.5
+ pos: -54.5,-15.5
parent: 2
- - uid: 22311
+ - uid: 5225
components:
- type: Transform
- pos: -19.5,71.5
+ pos: 28.5,30.5
parent: 2
- - uid: 22312
+ - uid: 5370
components:
- type: Transform
- pos: -37.5,71.5
+ pos: 57.5,55.5
parent: 2
- - uid: 22314
+ - uid: 6377
components:
- type: Transform
- pos: -25.5,70.5
+ pos: 12.5,-0.5
parent: 2
- - uid: 22315
+ - uid: 7421
components:
- type: Transform
- pos: -28.5,70.5
+ pos: -54.5,0.5
parent: 2
- - uid: 22317
+ - uid: 21935
components:
- type: Transform
- pos: -22.5,71.5
+ pos: -55.5,-25.5
parent: 2
- - uid: 22318
+ - uid: 34186
components:
- type: Transform
- pos: -18.5,71.5
+ pos: -18.5,55.5
parent: 2
- - uid: 22319
+ - uid: 36026
components:
- type: Transform
- pos: -21.5,71.5
+ pos: 65.5,81.5
parent: 2
- - uid: 22320
+- proto: KitchenSpike
+ entities:
+ - uid: 15947
components:
- type: Transform
- pos: -20.5,71.5
+ pos: -60.5,-7.5
parent: 2
- - uid: 22362
+ - uid: 30073
components:
- type: Transform
- pos: -45.5,65.5
+ pos: 90.5,40.5
parent: 2
- - uid: 22451
+- proto: KnifePlastic
+ entities:
+ - uid: 30249
components:
- type: Transform
- pos: 43.5,-57.5
+ rot: -1.5707963267948966 rad
+ pos: 46.46523,26.252356
parent: 2
- - uid: 22494
+- proto: KvassTankFull
+ entities:
+ - uid: 37668
components:
- type: Transform
- pos: 38.5,-48.5
+ pos: 100.5,72.5
parent: 2
- - uid: 22510
+- proto: Lamp
+ entities:
+ - uid: 1988
components:
- type: Transform
- pos: 43.5,-53.5
+ pos: 5.564293,27.945562
parent: 2
- - uid: 22511
+ - uid: 5433
components:
- type: Transform
- pos: 43.5,-52.5
+ rot: 3.141592653589793 rad
+ pos: 49.510403,35.0432
parent: 2
- - uid: 22512
+- proto: LampGold
+ entities:
+ - uid: 243
components:
- type: Transform
- pos: 43.5,-51.5
+ rot: 3.141592653589793 rad
+ pos: -3.607967,-6.0515213
parent: 2
- - uid: 22513
+ - uid: 523
components:
- type: Transform
- pos: 42.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -19.259224,10.1486845
parent: 2
- - uid: 22514
+ - uid: 529
components:
- type: Transform
- pos: 40.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -25.317818,10.183841
parent: 2
- - uid: 22515
+ - uid: 536
components:
- type: Transform
- pos: 41.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: -16.259224,17.156498
parent: 2
- - uid: 22516
+ - uid: 538
components:
- type: Transform
- pos: 37.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -25.212349,17.097904
parent: 2
- - uid: 22517
+ - uid: 539
components:
- type: Transform
- pos: 36.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -19.259224,17.121342
parent: 2
- - uid: 22520
+ - uid: 1220
components:
- type: Transform
- pos: 35.5,-48.5
+ pos: 23.413853,-7.006628
parent: 2
- - uid: 22523
+ - uid: 1792
components:
- type: Transform
- pos: -51.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -28.259224,17.14478
parent: 2
- - uid: 22525
+ - uid: 1793
components:
- type: Transform
- pos: 34.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -22.259224,17.109623
parent: 2
- - uid: 22535
+ - uid: 1794
components:
- type: Transform
- pos: 30.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -28.29438,10.090091
parent: 2
- - uid: 22538
+ - uid: 1803
components:
- type: Transform
- pos: -52.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -16.270943,10.066653
parent: 2
- - uid: 22555
+ - uid: 1804
components:
- type: Transform
- pos: 24.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -22.306099,10.160403
parent: 2
- - uid: 22558
+ - uid: 5585
components:
- type: Transform
- pos: 21.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: 53.313263,31.09713
parent: 2
- - uid: 22559
+ - uid: 8383
components:
- type: Transform
- pos: 21.5,-43.5
+ pos: 12.438042,-10.955159
parent: 2
- - uid: 22561
+ - uid: 12310
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,16.5
+ pos: 7.664877,-11.975198
parent: 2
- - uid: 22562
+ - uid: 15109
components:
- type: Transform
- pos: -98.5,29.5
+ pos: 28.830572,53.128506
parent: 2
- - uid: 22575
+ - type: HandheldLight
+ toggleActionEntity: 20807
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20807
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 22560
components:
- type: Transform
- pos: -76.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: 65.775536,28.148746
parent: 2
- - uid: 22588
+- proto: LampInterrogator
+ entities:
+ - uid: 15549
components:
- type: Transform
- pos: 19.5,-48.5
+ pos: -21.515724,33.915157
parent: 2
- - uid: 22730
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 9707
+ - uid: 15550
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,13.5
+ pos: -17.40635,33.868282
parent: 2
- - uid: 22793
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 14086
+- proto: LandMineExplosive
+ entities:
+ - uid: 26214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,18.5
+ pos: -35.710598,49.407745
parent: 2
- - uid: 22803
+ - uid: 26216
components:
- type: Transform
- pos: 18.5,-49.5
+ pos: -35.523098,51.95462
parent: 2
- - uid: 22819
+ - uid: 26530
components:
- type: Transform
- pos: 16.5,-51.5
+ pos: -35.257473,50.98587
parent: 2
- - uid: 22820
+ - uid: 35858
components:
- type: Transform
- pos: -82.5,-69.5
+ pos: 24.495815,38.053772
parent: 2
- - uid: 22821
+ - uid: 35859
components:
- type: Transform
- pos: -84.5,-69.5
+ pos: 30.462717,39.085022
parent: 2
- - uid: 22845
+ - uid: 35860
components:
- type: Transform
- pos: -85.5,-69.5
+ pos: 27.03303,35.460022
parent: 2
- - uid: 22846
+ - uid: 35861
components:
- type: Transform
- pos: -86.5,-69.5
+ pos: 29.525217,41.585022
parent: 2
- - uid: 22891
+ - uid: 35862
components:
- type: Transform
- pos: -87.5,-69.5
+ pos: 25.501205,42.655334
parent: 2
- - uid: 22898
+- proto: Lantern
+ entities:
+ - uid: 6113
components:
- type: Transform
- pos: -88.5,-69.5
+ pos: 58.226753,29.909676
parent: 2
- - uid: 22971
+ - uid: 30065
components:
- type: Transform
- pos: -89.5,-69.5
+ pos: 90.41451,38.97713
parent: 2
- - uid: 22972
+ - uid: 36287
components:
- type: Transform
- pos: -90.5,-69.5
+ pos: 99.34059,61.246506
parent: 2
- - uid: 22973
+ - uid: 36618
components:
- type: Transform
- pos: -91.5,-69.5
+ pos: 99.48447,60.924973
parent: 2
- - uid: 22974
+ - type: HandheldLight
+ toggleActionEntity: 36619
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 36619
+ - type: ActionsContainer
+ - uid: 36620
components:
- type: Transform
- pos: -94.5,-69.5
+ pos: 91.29524,68.3432
parent: 2
- - uid: 22975
+ - uid: 36621
components:
- type: Transform
- pos: -97.5,-69.5
+ pos: 77.82461,81.53395
parent: 2
- - uid: 22976
+ - uid: 36622
components:
- type: Transform
- pos: -101.5,-66.5
+ pos: 54.98029,83.32776
parent: 2
- - uid: 22977
+ - uid: 36623
components:
- type: Transform
- pos: -101.5,-64.5
+ pos: 67.34586,52.34071
parent: 2
- - uid: 22978
+ - uid: 36624
components:
- type: Transform
- pos: -101.5,-62.5
+ pos: 94.72222,23.669964
parent: 2
- - uid: 22979
+ - uid: 36625
components:
- type: Transform
- pos: -101.5,-63.5
+ pos: 99.683014,8.487737
parent: 2
- - uid: 22980
+- proto: LargeBeaker
+ entities:
+ - uid: 1291
components:
- type: Transform
- pos: -101.5,-57.5
+ pos: 21.212381,-1.2898262
parent: 2
- - uid: 22981
+ - uid: 2167
components:
- type: Transform
- pos: -101.5,-52.5
+ pos: 12.486971,0.85024965
parent: 2
- - uid: 22982
+ - type: CollisionWake
+ enabled: False
+ - uid: 2190
components:
- type: Transform
- pos: -101.5,-48.5
+ pos: 15.598101,-9.444521
parent: 2
- - uid: 22983
+ - uid: 2191
components:
- type: Transform
- pos: -115.5,-18.5
+ pos: 15.646978,-9.303896
parent: 2
- - uid: 22984
+ - uid: 18495
components:
- type: Transform
- pos: -101.5,-45.5
+ pos: -53.88518,0.6684246
parent: 2
- - uid: 22987
+ - uid: 18496
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,22.5
+ pos: -51.63518,0.8715496
parent: 2
- - uid: 23016
+ - uid: 22438
components:
- type: Transform
- pos: 15.5,66.5
+ pos: 15.381287,-8.16301
parent: 2
- - uid: 23072
+ - uid: 32353
components:
- type: Transform
- pos: 92.5,40.5
+ pos: -109.1972,49.456886
parent: 2
- - uid: 23121
+ - uid: 36490
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,-0.5
+ pos: 15.446543,18.854435
parent: 2
- - uid: 23123
+- proto: LegionnaireBonfire
+ entities:
+ - uid: 30066
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-5.5
+ pos: 84.5,40.5
parent: 2
- - uid: 23153
+- proto: LGBTQFlag
+ entities:
+ - uid: 755
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-15.5
+ pos: 4.5,24.5
parent: 2
- - uid: 23169
+ - uid: 37541
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,13.5
+ pos: -6.5,-3.5
parent: 2
- - uid: 23170
+ - uid: 37542
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,32.5
+ pos: 4.5,-30.5
parent: 2
- - uid: 23208
+ - uid: 37547
components:
- type: Transform
- pos: -101.5,-41.5
+ pos: 4.5,-49.5
parent: 2
- - uid: 23209
+ - uid: 37548
components:
- type: Transform
- pos: -101.5,-44.5
+ pos: -1.5,-49.5
parent: 2
- - uid: 23216
+- proto: LGBTQHandyFlag
+ entities:
+ - uid: 4080
components:
- type: Transform
- pos: -101.5,-37.5
+ pos: 6.5761847,-34.404533
parent: 2
- - uid: 23218
+ - uid: 37189
components:
- type: Transform
- pos: -101.5,-36.5
+ pos: 13.527647,41.66988
parent: 2
- - uid: 23219
+ - uid: 37546
components:
- type: Transform
- pos: -101.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -1.4556704,-33.39672
parent: 2
- - uid: 23221
+ - uid: 37552
components:
- type: Transform
- pos: -101.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5806704,-33.256096
parent: 2
- - uid: 23222
+- proto: LightBulbBroken
+ entities:
+ - uid: 4609
components:
- type: Transform
- pos: 5.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 98.75351,77.601654
parent: 2
- - uid: 23223
+ - uid: 7071
components:
- type: Transform
- pos: 5.5,18.5
+ pos: -30.60696,-36.862522
parent: 2
- - uid: 23225
+ - uid: 26564
components:
- type: Transform
- pos: -101.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 67.9829,63.61144
parent: 2
- - uid: 23240
+ - uid: 36745
components:
- type: Transform
- pos: -101.5,-32.5
- parent: 2
- - uid: 23242
+ parent: 36744
+ - type: Physics
+ canCollide: False
+ - uid: 36878
components:
- type: Transform
- pos: -101.5,-29.5
- parent: 2
- - uid: 23243
+ parent: 36877
+ - type: Physics
+ canCollide: False
+ - uid: 36880
+ components:
+ - type: Transform
+ parent: 36879
+ - type: Physics
+ canCollide: False
+- proto: Lighter
+ entities:
+ - uid: 15265
components:
- type: Transform
- pos: -101.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5225296,54.56166
parent: 2
- - uid: 23244
+- proto: LightReplacer
+ entities:
+ - uid: 18531
components:
- type: Transform
- pos: -103.5,-27.5
+ pos: -41.59211,5.1492095
parent: 2
- - uid: 23246
+ - uid: 18532
components:
- type: Transform
- pos: -104.5,-27.5
+ pos: -36.074684,12.201844
parent: 2
- - uid: 23247
+- proto: LightTubeBroken
+ entities:
+ - uid: 4822
components:
- type: Transform
- pos: -105.5,-27.5
+ pos: 94.42291,72.539154
parent: 2
- - uid: 23248
+ - uid: 7069
components:
- type: Transform
- pos: -102.5,-26.5
+ pos: -32.47024,-31.249239
parent: 2
- - uid: 23250
+ - uid: 7070
components:
- type: Transform
- pos: -115.5,-24.5
+ pos: -27.466335,-37.225803
parent: 2
- - uid: 23257
+ - uid: 32356
components:
- type: Transform
- pos: -114.5,-22.5
+ pos: -110.513824,52.621384
parent: 2
- - uid: 23258
+ - uid: 36908
components:
- type: Transform
- pos: -115.5,-20.5
+ pos: 90.81757,12.080339
parent: 2
- - uid: 23259
+- proto: LockableButtonArmory
+ entities:
+ - uid: 283
components:
+ - type: MetaData
+ name: office lockdown button
- type: Transform
- pos: -114.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,48.5
parent: 2
- - uid: 23260
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36765:
+ - Pressed: Toggle
+ 36761:
+ - Pressed: Toggle
+ 36169:
+ - Pressed: Toggle
+ 33290:
+ - Pressed: Toggle
+ 36170:
+ - Pressed: Toggle
+ 36171:
+ - Pressed: Toggle
+ 15574:
+ - Pressed: Toggle
+ 33635:
+ - Pressed: Toggle
+ 36176:
+ - Pressed: Toggle
+ - uid: 29156
components:
+ - type: MetaData
+ name: psych ward lockdown
- type: Transform
- pos: -115.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,47.5
parent: 2
- - uid: 23264
+ - uid: 34350
components:
+ - type: MetaData
+ name: armory lockdown
- type: Transform
- pos: -61.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,47.5
parent: 2
- - uid: 23287
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36093:
+ - Pressed: Toggle
+ 36178:
+ - Pressed: Toggle
+ 36109:
+ - Pressed: Toggle
+ 36108:
+ - Pressed: Toggle
+ 36107:
+ - Pressed: Toggle
+ 36101:
+ - Pressed: Toggle
+ 36097:
+ - Pressed: Toggle
+ 36095:
+ - Pressed: Toggle
+ 36105:
+ - Pressed: Toggle
+ 23761:
+ - Pressed: Toggle
+ 36179:
+ - Pressed: Toggle
+ 37487:
+ - Pressed: Toggle
+ 37486:
+ - Pressed: Toggle
+ 37485:
+ - Pressed: Toggle
+ 37463:
+ - Pressed: Toggle
+ 37478:
+ - Pressed: Toggle
+ 37479:
+ - Pressed: Toggle
+ 37480:
+ - Pressed: Toggle
+ 37481:
+ - Pressed: Toggle
+ 37482:
+ - Pressed: Toggle
+ 37483:
+ - Pressed: Toggle
+ 37484:
+ - Pressed: Toggle
+ 37488:
+ - Pressed: Toggle
+ 37489:
+ - Pressed: Toggle
+ 37490:
+ - Pressed: Toggle
+ 37491:
+ - Pressed: Toggle
+ 37492:
+ - Pressed: Toggle
+ 37493:
+ - Pressed: Toggle
+ 37494:
+ - Pressed: Toggle
+ 37495:
+ - Pressed: Toggle
+ 37496:
+ - Pressed: Toggle
+ 37497:
+ - Pressed: Toggle
+ 37498:
+ - Pressed: Toggle
+ 37499:
+ - Pressed: Toggle
+ 37502:
+ - Pressed: Close
+ 37503:
+ - Pressed: Close
+ 37504:
+ - Pressed: Close
+ 37500:
+ - Pressed: Toggle
+ 37501:
+ - Pressed: Toggle
+ 37512:
+ - Pressed: Toggle
+ 37511:
+ - Pressed: Toggle
+ 37510:
+ - Pressed: Toggle
+ 37509:
+ - Pressed: Toggle
+ 37508:
+ - Pressed: Toggle
+ - uid: 37126
components:
+ - type: MetaData
+ name: armory lockdown button
- type: Transform
- pos: -115.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,37.5
parent: 2
- - uid: 23292
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36093:
+ - Pressed: Toggle
+ 36178:
+ - Pressed: Toggle
+ 36109:
+ - Pressed: Toggle
+ 36108:
+ - Pressed: Toggle
+ 36107:
+ - Pressed: Toggle
+ 36095:
+ - Pressed: Toggle
+ 36097:
+ - Pressed: Toggle
+ 36101:
+ - Pressed: Toggle
+ 36105:
+ - Pressed: Toggle
+ 23761:
+ - Pressed: Toggle
+ 36179:
+ - Pressed: Toggle
+- proto: LockableButtonCommand
+ entities:
+ - uid: 26285
components:
- type: Transform
- pos: -52.5,-42.5
+ pos: -78.5,15.5
parent: 2
- - uid: 23312
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22332:
+ - Pressed: Toggle
+ 8433:
+ - Pressed: Toggle
+ 8786:
+ - Pressed: Toggle
+ 8434:
+ - Pressed: Toggle
+ - uid: 37456
components:
- type: Transform
- pos: -115.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,22.5
parent: 2
- - uid: 23339
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6076:
+ - Pressed: Toggle
+ 6075:
+ - Pressed: Toggle
+- proto: LockableButtonDetective
+ entities:
+ - uid: 28075
components:
- type: Transform
- pos: -115.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-12.5
parent: 2
- - uid: 23453
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23093:
+ - Pressed: Toggle
+ 23089:
+ - Pressed: Toggle
+ 23091:
+ - Pressed: Toggle
+- proto: LockableButtonHeadOfPersonnel
+ entities:
+ - uid: 30596
components:
- type: Transform
- pos: -115.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,28.5
parent: 2
- - uid: 23454
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1928:
+ - Pressed: Toggle
+ 1884:
+ - Pressed: Toggle
+ 37455:
+ - Pressed: Toggle
+ 1945:
+ - Pressed: Toggle
+ 1931:
+ - Pressed: Toggle
+ 1932:
+ - Pressed: Toggle
+ 1944:
+ - Pressed: Toggle
+ - uid: 37413
components:
- type: Transform
- pos: -115.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,28.5
parent: 2
- - uid: 23461
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17788:
+ - Pressed: Toggle
+- proto: LockableButtonHeadOfSecurity
+ entities:
+ - uid: 34349
components:
- type: Transform
- pos: -115.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,34.5
parent: 2
- - uid: 23462
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36172:
+ - Pressed: Toggle
+ 36173:
+ - Pressed: Toggle
+ 36175:
+ - Pressed: Toggle
+- proto: LockableButtonSecurity
+ entities:
+ - uid: 25169
components:
+ - type: MetaData
+ name: exterior lockdown button
- type: Transform
- pos: -115.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,28.5
parent: 2
- - uid: 23573
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37454:
+ - Pressed: Toggle
+ 37453:
+ - Pressed: Toggle
+ 37452:
+ - Pressed: Toggle
+ - uid: 25189
components:
+ - type: MetaData
+ name: psych ward lockdown button
- type: Transform
- pos: -115.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,59.5
parent: 2
- - uid: 23582
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37487:
+ - Pressed: Toggle
+ 37486:
+ - Pressed: Toggle
+ 37485:
+ - Pressed: Toggle
+ 37463:
+ - Pressed: Toggle
+ 37478:
+ - Pressed: Toggle
+ 37479:
+ - Pressed: Toggle
+ 37480:
+ - Pressed: Toggle
+ 37481:
+ - Pressed: Toggle
+ 37482:
+ - Pressed: Toggle
+ 37483:
+ - Pressed: Toggle
+ 37484:
+ - Pressed: Toggle
+ 37488:
+ - Pressed: Toggle
+ 37489:
+ - Pressed: Toggle
+ 37490:
+ - Pressed: Toggle
+ 37491:
+ - Pressed: Toggle
+ 37492:
+ - Pressed: Toggle
+ 37493:
+ - Pressed: Toggle
+ 37494:
+ - Pressed: Toggle
+ 37495:
+ - Pressed: Toggle
+ 37496:
+ - Pressed: Toggle
+ 37497:
+ - Pressed: Toggle
+ 37498:
+ - Pressed: Toggle
+ 37499:
+ - Pressed: Toggle
+ 37500:
+ - Pressed: Toggle
+ 37501:
+ - Pressed: Toggle
+ 37512:
+ - Pressed: Toggle
+ 37511:
+ - Pressed: Toggle
+ 37510:
+ - Pressed: Toggle
+ 37509:
+ - Pressed: Toggle
+ 37508:
+ - Pressed: Toggle
+ 37502:
+ - Pressed: Close
+ 37503:
+ - Pressed: Close
+ 37504:
+ - Pressed: Close
+ - uid: 25985
components:
+ - type: MetaData
+ name: blast door button
- type: Transform
- pos: -9.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,42.5
parent: 2
- - uid: 23700
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19519:
+ - Pressed: Toggle
+ 30779:
+ - Pressed: Toggle
+ 34101:
+ - Pressed: Toggle
+ 34102:
+ - Pressed: Toggle
+ 34103:
+ - Pressed: Toggle
+ 34877:
+ - Pressed: Toggle
+ - uid: 34347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,27.5
parent: 2
- - uid: 23707
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1566:
+ - Pressed: Toggle
+ - uid: 34352
components:
+ - type: MetaData
+ name: interior lockdown button
- type: Transform
- pos: -55.5,49.5
+ pos: -27.5,31.5
parent: 2
- - uid: 23711
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37472:
+ - Pressed: Toggle
+ 37476:
+ - Pressed: Toggle
+ 37474:
+ - Pressed: Toggle
+ 37475:
+ - Pressed: Toggle
+ 37445:
+ - Pressed: Toggle
+ 37477:
+ - Pressed: Toggle
+ - uid: 34355
components:
+ - type: MetaData
+ name: interior lockdown button
- type: Transform
- pos: -61.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,27.5
parent: 2
- - uid: 23732
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37460:
+ - Pressed: Toggle
+ 37473:
+ - Pressed: Toggle
+ 37462:
+ - Pressed: Toggle
+ 37457:
+ - Pressed: Toggle
+ 37428:
+ - Pressed: Toggle
+ 37459:
+ - Pressed: Toggle
+ - uid: 34357
components:
+ - type: MetaData
+ name: exterior lockdown button
- type: Transform
- pos: -115.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,28.5
parent: 2
- - uid: 23735
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37449:
+ - Pressed: Toggle
+ 37450:
+ - Pressed: Toggle
+ 37451:
+ - Pressed: Toggle
+ - uid: 34361
components:
+ - type: MetaData
+ name: visitation lockdown button
- type: Transform
- pos: -115.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,65.5
parent: 2
- - uid: 23744
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37502:
+ - Pressed: Toggle
+ 37503:
+ - Pressed: Toggle
+ 37504:
+ - Pressed: Toggle
+ - uid: 34363
components:
- type: Transform
- pos: -111.5,41.5
+ pos: -14.5,47.5
parent: 2
- - uid: 23745
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25999:
+ - Pressed: Toggle
+ 37178:
+ - Pressed: Toggle
+ - uid: 34364
components:
- type: Transform
- pos: -112.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,28.5
parent: 2
- - uid: 23748
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38010:
+ - Pressed: Toggle
+ 38011:
+ - Pressed: Toggle
+ 38012:
+ - Pressed: Toggle
+ 38009:
+ - Pressed: Toggle
+ 38008:
+ - Pressed: Toggle
+ 38007:
+ - Pressed: Toggle
+ - uid: 34411
components:
+ - type: MetaData
+ name: blast door button
- type: Transform
- pos: -113.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
parent: 2
- - uid: 23759
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12053:
+ - Pressed: Toggle
+ 15677:
+ - Pressed: Toggle
+ 12106:
+ - Pressed: Toggle
+ 16476:
+ - Pressed: Toggle
+ 1738:
+ - Pressed: Toggle
+ 12422:
+ - Pressed: Toggle
+ - uid: 37524
components:
- type: Transform
- pos: -115.5,0.5
+ pos: -4.5,44.5
parent: 2
- - uid: 23762
+ - type: DeviceLinkSource
+ linkedPorts:
+ 38002:
+ - Pressed: Toggle
+ 38001:
+ - Pressed: Toggle
+ 38000:
+ - Pressed: Toggle
+ 37999:
+ - Pressed: Toggle
+- proto: LockerAtmosphericsFilled
+ entities:
+ - uid: 28345
components:
- type: Transform
- pos: -56.5,47.5
+ pos: -41.5,35.5
parent: 2
- - uid: 23763
+ - uid: 28520
components:
- type: Transform
- pos: -57.5,47.5
+ pos: -41.5,33.5
parent: 2
- - uid: 23765
+ - uid: 28521
components:
- type: Transform
- pos: -59.5,47.5
+ pos: -42.5,33.5
parent: 2
- - uid: 23807
+ - uid: 28732
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: -42.5,35.5
parent: 2
- - uid: 23809
+- proto: LockerBoozeFilled
+ entities:
+ - uid: 581
components:
- type: Transform
- pos: 47.5,-2.5
+ pos: -38.5,-29.5
parent: 2
- - uid: 23843
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 3075
components:
- type: Transform
- pos: -115.5,8.5
+ pos: -54.5,-1.5
parent: 2
- - uid: 23863
+ - uid: 3076
components:
- type: Transform
- pos: -115.5,6.5
+ pos: -55.5,-1.5
parent: 2
- - uid: 23889
+ - uid: 3083
components:
- type: Transform
- pos: -115.5,11.5
+ pos: -53.5,-1.5
parent: 2
- - uid: 23976
+- proto: LockerBrigmedicFilled
+ entities:
+ - uid: 28807
components:
- type: Transform
- pos: -114.5,15.5
+ pos: -32.5,35.5
parent: 2
- - uid: 24439
+- proto: LockerCaptainFilledNoLaser
+ entities:
+ - uid: 5677
components:
- type: Transform
- pos: -115.5,13.5
+ pos: 27.5,52.5
parent: 2
- - uid: 24554
+- proto: LockerChemistryFilled
+ entities:
+ - uid: 17869
components:
- type: Transform
- pos: -116.5,7.5
+ pos: 21.5,-3.5
parent: 2
- - uid: 24556
+ - type: DamageOnHighSpeedImpact
+ lastHit: 0
+ - uid: 34976
components:
- type: Transform
- pos: -116.5,6.5
+ pos: 22.5,-1.5
parent: 2
- - uid: 24557
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 8808
components:
- type: Transform
- pos: -116.5,5.5
+ pos: -62.5,13.5
parent: 2
- - uid: 24582
+- proto: LockerChiefMedicalOfficerFilled
+ entities:
+ - uid: 30364
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,18.5
+ pos: -11.5,-9.5
parent: 2
- - uid: 24595
+- proto: LockerClown
+ entities:
+ - uid: 29692
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,17.5
+ pos: -77.5,0.5
parent: 2
- - uid: 24712
+- proto: LockerDetectiveFilled
+ entities:
+ - uid: 20170
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,19.5
+ pos: -19.5,-11.5
parent: 2
- - uid: 24775
+- proto: LockerElectricalSuppliesFilled
+ entities:
+ - uid: 50
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,20.5
+ pos: 23.5,-19.5
parent: 2
- - uid: 24779
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 8995
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,15.5
+ pos: -57.5,34.5
parent: 2
- - uid: 24783
+ - uid: 9021
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,14.5
+ pos: -57.5,36.5
parent: 2
- - uid: 24791
+ - uid: 9024
components:
- type: Transform
- pos: -5.5,-40.5
+ pos: -57.5,33.5
parent: 2
- - uid: 24792
+ - uid: 9031
components:
- type: Transform
- pos: -5.5,-41.5
+ pos: -57.5,35.5
parent: 2
- - uid: 24793
+ - uid: 22733
components:
- type: Transform
- pos: -5.5,-42.5
+ pos: -57.5,37.5
parent: 2
- - uid: 24991
+- proto: LockerEvidence
+ entities:
+ - uid: 1394
components:
- type: Transform
- pos: -114.5,16.5
+ pos: -23.5,60.5
parent: 2
- - uid: 25061
+ - uid: 2124
components:
- type: Transform
- pos: -114.5,17.5
+ pos: -36.5,30.5
parent: 2
- - uid: 25170
+ - uid: 2846
components:
- type: Transform
- pos: 33.5,-12.5
+ pos: -36.5,31.5
parent: 2
- - uid: 25245
+ - uid: 9602
components:
- type: Transform
- pos: -114.5,18.5
+ pos: -33.5,31.5
parent: 2
- - uid: 25359
+ - uid: 14087
components:
- type: Transform
- pos: -9.5,34.5
+ pos: -34.5,31.5
parent: 2
- - uid: 25366
+ - uid: 16525
components:
- type: Transform
- pos: -114.5,20.5
+ pos: -32.5,31.5
parent: 2
- - uid: 26218
+ - uid: 17846
components:
- type: Transform
- pos: -61.5,48.5
+ pos: -36.5,29.5
parent: 2
- - uid: 26348
+ - uid: 19716
components:
- type: Transform
- pos: -115.5,21.5
+ pos: 10.5,-24.5
parent: 2
- - uid: 26349
+ - uid: 38015
components:
- type: Transform
- pos: -114.5,29.5
+ pos: 11.5,-24.5
parent: 2
- - uid: 26357
+- proto: LockerForensicMantisFilled
+ entities:
+ - uid: 8608
components:
- type: Transform
- pos: -115.5,22.5
+ pos: 43.5,34.5
parent: 2
- - uid: 26358
+- proto: LockerFreezer
+ entities:
+ - uid: 7559
components:
- type: Transform
- pos: -115.5,23.5
+ pos: -53.5,-14.5
parent: 2
- - uid: 26361
+ - uid: 25052
components:
- type: Transform
- pos: -115.5,24.5
+ pos: -56.5,-25.5
parent: 2
- - uid: 26362
+- proto: LockerFreezerBase
+ entities:
+ - uid: 11649
components:
- type: Transform
- pos: -115.5,25.5
+ pos: -23.5,58.5
parent: 2
- - uid: 26364
+- proto: LockerFreezerVaultFilled
+ entities:
+ - uid: 26480
components:
- type: Transform
- pos: -115.5,26.5
+ pos: 28.5,37.5
parent: 2
- - uid: 26365
+- proto: LockerHeadOfPersonnelFilled
+ entities:
+ - uid: 1978
components:
- type: Transform
- pos: -115.5,30.5
+ pos: 13.5,30.5
parent: 2
- - uid: 26366
+- proto: LockerHeadOfSecurityFilled
+ entities:
+ - uid: 15776
components:
- type: Transform
- pos: -115.5,31.5
+ pos: -8.5,35.5
parent: 2
- - uid: 26367
+- proto: LockerMedicalFilled
+ entities:
+ - uid: 344
components:
- type: Transform
- pos: -115.5,33.5
+ pos: -23.5,16.5
parent: 2
- - uid: 26368
+ - uid: 1759
components:
- type: Transform
- pos: -117.5,35.5
+ pos: -26.5,16.5
parent: 2
- - uid: 26369
+ - uid: 1784
components:
- type: Transform
- pos: -110.5,40.5
+ pos: -20.5,16.5
parent: 2
- - uid: 26370
+ - uid: 1785
components:
- type: Transform
- pos: -117.5,40.5
+ pos: -17.5,16.5
parent: 2
- - uid: 26371
+ - uid: 1786
components:
- type: Transform
- pos: -116.5,40.5
+ pos: -17.5,9.5
parent: 2
- - uid: 26373
+ - uid: 1787
components:
- type: Transform
- pos: -115.5,40.5
+ pos: -20.5,9.5
parent: 2
- - uid: 26374
+ - uid: 1788
components:
- type: Transform
- pos: -114.5,40.5
+ pos: -23.5,9.5
parent: 2
- - uid: 26375
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 7601
components:
- type: Transform
- pos: -113.5,40.5
+ pos: -44.5,58.5
parent: 2
- - uid: 26381
+- proto: LockerMime
+ entities:
+ - uid: 28611
components:
- type: Transform
- pos: -107.5,40.5
+ pos: -81.5,0.5
parent: 2
- - uid: 26383
+- proto: LockerParamedicFilled
+ entities:
+ - uid: 1789
components:
- type: Transform
- pos: -92.5,93.5
+ pos: -26.5,9.5
parent: 2
- - uid: 26385
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 8617
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 1790
components:
- type: Transform
- pos: -105.5,40.5
+ pos: -29.5,9.5
parent: 2
- - uid: 26386
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 8626
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 1791
components:
- type: Transform
- pos: -102.5,41.5
+ pos: -29.5,16.5
parent: 2
- - uid: 26388
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.1496
+ 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:
+ - 8653
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerQuarterMasterFilled
+ entities:
+ - uid: 15891
components:
- type: Transform
- pos: -125.5,53.5
+ pos: -26.5,-25.5
parent: 2
- - uid: 26389
+ - 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: LockerResearchDirectorFilled
+ entities:
+ - uid: 12774
components:
- type: Transform
- pos: -104.5,63.5
+ pos: 49.5,30.5
parent: 2
- - uid: 26391
+- proto: LockerSalvageSpecialistFilled
+ entities:
+ - uid: 9019
components:
- type: Transform
- pos: -103.5,63.5
+ pos: -13.5,-37.5
parent: 2
- - uid: 26392
+ - uid: 9022
components:
- type: Transform
- pos: -102.5,63.5
+ pos: -10.5,-37.5
parent: 2
- - uid: 26393
+ - uid: 9023
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,7.5
+ pos: -9.5,-37.5
parent: 2
- - uid: 26577
+ - uid: 9027
components:
- type: Transform
- pos: -108.5,6.5
+ pos: -11.5,-37.5
parent: 2
- - uid: 26578
+ - uid: 9089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,8.5
+ pos: -12.5,-37.5
parent: 2
- - uid: 26588
+- proto: LockerScienceFilled
+ entities:
+ - uid: 4032
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,-6.5
+ pos: 37.5,26.5
parent: 2
- - uid: 26846
+ - uid: 4033
components:
- type: Transform
- pos: -20.5,38.5
+ pos: 38.5,26.5
parent: 2
- - uid: 26849
+ - uid: 4037
components:
- type: Transform
- pos: -24.5,38.5
+ pos: 38.5,23.5
parent: 2
- - uid: 26850
+ - uid: 4039
components:
- type: Transform
- pos: -26.5,38.5
+ pos: 39.5,23.5
parent: 2
- - uid: 26873
+ - uid: 4042
components:
- type: Transform
- pos: -25.5,38.5
+ pos: 37.5,23.5
parent: 2
- - uid: 26876
+ - uid: 4426
components:
- type: Transform
- pos: -21.5,38.5
+ pos: 39.5,26.5
parent: 2
- - uid: 26877
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 3737
components:
- type: Transform
- pos: -22.5,38.5
+ pos: -4.5,41.5
parent: 2
- - uid: 26878
+ - uid: 3745
components:
- type: Transform
- pos: -33.5,36.5
+ pos: -4.5,43.5
parent: 2
- - uid: 27413
+ - uid: 3746
components:
- type: Transform
- pos: 7.5,2.5
+ pos: -4.5,42.5
parent: 2
- - uid: 27905
+ - uid: 15568
components:
- type: Transform
- pos: 81.5,71.5
+ pos: -6.5,41.5
parent: 2
- - uid: 27952
+ - uid: 15569
components:
- type: Transform
- pos: -26.5,-45.5
+ pos: -6.5,43.5
parent: 2
- - uid: 27971
+ - uid: 15570
components:
- type: Transform
- pos: -20.5,46.5
+ pos: -6.5,42.5
parent: 2
- - uid: 28007
+- proto: LockerWallMedicalDoctorFilled
+ entities:
+ - uid: 4131
components:
- type: Transform
- pos: 84.5,73.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,32.5
parent: 2
- - uid: 28047
+ - uid: 12424
components:
- type: Transform
- pos: 81.5,70.5
+ pos: 6.5,17.5
parent: 2
- - uid: 28177
+ - uid: 18405
components:
- type: Transform
- pos: -42.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-6.5
parent: 2
- - uid: 28178
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 3509
components:
- type: Transform
- pos: -17.5,-45.5
+ pos: 22.5,17.5
parent: 2
- - uid: 28250
+ - uid: 14177
components:
- type: Transform
- pos: -40.5,-45.5
+ pos: 13.5,44.5
parent: 2
- - uid: 28366
+- proto: LockerWardenFilled
+ entities:
+ - uid: 22316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-8.5
+ pos: -23.5,49.5
parent: 2
- - uid: 28794
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 3135
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,4.5
+ pos: 23.5,-20.5
parent: 2
- - uid: 28835
+ - uid: 9606
components:
- type: Transform
- pos: -33.5,63.5
+ pos: -49.5,31.5
parent: 2
- - uid: 28944
+ - uid: 9607
components:
- type: Transform
- pos: -30.5,51.5
+ pos: -45.5,31.5
parent: 2
- - uid: 28967
+ - uid: 29260
components:
- type: Transform
- pos: -18.5,46.5
+ pos: 87.5,-10.5
parent: 2
- - uid: 28995
+ - uid: 30652
components:
- type: Transform
- pos: -4.5,22.5
+ pos: -25.5,-28.5
parent: 2
- - uid: 28997
+- proto: MachineAnomalyGenerator
+ entities:
+ - uid: 2232
components:
- type: Transform
- pos: -7.5,22.5
+ pos: 46.5,39.5
parent: 2
- - uid: 28999
+- proto: MachineAnomalyVessel
+ entities:
+ - uid: 38
components:
- type: Transform
- pos: -5.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,36.5
parent: 2
- - uid: 29011
+ - uid: 23134
components:
- type: Transform
- pos: -12.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,36.5
parent: 2
- - uid: 29013
+- proto: MachineAPE
+ entities:
+ - uid: 4085
components:
- type: Transform
- pos: -12.5,24.5
+ pos: 45.5,36.5
parent: 2
- - uid: 29298
+ - uid: 4108
components:
- type: Transform
- pos: -32.5,63.5
+ pos: 46.5,36.5
parent: 2
- - uid: 29540
+ - uid: 4893
components:
- type: Transform
- pos: -21.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,36.5
parent: 2
- - uid: 29542
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 2837
components:
- type: Transform
- pos: -18.5,35.5
+ pos: 39.5,55.5
parent: 2
- - uid: 29543
+ - uid: 9214
components:
- type: Transform
- pos: -16.5,35.5
+ pos: 45.5,55.5
parent: 2
- - uid: 29664
+- proto: MachineCentrifuge
+ entities:
+ - uid: 2172
components:
- type: Transform
- pos: -2.5,-16.5
+ pos: 17.5,2.5
parent: 2
- - uid: 29671
+ - uid: 23107
components:
- type: Transform
- pos: -2.5,-13.5
+ pos: 21.5,-5.5
parent: 2
- - uid: 29708
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 3058
components:
- type: Transform
- pos: -45.5,67.5
+ pos: 17.5,3.5
parent: 2
- - uid: 29805
+ - uid: 24725
components:
- type: Transform
- pos: 90.5,53.5
+ pos: 21.5,-4.5
parent: 2
- - uid: 29806
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 7036
components:
- type: Transform
- pos: 89.5,53.5
+ pos: -25.5,-30.5
parent: 2
- - uid: 29808
+ - uid: 7037
components:
- type: Transform
- pos: 91.5,54.5
+ pos: -26.5,-30.5
parent: 2
- - uid: 29809
+ - uid: 7038
components:
- type: Transform
- pos: 91.5,55.5
+ pos: -32.5,-30.5
parent: 2
- - uid: 29810
+ - uid: 7039
components:
- type: Transform
- pos: 91.5,56.5
+ pos: -25.5,-34.5
parent: 2
- - uid: 29811
+ - uid: 18861
components:
- type: Transform
- pos: 89.5,57.5
+ pos: -109.5,48.5
parent: 2
- - uid: 29812
+ - uid: 22196
components:
- type: Transform
- pos: 90.5,57.5
+ pos: -106.5,52.5
parent: 2
- - uid: 29932
+ - uid: 22219
components:
- type: Transform
- pos: 92.5,17.5
+ pos: -105.5,52.5
parent: 2
- - uid: 29942
+ - uid: 22223
components:
- type: Transform
- pos: 92.5,16.5
+ pos: -103.5,56.5
parent: 2
- - uid: 29955
+ - uid: 25680
components:
- type: Transform
- pos: -41.5,-39.5
+ pos: 72.5,80.5
parent: 2
- - uid: 29956
+ - uid: 29060
components:
- type: Transform
- pos: -40.5,-39.5
+ pos: 62.5,44.5
parent: 2
- - uid: 29957
+ - uid: 29347
components:
- type: Transform
- pos: -38.5,-39.5
+ pos: 58.5,50.5
parent: 2
- - uid: 29958
+ - uid: 33885
components:
- type: Transform
- pos: -39.5,-39.5
+ pos: -108.5,48.5
parent: 2
- - uid: 29960
+ - uid: 36277
components:
- type: Transform
- pos: -52.5,-41.5
+ pos: 55.5,53.5
parent: 2
- - uid: 29978
+ - uid: 36278
components:
- type: Transform
- pos: -52.5,-43.5
+ pos: 102.5,61.5
parent: 2
- - uid: 30020
+ - uid: 36640
components:
- type: Transform
- pos: 89.5,20.5
+ pos: 87.5,67.5
parent: 2
- - uid: 30255
+ - uid: 36641
components:
- type: Transform
- pos: -78.5,11.5
+ pos: 89.5,68.5
parent: 2
- - uid: 30256
+ - uid: 36642
components:
- type: Transform
- pos: -79.5,11.5
+ pos: 80.5,72.5
parent: 2
- - uid: 30257
+ - uid: 36643
components:
- type: Transform
- pos: -77.5,11.5
+ pos: 64.5,77.5
parent: 2
- - uid: 30687
+ - uid: 36644
components:
- type: Transform
- pos: 15.5,64.5
+ pos: 61.5,40.5
parent: 2
- - uid: 30688
+ - uid: 36645
components:
- type: Transform
- pos: -48.5,61.5
+ pos: 70.5,37.5
parent: 2
- - uid: 30710
+ - uid: 36647
components:
- type: Transform
- pos: 12.5,68.5
+ pos: 70.5,44.5
parent: 2
- - uid: 30728
+ - uid: 36650
components:
- type: Transform
- pos: -47.5,67.5
+ pos: 70.5,77.5
parent: 2
- - uid: 30742
+ - uid: 36652
components:
- type: Transform
- pos: -47.5,65.5
+ pos: 81.5,54.5
parent: 2
- - uid: 30743
+- proto: MagazineBoxPistolPractice
+ entities:
+ - uid: 21843
components:
- type: Transform
- pos: -47.5,64.5
+ pos: -32.402336,46.509777
parent: 2
- - uid: 30744
+ - uid: 26011
components:
- type: Transform
- pos: -47.5,63.5
+ pos: -32.800774,46.61134
parent: 2
- - uid: 30748
+ - uid: 29543
components:
- type: Transform
- pos: 6.5,68.5
+ pos: -33.371086,43.587902
parent: 2
- - uid: 30931
+- proto: MagazineBoxPistolRubber
+ entities:
+ - uid: 13387
components:
- type: Transform
- pos: 8.5,69.5
+ pos: -20.763016,43.660416
parent: 2
- - uid: 30935
+- proto: MagazinePistolRubber
+ entities:
+ - uid: 15652
components:
- type: Transform
- pos: 9.5,69.5
+ pos: -22.333328,43.48854
parent: 2
- - uid: 31090
+ - uid: 19735
components:
- type: Transform
- pos: -47.5,66.5
+ pos: -22.544266,43.61354
parent: 2
- - uid: 31183
+ - uid: 20998
components:
- type: Transform
- pos: -43.5,73.5
+ rot: -1.5707963267948966 rad
+ pos: -9.474204,42.845577
parent: 2
- - uid: 31186
+ - uid: 21046
components:
- type: Transform
- pos: -44.5,73.5
+ rot: -1.5707963267948966 rad
+ pos: -9.349204,42.954952
parent: 2
- - uid: 31187
+- proto: MagazinePistolSubMachineGunTopMounted
+ entities:
+ - uid: 22261
components:
- type: Transform
- pos: -45.5,73.5
- parent: 2
- - uid: 31188
+ parent: 30282
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22262
components:
- type: Transform
- pos: -46.5,73.5
- parent: 2
- - uid: 31189
+ parent: 30282
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22263
components:
- type: Transform
- pos: -47.5,73.5
- parent: 2
- - uid: 31190
+ parent: 30282
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: MailBag
+ entities:
+ - uid: 6695
components:
- type: Transform
- pos: -48.5,73.5
+ rot: -1.5707963267948966 rad
+ pos: -4.6646996,-25.369335
parent: 2
- - uid: 31191
+- proto: MailingUnit
+ entities:
+ - uid: 1035
components:
+ - type: MetaData
+ name: secure storage mailing unit
- type: Transform
- pos: -49.5,73.5
+ pos: 34.5,15.5
parent: 2
- - uid: 31192
+ - type: MailingUnit
+ tag: Secure Storage
+ - uid: 1385
components:
+ - type: MetaData
+ desc: Send sensitive belongings to the storeroom above using this mailing unit.
+ name: morgue mailing unit
- type: Transform
- pos: -50.5,73.5
+ pos: 34.5,13.5
parent: 2
- - uid: 31193
+ - type: MailingUnit
+ tag: Morgue
+- proto: MailTeleporter
+ entities:
+ - uid: 6530
components:
- type: Transform
- pos: -51.5,73.5
+ pos: -10.5,-23.5
parent: 2
- - uid: 31194
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 4839
components:
- type: Transform
- pos: -51.5,72.5
+ pos: 73.5,33.5
parent: 2
- - uid: 31195
+ - uid: 6108
components:
- type: Transform
- pos: -51.5,71.5
+ pos: 85.5,24.5
parent: 2
- - uid: 31196
+ - uid: 6417
components:
- type: Transform
- pos: -51.5,70.5
+ pos: 41.5,-33.5
parent: 2
- - uid: 31197
+ - uid: 14976
components:
- type: Transform
- pos: -51.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-26.5
parent: 2
- - uid: 31198
+ - uid: 15269
components:
- type: Transform
- pos: -51.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,34.5
parent: 2
- - uid: 31199
+ - uid: 19386
components:
- type: Transform
- pos: -51.5,67.5
+ pos: -32.5,54.5
parent: 2
- - uid: 31200
+ - uid: 19387
components:
- type: Transform
- pos: -51.5,66.5
+ pos: -30.5,55.5
parent: 2
- - uid: 31201
+ - uid: 20778
components:
- type: Transform
- pos: -51.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-11.5
parent: 2
- - uid: 31202
+ - uid: 20964
components:
- type: Transform
- pos: -51.5,64.5
+ pos: -6.5,-27.5
parent: 2
- - uid: 31220
+ - uid: 20965
components:
- type: Transform
- pos: -95.5,47.5
+ pos: -30.5,-31.5
parent: 2
- - uid: 31611
+ - uid: 20966
components:
- type: Transform
- pos: 83.5,73.5
+ pos: -26.5,-36.5
parent: 2
- - uid: 31613
+ - uid: 20968
components:
- type: Transform
- pos: 82.5,73.5
+ pos: -32.5,-20.5
parent: 2
- - uid: 31616
+ - uid: 20969
components:
- type: Transform
- pos: 81.5,72.5
+ pos: -32.5,-21.5
parent: 2
- - uid: 31617
+ - uid: 20981
components:
- type: Transform
- pos: 85.5,72.5
+ pos: -64.5,-7.5
parent: 2
- - uid: 31618
+ - uid: 20982
components:
- type: Transform
- pos: 85.5,71.5
+ pos: -65.5,12.5
parent: 2
- - uid: 31619
+ - uid: 20983
components:
- type: Transform
- pos: 85.5,70.5
+ pos: -64.5,13.5
parent: 2
- - uid: 31711
+ - uid: 20984
components:
- type: Transform
- pos: -44.5,-45.5
+ pos: -69.5,27.5
parent: 2
- - uid: 31712
+ - uid: 20986
components:
- type: Transform
- pos: -25.5,-45.5
+ pos: -41.5,26.5
parent: 2
- - uid: 31713
+ - uid: 20987
components:
- type: Transform
- pos: -24.5,-45.5
+ pos: -35.5,27.5
parent: 2
- - uid: 31714
+ - uid: 20993
components:
- type: Transform
- pos: -23.5,-45.5
+ pos: 20.5,32.5
parent: 2
- - uid: 31715
+ - uid: 20994
components:
- type: Transform
- pos: -22.5,-45.5
+ pos: 24.5,26.5
parent: 2
- - uid: 32181
+ - uid: 20995
components:
- type: Transform
- pos: -19.5,-26.5
+ pos: 6.5,32.5
parent: 2
- - uid: 32209
+ - uid: 20996
components:
- type: Transform
- pos: -96.5,56.5
+ pos: 34.5,36.5
parent: 2
- - uid: 32210
+ - uid: 20999
components:
- type: Transform
- pos: -95.5,56.5
+ pos: 53.5,5.5
parent: 2
- - uid: 32211
+ - uid: 21003
components:
- type: Transform
- pos: -94.5,56.5
+ pos: 71.5,-20.5
parent: 2
- - uid: 32212
+ - uid: 21004
components:
- type: Transform
- pos: -96.5,46.5
+ pos: 65.5,-29.5
parent: 2
- - uid: 32213
+ - uid: 21005
components:
- type: Transform
- pos: -95.5,46.5
+ pos: 53.5,-31.5
parent: 2
- - uid: 32214
+ - uid: 21041
components:
- type: Transform
- pos: -94.5,46.5
+ pos: -31.5,15.5
parent: 2
- - uid: 32247
+ - uid: 21042
components:
- type: Transform
- pos: -122.5,51.5
+ pos: -31.5,14.5
parent: 2
- - uid: 32248
+ - uid: 21047
components:
- type: Transform
- pos: -122.5,50.5
+ pos: 36.5,9.5
parent: 2
- - uid: 32253
+ - uid: 21048
components:
- type: Transform
- pos: -113.5,61.5
+ pos: 37.5,16.5
parent: 2
- - uid: 32254
+ - uid: 21049
components:
- type: Transform
- pos: -112.5,61.5
+ pos: 39.5,3.5
parent: 2
- - uid: 32255
+ - uid: 21051
components:
- type: Transform
- pos: -111.5,61.5
+ pos: 38.5,-8.5
parent: 2
- - uid: 33714
+ - uid: 21052
components:
- type: Transform
- pos: -7.5,-8.5
+ pos: 38.5,-7.5
parent: 2
- - uid: 33719
+ - uid: 22610
components:
- type: Transform
- pos: -57.5,14.5
+ pos: -31.5,-11.5
parent: 2
- - uid: 33722
+ - uid: 23010
components:
- type: Transform
- pos: -59.5,14.5
+ pos: 83.5,8.5
parent: 2
- - uid: 33723
+ - uid: 24801
components:
- type: Transform
- pos: -58.5,14.5
+ pos: 31.5,43.5
parent: 2
- - uid: 34977
+ - uid: 26623
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: -26.5,0.5
parent: 2
- - uid: 34978
+ - uid: 29223
components:
- type: Transform
- pos: -58.5,10.5
+ pos: 43.5,-29.5
parent: 2
- - uid: 36467
+ - uid: 29604
components:
- type: Transform
- pos: -7.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-10.5
parent: 2
- - uid: 36469
+ - uid: 31119
components:
- type: Transform
- pos: -57.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-5.5
parent: 2
- - uid: 36470
+ - uid: 32499
components:
- type: Transform
- pos: -59.5,10.5
+ pos: 51.5,34.5
parent: 2
-- proto: GrilleBroken
- entities:
- - uid: 4770
+ - uid: 32514
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.5,13.5
+ pos: 85.5,17.5
parent: 2
- - uid: 5395
+ - uid: 33575
components:
- type: Transform
- pos: 58.5,53.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,34.5
parent: 2
- - uid: 5396
+ - uid: 33576
components:
- type: Transform
- pos: 57.5,53.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,34.5
parent: 2
- - uid: 5397
+ - uid: 33577
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 59.5,56.5
+ pos: 81.5,47.5
parent: 2
- - uid: 7011
+ - uid: 33580
components:
- type: Transform
- pos: -29.5,-34.5
+ pos: 64.5,72.5
parent: 2
- - uid: 7012
+ - uid: 33581
components:
- type: Transform
- pos: -30.5,-34.5
+ pos: 56.5,64.5
parent: 2
- - uid: 7013
+ - uid: 33582
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-31.5
+ pos: 74.5,78.5
parent: 2
- - uid: 7014
+ - uid: 33583
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-31.5
+ pos: 87.5,75.5
parent: 2
- - uid: 13744
+ - uid: 33584
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,-9.5
+ pos: 95.5,76.5
parent: 2
- - uid: 13765
+ - uid: 33585
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,-8.5
+ pos: 94.5,76.5
parent: 2
- - uid: 13766
+ - uid: 33586
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-5.5
+ pos: 98.5,74.5
parent: 2
- - uid: 13767
+ - uid: 33587
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-6.5
+ pos: 99.5,72.5
parent: 2
- - uid: 13768
+ - uid: 33588
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 88.5,-0.5
+ pos: 86.5,73.5
parent: 2
- - uid: 13769
+ - uid: 33589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 87.5,-1.5
+ pos: 96.5,62.5
parent: 2
- - uid: 13770
+ - uid: 33590
components:
- type: Transform
- pos: 85.5,2.5
+ pos: 94.5,66.5
parent: 2
- - uid: 13771
+ - uid: 33592
components:
- type: Transform
- pos: 84.5,3.5
+ pos: 84.5,60.5
parent: 2
- - uid: 13772
+ - uid: 33593
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,-10.5
+ pos: 98.5,59.5
parent: 2
- - uid: 13773
+ - uid: 33594
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 81.5,-10.5
+ pos: 99.5,59.5
parent: 2
- - uid: 13774
+ - uid: 33595
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-36.5
+ pos: 102.5,48.5
parent: 2
- - uid: 13775
+ - uid: 33596
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-38.5
+ pos: 97.5,45.5
parent: 2
- - uid: 13776
+ - uid: 33597
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-41.5
+ pos: 96.5,36.5
parent: 2
- - uid: 13777
+ - uid: 33599
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,-41.5
+ pos: 92.5,35.5
parent: 2
- - uid: 13778
+ - uid: 33600
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-42.5
+ pos: 95.5,22.5
parent: 2
- - uid: 13779
+ - uid: 33601
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 42.5,-41.5
+ pos: 93.5,15.5
parent: 2
- - uid: 13780
+ - uid: 33602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-42.5
+ pos: 103.5,10.5
parent: 2
- - uid: 13781
+ - uid: 33603
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-39.5
+ pos: 93.5,8.5
parent: 2
- - uid: 13782
+ - uid: 37429
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-37.5
+ pos: -42.5,70.5
parent: 2
- - uid: 13816
+ - uid: 37431
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 88.5,7.5
+ pos: -49.5,68.5
parent: 2
- - uid: 13817
+ - uid: 37432
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 90.5,9.5
+ pos: -48.5,67.5
parent: 2
- - uid: 13825
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 4506
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,12.5
+ pos: 77.5,26.5
parent: 2
- - uid: 13826
+ - uid: 19389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.5,11.5
+ pos: -30.5,54.5
parent: 2
- - uid: 22299
+ - uid: 20977
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,71.5
+ pos: -62.5,-29.5
parent: 2
- - uid: 22303
+ - uid: 20978
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,71.5
+ pos: -64.5,-15.5
parent: 2
- - uid: 22304
+ - uid: 20979
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,70.5
+ pos: -65.5,3.5
parent: 2
- - uid: 22305
+ - uid: 21006
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,71.5
+ pos: 69.5,-23.5
parent: 2
- - uid: 22306
+ - uid: 21009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,71.5
+ pos: 26.5,32.5
parent: 2
- - uid: 22313
+ - uid: 21016
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,70.5
+ pos: -55.5,40.5
parent: 2
- - uid: 22316
+ - uid: 32461
components:
- type: Transform
- pos: -24.5,71.5
+ pos: 104.5,48.5
parent: 2
- - uid: 22934
+ - uid: 32517
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -125.5,55.5
+ pos: 85.5,16.5
parent: 2
- - uid: 23019
+ - uid: 33097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -125.5,64.5
+ pos: 99.5,42.5
parent: 2
- - uid: 23020
+ - uid: 33578
components:
- type: Transform
- pos: -117.5,65.5
+ pos: 80.5,56.5
parent: 2
- - uid: 23021
+ - uid: 33604
components:
- type: Transform
- pos: -116.5,65.5
+ pos: 100.5,43.5
parent: 2
- - uid: 23022
+ - uid: 33606
components:
- type: Transform
- pos: -106.5,65.5
+ pos: 101.5,50.5
parent: 2
- - uid: 23023
+ - uid: 33607
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,63.5
+ pos: 96.5,44.5
parent: 2
- - uid: 23024
+ - uid: 37435
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,62.5
+ pos: -43.5,70.5
parent: 2
- - uid: 23025
+ - uid: 38777
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -126.5,55.5
+ pos: -102.5,30.5
parent: 2
- - uid: 23026
+ - uid: 38778
components:
- type: Transform
- pos: -126.5,44.5
+ pos: -105.5,21.5
parent: 2
- - uid: 23027
+ - uid: 38780
components:
- type: Transform
- pos: -122.5,42.5
+ pos: -101.5,18.5
parent: 2
- - uid: 23028
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 649
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-5.5
parent: 2
- - uid: 23029
+ - uid: 4626
components:
- type: Transform
- pos: -122.5,38.5
+ pos: 64.5,32.5
parent: 2
- - uid: 23030
+ - uid: 5045
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,39.5
+ pos: -108.5,54.5
parent: 2
- - uid: 23031
+ - uid: 5197
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -117.5,38.5
+ pos: 7.5,-27.5
parent: 2
-- proto: GrilleDiagonal
- entities:
- - uid: 20000
+ - uid: 5401
components:
- type: Transform
- pos: 48.5,-15.5
+ pos: 55.5,51.5
parent: 2
- - uid: 20002
+ - uid: 5402
components:
- type: Transform
- pos: 12.5,59.5
+ pos: 57.5,54.5
parent: 2
- - uid: 20315
+ - uid: 5403
components:
- type: Transform
- pos: 52.5,-11.5
+ pos: 60.5,51.5
parent: 2
- - uid: 20317
+ - uid: 5404
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,59.5
+ pos: 61.5,55.5
parent: 2
- - uid: 20407
+ - uid: 6413
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 53.5,-12.5
+ pos: 52.5,8.5
parent: 2
- - uid: 21880
+ - uid: 7455
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,69.5
+ pos: 84.5,24.5
parent: 2
- - uid: 21881
+ - uid: 8230
components:
- type: Transform
- pos: 6.5,69.5
+ pos: 84.5,23.5
parent: 2
- - uid: 28489
+ - uid: 9534
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,60.5
+ pos: 6.5,-27.5
parent: 2
- - uid: 28671
+ - uid: 12405
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 49.5,-16.5
+ pos: -24.5,4.5
parent: 2
- - uid: 28675
+ - uid: 20975
components:
- type: Transform
- pos: 13.5,60.5
+ pos: -62.5,-26.5
parent: 2
-- proto: GunSafe
- entities:
- - uid: 22113
+ - uid: 21040
components:
- type: Transform
- pos: -6.5,32.5
+ pos: -61.5,-12.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:
- - 22260
- - 22262
- - 22263
- - 22261
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: GunSafeLaserCarbine
- entities:
- - uid: 28886
+ - uid: 21050
components:
- type: Transform
- anchored: True
- pos: -25.5,48.5
+ pos: 39.5,5.5
parent: 2
- - type: Physics
- bodyType: Static
-- proto: GunSafePistolMk58
- entities:
- - uid: 28891
+ - uid: 21063
components:
- type: Transform
- anchored: True
- pos: -25.5,47.5
+ pos: -32.5,9.5
parent: 2
- - type: Physics
- bodyType: Static
-- proto: GunSafeShotgunKammerer
- entities:
- - uid: 28885
+ - uid: 23299
components:
- type: Transform
- anchored: True
- pos: -23.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-1.5
parent: 2
- - type: Physics
- bodyType: Static
-- proto: GunSafeSubMachineGunDrozd
- entities:
- - uid: 28963
+ - uid: 33614
components:
- type: Transform
- anchored: True
- pos: -23.5,48.5
+ pos: 95.5,74.5
parent: 2
- - type: Physics
- bodyType: Static
-- proto: Handcuffs
- entities:
- - uid: 4331
+ - uid: 33615
components:
- type: Transform
- pos: 49.76617,34.08667
+ pos: 102.5,73.5
parent: 2
- - uid: 15379
+ - uid: 33616
components:
- type: Transform
- pos: 13.720597,54.94558
+ pos: 86.5,78.5
parent: 2
- - uid: 15510
+ - uid: 33619
components:
- type: Transform
- pos: -36.5038,30.736282
+ pos: 69.5,50.5
parent: 2
- - uid: 19395
+ - uid: 33620
components:
- type: Transform
- pos: -9.701005,42.665085
+ pos: 69.5,41.5
parent: 2
- - uid: 19396
+ - uid: 33621
components:
- type: Transform
- pos: -9.451005,42.61821
+ pos: 66.5,40.5
parent: 2
- - uid: 32542
+ - uid: 33623
components:
- type: Transform
- pos: 99.55813,42.54598
+ pos: 96.5,14.5
parent: 2
-- proto: HandheldCrewMonitor
- entities:
- - uid: 8961
+ - uid: 33624
components:
- type: Transform
- pos: 35.545147,3.6304834
+ pos: 97.5,8.5
parent: 2
-- proto: HandheldGPSBasic
- entities:
- - uid: 1672
+ - uid: 33625
components:
- type: Transform
- pos: -25.51881,9.577614
+ pos: 102.5,26.5
parent: 2
- - uid: 34980
+ - uid: 36638
components:
- type: Transform
- pos: 34.390953,3.685296
+ pos: 100.5,61.5
parent: 2
-- proto: HandheldHealthAnalyzer
- entities:
- - uid: 5561
+ - uid: 37430
components:
- type: Transform
- pos: 48.69378,46.593346
+ pos: -41.5,70.5
parent: 2
- - uid: 6909
+ - uid: 37433
components:
- type: Transform
- pos: 43.88972,-21.144852
+ pos: -49.5,62.5
parent: 2
- - uid: 6911
+ - uid: 38779
components:
- type: Transform
- pos: -9.151129,-42.43531
+ pos: -103.5,52.5
parent: 2
- - uid: 14206
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 4467
components:
- type: Transform
- pos: 13.549272,55.62919
+ pos: 65.5,32.5
parent: 2
- - uid: 15727
+ - uid: 4810
components:
- type: Transform
- pos: -24.405924,42.378788
+ pos: 86.5,27.5
parent: 2
-- proto: HandLabeler
- entities:
- - uid: 1084
+ - uid: 5382
components:
- type: Transform
- pos: 20.645819,-1.1453056
+ pos: 61.5,54.5
parent: 2
- - uid: 1984
+ - uid: 5400
components:
- type: Transform
- pos: 7.2949524,30.869534
+ pos: 56.5,54.5
parent: 2
- - uid: 5524
+ - uid: 6416
components:
- type: Transform
- pos: 28.111671,30.624172
+ pos: 49.5,-29.5
parent: 2
- - uid: 9550
+ - uid: 13866
components:
- type: Transform
- pos: 36.36654,46.676826
+ pos: 39.5,6.5
parent: 2
- - uid: 35809
+ - uid: 20963
components:
- type: Transform
- pos: -3.414721,-6.6666975
+ pos: -7.5,-34.5
parent: 2
-- proto: HappyHonk
- entities:
- - uid: 5701
+ - uid: 20976
components:
- type: Transform
- pos: -77.61699,1.6966684
+ pos: -56.5,-33.5
parent: 2
- - uid: 19431
+ - uid: 20980
components:
- type: Transform
- pos: -78.50285,3.6125455
+ pos: -65.5,-0.5
parent: 2
-- proto: HappyHonkMime
- entities:
- - uid: 4210
+ - uid: 21014
components:
- type: Transform
- pos: -81.284096,1.8494835
+ pos: -3.5,71.5
parent: 2
-- proto: HatSpawner
- entities:
- - uid: 306
+ - uid: 21056
components:
- type: Transform
- pos: -43.5,-26.5
+ pos: 38.5,-5.5
parent: 2
- - uid: 7727
+ - uid: 21059
components:
- type: Transform
- pos: 73.5,32.5
+ pos: -32.5,15.5
parent: 2
- - uid: 21090
+ - uid: 21060
components:
- type: Transform
- pos: -6.5,-38.5
+ pos: -20.5,-4.5
parent: 2
- - uid: 21091
+ - uid: 22047
components:
- type: Transform
- pos: -3.5,-18.5
+ pos: 76.5,62.5
parent: 2
- - uid: 21093
+ - uid: 23295
components:
- type: Transform
- pos: -32.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,16.5
parent: 2
- - uid: 21095
+ - uid: 33609
components:
- type: Transform
- pos: -66.5,50.5
+ pos: 76.5,58.5
parent: 2
- - uid: 21098
+ - uid: 33610
components:
- type: Transform
- pos: -61.5,-31.5
+ pos: 92.5,48.5
parent: 2
- - uid: 21099
+ - uid: 33611
components:
- type: Transform
- pos: -46.5,-35.5
+ pos: 104.5,55.5
parent: 2
- - uid: 23615
+ - uid: 33612
components:
- type: Transform
- pos: -43.5,-27.5
+ pos: 97.5,63.5
parent: 2
- - uid: 33575
+ - uid: 33613
components:
- type: Transform
- pos: 76.5,37.5
+ pos: 95.5,77.5
parent: 2
- - uid: 33576
+ - uid: 33617
components:
- type: Transform
- pos: 92.5,33.5
+ pos: 64.5,73.5
parent: 2
- - uid: 33577
+ - uid: 33622
components:
- type: Transform
- pos: 95.5,42.5
+ pos: 78.5,37.5
parent: 2
- - uid: 33578
+ - uid: 37434
components:
- type: Transform
- pos: 99.5,41.5
+ pos: -45.5,70.5
parent: 2
- - uid: 33579
+- proto: Matchbox
+ entities:
+ - uid: 30063
components:
- type: Transform
- pos: 82.5,52.5
+ pos: 85.90307,42.529053
parent: 2
-- proto: HeadSkeleton
+- proto: MatchstickSpent
entities:
- - uid: 30075
+ - uid: 2229
components:
- type: Transform
- pos: 90.89885,41.841835
+ pos: 74.24168,79.9832
parent: 2
- - uid: 30077
+ - uid: 30047
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 90.6176,42.10746
+ pos: 86.07494,42.216553
parent: 2
- - uid: 32533
+ - uid: 30049
components:
- type: Transform
- pos: 90.62023,41.821255
+ pos: 84.59057,42.76233
parent: 2
- - uid: 32534
+ - uid: 30050
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 91.05773,41.61813
+ pos: 85.313446,39.138023
parent: 2
- - uid: 32535
+ - uid: 37631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.30773,41.49313
+ pos: 68.1948,81.07695
parent: 2
- - uid: 32536
+- proto: MaterialBiomass1
+ entities:
+ - uid: 1402
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 90.22961,43.633755
+ pos: 19.669285,1.7974792
parent: 2
- - uid: 32537
+ - uid: 1403
components:
- type: Transform
- pos: 90.62023,43.758755
+ pos: 19.46616,2.1959167
parent: 2
- - uid: 32538
+ - uid: 1404
components:
- type: Transform
- pos: 84.76086,42.61813
+ pos: 19.200535,2.1412292
parent: 2
- - uid: 33559
+ - uid: 1405
components:
- type: Transform
- pos: 91.95369,27.203115
+ pos: 19.27866,0.88341665
parent: 2
-- proto: HighSecArmoryLocked
- entities:
- - uid: 9055
+ - uid: 1406
components:
- type: Transform
- pos: -23.5,43.5
+ pos: 19.49741,1.7271667
parent: 2
- - uid: 15618
+ - uid: 8050
components:
- type: Transform
- pos: -21.5,44.5
+ pos: -5.6744056,6.5382013
parent: 2
-- proto: HighSecCommandLocked
+- proto: MaterialBones1
entities:
- - uid: 18354
+ - uid: 36039
components:
- type: Transform
- pos: 4.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 70.57527,85.507385
parent: 2
- - uid: 22597
+ - uid: 36040
components:
- type: Transform
- pos: 20.5,45.5
+ pos: 70.74715,85.21051
parent: 2
- - uid: 22598
+ - uid: 36041
components:
- type: Transform
- pos: 27.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5909,84.288635
parent: 2
-- proto: Holoprojector
- entities:
- - uid: 18542
+ - uid: 36715
components:
- type: Transform
- pos: -37.40299,24.825838
+ rot: -1.5707963267948966 rad
+ pos: 80.917496,84.633026
parent: 2
-- proto: HoloprojectorEngineering
- entities:
- - uid: 30647
+ - uid: 36716
components:
- type: Transform
- pos: -53.36526,35.883842
+ rot: -1.5707963267948966 rad
+ pos: 81.16359,84.32834
parent: 2
- - uid: 30648
+ - uid: 36717
components:
- type: Transform
- pos: -47.505886,33.727592
+ rot: 3.141592653589793 rad
+ pos: 82.59328,85.07834
parent: 2
- - uid: 30649
+ - uid: 36718
components:
- type: Transform
- pos: -47.349636,33.540092
+ rot: 1.5707963267948966 rad
+ pos: 81.52687,84.84396
parent: 2
- - uid: 30650
+- proto: MaterialCloth
+ entities:
+ - uid: 1981
components:
- type: Transform
- pos: -55.037136,35.477592
+ pos: 7.473057,30.6911
parent: 2
-- proto: HoloprojectorSecurity
+- proto: MaterialDiamond
entities:
- - uid: 15581
+ - uid: 13998
components:
- type: Transform
- pos: -13.580149,33.719345
+ pos: 26.580275,39.05669
parent: 2
-- proto: HospitalCurtains
+- proto: MaterialDiamond1
entities:
- - uid: 6082
+ - uid: 11228
components:
- type: Transform
- pos: 68.5,9.5
+ pos: -67.05053,-24.380058
parent: 2
-- proto: HospitalCurtainsOpen
- entities:
- - uid: 402
+ - uid: 37651
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,0.5
+ pos: 72.17274,59.508614
parent: 2
- - uid: 882
+- proto: MaterialDurathread
+ entities:
+ - uid: 5716
components:
- type: Transform
- pos: 25.5,-4.5
+ pos: 7.5137024,30.611721
parent: 2
- - uid: 1006
+- proto: MaterialWoodPlank1
+ entities:
+ - uid: 36548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,0.5
+ pos: 76.81607,82.26755
parent: 2
- - uid: 1025
+ - uid: 36549
components:
- type: Transform
- pos: 32.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 76.62857,81.759735
parent: 2
- - uid: 1165
+ - uid: 36550
components:
- type: Transform
- pos: 6.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 76.55826,80.34567
parent: 2
- - uid: 1193
+- proto: Mattress
+ entities:
+ - uid: 2289
components:
- type: Transform
- pos: 25.5,-5.5
+ pos: 68.5,63.5
parent: 2
- - uid: 1194
+ - uid: 32825
components:
- type: Transform
- pos: 25.5,-7.5
+ pos: 77.5,63.5
parent: 2
- - uid: 1195
+ - uid: 34882
components:
- type: Transform
- pos: 25.5,-8.5
+ pos: -17.5,66.5
parent: 2
- - uid: 1196
+ - uid: 36800
components:
- type: Transform
- pos: 25.5,-10.5
+ pos: 77.5,69.5
parent: 2
- - uid: 1197
+ - uid: 36853
components:
- type: Transform
- pos: 25.5,-11.5
+ pos: 66.5,69.5
parent: 2
- - uid: 1208
+- proto: MedicalBed
+ entities:
+ - uid: 428
components:
- type: Transform
- pos: 32.5,-10.5
+ pos: 7.5,-6.5
parent: 2
- - uid: 1242
+ - uid: 630
components:
- type: Transform
- pos: 68.5,28.5
+ pos: -41.5,58.5
parent: 2
- - uid: 1455
+ - uid: 631
components:
- type: Transform
- pos: 6.5,14.5
+ pos: -41.5,60.5
parent: 2
- - uid: 1456
+ - uid: 1296
components:
- type: Transform
- pos: 12.5,14.5
+ pos: 5.5,12.5
parent: 2
- - type: Door
- secondsUntilStateChange: -119815.46
- - uid: 1457
+ - uid: 4132
components:
- type: Transform
- pos: 12.5,10.5
+ pos: 23.5,10.5
parent: 2
- - uid: 1458
+ - uid: 4379
components:
- type: Transform
- pos: 6.5,12.5
+ pos: 7.5,-10.5
parent: 2
- - uid: 1460
+ - uid: 19517
components:
- type: Transform
- pos: 6.5,10.5
+ pos: 5.5,16.5
parent: 2
- - uid: 1461
+ - uid: 21335
components:
- type: Transform
- pos: 12.5,12.5
+ pos: 23.5,14.5
parent: 2
- - uid: 1462
+ - uid: 21337
components:
- type: Transform
- pos: 5.5,14.5
+ pos: 23.5,12.5
parent: 2
- - uid: 1463
+ - uid: 24351
components:
- type: Transform
- pos: 5.5,12.5
+ pos: 23.5,16.5
parent: 2
- - uid: 1464
+ - uid: 25784
components:
- type: Transform
- pos: 5.5,10.5
+ pos: 13.5,-10.5
parent: 2
- - uid: 1465
+ - uid: 33900
components:
- type: Transform
- pos: 13.5,10.5
+ pos: 5.5,14.5
parent: 2
- - uid: 1466
+ - uid: 33911
components:
- type: Transform
- pos: 13.5,12.5
+ pos: 5.5,10.5
parent: 2
- - uid: 1467
+- proto: MedicalScanner
+ entities:
+ - uid: 28451
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 23.5,2.5
parent: 2
- - uid: 1468
+ - type: DeviceLinkSink
+ links:
+ - 27402
+- proto: MedicalTechFab
+ entities:
+ - uid: 10938
components:
- type: Transform
- pos: 13.5,16.5
+ pos: 16.5,11.5
parent: 2
- - uid: 1469
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 3565
components:
- type: Transform
- pos: 12.5,16.5
+ pos: 12.453069,8.773991
parent: 2
- - uid: 2525
+- proto: MedkitBruteFilled
+ entities:
+ - uid: 3462
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-23.5
+ pos: 41.476383,-21.244463
parent: 2
- - uid: 3309
+ - uid: 30685
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-21.5
+ pos: 4.5581956,64.48662
parent: 2
- - uid: 3411
+ - uid: 37566
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-21.5
+ pos: 16.437443,8.766178
parent: 2
- - uid: 4435
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 36928
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-10.5
+ pos: 16.67963,8.438053
parent: 2
- - uid: 4595
+- proto: MedkitCombatFilled
+ entities:
+ - uid: 1435
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,4.5
+ pos: 12.656194,8.367741
parent: 2
- - uid: 4623
+ - uid: 14210
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,4.5
+ pos: 13.406654,56.703026
parent: 2
- - uid: 4725
+- proto: MedkitFilled
+ entities:
+ - uid: 13084
components:
- type: Transform
- pos: 46.5,22.5
+ pos: 4.47973,-31.09689
parent: 2
- - uid: 4745
+ - uid: 17627
components:
- type: Transform
- pos: 45.5,27.5
+ pos: 12.390569,8.023991
parent: 2
- - uid: 4764
+ - uid: 23357
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,4.5
+ pos: -43.92187,58.252357
parent: 2
- - uid: 5109
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 9322
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,59.5
+ pos: -16.398605,-25.496935
parent: 2
- - uid: 5146
+ - uid: 16489
components:
- type: Transform
- pos: 72.5,-12.5
+ pos: 12.609319,7.609928
parent: 2
- - uid: 5229
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 5413
components:
- type: Transform
- pos: -29.5,-17.5
+ pos: 49.81323,46.780846
parent: 2
- - uid: 5294
+ - uid: 36936
components:
- type: Transform
- pos: -52.5,14.5
+ pos: 16.632755,7.609928
parent: 2
- - uid: 5512
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 36892
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-34.5
+ pos: 16.42963,8.016178
parent: 2
- - uid: 5513
+- proto: Memorial
+ entities:
+ - uid: 2693
components:
+ - type: MetaData
+ desc: Splish splash! It's a jungle. Look at the monkey!
+ name: Jungle Dome Plaque
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-32.5
+ pos: -98.5,5.5
parent: 2
- - uid: 5514
+ - uid: 2751
components:
+ - type: MetaData
+ desc: Damp, dank, and muddy caves could have ANY animals in them. Watch out!!!
+ name: Cave Dome Plaque
- type: Transform
- pos: -25.5,-22.5
+ pos: -97.5,20.5
parent: 2
- - uid: 5515
+ - uid: 10656
components:
+ - type: MetaData
+ desc: The Dirt's Room. It's for Hot Dirt Ouchie! Your feet.
- type: Transform
- pos: -52.5,13.5
+ pos: -97.5,-10.5
parent: 2
- - uid: 5516
+ - uid: 22350
components:
+ - type: MetaData
+ desc: It is so Snowy . Look at all the Cold. Good job.
+ name: Tundra Dome Plaque
- type: Transform
- pos: -26.5,-22.5
+ pos: -81.5,-4.5
parent: 2
- - uid: 5517
+ - uid: 30383
components:
+ - type: MetaData
+ desc: To all those that we couldn't save.
- type: Transform
- pos: -28.5,-12.5
+ pos: 1.5,21.5
parent: 2
- - uid: 5519
+ - uid: 30405
components:
+ - type: MetaData
+ desc: To all those we saved.
- type: Transform
- pos: -26.5,-12.5
+ pos: 1.5,-14.5
parent: 2
- - uid: 5762
+ - uid: 38130
components:
+ - type: MetaData
+ desc: Watch the beautiful carps and sharks and other majestic beasts of the sea swim around in harmony!
+ name: Aquarium Dome Plaque
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,64.5
+ pos: -81.5,22.5
parent: 2
- - uid: 5764
+- proto: MetempsychoticMachine
+ entities:
+ - uid: 28435
components:
- type: Transform
- pos: 22.5,-25.5
+ pos: 23.5,1.5
parent: 2
- - uid: 6081
+ - type: DeviceLinkSink
+ links:
+ - 27402
+- proto: MicrowaveMachineCircuitboard
+ entities:
+ - uid: 1573
components:
- type: Transform
- pos: 66.5,9.5
+ pos: 18.439661,-8.63639
parent: 2
- - uid: 6247
+- proto: Mirror
+ entities:
+ - uid: 15883
components:
- type: Transform
- pos: -7.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-12.5
parent: 2
- - uid: 6269
+ - uid: 22457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,-12.5
parent: 2
- - uid: 6551
+ - uid: 30970
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-6.5
+ pos: 28.5,-0.5
parent: 2
- - uid: 6577
+ - uid: 32685
components:
- type: Transform
- pos: -22.5,-12.5
+ pos: 27.5,-0.5
parent: 2
- - uid: 6578
+ - uid: 36112
components:
+ - type: MetaData
+ name: two-way mirror
- type: Transform
- pos: -28.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,34.5
parent: 2
- - uid: 6941
+ - uid: 36113
components:
+ - type: MetaData
+ name: two-way mirror
- type: Transform
- pos: -27.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,33.5
parent: 2
- - uid: 7328
+ - uid: 36114
components:
+ - type: MetaData
+ name: two-way mirror
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,32.5
parent: 2
- - uid: 7351
+ - uid: 36778
components:
- type: Transform
- pos: -46.5,13.5
+ pos: 77.5,61.5
parent: 2
- - uid: 7441
+ - uid: 36811
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-24.5
+ pos: 65.5,61.5
parent: 2
- - uid: 7537
+ - uid: 36813
components:
- type: Transform
- pos: -70.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,70.5
parent: 2
- - uid: 7726
+ - uid: 36814
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,28.5
+ pos: 72.5,70.5
parent: 2
- - uid: 8330
+ - uid: 36815
components:
- type: Transform
- pos: -19.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,70.5
parent: 2
- - uid: 8361
+ - uid: 36816
components:
- type: Transform
- pos: -20.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,70.5
parent: 2
- - uid: 8374
+ - uid: 36817
components:
- type: Transform
- pos: -13.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,70.5
parent: 2
- - uid: 8381
+ - uid: 36818
components:
- type: Transform
- pos: -14.5,0.5
+ pos: 67.5,61.5
parent: 2
- - uid: 8742
+ - uid: 36819
components:
- type: Transform
- pos: -46.5,12.5
+ pos: 68.5,61.5
parent: 2
- - uid: 8766
+ - uid: 36820
components:
- type: Transform
- pos: -46.5,14.5
+ pos: 64.5,61.5
parent: 2
- - uid: 8826
+ - uid: 36821
components:
- type: Transform
- pos: -23.5,-24.5
+ pos: 74.5,61.5
parent: 2
- - uid: 8827
+ - uid: 36822
components:
- type: Transform
- pos: -23.5,-23.5
+ pos: 75.5,61.5
parent: 2
- - uid: 9128
+ - uid: 36823
components:
- type: Transform
- pos: 37.5,22.5
+ pos: 76.5,61.5
parent: 2
- - uid: 9129
+ - uid: 36824
components:
- type: Transform
- pos: 38.5,22.5
+ pos: 78.5,61.5
parent: 2
- - uid: 9139
+ - uid: 38109
components:
- type: Transform
- pos: 70.5,-10.5
+ pos: 25.5,-0.5
parent: 2
- - uid: 9288
+ - uid: 38110
components:
- type: Transform
- pos: -26.5,0.5
+ pos: 24.5,-0.5
parent: 2
- - uid: 9289
+- proto: ModularGrenade
+ entities:
+ - uid: 36048
components:
- type: Transform
- pos: -25.5,0.5
+ pos: 31.316528,16.04834
parent: 2
- - uid: 9656
+- proto: MopBucketFull
+ entities:
+ - uid: 19111
components:
- type: Transform
- pos: 36.5,22.5
+ pos: -41.389397,5.6835275
parent: 2
- - uid: 9659
+ - uid: 21882
components:
- type: Transform
- pos: 35.5,22.5
+ pos: -67.247635,0.97548735
parent: 2
- - uid: 11286
+ - uid: 37693
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,4.5
+ pos: -40.011898,11.049174
parent: 2
- - uid: 11527
+ - uid: 37694
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-8.5
+ pos: -36.324398,17.55822
parent: 2
- - uid: 11528
+- proto: MopItem
+ entities:
+ - uid: 18529
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-5.5
+ pos: -40.289394,11.185035
parent: 2
- - uid: 11530
+ - uid: 22041
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-7.5
+ pos: -67.341385,0.78798735
parent: 2
- - uid: 11541
+ - uid: 34041
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-8.5
+ pos: -20.296652,53.47299
parent: 2
- - uid: 11596
+ - uid: 37687
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-5.5
+ pos: -36.899036,11.9861765
parent: 2
- - uid: 13012
+- proto: Morgue
+ entities:
+ - uid: 1056
components:
- type: Transform
- pos: 73.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,13.5
parent: 2
- - uid: 13952
+ - uid: 1825
components:
- type: Transform
- pos: -24.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,16.5
parent: 2
- - uid: 14102
+ - uid: 5329
components:
- type: Transform
- pos: -8.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,53.5
parent: 2
- - uid: 15720
+ - uid: 5330
components:
- type: Transform
- pos: -2.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,54.5
parent: 2
- - uid: 15732
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 75.31249
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - uid: 5337
components:
- type: Transform
- pos: -2.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,52.5
parent: 2
- - uid: 15747
+ - type: EntityStorage
+ open: True
+ - uid: 24059
components:
- type: Transform
- pos: -2.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,12.5
parent: 2
- - uid: 15860
+ - uid: 26134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,15.5
parent: 2
- - uid: 15933
+ - uid: 27317
components:
- type: Transform
- pos: -28.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,12.5
parent: 2
- - uid: 16516
+ - uid: 27349
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,4.5
+ pos: 25.5,11.5
parent: 2
- - uid: 16588
+ - uid: 30307
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-12.5
+ pos: 29.5,15.5
parent: 2
- - uid: 16589
+ - uid: 33922
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -3.5,-12.5
+ pos: 29.5,14.5
parent: 2
- - uid: 16593
+ - uid: 33923
components:
- type: Transform
- pos: -20.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,11.5
parent: 2
- - uid: 16594
+ - uid: 33925
components:
- type: Transform
- pos: -16.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,16.5
parent: 2
- - uid: 16596
+ - uid: 33933
components:
- type: Transform
- pos: -14.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,14.5
parent: 2
- - uid: 16597
+ - uid: 33934
components:
- type: Transform
- pos: -17.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,13.5
parent: 2
- - uid: 16598
+- proto: MountainRock
+ entities:
+ - uid: 1250
components:
- type: Transform
- pos: -16.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,79.5
parent: 2
- - uid: 16599
+ - uid: 3377
components:
- type: Transform
- pos: -22.5,-6.5
+ pos: 92.5,56.5
parent: 2
- - uid: 16600
+ - uid: 4539
components:
- type: Transform
- pos: -20.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,45.5
parent: 2
- - uid: 16613
+ - uid: 4547
components:
- type: Transform
- pos: 39.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,57.5
parent: 2
- - uid: 16614
+ - uid: 4677
components:
- type: Transform
- pos: 45.5,22.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,57.5
parent: 2
- - uid: 16616
+ - uid: 4785
components:
- type: Transform
- pos: 47.5,22.5
+ pos: 68.5,38.5
parent: 2
- - uid: 16617
+ - uid: 5324
components:
- type: Transform
- pos: 48.5,22.5
+ pos: 79.5,76.5
parent: 2
- - uid: 16618
+ - uid: 5761
components:
- type: Transform
- pos: 46.5,27.5
+ pos: 81.5,77.5
parent: 2
- - uid: 16620
+ - uid: 6408
components:
- type: Transform
- pos: 47.5,27.5
+ pos: 82.5,78.5
parent: 2
- - uid: 16621
+ - uid: 6615
components:
- type: Transform
- pos: 41.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,45.5
parent: 2
- - uid: 18048
+ - uid: 8105
components:
- type: Transform
- pos: -26.5,65.5
+ pos: 67.5,45.5
parent: 2
- - uid: 18049
+ - uid: 8127
components:
- type: Transform
- pos: -22.5,65.5
+ pos: 66.5,42.5
parent: 2
- - uid: 18050
+ - uid: 8131
components:
- type: Transform
- pos: -18.5,65.5
+ pos: 67.5,43.5
parent: 2
- - uid: 18051
+ - uid: 8139
components:
- type: Transform
- pos: -14.5,65.5
+ pos: 66.5,38.5
parent: 2
- - uid: 19334
+ - uid: 8146
components:
- type: Transform
- pos: 41.5,33.5
+ pos: 65.5,39.5
parent: 2
- - uid: 19371
+ - uid: 8160
components:
- type: Transform
- pos: 41.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,68.5
parent: 2
- - uid: 19854
+ - uid: 8222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,65.5
+ pos: 83.5,78.5
parent: 2
- - uid: 19962
+ - uid: 8224
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-4.5
+ pos: 84.5,78.5
parent: 2
- - uid: 19966
+ - uid: 8238
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 88.5,79.5
parent: 2
- - uid: 19996
+ - uid: 8249
components:
- type: Transform
- pos: 12.5,-12.5
+ pos: 58.5,76.5
parent: 2
- - uid: 21838
+ - uid: 8264
components:
- type: Transform
- pos: 6.5,-12.5
+ pos: 76.5,76.5
parent: 2
- - uid: 21920
+ - uid: 8266
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -16.5,4.5
+ pos: 78.5,76.5
parent: 2
- - uid: 22048
+ - uid: 8267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,4.5
+ pos: 77.5,76.5
parent: 2
- - uid: 23457
+ - uid: 8273
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,56.5
parent: 2
- - uid: 23495
+ - uid: 8279
components:
- type: Transform
- pos: 81.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,70.5
parent: 2
- - uid: 23613
+ - uid: 8289
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-9.5
+ pos: 65.5,69.5
parent: 2
- - uid: 23777
+ - uid: 8290
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-33.5
+ pos: 77.5,29.5
parent: 2
- - uid: 23782
+ - uid: 8307
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-35.5
+ pos: 77.5,30.5
parent: 2
- - uid: 27192
+ - uid: 8478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,17.5
+ pos: 78.5,29.5
parent: 2
- - uid: 27193
+ - uid: 8609
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,58.5
parent: 2
- - uid: 27194
+ - uid: 9629
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,17.5
+ pos: 66.5,73.5
parent: 2
- - uid: 27195
+ - uid: 9630
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,17.5
+ pos: 80.5,35.5
parent: 2
- - uid: 27196
+ - uid: 9636
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,17.5
+ pos: 99.5,21.5
parent: 2
- - uid: 27197
+ - uid: 9669
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,17.5
+ pos: 100.5,21.5
parent: 2
- - uid: 27198
+ - uid: 10227
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,17.5
+ pos: 101.5,15.5
parent: 2
- - uid: 27199
+ - uid: 13788
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,17.5
+ pos: 67.5,73.5
parent: 2
- - uid: 27200
+ - uid: 13797
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,17.5
+ pos: 101.5,14.5
parent: 2
- - uid: 27201
+ - uid: 13801
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,17.5
+ pos: 102.5,15.5
parent: 2
- - uid: 27414
+ - uid: 13803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,0.5
+ pos: 93.5,11.5
parent: 2
- - uid: 27944
+ - uid: 13807
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 87.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,14.5
parent: 2
- - uid: 28352
+ - uid: 13816
components:
- type: Transform
- pos: 4.5,-5.5
+ pos: 94.5,11.5
parent: 2
- - uid: 28355
+ - uid: 13821
components:
- type: Transform
- pos: 13.5,-12.5
+ pos: 69.5,56.5
parent: 2
- - uid: 28748
+ - uid: 13825
components:
- type: Transform
- pos: 7.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,60.5
parent: 2
- - uid: 29820
+ - uid: 13826
components:
- type: Transform
- pos: 88.5,55.5
+ pos: 92.5,27.5
parent: 2
- - uid: 31046
+ - uid: 18557
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,65.5
+ pos: 95.5,24.5
parent: 2
- - uid: 31113
+ - uid: 18561
components:
- type: Transform
- pos: -33.5,65.5
+ pos: 93.5,27.5
parent: 2
- - uid: 33653
+ - uid: 18567
components:
- type: Transform
- pos: -31.5,65.5
+ pos: 95.5,23.5
parent: 2
- - uid: 33655
+ - uid: 18571
components:
- type: Transform
- pos: -34.5,64.5
+ pos: 90.5,31.5
parent: 2
-- proto: hydroponicsSoil
- entities:
- - uid: 2368
+ - uid: 18576
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,4.5
+ pos: 91.5,23.5
parent: 2
- - uid: 5407
+ - uid: 18580
components:
- type: Transform
- pos: -33.5,62.5
+ pos: 76.5,30.5
parent: 2
- - uid: 5740
+ - uid: 18583
components:
- type: Transform
- pos: -33.5,61.5
+ pos: 69.5,36.5
parent: 2
- - uid: 6274
+ - uid: 18599
components:
- type: Transform
- pos: -33.5,60.5
+ pos: 93.5,20.5
parent: 2
- - uid: 6844
+ - uid: 18601
components:
- type: Transform
- pos: -33.5,59.5
+ pos: 71.5,53.5
parent: 2
- - uid: 9671
+ - uid: 18602
components:
- type: Transform
- pos: -33.5,57.5
+ pos: 93.5,21.5
parent: 2
- - uid: 18418
+ - uid: 18665
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -57.5,5.5
+ pos: 67.5,58.5
parent: 2
- - uid: 18419
+ - uid: 18682
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -56.5,5.5
+ pos: 67.5,60.5
parent: 2
- - uid: 18420
+ - uid: 18683
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,5.5
+ pos: 74.5,59.5
parent: 2
- - uid: 18421
+ - uid: 18705
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,5.5
+ pos: 79.5,44.5
parent: 2
- - uid: 18425
+ - uid: 18712
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -57.5,4.5
+ pos: 75.5,60.5
parent: 2
- - uid: 18429
+ - uid: 18716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,4.5
+ pos: 92.5,22.5
parent: 2
- - uid: 18430
+ - uid: 18730
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,4.5
+ pos: 69.5,54.5
parent: 2
- - uid: 30754
+ - uid: 18731
components:
- type: Transform
- pos: -33.5,58.5
+ pos: 72.5,47.5
parent: 2
-- proto: HydroponicsToolClippers
- entities:
- - uid: 18156
+ - uid: 18732
components:
- type: Transform
- pos: -31.41555,61.58358
+ pos: 72.5,46.5
parent: 2
- - uid: 18491
+ - uid: 18734
components:
- type: Transform
- pos: -49.48618,4.709147
+ pos: 70.5,46.5
parent: 2
-- proto: HydroponicsToolHatchet
- entities:
- - uid: 18485
+ - uid: 18737
components:
- type: Transform
- pos: -52.588306,-1.3315754
+ pos: 82.5,77.5
parent: 2
- - uid: 18488
+ - uid: 18748
components:
- type: Transform
- pos: -62.501804,0.9122721
+ rot: 1.5707963267948966 rad
+ pos: 86.5,80.5
parent: 2
-- proto: HydroponicsToolMiniHoe
- entities:
- - uid: 9350
+ - uid: 18762
components:
- type: Transform
- pos: -31.461285,62.45976
+ rot: 1.5707963267948966 rad
+ pos: 84.5,79.5
parent: 2
- - uid: 18153
+ - uid: 18768
components:
- type: Transform
- pos: -29.399925,62.64608
+ pos: 60.5,70.5
parent: 2
- - uid: 18154
+ - uid: 18798
components:
- type: Transform
- pos: -29.618675,62.567955
+ pos: 60.5,75.5
parent: 2
- - uid: 18489
+ - uid: 18800
components:
- type: Transform
- pos: -61.73618,0.5372721
+ pos: 60.5,74.5
parent: 2
- - uid: 18490
+ - uid: 18801
components:
- type: Transform
- pos: -61.42368,0.6466471
+ pos: 59.5,75.5
parent: 2
-- proto: HydroponicsToolScythe
- entities:
- - uid: 18492
+ - uid: 18856
components:
- type: Transform
- pos: -52.60393,-1.3159504
+ pos: 82.5,76.5
parent: 2
-- proto: HydroponicsToolSpade
- entities:
- - uid: 18493
+ - uid: 18862
components:
- type: Transform
- pos: -62.345554,1.4435221
+ pos: 73.5,54.5
parent: 2
- - uid: 18494
+ - uid: 18864
components:
- type: Transform
- pos: -51.51018,-1.3940754
+ pos: 57.5,67.5
parent: 2
-- proto: hydroponicsTray
- entities:
- - uid: 2369
+ - uid: 18882
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,4.5
+ pos: 93.5,13.5
parent: 2
- - uid: 2373
+ - uid: 18883
components:
- type: Transform
- pos: -50.5,4.5
+ pos: 81.5,32.5
parent: 2
- - uid: 7417
+ - uid: 18926
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,5.5
+ pos: 91.5,29.5
parent: 2
- - uid: 17987
+ - uid: 19087
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,4.5
+ pos: 67.5,57.5
parent: 2
- - uid: 17995
+ - uid: 19106
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,4.5
+ pos: 92.5,21.5
parent: 2
- - uid: 18061
+ - uid: 19323
components:
- type: Transform
- pos: -29.5,58.5
+ pos: 80.5,34.5
parent: 2
- - uid: 18069
+ - uid: 19378
components:
- type: Transform
- pos: -30.5,58.5
+ pos: 95.5,25.5
parent: 2
- - uid: 18071
+ - uid: 19435
components:
- type: Transform
- pos: -31.5,57.5
+ pos: 91.5,21.5
parent: 2
- - uid: 18073
+ - uid: 19956
components:
- type: Transform
- pos: -31.5,58.5
+ pos: 79.5,43.5
parent: 2
- - uid: 18143
+ - uid: 19957
components:
- type: Transform
- pos: -29.5,57.5
+ pos: 68.5,45.5
parent: 2
- - uid: 18416
+ - uid: 19958
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -60.5,5.5
+ pos: 75.5,56.5
parent: 2
- - uid: 18417
+ - uid: 19959
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -61.5,5.5
+ pos: 70.5,35.5
parent: 2
- - uid: 18422
+ - uid: 19960
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,5.5
+ pos: 69.5,62.5
parent: 2
- - uid: 18423
+ - uid: 19963
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,5.5
+ pos: 78.5,28.5
parent: 2
- - uid: 18424
+ - uid: 19965
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,5.5
+ pos: 67.5,59.5
parent: 2
- - uid: 18426
+ - uid: 19968
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -52.5,4.5
+ pos: 73.5,55.5
parent: 2
- - uid: 18427
+ - uid: 19969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,4.5
+ pos: 70.5,53.5
parent: 2
-- proto: Igniter
- entities:
- - uid: 25782
+ - uid: 20320
components:
- type: Transform
- pos: -58.52908,50.271786
+ pos: 68.5,37.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 19332
- - uid: 35711
+ - uid: 20399
components:
- - type: MetaData
- name: igniter 2
- type: Transform
- pos: -37.55961,37.32428
+ pos: 69.5,44.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 35713
- - uid: 35712
+ - uid: 20590
components:
- - type: MetaData
- name: igniter 1
- type: Transform
- pos: -37.62211,37.66803
+ pos: 69.5,45.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 35714
-- proto: InflatableDoor
- entities:
- - uid: 22720
+ - uid: 20592
components:
- type: Transform
- pos: 57.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,64.5
parent: 2
-- proto: InflatableWall
- entities:
- - uid: 1129
+ - uid: 21000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-24.5
+ pos: 68.5,59.5
parent: 2
- - uid: 22116
+ - uid: 21019
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-25.5
+ pos: 72.5,55.5
parent: 2
- - uid: 23774
+ - uid: 21021
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-24.5
+ pos: 68.5,58.5
parent: 2
-- proto: IngotGold
- entities:
- - uid: 4461
+ - uid: 22883
components:
- type: Transform
- pos: 89.07819,36.635185
+ pos: 69.5,63.5
parent: 2
- - uid: 5677
+ - uid: 23339
components:
- type: Transform
- pos: 49.553997,30.678318
+ pos: 55.5,63.5
parent: 2
- - uid: 13997
+ - uid: 23494
components:
- type: Transform
- pos: 26.468767,39.52544
+ pos: 97.5,68.5
parent: 2
-- proto: IngotGold1
- entities:
- - uid: 29773
+ - uid: 23741
components:
- type: Transform
- pos: 82.5759,62.647358
+ pos: 57.5,76.5
parent: 2
- - type: Stack
- count: 2
- - type: Item
- size: 2
- - uid: 29776
+ - uid: 23747
components:
- type: Transform
- pos: 82.3884,62.756733
+ pos: 57.5,76.5
parent: 2
-- proto: IngotSilver
- entities:
- - uid: 4462
+ - uid: 23889
components:
- type: Transform
- pos: 89.51569,36.83831
+ pos: 102.5,63.5
parent: 2
- - uid: 14129
+ - uid: 26438
components:
- type: Transform
- pos: 26.586357,39.834373
+ pos: 80.5,76.5
parent: 2
-- proto: IngotSilver1
- entities:
- - uid: 29777
+ - uid: 26526
components:
- type: Transform
- pos: 86.6384,62.631733
+ pos: 81.5,76.5
parent: 2
-- proto: IntercomCommand
- entities:
- - uid: 1520
+ - uid: 26537
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,28.5
+ pos: 56.5,65.5
parent: 2
- - uid: 14214
+ - uid: 26541
components:
- type: Transform
- pos: 14.5,44.5
+ pos: 68.5,55.5
parent: 2
- - uid: 14272
+ - uid: 26543
components:
- type: Transform
- pos: 12.5,51.5
+ pos: 76.5,29.5
parent: 2
- - uid: 14277
+ - uid: 26544
components:
- type: Transform
- pos: 25.5,57.5
+ pos: 100.5,13.5
parent: 2
- - uid: 22616
+ - uid: 26545
components:
- type: Transform
- pos: 23.5,52.5
+ pos: 71.5,35.5
parent: 2
- - uid: 22617
+ - uid: 26548
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,53.5
+ pos: 76.5,31.5
parent: 2
-- proto: IntercomCommon
- entities:
- - uid: 22919
+ - uid: 26549
components:
- type: Transform
- pos: 51.5,5.5
+ pos: 93.5,26.5
parent: 2
- - uid: 22932
+ - uid: 26550
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-38.5
+ pos: 68.5,57.5
parent: 2
- - uid: 22933
+ - uid: 26551
components:
- type: Transform
- pos: 36.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 97.5,23.5
parent: 2
- - uid: 22935
+ - uid: 26552
components:
- type: Transform
- pos: 41.5,22.5
+ pos: 96.5,22.5
parent: 2
- - uid: 22936
+ - uid: 26555
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,29.5
+ pos: 92.5,28.5
parent: 2
- - uid: 22937
+ - uid: 26557
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,72.5
+ pos: 76.5,60.5
parent: 2
- - uid: 22938
+ - uid: 26559
components:
- type: Transform
- pos: -40.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,59.5
parent: 2
- - uid: 22939
+ - uid: 26560
components:
- type: Transform
- pos: -65.5,10.5
+ pos: 73.5,47.5
parent: 2
- - uid: 22940
+ - uid: 26561
components:
- type: Transform
- pos: -36.5,-12.5
+ pos: 79.5,42.5
parent: 2
-- proto: IntercomEngineering
- entities:
- - uid: 8828
+ - uid: 26562
components:
- type: Transform
- pos: -60.5,13.5
+ pos: 68.5,62.5
parent: 2
- - uid: 22699
+ - uid: 26563
components:
- type: Transform
- pos: -51.5,32.5
+ pos: 80.5,33.5
parent: 2
- - uid: 22700
+ - uid: 26566
components:
- type: Transform
- pos: -36.5,47.5
+ pos: 71.5,62.5
parent: 2
-- proto: IntercomMedical
- entities:
- - uid: 1951
+ - uid: 26568
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,15.5
+ pos: 68.5,56.5
parent: 2
- - uid: 2054
+ - uid: 26570
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,8.5
+ pos: 73.5,62.5
parent: 2
- - uid: 22944
+ - uid: 26571
components:
- type: Transform
- pos: -24.5,14.5
+ pos: 68.5,60.5
parent: 2
- - uid: 22945
+ - uid: 26572
components:
- type: Transform
- pos: 28.5,14.5
+ pos: 68.5,44.5
parent: 2
-- proto: IntercomScience
- entities:
- - uid: 4041
+ - uid: 26583
components:
- type: Transform
- pos: 43.5,31.5
+ pos: 72.5,62.5
parent: 2
- - uid: 22594
+ - uid: 26584
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5,45.5
+ pos: 69.5,46.5
parent: 2
-- proto: IntercomSecurity
- entities:
- - uid: 3744
+ - uid: 26595
components:
- type: Transform
- pos: -9.5,31.5
+ pos: 97.5,21.5
parent: 2
- - uid: 15624
+ - uid: 26596
components:
- type: Transform
- pos: -28.5,41.5
+ pos: 90.5,32.5
parent: 2
- - uid: 19480
+ - uid: 26597
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,60.5
+ pos: 88.5,32.5
parent: 2
- - uid: 22654
+ - uid: 26601
components:
- type: Transform
- pos: -14.5,46.5
+ pos: 82.5,32.5
parent: 2
- - uid: 22657
+ - uid: 26602
components:
- type: Transform
- pos: -33.5,32.5
+ pos: 80.5,32.5
parent: 2
-- proto: IntercomService
- entities:
- - uid: 22941
+ - uid: 26603
components:
- type: Transform
- pos: -61.5,-0.5
+ pos: 82.5,31.5
parent: 2
- - uid: 22942
+ - uid: 26711
components:
- type: Transform
- pos: -56.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,66.5
parent: 2
- - uid: 22943
+ - uid: 26717
components:
- type: Transform
- pos: -71.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,67.5
parent: 2
-- proto: IntercomSupply
- entities:
- - uid: 22946
+ - uid: 26718
components:
- type: Transform
- pos: -28.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,67.5
parent: 2
- - uid: 22947
+ - uid: 26726
components:
- type: Transform
- pos: -10.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,78.5
parent: 2
-- proto: JanitorialTrolley
- entities:
- - uid: 1302
+ - uid: 26808
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,-2.5
+ pos: 83.5,75.5
parent: 2
- - uid: 18521
+ - uid: 27016
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,24.5
+ pos: 84.5,74.5
parent: 2
- - uid: 26843
+ - uid: 27043
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,24.5
+ pos: 86.5,66.5
parent: 2
-- proto: JanitorServiceLight
- entities:
- - uid: 1566
+ - uid: 27880
components:
- type: Transform
- pos: -13.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,58.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30596
- - uid: 9521
+ - uid: 27881
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,9.5
+ pos: 80.5,77.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 25537
- - uid: 24317
+ - uid: 27882
components:
- type: Transform
- pos: 32.5,21.5
+ pos: 100.5,14.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 26832
- - uid: 24343
+ - uid: 27885
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -47.5,-0.5
+ pos: 71.5,36.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 26827
- - uid: 25517
+ - uid: 27909
components:
- type: Transform
- pos: 3.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,34.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 25537
- - uid: 29623
+ - uid: 27941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,40.5
+ pos: 87.5,26.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 31151
- - uid: 30654
+ - uid: 27942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-16.5
+ pos: 87.5,25.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30673
- - uid: 30932
+ - uid: 27945
components:
- type: Transform
- pos: -51.5,9.5
+ pos: 87.5,24.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 30933
-- proto: JetpackBlueFilled
- entities:
- - uid: 6071
+ - uid: 28017
components:
- type: Transform
- pos: 17.448954,30.694199
+ rot: 1.5707963267948966 rad
+ pos: 68.5,50.5
parent: 2
- - uid: 6072
+ - uid: 28018
components:
- type: Transform
- pos: 20.48411,30.741074
+ pos: 92.5,20.5
parent: 2
-- proto: JetpackMini
- entities:
- - uid: 744
+ - uid: 28029
components:
- - type: MetaData
- name: paramedic mini jetpack
- type: Transform
- pos: 33.49797,3.7934327
+ pos: 91.5,20.5
parent: 2
- - type: GasTank
- toggleActionEntity: 1304
- - type: Jetpack
- toggleActionEntity: 1153
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 1153
- - 1304
- - uid: 1478
+ - uid: 28040
components:
- type: Transform
- pos: 33.52906,3.5668702
+ pos: 92.5,19.5
parent: 2
- - type: GasTank
- toggleActionEntity: 1779
- - type: Jetpack
- toggleActionEntity: 1652
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 1652
- - 1779
- - uid: 8617
+ - uid: 28041
components:
- type: Transform
- parent: 1789
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 8626
+ rot: 3.141592653589793 rad
+ pos: 93.5,12.5
+ parent: 2
+ - uid: 28043
components:
- type: Transform
- parent: 1790
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 8653
+ rot: 3.141592653589793 rad
+ pos: 92.5,12.5
+ parent: 2
+ - uid: 28044
components:
- type: Transform
- parent: 1791
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 10415
+ rot: 3.141592653589793 rad
+ pos: 91.5,13.5
+ parent: 2
+ - uid: 28046
components:
- - type: MetaData
- name: paramedic mini jetpack
- type: Transform
- pos: 33.474373,3.7934327
+ rot: 1.5707963267948966 rad
+ pos: 68.5,49.5
parent: 2
- - type: GasTank
- toggleActionEntity: 12982
- - type: Jetpack
- toggleActionEntity: 12246
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 12246
- - 12982
-- proto: JetpackMiniFilled
- entities:
- - uid: 6829
+ - uid: 28049
components:
- type: Transform
- pos: -13.42503,-42.64673
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
parent: 2
- - type: GasTank
- toggleActionEntity: 6825
- - type: Jetpack
- toggleActionEntity: 6789
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 6789
- - 6825
- - uid: 6830
+ - uid: 28072
components:
- type: Transform
- pos: -13.596905,-42.287354
+ rot: 1.5707963267948966 rad
+ pos: 69.5,47.5
parent: 2
- - type: GasTank
- toggleActionEntity: 17999
- - type: Jetpack
- toggleActionEntity: 15781
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 15781
- - 17999
-- proto: Jug
- entities:
- - uid: 1569
+ - uid: 28086
components:
- type: Transform
- pos: 15.675886,10.593053
+ rot: 1.5707963267948966 rad
+ pos: 70.5,48.5
parent: 2
- - uid: 5275
+ - uid: 28127
components:
- type: Transform
- pos: 42.85205,40.919205
+ rot: 3.141592653589793 rad
+ pos: 84.5,69.5
parent: 2
- - uid: 8373
+ - uid: 28695
components:
- type: Transform
- pos: -56.4882,-27.161545
+ rot: -1.5707963267948966 rad
+ pos: 85.5,68.5
parent: 2
-- proto: KitchenDeepFryer
- entities:
- - uid: 15939
+ - uid: 28716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,65.5
+ parent: 2
+ - uid: 28747
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -54.5,-23.5
+ pos: 75.5,34.5
parent: 2
-- proto: KitchenElectricGrill
- entities:
- - uid: 2988
+ - uid: 29049
components:
- type: Transform
- pos: -54.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,33.5
parent: 2
-- proto: KitchenKnife
- entities:
- - uid: 5706
+ - uid: 29052
components:
- type: Transform
- pos: 71.50539,29.491495
+ pos: 60.5,76.5
parent: 2
- - uid: 11234
+ - uid: 29053
components:
- type: Transform
- pos: -50.458363,-8.580531
+ rot: -1.5707963267948966 rad
+ pos: 86.5,74.5
parent: 2
- - uid: 11236
+ - uid: 29069
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.56383,-8.393031
+ pos: 79.5,28.5
parent: 2
-- proto: KitchenMicrowave
- entities:
- - uid: 1616
+ - uid: 29070
components:
- type: Transform
- pos: -5.5,9.5
+ pos: 77.5,28.5
parent: 2
- - uid: 2348
+ - uid: 29073
components:
- type: Transform
- pos: -54.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 83.5,76.5
parent: 2
- - uid: 5529
+ - uid: 29076
components:
- type: Transform
- pos: 37.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,70.5
parent: 2
- - uid: 6839
+ - uid: 29348
components:
- type: Transform
- pos: -16.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 87.5,66.5
parent: 2
- - uid: 7550
+ - uid: 29349
components:
- type: Transform
- pos: -53.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,65.5
parent: 2
- - uid: 9080
+ - uid: 29359
components:
- type: Transform
- pos: -48.5,23.5
+ pos: 67.5,38.5
parent: 2
- - uid: 15600
+ - uid: 29360
components:
- type: Transform
- pos: -10.5,28.5
+ pos: 66.5,39.5
parent: 2
- - uid: 18088
+ - uid: 29366
components:
- type: Transform
- pos: -18.5,56.5
+ pos: 67.5,44.5
parent: 2
- - uid: 18453
+ - uid: 29370
components:
- type: Transform
- pos: -62.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 84.5,70.5
+ parent: 2
+ - uid: 29372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,65.5
+ parent: 2
+ - uid: 29373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,65.5
parent: 2
- - uid: 20020
+ - uid: 29375
components:
- type: Transform
- pos: -73.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,64.5
parent: 2
-- proto: KitchenReagentGrinder
- entities:
- - uid: 1671
+ - uid: 29376
components:
- type: Transform
- pos: 19.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,65.5
parent: 2
- - uid: 3094
+ - uid: 29377
components:
- type: Transform
- pos: -54.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,69.5
parent: 2
- - uid: 3197
+ - uid: 29378
components:
- type: Transform
- pos: -52.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,64.5
parent: 2
- - uid: 5225
+ - uid: 29379
components:
- type: Transform
- pos: 28.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,66.5
parent: 2
- - uid: 5370
+ - uid: 29382
components:
- type: Transform
- pos: 57.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,66.5
parent: 2
- - uid: 6377
+ - uid: 29383
components:
- type: Transform
- pos: 12.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,75.5
parent: 2
- - uid: 7421
+ - uid: 29384
components:
- type: Transform
- pos: -54.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,74.5
parent: 2
- - uid: 34186
+ - uid: 29385
components:
- type: Transform
- pos: -18.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,66.5
parent: 2
-- proto: KitchenSpike
- entities:
- - uid: 15947
+ - uid: 29388
components:
- type: Transform
- pos: -60.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,67.5
parent: 2
- - uid: 30073
+ - uid: 29389
components:
- type: Transform
- pos: 90.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 84.5,76.5
parent: 2
-- proto: KnifePlastic
- entities:
- - uid: 7121
+ - uid: 29391
components:
- type: Transform
- pos: -35.964066,-18.336271
+ rot: -1.5707963267948966 rad
+ pos: 84.5,75.5
parent: 2
- - uid: 30249
+ - uid: 29394
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 46.46523,26.252356
+ pos: 86.5,67.5
parent: 2
-- proto: Lamp
- entities:
- - uid: 1988
+ - uid: 29401
components:
- type: Transform
- pos: 5.564293,27.945562
+ rot: -1.5707963267948966 rad
+ pos: 85.5,67.5
parent: 2
- - uid: 5433
+ - uid: 29402
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 49.510403,35.0432
+ pos: 83.5,70.5
parent: 2
-- proto: LampGold
- entities:
- - uid: 243
+ - uid: 29403
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.607967,-6.0515213
+ pos: 84.5,68.5
parent: 2
- - uid: 523
+ - uid: 29404
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.259224,10.1486845
+ pos: 69.5,35.5
parent: 2
- - uid: 529
+ - uid: 29405
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.317818,10.183841
+ pos: 91.5,28.5
parent: 2
- - uid: 536
+ - uid: 29416
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.259224,17.156498
+ pos: 99.5,13.5
parent: 2
- - uid: 538
+ - uid: 29418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.212349,17.097904
+ pos: 94.5,25.5
parent: 2
- - uid: 539
+ - uid: 29419
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.259224,17.121342
+ pos: 93.5,25.5
parent: 2
- - uid: 1220
+ - uid: 29420
components:
- type: Transform
- pos: 23.413853,-7.006628
+ pos: 94.5,24.5
parent: 2
- - uid: 1792
+ - uid: 29421
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.259224,17.14478
+ pos: 91.5,30.5
parent: 2
- - uid: 1793
+ - uid: 29422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.259224,17.109623
+ pos: 89.5,32.5
parent: 2
- - uid: 1794
+ - uid: 29423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.29438,10.090091
+ pos: 91.5,31.5
parent: 2
- - uid: 1803
+ - uid: 29579
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.270943,10.066653
+ pos: 105.5,59.5
parent: 2
- - uid: 1804
+ - uid: 29580
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.306099,10.160403
+ pos: 104.5,62.5
parent: 2
- - uid: 5585
+ - uid: 29581
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.313263,31.09713
+ pos: 103.5,63.5
parent: 2
- - uid: 7808
+ - uid: 29637
components:
- type: Transform
- pos: 7.788614,-11.02332
+ pos: 68.5,36.5
parent: 2
- - uid: 8383
+ - uid: 29638
components:
- type: Transform
- pos: 12.438042,-10.955159
+ pos: 70.5,45.5
parent: 2
- - uid: 15109
+ - uid: 29729
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.800636,52.934383
+ pos: 69.5,55.5
parent: 2
- - uid: 16553
+ - uid: 29730
components:
- type: Transform
- pos: -23.54306,7.931027
+ pos: 71.5,46.5
parent: 2
- - uid: 18142
+ - uid: 29733
components:
- type: Transform
- pos: -20.993675,63.067955
+ rot: 3.141592653589793 rad
+ pos: 100.5,15.5
parent: 2
- - uid: 22560
+ - uid: 29734
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 65.775536,28.148746
+ pos: 92.5,13.5
parent: 2
-- proto: LampInterrogator
- entities:
- - uid: 15549
+ - uid: 29764
components:
- type: Transform
- pos: -21.515724,33.915157
+ rot: 1.5707963267948966 rad
+ pos: 69.5,48.5
parent: 2
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 9707
- - uid: 15550
+ - uid: 29770
components:
- type: Transform
- pos: -17.40635,33.868282
+ pos: 98.5,21.5
parent: 2
- - type: ContainerContainer
- containers:
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: 14086
-- proto: LandMineExplosive
- entities:
- - uid: 35858
+ - uid: 29784
components:
- type: Transform
- pos: 24.495815,38.053772
+ pos: 55.5,59.5
parent: 2
- - uid: 35859
+ - uid: 29785
components:
- type: Transform
- pos: 30.462717,39.085022
+ pos: 76.5,77.5
parent: 2
- - uid: 35860
+ - uid: 29792
components:
- type: Transform
- pos: 27.03303,35.460022
+ pos: 103.5,57.5
parent: 2
- - uid: 35861
+ - uid: 29800
components:
- type: Transform
- pos: 29.525217,41.585022
+ rot: 1.5707963267948966 rad
+ pos: 104.5,51.5
parent: 2
- - uid: 35862
+ - uid: 29801
components:
- type: Transform
- pos: 25.501205,42.655334
+ pos: 104.5,49.5
parent: 2
-- proto: Lantern
- entities:
- - uid: 6113
+ - uid: 29803
components:
- type: Transform
- pos: 58.226753,29.909676
+ pos: 63.5,77.5
parent: 2
- - uid: 30065
+ - uid: 29809
components:
- type: Transform
- pos: 90.41451,38.97713
+ pos: 103.5,42.5
parent: 2
-- proto: LargeBeaker
- entities:
- - uid: 1291
+ - uid: 29816
components:
- type: Transform
- pos: 21.212381,-1.2898262
+ pos: 101.5,37.5
parent: 2
- - uid: 1567
+ - uid: 29817
components:
- type: Transform
- pos: 15.374666,10.7025585
+ pos: 101.5,36.5
parent: 2
- - uid: 1568
+ - uid: 29818
components:
- type: Transform
- pos: 18.384975,14.5659685
+ pos: 101.5,35.5
parent: 2
- - uid: 2167
+ - uid: 29826
components:
- type: Transform
- pos: 12.546215,-0.81567454
+ pos: 105.5,60.5
parent: 2
- - uid: 2190
+ - uid: 29827
components:
- type: Transform
- pos: 15.598101,-9.444521
+ pos: 105.5,58.5
parent: 2
- - uid: 2191
+ - uid: 29839
components:
- type: Transform
- pos: 15.646978,-9.303896
+ pos: 105.5,23.5
parent: 2
- - uid: 18495
+ - uid: 29840
components:
- type: Transform
- pos: -53.88518,0.6684246
+ pos: 105.5,22.5
parent: 2
- - uid: 18496
+ - uid: 29841
components:
- type: Transform
- pos: -51.63518,0.8715496
+ pos: 105.5,21.5
parent: 2
- - uid: 22438
+ - uid: 29848
components:
- type: Transform
- pos: 15.381287,-8.16301
+ rot: -1.5707963267948966 rad
+ pos: 62.5,83.5
parent: 2
-- proto: LeftArmSkeleton
- entities:
- - uid: 33566
+ - uid: 29849
components:
- type: Transform
- pos: 91.29744,27.159647
+ rot: -1.5707963267948966 rad
+ pos: 105.5,12.5
parent: 2
-- proto: LeftFootSkeleton
- entities:
- - uid: 33568
+ - uid: 29851
components:
- type: Transform
- pos: 91.95369,26.519022
+ pos: 105.5,61.5
parent: 2
-- proto: LeftLegSkeleton
- entities:
- - uid: 33565
+ - uid: 29865
components:
- type: Transform
- pos: 91.17244,27.315897
+ rot: -1.5707963267948966 rad
+ pos: 101.5,8.5
parent: 2
- - uid: 33567
+ - uid: 29866
components:
- type: Transform
- pos: 91.92244,26.675272
+ rot: -1.5707963267948966 rad
+ pos: 106.5,14.5
parent: 2
-- proto: LegionnaireBonfire
- entities:
- - uid: 30066
+ - uid: 29867
components:
- type: Transform
- pos: 84.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 100.5,8.5
parent: 2
-- proto: LightBulbBroken
- entities:
- - uid: 7071
+ - uid: 29877
components:
- type: Transform
- pos: -30.60696,-36.862522
+ rot: 3.141592653589793 rad
+ pos: 97.5,7.5
parent: 2
-- proto: Lighter
- entities:
- - uid: 9329
+ - uid: 29880
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -33.09687,33.581814
+ pos: 98.5,7.5
parent: 2
- - uid: 15265
+ - uid: 29882
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5225296,54.56166
+ pos: 103.5,9.5
parent: 2
- - uid: 36113
+ - uid: 29883
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.711353,37.462933
+ pos: 102.5,8.5
parent: 2
-- proto: LightReplacer
- entities:
- - uid: 18531
+ - uid: 29884
components:
- type: Transform
- pos: -37.59049,24.747713
+ rot: -1.5707963267948966 rad
+ pos: 104.5,10.5
parent: 2
- - uid: 18532
+ - uid: 29887
components:
- type: Transform
- pos: -37.37174,24.685213
+ pos: 105.5,13.5
parent: 2
-- proto: LightTubeBroken
- entities:
- - uid: 7069
+ - uid: 29888
components:
- type: Transform
- pos: -32.47024,-31.249239
+ rot: -1.5707963267948966 rad
+ pos: 104.5,11.5
parent: 2
- - uid: 7070
+ - uid: 29892
components:
- type: Transform
- pos: -27.466335,-37.225803
+ pos: 62.5,78.5
parent: 2
-- proto: LockerAtmosphericsFilled
- entities:
- - uid: 5996
+ - uid: 29900
components:
- type: Transform
- pos: -49.5,35.5
+ pos: 62.5,77.5
parent: 2
- - uid: 5998
+ - uid: 29902
components:
- type: Transform
- pos: -47.5,35.5
+ pos: 103.5,25.5
parent: 2
- - uid: 6272
+ - uid: 29903
components:
- type: Transform
- pos: -46.5,35.5
+ pos: 103.5,26.5
parent: 2
- - uid: 6920
+ - uid: 29904
components:
- type: Transform
- pos: -48.5,35.5
+ pos: 104.5,24.5
parent: 2
-- proto: LockerBoozeFilled
- entities:
- - uid: 5751
+ - uid: 29909
components:
- type: Transform
- pos: 22.5,-23.5
+ pos: 106.5,20.5
parent: 2
- - uid: 22587
+ - uid: 29914
components:
- type: Transform
- pos: 26.5,-23.5
+ pos: 102.5,29.5
parent: 2
-- proto: LockerBotanistFilled
- entities:
- - uid: 3075
+ - uid: 29915
components:
- type: Transform
- pos: -54.5,-1.5
+ pos: 102.5,28.5
parent: 2
- - uid: 3076
+ - uid: 29916
components:
- type: Transform
- pos: -55.5,-1.5
+ pos: 102.5,27.5
parent: 2
- - uid: 3083
+ - uid: 29918
components:
- type: Transform
- pos: -53.5,-1.5
+ pos: 101.5,30.5
parent: 2
-- proto: LockerBrigmedicFilledHardsuit
- entities:
- - uid: 18358
+ - uid: 29919
components:
- type: Transform
- pos: -43.5,58.5
+ pos: 101.5,31.5
parent: 2
-- proto: LockerCaptainFilled
- entities:
- - uid: 14130
+ - uid: 29920
components:
- type: Transform
- pos: 21.5,48.5
+ pos: 100.5,32.5
parent: 2
-- proto: LockerChemistryFilled
- entities:
- - uid: 17869
+ - uid: 29921
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: 100.5,33.5
parent: 2
- - type: DamageOnHighSpeedImpact
- lastHit: 0
- - uid: 34976
+ - uid: 29922
components:
- type: Transform
- pos: 22.5,-1.5
+ pos: 100.5,34.5
parent: 2
-- proto: LockerChiefEngineerFilled
- entities:
- - uid: 8808
+ - uid: 29938
components:
- type: Transform
- pos: -62.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 104.5,50.5
parent: 2
-- proto: LockerChiefMedicalOfficerFilled
- entities:
- - uid: 2721
+ - uid: 29999
components:
- type: Transform
- pos: -8.5,-9.5
+ pos: 102.5,57.5
parent: 2
-- proto: LockerClown
- entities:
- - uid: 29692
+ - uid: 30012
components:
- type: Transform
- pos: -77.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,84.5
parent: 2
-- proto: LockerDetectiveFilled
- entities:
- - uid: 16585
+ - uid: 30070
components:
- type: Transform
- pos: -36.5,35.5
+ pos: 98.5,64.5
parent: 2
-- proto: LockerElectricalSuppliesFilled
- entities:
- - uid: 3684
+ - uid: 30099
components:
- type: Transform
- pos: -52.5,37.5
+ pos: 97.5,65.5
parent: 2
-- proto: LockerEngineerFilled
- entities:
- - uid: 2180
+ - uid: 30119
components:
- type: Transform
- pos: -56.5,33.5
+ pos: 83.5,77.5
parent: 2
- - uid: 6824
+ - uid: 30120
components:
- type: Transform
- pos: -55.5,37.5
+ pos: 84.5,77.5
parent: 2
- - uid: 9021
+ - uid: 30122
components:
- type: Transform
- pos: -57.5,36.5
+ pos: 98.5,69.5
parent: 2
- - uid: 9024
+ - uid: 30123
components:
- type: Transform
- pos: -57.5,33.5
+ pos: 98.5,70.5
parent: 2
- - uid: 9031
+ - uid: 30128
components:
- type: Transform
- pos: -57.5,35.5
+ pos: 79.5,75.5
parent: 2
-- proto: LockerEvidence
- entities:
- - uid: 14087
+ - uid: 30129
components:
- type: Transform
- pos: -34.5,31.5
+ pos: 78.5,75.5
parent: 2
- - uid: 14088
+ - uid: 30138
components:
- type: Transform
- pos: -32.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,47.5
parent: 2
- - uid: 15487
+ - uid: 30142
components:
- type: Transform
- pos: -34.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,47.5
parent: 2
- - uid: 16525
+ - uid: 30150
components:
- type: Transform
- pos: -32.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,33.5
parent: 2
-- proto: LockerForensicMantisFilled
- entities:
- - uid: 8608
+ - uid: 30151
components:
- type: Transform
- pos: 43.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,32.5
parent: 2
-- proto: LockerFreezer
- entities:
- - uid: 3095
+ - uid: 30417
components:
- type: Transform
- pos: -52.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 93.5,7.5
parent: 2
- - uid: 7559
+ - uid: 30419
components:
- type: Transform
- pos: -53.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 92.5,7.5
parent: 2
-- proto: LockerFreezerBase
- entities:
- - uid: 16003
+ - uid: 30422
components:
- type: Transform
- pos: -23.5,57.5
+ rot: 3.141592653589793 rad
+ pos: 91.5,7.5
parent: 2
-- proto: LockerFreezerVaultFilled
- entities:
- - uid: 26480
+ - uid: 30430
components:
- type: Transform
- pos: 28.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,7.5
parent: 2
-- proto: LockerHeadOfPersonnelFilled
- entities:
- - uid: 1978
+ - uid: 30446
components:
- type: Transform
- pos: 13.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,7.5
parent: 2
-- proto: LockerHeadOfSecurityFilled
- entities:
- - uid: 15776
+ - uid: 30656
components:
- type: Transform
- pos: -8.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 97.5,22.5
parent: 2
-- proto: LockerMedicalFilled
- entities:
- - uid: 344
+ - uid: 30658
components:
- type: Transform
- pos: -23.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,20.5
parent: 2
- - uid: 1680
+ - uid: 30693
components:
- type: Transform
- pos: -10.5,15.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,7.5
parent: 2
- - uid: 1759
+ - uid: 30701
components:
- type: Transform
- pos: -26.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 98.5,22.5
parent: 2
- - uid: 1784
+ - uid: 30702
components:
- type: Transform
- pos: -20.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,23.5
parent: 2
- - uid: 1785
+ - uid: 30706
components:
- type: Transform
- pos: -17.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,24.5
parent: 2
- - uid: 1786
+ - uid: 30724
components:
- type: Transform
- pos: -17.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 94.5,26.5
parent: 2
- - uid: 1787
+ - uid: 30726
components:
- type: Transform
- pos: -20.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 94.5,27.5
parent: 2
- - uid: 1788
+ - uid: 30751
components:
- type: Transform
- pos: -23.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 93.5,28.5
parent: 2
- - uid: 31477
+ - uid: 30752
components:
- type: Transform
- pos: -10.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 92.5,29.5
parent: 2
-- proto: LockerMedicineFilled
- entities:
- - uid: 7601
+ - uid: 30823
components:
- type: Transform
- pos: -44.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 92.5,30.5
parent: 2
-- proto: LockerMime
- entities:
- - uid: 28611
+ - uid: 30858
components:
- type: Transform
- pos: -81.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 91.5,8.5
parent: 2
-- proto: LockerParamedicFilled
- entities:
- - uid: 1789
+ - uid: 30976
components:
- type: Transform
- pos: -26.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 88.5,8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 8617
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1790
+ - uid: 31053
components:
- type: Transform
- pos: -29.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 8626
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 1791
+ - uid: 31067
components:
- type: Transform
- pos: -29.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,8.5
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- 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:
- - 8653
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
-- proto: LockerQuarterMasterFilled
- entities:
- - uid: 15891
+ - uid: 31159
components:
- type: Transform
- pos: -26.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 94.5,7.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
-- proto: LockerResearchDirectorFilled
- entities:
- - uid: 6848
+ - uid: 31217
components:
- type: Transform
- pos: 49.5,29.5
+ pos: 92.5,14.5
parent: 2
-- proto: LockerSalvageSpecialistFilledHardsuit
- entities:
- - uid: 3688
+ - uid: 31226
components:
- type: Transform
- pos: -9.5,-37.5
+ pos: 93.5,36.5
parent: 2
- - uid: 6658
+ - uid: 31227
components:
- type: Transform
- pos: -12.5,-37.5
+ pos: 95.5,33.5
parent: 2
- - uid: 6822
+ - uid: 31303
components:
- type: Transform
- pos: -13.5,-37.5
+ pos: 96.5,33.5
parent: 2
- - uid: 21013
+ - uid: 31310
components:
- type: Transform
- pos: -11.5,-37.5
+ pos: 97.5,29.5
parent: 2
- - uid: 21061
+ - uid: 31311
components:
- type: Transform
- pos: -10.5,-37.5
+ pos: 97.5,30.5
parent: 2
-- proto: LockerScienceFilled
- entities:
- - uid: 4032
+ - uid: 31313
components:
- type: Transform
- pos: 37.5,26.5
+ pos: 96.5,31.5
parent: 2
- - uid: 4033
+ - uid: 31314
components:
- type: Transform
- pos: 38.5,26.5
+ pos: 97.5,31.5
parent: 2
- - uid: 4037
+ - uid: 31316
components:
- type: Transform
- pos: 38.5,23.5
+ pos: 96.5,30.5
parent: 2
- - uid: 4039
+ - uid: 31317
components:
- type: Transform
- pos: 39.5,23.5
+ pos: 97.5,32.5
parent: 2
- - uid: 4042
+ - uid: 31319
components:
- type: Transform
- pos: 37.5,23.5
+ pos: 96.5,32.5
parent: 2
-- proto: LockerSecurityFilled
- entities:
- - uid: 3737
+ - uid: 31320
components:
- type: Transform
- pos: -4.5,41.5
+ pos: 95.5,31.5
parent: 2
- - uid: 3745
+ - uid: 31321
components:
- type: Transform
- pos: -4.5,43.5
+ pos: 95.5,32.5
parent: 2
- - uid: 3746
+ - uid: 31322
components:
- type: Transform
- pos: -4.5,42.5
+ pos: 94.5,32.5
parent: 2
- - uid: 15568
+ - uid: 31323
components:
- type: Transform
- pos: -6.5,41.5
+ pos: 94.5,33.5
parent: 2
- - uid: 15569
+ - uid: 31324
components:
- type: Transform
- pos: -6.5,43.5
+ pos: 94.5,34.5
parent: 2
- - uid: 15570
+ - uid: 31326
components:
- type: Transform
- pos: -6.5,42.5
+ pos: 94.5,35.5
parent: 2
-- proto: LockerWallMedical
- entities:
- - uid: 2058
+ - uid: 31412
components:
- type: Transform
- pos: 13.5,8.5
+ pos: 96.5,35.5
parent: 2
- - uid: 2059
+ - uid: 31413
components:
- type: Transform
- pos: 28.5,8.5
+ pos: 95.5,34.5
parent: 2
- - uid: 7810
+ - uid: 31606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-6.5
+ pos: 95.5,35.5
parent: 2
-- proto: LockerWallMedicalFilled
- entities:
- - uid: 14177
+ - uid: 31609
components:
- type: Transform
- pos: 13.5,44.5
+ pos: 96.5,34.5
parent: 2
-- proto: LockerWardenFilled
- entities:
- - uid: 15712
+ - uid: 31611
components:
- type: Transform
- pos: -30.5,39.5
+ pos: 95.5,36.5
parent: 2
-- proto: LockerWeldingSuppliesFilled
- entities:
- - uid: 9606
+ - uid: 31612
components:
- type: Transform
- pos: -49.5,31.5
+ pos: 93.5,35.5
parent: 2
- - uid: 9607
+ - uid: 31613
components:
- type: Transform
- pos: -45.5,31.5
+ pos: 94.5,36.5
parent: 2
- - uid: 30652
+ - uid: 31614
components:
- type: Transform
- pos: -25.5,-28.5
+ pos: 92.5,37.5
parent: 2
-- proto: MachineAnomalyGenerator
- entities:
- - uid: 2232
+ - uid: 31616
components:
- type: Transform
- pos: 46.5,39.5
+ pos: 93.5,37.5
parent: 2
-- proto: MachineAnomalyVessel
- entities:
- - uid: 38
+ - uid: 31617
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,36.5
+ pos: 92.5,36.5
parent: 2
- - uid: 23134
+ - uid: 31618
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,36.5
+ pos: 92.5,36.5
parent: 2
-- proto: MachineAPE
- entities:
- - uid: 4085
+ - uid: 31621
components:
- type: Transform
- pos: 45.5,36.5
+ pos: 93.5,38.5
parent: 2
- - uid: 4108
+ - uid: 31622
components:
- type: Transform
- pos: 46.5,36.5
+ pos: 94.5,37.5
parent: 2
- - uid: 4109
+ - uid: 31623
components:
- type: Transform
- pos: 47.5,36.5
+ pos: 92.5,43.5
parent: 2
-- proto: MachineArtifactAnalyzer
- entities:
- - uid: 2837
+ - uid: 31624
components:
- type: Transform
- pos: 39.5,55.5
+ pos: 92.5,44.5
parent: 2
- - uid: 9214
+ - uid: 31625
components:
- type: Transform
- pos: 45.5,55.5
+ pos: 93.5,43.5
parent: 2
-- proto: MachineCentrifuge
- entities:
- - uid: 2172
+ - uid: 31889
components:
- type: Transform
- pos: 17.5,2.5
+ pos: 92.5,45.5
parent: 2
- - uid: 23107
+ - uid: 32054
components:
- type: Transform
- pos: 21.5,-5.5
+ pos: 98.5,28.5
parent: 2
-- proto: MachineElectrolysisUnit
- entities:
- - uid: 3058
+ - uid: 32055
components:
- type: Transform
- pos: 17.5,3.5
+ pos: 98.5,26.5
parent: 2
- - uid: 24725
+ - uid: 32056
components:
- type: Transform
- pos: 21.5,-4.5
+ pos: 99.5,26.5
parent: 2
-- proto: MachineFrameDestroyed
- entities:
- - uid: 7036
+ - uid: 32057
components:
- type: Transform
- pos: -25.5,-30.5
+ pos: 99.5,25.5
parent: 2
- - uid: 7037
+ - uid: 32064
components:
- type: Transform
- pos: -26.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,79.5
parent: 2
- - uid: 7038
+ - uid: 32069
components:
- type: Transform
- pos: -32.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,79.5
parent: 2
- - uid: 7039
+ - uid: 32070
components:
- type: Transform
- pos: -25.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,78.5
parent: 2
-- proto: MagazineBoxPistol
- entities:
- - uid: 16532
+ - uid: 32432
components:
- type: Transform
- pos: -28.439362,47.629753
+ pos: 75.5,53.5
parent: 2
-- proto: MagazineBoxPistolPractice
- entities:
- - uid: 10567
+ - uid: 32433
components:
- type: Transform
- pos: -31.62954,45.601925
+ pos: 74.5,53.5
parent: 2
- - uid: 17026
+ - uid: 32452
components:
- type: Transform
- pos: -33.301414,39.445675
+ pos: 74.5,54.5
parent: 2
-- proto: MagazineBoxPistolRubber
- entities:
- - uid: 16534
+ - uid: 32453
components:
- type: Transform
- pos: -28.762278,47.661003
+ pos: 75.5,54.5
parent: 2
-- proto: MagazinePistolSubMachineGunTopMounted
- entities:
- - uid: 22261
+ - uid: 32551
components:
- type: Transform
- parent: 22113
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 22262
+ rot: 1.5707963267948966 rad
+ pos: 83.5,45.5
+ parent: 2
+ - uid: 32552
components:
- type: Transform
- parent: 22113
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 22263
+ rot: 1.5707963267948966 rad
+ pos: 82.5,45.5
+ parent: 2
+ - uid: 32557
components:
- type: Transform
- parent: 22113
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: MailingUnit
- entities:
- - uid: 1035
+ rot: 1.5707963267948966 rad
+ pos: 82.5,44.5
+ parent: 2
+ - uid: 32558
components:
- - type: MetaData
- name: secure storage mailing unit
- type: Transform
- pos: 34.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,44.5
parent: 2
- - type: MailingUnit
- tag: Secure Storage
- - uid: 1385
+ - uid: 32559
components:
- - type: MetaData
- desc: Send sensitive belongings to the storeroom above using this mailing unit.
- name: morgue mailing unit
- type: Transform
- pos: 34.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,44.5
parent: 2
- - type: MailingUnit
- tag: Morgue
-- proto: MailTeleporter
- entities:
- - uid: 6530
+ - uid: 32560
components:
- type: Transform
- pos: -10.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,43.5
parent: 2
-- proto: MaintenanceFluffSpawner
- entities:
- - uid: 6415
+ - uid: 32561
components:
- type: Transform
- pos: 43.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,43.5
parent: 2
- - uid: 6417
+ - uid: 32562
components:
- type: Transform
- pos: 41.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,43.5
parent: 2
- - uid: 6418
+ - uid: 32563
components:
- type: Transform
- pos: 47.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,42.5
parent: 2
- - uid: 12113
+ - uid: 32569
components:
- type: Transform
- pos: -1.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,36.5
parent: 2
- - uid: 20955
+ - uid: 32570
components:
- type: Transform
- pos: 80.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,33.5
parent: 2
- - uid: 20964
+ - uid: 32571
components:
- type: Transform
- pos: -6.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,34.5
parent: 2
- - uid: 20965
+ - uid: 32572
components:
- type: Transform
- pos: -30.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,33.5
parent: 2
- - uid: 20966
+ - uid: 32576
components:
- type: Transform
- pos: -26.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,42.5
parent: 2
- - uid: 20967
+ - uid: 32577
components:
- type: Transform
- pos: -25.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,41.5
parent: 2
- - uid: 20968
+ - uid: 32584
components:
- type: Transform
- pos: -32.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,36.5
parent: 2
- - uid: 20969
+ - uid: 32585
components:
- type: Transform
- pos: -32.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,37.5
parent: 2
- - uid: 20981
+ - uid: 32586
components:
- type: Transform
- pos: -64.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,35.5
parent: 2
- - uid: 20982
+ - uid: 32587
components:
- type: Transform
- pos: -65.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,35.5
parent: 2
- - uid: 20983
+ - uid: 32588
components:
- type: Transform
- pos: -64.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,36.5
parent: 2
- - uid: 20984
+ - uid: 32589
components:
- type: Transform
- pos: -69.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,35.5
parent: 2
- - uid: 20986
+ - uid: 32591
components:
- type: Transform
- pos: -41.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,34.5
parent: 2
- - uid: 20987
+ - uid: 32592
components:
- type: Transform
- pos: -35.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,33.5
parent: 2
- - uid: 20989
+ - uid: 32593
components:
- type: Transform
- pos: -1.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,33.5
parent: 2
- - uid: 20990
+ - uid: 32594
components:
- type: Transform
- pos: -2.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,34.5
parent: 2
- - uid: 20993
+ - uid: 32602
components:
- type: Transform
- pos: 20.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,50.5
parent: 2
- - uid: 20994
+ - uid: 32604
components:
- type: Transform
- pos: 24.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,51.5
parent: 2
- - uid: 20995
+ - uid: 32605
components:
- type: Transform
- pos: 6.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,51.5
parent: 2
- - uid: 20996
+ - uid: 32606
components:
- type: Transform
- pos: 34.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,51.5
parent: 2
- - uid: 20999
+ - uid: 32607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,52.5
+ parent: 2
+ - uid: 32609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,52.5
+ parent: 2
+ - uid: 32611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,53.5
+ parent: 2
+ - uid: 32614
components:
- type: Transform
- pos: 53.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,53.5
parent: 2
- - uid: 21001
+ - uid: 32617
components:
- type: Transform
- pos: 78.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,54.5
parent: 2
- - uid: 21002
+ - uid: 32619
components:
- type: Transform
- pos: 78.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,52.5
parent: 2
- - uid: 21003
+ - uid: 32620
components:
- type: Transform
- pos: 71.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,52.5
parent: 2
- - uid: 21004
+ - uid: 32624
components:
- type: Transform
- pos: 65.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,51.5
parent: 2
- - uid: 21005
+ - uid: 32628
components:
- type: Transform
- pos: 53.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,50.5
parent: 2
- - uid: 21041
+ - uid: 32630
components:
- type: Transform
- pos: -31.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,50.5
parent: 2
- - uid: 21042
+ - uid: 32632
components:
- type: Transform
- pos: -31.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,50.5
parent: 2
- - uid: 21043
+ - uid: 32634
components:
- type: Transform
- pos: -34.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,49.5
parent: 2
- - uid: 21044
+ - uid: 32665
components:
- type: Transform
- pos: -32.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,53.5
parent: 2
- - uid: 21047
+ - uid: 32667
components:
- type: Transform
- pos: 36.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,54.5
parent: 2
- - uid: 21048
+ - uid: 32668
components:
- type: Transform
- pos: 37.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,54.5
parent: 2
- - uid: 21049
+ - uid: 32669
components:
- type: Transform
- pos: 39.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,55.5
parent: 2
- - uid: 21051
+ - uid: 32672
components:
- type: Transform
- pos: 38.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,53.5
parent: 2
- - uid: 21052
+ - uid: 32673
components:
- type: Transform
- pos: 38.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,53.5
parent: 2
- - uid: 22610
+ - uid: 32675
components:
- type: Transform
- pos: -31.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,54.5
parent: 2
- - uid: 23010
+ - uid: 32676
components:
- type: Transform
- pos: 83.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,55.5
parent: 2
- - uid: 24801
+ - uid: 32683
components:
- type: Transform
- pos: 31.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,55.5
parent: 2
- - uid: 32495
+ - uid: 32693
components:
- type: Transform
- pos: 75.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,60.5
parent: 2
- - uid: 32496
+ - uid: 32694
components:
- type: Transform
- pos: 72.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,60.5
parent: 2
- - uid: 32497
+ - uid: 32695
components:
- type: Transform
- pos: 64.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,60.5
parent: 2
- - uid: 32498
+ - uid: 32696
components:
- type: Transform
- pos: 56.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,60.5
parent: 2
- - uid: 32499
+ - uid: 32725
components:
- type: Transform
- pos: 51.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,60.5
parent: 2
- - uid: 32500
+ - uid: 32726
components:
- type: Transform
- pos: 58.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,60.5
parent: 2
- - uid: 32501
+ - uid: 32727
components:
- type: Transform
- pos: 71.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,61.5
parent: 2
- - uid: 32502
+ - uid: 32728
components:
- type: Transform
- pos: 58.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,61.5
parent: 2
- - uid: 32503
+ - uid: 32729
components:
- type: Transform
- pos: 71.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,61.5
parent: 2
- - uid: 32504
+ - uid: 32730
components:
- type: Transform
- pos: 80.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,59.5
parent: 2
- - uid: 32505
+ - uid: 32761
components:
- type: Transform
- pos: 83.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,58.5
parent: 2
- - uid: 32506
+ - uid: 32762
components:
- type: Transform
- pos: 89.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,59.5
parent: 2
- - uid: 32507
+ - uid: 32763
components:
- type: Transform
- pos: 95.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,58.5
parent: 2
- - uid: 32508
+ - uid: 32769
components:
- type: Transform
- pos: 84.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,58.5
parent: 2
- - uid: 32509
+ - uid: 32770
components:
- type: Transform
- pos: 90.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,58.5
parent: 2
- - uid: 32510
+ - uid: 32771
components:
- type: Transform
- pos: 97.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,58.5
parent: 2
- - uid: 32511
+ - uid: 32772
components:
- type: Transform
- pos: 96.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,58.5
parent: 2
- - uid: 32512
+ - uid: 32773
components:
- type: Transform
- pos: 97.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,58.5
parent: 2
- - uid: 32513
+ - uid: 32774
components:
- type: Transform
- pos: 88.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,58.5
parent: 2
- - uid: 32514
+ - uid: 32775
components:
- type: Transform
- pos: 85.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,57.5
parent: 2
- - uid: 32515
+ - uid: 32776
components:
- type: Transform
- pos: 97.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,57.5
parent: 2
-- proto: MaintenancePlantSpawner
- entities:
- - uid: 20956
+ - uid: 32777
components:
- type: Transform
- pos: 11.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,57.5
parent: 2
- - uid: 20977
+ - uid: 32778
components:
- type: Transform
- pos: -62.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,57.5
parent: 2
- - uid: 20978
+ - uid: 32779
components:
- type: Transform
- pos: -64.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,57.5
parent: 2
- - uid: 20979
+ - uid: 32780
components:
- type: Transform
- pos: -65.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,56.5
parent: 2
- - uid: 21006
+ - uid: 32781
components:
- type: Transform
- pos: 69.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,56.5
parent: 2
- - uid: 21007
+ - uid: 32784
components:
- type: Transform
- pos: 78.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,57.5
parent: 2
- - uid: 21009
+ - uid: 32787
components:
- type: Transform
- pos: 26.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,55.5
parent: 2
- - uid: 21016
+ - uid: 32788
components:
- type: Transform
- pos: -55.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,55.5
parent: 2
- - uid: 29297
+ - uid: 32791
components:
- type: Transform
- pos: -26.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,59.5
parent: 2
- - uid: 32517
+ - uid: 32792
components:
- type: Transform
- pos: 85.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,60.5
parent: 2
- - uid: 32518
+ - uid: 32793
components:
- type: Transform
- pos: 80.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,61.5
parent: 2
- - uid: 32519
+ - uid: 32794
components:
- type: Transform
- pos: 74.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,62.5
parent: 2
- - uid: 32520
+ - uid: 32795
components:
- type: Transform
- pos: 58.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,63.5
parent: 2
- - uid: 32521
+ - uid: 32796
components:
- type: Transform
- pos: 65.5,70.5
+ rot: 1.5707963267948966 rad
+ pos: 82.5,59.5
parent: 2
-- proto: MaintenanceToolSpawner
- entities:
- - uid: 5401
+ - uid: 32797
components:
- type: Transform
- pos: 55.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,59.5
parent: 2
- - uid: 5402
+ - uid: 32798
components:
- type: Transform
- pos: 57.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,59.5
parent: 2
- - uid: 5403
+ - uid: 32799
components:
- type: Transform
- pos: 60.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,60.5
parent: 2
- - uid: 5404
+ - uid: 32800
components:
- type: Transform
- pos: 61.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,61.5
parent: 2
- - uid: 6413
+ - uid: 32801
components:
- type: Transform
- pos: 52.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,62.5
parent: 2
- - uid: 6414
+ - uid: 32802
components:
- type: Transform
- pos: 46.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,63.5
parent: 2
- - uid: 19948
+ - uid: 32803
components:
- type: Transform
- pos: 86.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,64.5
parent: 2
- - uid: 20957
+ - uid: 32804
components:
- type: Transform
- pos: 6.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,65.5
parent: 2
- - uid: 20959
+ - uid: 32805
components:
- type: Transform
- pos: 7.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,66.5
parent: 2
- - uid: 20975
+ - uid: 32808
components:
- type: Transform
- pos: -62.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,65.5
parent: 2
- - uid: 21040
+ - uid: 32809
components:
- type: Transform
- pos: -61.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,66.5
parent: 2
- - uid: 21050
+ - uid: 32814
components:
- type: Transform
- pos: 39.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,73.5
parent: 2
- - uid: 21055
+ - uid: 32815
components:
- type: Transform
- pos: 40.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,75.5
parent: 2
- - uid: 21063
+ - uid: 32816
components:
- type: Transform
- pos: -32.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,76.5
parent: 2
- - uid: 23299
+ - uid: 32817
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,76.5
parent: 2
- - uid: 29299
+ - uid: 32819
components:
- type: Transform
- pos: 82.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,76.5
parent: 2
- - uid: 29803
+ - uid: 32827
components:
- type: Transform
- pos: 86.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,68.5
parent: 2
- - uid: 32463
+ - uid: 32829
components:
- type: Transform
- pos: 71.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,68.5
parent: 2
- - uid: 32464
+ - uid: 32838
components:
- type: Transform
- pos: 71.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,66.5
parent: 2
- - uid: 32470
+ - uid: 32839
components:
- type: Transform
- pos: 64.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,65.5
parent: 2
- - uid: 32474
+ - uid: 32840
components:
- type: Transform
- pos: 64.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,67.5
parent: 2
- - uid: 32476
+ - uid: 32841
components:
- type: Transform
- pos: 53.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,67.5
parent: 2
- - uid: 32477
+ - uid: 32842
components:
- type: Transform
- pos: 72.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,68.5
parent: 2
- - uid: 32478
+ - uid: 32843
components:
- type: Transform
- pos: 78.5,59.5
+ pos: 61.5,77.5
parent: 2
- - uid: 32479
+ - uid: 32853
components:
- type: Transform
- pos: 68.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,62.5
parent: 2
- - uid: 32480
+ - uid: 32854
components:
- type: Transform
- pos: 80.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,63.5
parent: 2
- - uid: 32481
+ - uid: 32856
components:
- type: Transform
- pos: 83.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,68.5
parent: 2
- - uid: 32482
+ - uid: 32857
components:
- type: Transform
- pos: 74.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,66.5
parent: 2
- - uid: 32483
+ - uid: 32858
components:
- type: Transform
- pos: 79.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,71.5
parent: 2
- - uid: 32484
+ - uid: 32859
components:
- type: Transform
- pos: 82.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,72.5
parent: 2
- - uid: 32485
+ - uid: 32860
components:
- type: Transform
- pos: 81.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,73.5
parent: 2
- - uid: 32486
+ - uid: 32861
components:
- type: Transform
- pos: 81.5,32.5
+ pos: 62.5,76.5
parent: 2
- - uid: 32487
+ - uid: 32862
components:
- type: Transform
- pos: 98.5,29.5
+ pos: 63.5,78.5
parent: 2
- - uid: 32488
+ - uid: 32863
components:
- type: Transform
- pos: 93.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,68.5
parent: 2
- - uid: 32489
+ - uid: 32864
components:
- type: Transform
- pos: 95.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,85.5
parent: 2
- - uid: 32490
+ - uid: 32865
components:
- type: Transform
- pos: 94.5,43.5
+ pos: 73.5,86.5
parent: 2
- - uid: 32491
+ - uid: 32870
components:
- type: Transform
- pos: 92.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,66.5
parent: 2
- - uid: 32492
+ - uid: 32871
components:
- type: Transform
- pos: 99.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,68.5
parent: 2
-- proto: MaintenanceWeaponSpawner
- entities:
- - uid: 5382
+ - uid: 32872
components:
- type: Transform
- pos: 61.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,67.5
parent: 2
- - uid: 5400
+ - uid: 32873
components:
- type: Transform
- pos: 56.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,63.5
parent: 2
- - uid: 6416
+ - uid: 32874
components:
- type: Transform
- pos: 49.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,62.5
parent: 2
- - uid: 13866
+ - uid: 32876
components:
- type: Transform
- pos: 39.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,60.5
parent: 2
- - uid: 20958
+ - uid: 32878
components:
- type: Transform
- pos: 7.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,74.5
parent: 2
- - uid: 20963
+ - uid: 32883
components:
- type: Transform
- pos: -7.5,-34.5
+ pos: 72.5,86.5
parent: 2
- - uid: 20976
+ - uid: 32886
components:
- type: Transform
- pos: -56.5,-33.5
+ pos: 61.5,75.5
parent: 2
- - uid: 20980
+ - uid: 32888
components:
- type: Transform
- pos: -65.5,-0.5
+ pos: 70.5,86.5
parent: 2
- - uid: 21014
+ - uid: 32889
components:
- type: Transform
- pos: -3.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,82.5
parent: 2
- - uid: 21056
+ - uid: 32890
components:
- type: Transform
- pos: 38.5,-5.5
+ pos: 71.5,86.5
parent: 2
- - uid: 21059
+ - uid: 32895
components:
- type: Transform
- pos: -32.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,77.5
parent: 2
- - uid: 21060
+ - uid: 32896
components:
- type: Transform
- pos: -34.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,77.5
parent: 2
- - uid: 23295
+ - uid: 32901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,74.5
parent: 2
- - uid: 29804
+ - uid: 32903
components:
- type: Transform
- pos: 86.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,75.5
parent: 2
- - uid: 32493
+ - uid: 32904
components:
- type: Transform
- pos: 77.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,75.5
parent: 2
- - uid: 32494
+ - uid: 32905
components:
- type: Transform
- pos: 72.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,75.5
parent: 2
- - uid: 32522
+ - uid: 32909
components:
- type: Transform
- pos: 64.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,75.5
parent: 2
- - uid: 32523
+ - uid: 32912
components:
- type: Transform
- pos: 64.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
parent: 2
- - uid: 32524
+ - uid: 32914
components:
- type: Transform
- pos: 72.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,75.5
parent: 2
- - uid: 32525
+ - uid: 32920
components:
- type: Transform
- pos: 84.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,71.5
parent: 2
- - uid: 32526
+ - uid: 32921
components:
- type: Transform
- pos: 94.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,72.5
parent: 2
- - uid: 32527
+ - uid: 32922
components:
- type: Transform
- pos: 95.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,73.5
parent: 2
- - uid: 32528
+ - uid: 32923
components:
- type: Transform
- pos: 72.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,74.5
parent: 2
- - uid: 32529
+ - uid: 32928
components:
- type: Transform
- pos: 61.5,38.5
+ pos: 73.5,63.5
parent: 2
- - uid: 32530
+ - uid: 32931
components:
- type: Transform
- pos: 53.5,32.5
+ pos: 79.5,62.5
parent: 2
- - uid: 32531
+ - uid: 32934
components:
- type: Transform
- pos: 56.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,68.5
parent: 2
- - uid: 32532
+ - uid: 32935
components:
- type: Transform
- pos: 72.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,67.5
parent: 2
-- proto: Matchbox
- entities:
- - uid: 30063
+ - uid: 32937
components:
- type: Transform
- pos: 85.90307,42.529053
+ rot: 1.5707963267948966 rad
+ pos: 79.5,71.5
parent: 2
-- proto: MatchstickSpent
- entities:
- - uid: 30047
+ - uid: 32939
components:
- type: Transform
- pos: 86.07494,42.216553
+ rot: 1.5707963267948966 rad
+ pos: 82.5,60.5
parent: 2
- - uid: 30049
+ - uid: 32940
components:
- type: Transform
- pos: 84.59057,42.76233
+ rot: 1.5707963267948966 rad
+ pos: 82.5,61.5
parent: 2
- - uid: 30050
+ - uid: 32941
components:
- type: Transform
- pos: 85.313446,39.138023
+ rot: 1.5707963267948966 rad
+ pos: 83.5,60.5
parent: 2
-- proto: MaterialBiomass1
- entities:
- - uid: 1402
+ - uid: 32942
components:
- type: Transform
- pos: 22.388477,0.6988144
+ rot: 1.5707963267948966 rad
+ pos: 97.5,61.5
parent: 2
- - uid: 1403
+ - uid: 32944
components:
- type: Transform
- pos: 22.575977,0.82772064
+ rot: 1.5707963267948966 rad
+ pos: 98.5,62.5
parent: 2
- - uid: 1404
+ - uid: 32947
components:
- type: Transform
- pos: 22.681446,0.5581894
+ rot: 1.5707963267948966 rad
+ pos: 98.5,63.5
parent: 2
- - uid: 1405
+ - uid: 32948
components:
- type: Transform
- pos: 22.505665,0.52303314
+ rot: 1.5707963267948966 rad
+ pos: 97.5,62.5
parent: 2
- - uid: 1406
+ - uid: 32949
components:
- type: Transform
- pos: 21.837696,0.66365814
+ rot: 1.5707963267948966 rad
+ pos: 93.5,59.5
parent: 2
-- proto: MaterialCloth
- entities:
- - uid: 1981
+ - uid: 32950
components:
- type: Transform
- pos: 7.473057,30.6911
+ rot: 1.5707963267948966 rad
+ pos: 94.5,59.5
parent: 2
-- proto: MaterialDiamond
- entities:
- - uid: 13998
+ - uid: 32951
components:
- type: Transform
- pos: 26.580275,39.05669
+ rot: 1.5707963267948966 rad
+ pos: 95.5,59.5
parent: 2
-- proto: MaterialDiamond1
- entities:
- - uid: 11228
+ - uid: 32952
components:
- type: Transform
- pos: -67.05053,-24.380058
+ rot: 1.5707963267948966 rad
+ pos: 96.5,59.5
parent: 2
- - uid: 33611
+ - uid: 32956
components:
- type: Transform
- pos: 85.45249,46.61865
+ rot: 1.5707963267948966 rad
+ pos: 86.5,59.5
parent: 2
-- proto: MaterialDurathread
- entities:
- - uid: 5716
+ - uid: 32957
components:
- type: Transform
- pos: 7.5137024,30.611721
+ rot: 1.5707963267948966 rad
+ pos: 85.5,59.5
parent: 2
-- proto: MaterialReclaimer
- entities:
- - uid: 19372
+ - uid: 32968
components:
- type: Transform
- pos: -15.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,64.5
parent: 2
- - uid: 25439
+ - uid: 32969
components:
- type: Transform
- pos: -41.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,65.5
parent: 2
-- proto: MedicalBed
- entities:
- - uid: 428
+ - uid: 32972
components:
- type: Transform
- pos: 7.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,72.5
parent: 2
- - uid: 1004
+ - uid: 32974
components:
- type: Transform
- pos: 5.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,71.5
parent: 2
- - uid: 1164
+ - uid: 32976
components:
- type: Transform
- pos: 5.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,71.5
parent: 2
- - uid: 1166
+ - uid: 32977
components:
- type: Transform
- pos: 5.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,71.5
parent: 2
- - uid: 1168
+ - uid: 32978
components:
- type: Transform
- pos: 5.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,72.5
parent: 2
- - uid: 1435
+ - uid: 32979
components:
- type: Transform
- pos: 13.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,72.5
parent: 2
- - uid: 1436
+ - uid: 32980
components:
- type: Transform
- pos: 13.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,73.5
parent: 2
- - uid: 1437
+ - uid: 32981
components:
- type: Transform
- pos: 13.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,73.5
parent: 2
- - uid: 1438
+ - uid: 32985
components:
- type: Transform
- pos: 13.5,9.5
+ pos: 83.5,46.5
parent: 2
- - uid: 4379
+ - uid: 32986
components:
- type: Transform
- pos: 7.5,-10.5
+ pos: 84.5,46.5
parent: 2
- - uid: 8377
+ - uid: 32987
components:
- type: Transform
- pos: 13.5,-9.5
+ pos: 85.5,46.5
parent: 2
-- proto: MedicalScanner
- entities:
- - uid: 1279
+ - uid: 32988
components:
- type: Transform
- pos: 25.5,2.5
+ pos: 86.5,46.5
parent: 2
-- proto: MedicalTechFab
- entities:
- - uid: 1346
+ - uid: 32992
components:
- type: Transform
- pos: 34.5,5.5
+ pos: 90.5,46.5
parent: 2
-- proto: MedicatedSuture
- entities:
- - uid: 32586
+ - uid: 32993
components:
- type: Transform
- pos: 54.44772,44.363388
+ pos: 91.5,46.5
parent: 2
-- proto: MedkitAdvancedFilled
- entities:
- - uid: 1150
+ - uid: 32994
components:
- type: Transform
- pos: 7.676587,16.64243
+ pos: 91.5,45.5
parent: 2
- - uid: 1160
+ - uid: 32995
components:
- type: Transform
- pos: -11.404755,-9.152216
+ pos: 92.5,46.5
parent: 2
- - uid: 15726
+ - uid: 33003
components:
- type: Transform
- pos: -24.499674,42.691288
+ pos: 102.5,39.5
parent: 2
-- proto: MedkitBruteFilled
- entities:
- - uid: 1163
+ - uid: 33004
components:
- type: Transform
- pos: 11.252731,16.908054
+ pos: 102.5,38.5
parent: 2
- - uid: 3462
+ - uid: 33012
components:
- type: Transform
- pos: 41.476383,-21.244463
+ pos: 81.5,51.5
parent: 2
- - uid: 6910
+ - uid: 33015
components:
- type: Transform
- pos: -6.427447,-40.39485
+ pos: 81.5,78.5
parent: 2
- - uid: 30685
+ - uid: 33025
components:
- type: Transform
- pos: 4.5581956,64.48662
+ pos: 79.5,63.5
parent: 2
-- proto: MedkitBurnFilled
- entities:
- - uid: 1147
+ - uid: 33038
components:
- type: Transform
- pos: 11.674606,16.564304
+ pos: 79.5,64.5
parent: 2
-- proto: MedkitCombatFilled
- entities:
- - uid: 1472
+ - uid: 33053
components:
- type: Transform
- pos: 7.301587,16.814304
+ pos: 99.5,12.5
parent: 2
- - uid: 14210
+ - uid: 33054
components:
- type: Transform
- pos: 13.406654,56.703026
+ pos: 95.5,11.5
parent: 2
-- proto: MedkitFilled
- entities:
- - uid: 1477
+ - uid: 33055
components:
- type: Transform
- pos: 7.774714,16.877289
+ pos: 87.5,33.5
parent: 2
- - uid: 2039
+ - uid: 33056
components:
- type: Transform
- pos: -4.458594,6.0189323
+ pos: 88.5,33.5
parent: 2
- - uid: 2040
+ - uid: 33057
components:
- type: Transform
- pos: -4.398351,-0.24816418
+ pos: 89.5,33.5
parent: 2
- - uid: 13084
+ - uid: 33058
components:
- type: Transform
- pos: 4.47973,-31.09689
+ pos: 90.5,33.5
parent: 2
- - uid: 20649
+ - uid: 33059
components:
- type: Transform
- pos: -41.358887,60.69076
+ pos: 89.5,31.5
parent: 2
-- proto: MedkitOxygenFilled
- entities:
- - uid: 1479
+ - uid: 33060
components:
- type: Transform
- pos: 7.4023647,16.5659
+ pos: 90.5,30.5
parent: 2
- - uid: 9322
+ - uid: 33061
components:
- type: Transform
- pos: -16.398605,-25.496935
+ pos: 91.5,32.5
parent: 2
-- proto: MedkitRadiationFilled
- entities:
- - uid: 1480
+ - uid: 33179
components:
- type: Transform
- pos: 11.577502,16.839338
+ rot: -1.5707963267948966 rad
+ pos: 106.5,45.5
parent: 2
- - uid: 5413
+ - uid: 33411
components:
- type: Transform
- pos: 49.81323,46.780846
+ pos: 79.5,61.5
parent: 2
-- proto: MedkitToxinFilled
- entities:
- - uid: 1481
+ - uid: 33561
components:
- type: Transform
- pos: 11.249377,16.53465
+ pos: 93.5,56.5
parent: 2
-- proto: Memorial
- entities:
- - uid: 2411
+ - uid: 33637
components:
- - type: MetaData
- desc: Here we see the majestic Cold Place animals such as Penguin. Brrr!
- name: Tundra Dome Plaque
- type: Transform
- pos: -87.5,-4.5
+ pos: 79.5,77.5
parent: 2
- - uid: 2687
+ - uid: 34000
components:
- - type: MetaData
- desc: Watch the beautiful carps and sharks and other majestic beasts of the sea swim around in harmony!
- name: Aquarium Dome Plaque
- type: Transform
- pos: -87.5,22.5
+ pos: 62.5,82.5
parent: 2
- - uid: 2693
+ - uid: 34201
components:
- - type: MetaData
- desc: Splish splash! It's a jungle. Look at the monkey!
- name: Jungle Dome Plaque
- type: Transform
- pos: -98.5,5.5
+ pos: 83.5,79.5
parent: 2
- - uid: 2751
+ - uid: 34203
components:
- - type: MetaData
- desc: Damp, dank, and muddy caves could have ANY animals in them. Watch out!!!
- name: Cave Dome Plaque
- type: Transform
- pos: -97.5,20.5
+ pos: 84.5,80.5
parent: 2
- - uid: 10656
+ - uid: 34204
components:
- - type: MetaData
- desc: The Dirt's Room. It's for Hot Dirt Ouchie! Your feet.
- type: Transform
- pos: -97.5,-10.5
+ pos: 85.5,80.5
parent: 2
- - uid: 30383
+ - uid: 34239
components:
- - type: MetaData
- desc: To all those that we couldn't save.
- type: Transform
- pos: 1.5,21.5
+ pos: 105.5,48.5
parent: 2
- - uid: 30405
+ - uid: 34240
components:
- - type: MetaData
- desc: To all those we saved.
- type: Transform
- pos: 1.5,-14.5
+ pos: 104.5,57.5
parent: 2
- - uid: 32468
+ - uid: 34241
components:
- - type: MetaData
- desc: The grave of a great hero.
- name: Hero's Grave
- type: Transform
- pos: 61.5,66.5
+ pos: 104.5,58.5
parent: 2
-- proto: MetalDoor
- entities:
- - uid: 4649
+ - uid: 34280
components:
- type: Transform
- pos: 87.5,45.5
+ pos: 103.5,40.5
parent: 2
- - uid: 4667
+ - uid: 34291
components:
- type: Transform
- pos: 87.5,35.5
+ pos: 103.5,41.5
parent: 2
- - uid: 32589
+ - uid: 34381
components:
- type: Transform
- pos: 77.5,27.5
+ pos: 104.5,43.5
parent: 2
-- proto: MicrowaveMachineCircuitboard
- entities:
- - uid: 1573
+ - uid: 34587
components:
- type: Transform
- pos: 18.439661,-8.63639
+ pos: 105.5,44.5
parent: 2
-- proto: Mirror
- entities:
- - uid: 3318
+ - uid: 34597
components:
- type: Transform
- pos: 7.5,-26.5
+ pos: 105.5,47.5
parent: 2
- - uid: 3321
+ - uid: 34604
components:
- type: Transform
- pos: 8.5,-26.5
+ pos: 106.5,46.5
parent: 2
- - uid: 4309
+ - uid: 34815
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,50.5
parent: 2
- - uid: 5151
+ - uid: 34828
components:
- type: Transform
- pos: 73.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,51.5
parent: 2
- - uid: 5171
+ - uid: 34829
components:
- type: Transform
- pos: 72.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,52.5
parent: 2
- - uid: 7504
+ - uid: 34830
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,48.5
parent: 2
- - uid: 7505
+ - uid: 34831
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,49.5
parent: 2
- - uid: 11484
+ - uid: 34832
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,50.5
parent: 2
- - uid: 21931
+ - uid: 35573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,85.5
parent: 2
- - uid: 22114
+ - uid: 35574
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,-27.5
+ pos: 61.5,84.5
parent: 2
- - uid: 33700
+ - uid: 35575
components:
- type: Transform
- pos: -24.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,83.5
parent: 2
- - uid: 33704
+ - uid: 35590
components:
- type: Transform
- pos: -25.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,86.5
parent: 2
- - uid: 33705
+ - uid: 35591
components:
- type: Transform
- pos: -26.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,85.5
parent: 2
- - uid: 33706
+ - uid: 35597
components:
- type: Transform
- pos: -28.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,76.5
parent: 2
- - uid: 33707
+ - uid: 35677
components:
- type: Transform
- pos: -29.5,35.5
+ pos: 55.5,78.5
parent: 2
- - uid: 33708
+ - uid: 35678
components:
- type: Transform
- pos: -30.5,35.5
+ pos: 56.5,77.5
parent: 2
-- proto: ModularGrenade
- entities:
- - uid: 36048
+ - uid: 36274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.341724,15.770388
+ pos: 79.5,85.5
parent: 2
-- proto: MopBucketFull
- entities:
- - uid: 21882
+ - uid: 36674
components:
- type: Transform
- pos: -67.247635,0.97548735
+ pos: 84.5,82.5
parent: 2
- - uid: 26360
+ - uid: 36676
components:
- type: Transform
- pos: -42.578186,20.72669
+ pos: 85.5,81.5
parent: 2
-- proto: MopItem
- entities:
- - uid: 18529
+ - uid: 37166
components:
- type: Transform
- pos: -40.59049,21.685213
+ pos: 79.5,60.5
parent: 2
- - uid: 22041
+- proto: MouseTimedSpawner
+ entities:
+ - uid: 22440
components:
- type: Transform
- pos: -67.341385,0.78798735
+ pos: -62.5,-17.5
parent: 2
- - uid: 34041
+ - uid: 22441
components:
- type: Transform
- pos: -23.593803,58.65746
+ pos: 32.5,45.5
parent: 2
-- proto: Morgue
+- proto: Mousetrap
entities:
- - uid: 1036
+ - uid: 37703
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,11.5
+ pos: -42.21908,0.9836087
parent: 2
- - uid: 1037
+ - uid: 37704
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,12.5
+ pos: -42.00033,1.3039212
parent: 2
- - uid: 1287
+ - uid: 37705
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,13.5
+ pos: -35.078457,10.316679
parent: 2
- - uid: 1288
+- proto: MousetrapArmed
+ entities:
+ - uid: 19073
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -40.68002,10.189184
parent: 2
- - uid: 1289
+ - uid: 19076
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -39.601894,14.44612
parent: 2
- - uid: 1292
+ - type: StepTriggerActive
+ - uid: 23210
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,15.5
+ pos: -34.05502,3.7859945
parent: 2
- - uid: 1293
+ - uid: 23242
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,14.5
+ pos: -35.09408,4.8328695
parent: 2
- - uid: 1294
+ - type: StepTriggerActive
+ - uid: 37701
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -40.851894,4.194546
parent: 2
- - uid: 1295
+ - uid: 37702
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -36.58627,1.3742337
parent: 2
- - uid: 1296
+- proto: Multitool
+ entities:
+ - uid: 1409
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,11.5
+ pos: 19.638388,3.717061
parent: 2
- - uid: 1297
+ - uid: 3661
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,16.5
+ pos: -64.445526,29.69946
parent: 2
- - uid: 1353
+ - uid: 5678
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,16.5
+ pos: 34.21444,47.247894
parent: 2
- - uid: 2570
+ - uid: 6820
components:
- type: Transform
- pos: 49.5,44.5
+ pos: -6.5713167,-40.53858
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.7459903
- - 6.568249
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 2728
+ - uid: 8427
components:
- type: Transform
- pos: 47.5,44.5
+ pos: -69.75691,17.556164
parent: 2
- - uid: 5329
+ - uid: 15061
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,53.5
+ pos: 16.30094,59.79087
parent: 2
- - uid: 5330
+ - uid: 26630
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 62.5,54.5
+ pos: -17.313042,-46.492123
parent: 2
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 75.31249
- moles:
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 5337
+ - uid: 30686
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,52.5
+ pos: 4.9813976,64.72099
parent: 2
- - type: EntityStorage
- open: True
-- proto: MouseTimedSpawner
- entities:
- - uid: 22440
+ - uid: 31800
components:
- type: Transform
- pos: -62.5,-17.5
+ pos: -64.27365,29.41821
parent: 2
- - uid: 22441
+ - uid: 32085
components:
- type: Transform
- pos: 32.5,45.5
+ pos: 94.389854,74.83307
parent: 2
-- proto: Multitool
+- proto: MusicBoxInstrument
entities:
- - uid: 1409
+ - uid: 23572
components:
- type: Transform
- pos: 19.445372,3.6151025
+ pos: -71.528534,0.9246559
parent: 2
- - type: NetworkConfigurator
- devices:
- 'UID: 17226': 1407
- linkModeActive: False
- - uid: 3661
+- proto: NewtonCradle
+ entities:
+ - uid: 1830
components:
- type: Transform
- pos: -64.445526,29.69946
+ pos: -29.225729,-19.430965
parent: 2
- - uid: 5678
+ - uid: 11980
components:
- type: Transform
- pos: 34.21444,47.247894
+ pos: -58.880325,-4.5752883
parent: 2
- - uid: 6573
+ - uid: 12070
components:
- type: Transform
- pos: -32.30608,-41.45589
+ pos: -5.3286896,57.48592
parent: 2
- - uid: 6820
+ - uid: 12072
components:
- type: Transform
- pos: -6.286822,-41.5511
+ pos: 28.65791,52.385475
parent: 2
- - uid: 8427
+ - uid: 14982
components:
- type: Transform
- pos: -69.75691,17.556164
+ pos: 49.329147,33.419052
parent: 2
- - uid: 18802
+ - uid: 15217
components:
- type: Transform
- pos: -99.0182,50.095516
+ pos: -21.219473,62.59027
parent: 2
- - uid: 28504
+ - uid: 16577
components:
- type: Transform
- pos: -67.493225,32.636074
+ pos: 45.63395,30.76474
parent: 2
- - uid: 30686
+ - uid: 16679
components:
- type: Transform
- pos: 4.9813976,64.72099
+ pos: 46.460426,26.621822
parent: 2
- - uid: 31800
+ - uid: 30407
components:
- type: Transform
- pos: -64.27365,29.41821
+ pos: -3.5543709,-7.4501343
parent: 2
-- proto: MusicBoxInstrument
- entities:
- - uid: 23572
+ - uid: 38925
components:
- type: Transform
- pos: -71.528534,0.9246559
+ pos: -4.461087,26.504787
parent: 2
- proto: NitrogenCanister
entities:
@@ -161290,10 +182106,10 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 7130
+ - uid: 6652
components:
- type: Transform
- pos: -17.5,-34.5
+ pos: -30.5,-46.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
@@ -161304,24 +182120,31 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 20033
+ - uid: 10235
components:
- type: Transform
- pos: -31.5,16.5
+ pos: 33.5,1.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 23439
+ - uid: 17784
components:
- type: Transform
- pos: -59.5,-35.5
+ pos: -16.5,37.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 34973
+ - uid: 20033
components:
- type: Transform
- pos: 36.5,1.5
+ pos: -31.5,16.5
+ parent: 2
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 23439
+ components:
+ - type: Transform
+ pos: -59.5,-35.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
@@ -161357,18 +182180,107 @@ entities:
joinedGrid: 2
- proto: NoticeBoard
entities:
+ - uid: 170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-22.5
+ parent: 2
+ - uid: 14209
+ components:
+ - type: Transform
+ pos: -18.5,27.5
+ parent: 2
+ - uid: 15782
+ components:
+ - type: Transform
+ pos: -47.5,14.5
+ parent: 2
+ - uid: 26800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-22.5
+ parent: 2
- uid: 29691
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -51.5,-18.5
parent: 2
+ - uid: 29772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -48.5,4.5
+ parent: 2
+ - uid: 36901
+ components:
+ - type: Transform
+ pos: 26.5,25.5
+ parent: 2
+- proto: NTFlag
+ entities:
+ - uid: 4103
+ components:
+ - type: Transform
+ pos: 12.5,44.5
+ parent: 2
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: 24.5,53.5
+ parent: 2
+ - uid: 37018
+ components:
+ - type: Transform
+ pos: -1.5,24.5
+ parent: 2
+ - uid: 37540
+ components:
+ - type: Transform
+ pos: -5.5,-3.5
+ parent: 2
+ - uid: 37543
+ components:
+ - type: Transform
+ pos: -1.5,-30.5
+ parent: 2
+ - uid: 37549
+ components:
+ - type: Transform
+ pos: -1.5,-44.5
+ parent: 2
+ - uid: 37550
+ components:
+ - type: Transform
+ pos: 4.5,-44.5
+ parent: 2
+- proto: NTHandyFlag
+ entities:
+ - uid: 3251
+ components:
+ - type: Transform
+ pos: 6.4043097,-34.349846
+ parent: 2
+ - uid: 37545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.385358,-34.35766
+ parent: 2
+ - uid: 37551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.650983,-34.342033
+ parent: 2
- proto: NuclearBombKeg
entities:
- - uid: 32550
+ - uid: 12428
components:
- type: Transform
- pos: 74.5,26.5
+ pos: 87.5,-36.5
parent: 2
- proto: NuclearBombUnanchored
entities:
@@ -161384,10 +182296,10 @@ entities:
- type: Transform
pos: -20.5,-1.5
parent: 2
- - uid: 1363
+ - uid: 4553
components:
- type: Transform
- pos: 29.5,9.5
+ pos: 48.5,44.5
parent: 2
- uid: 5328
components:
@@ -161404,21 +182316,6 @@ entities:
- type: Transform
pos: 55.5,54.5
parent: 2
- - uid: 5361
- components:
- - type: Transform
- pos: 55.5,53.5
- parent: 2
- - uid: 5742
- components:
- - type: Transform
- pos: 48.5,43.5
- parent: 2
- - uid: 11147
- components:
- - type: Transform
- pos: -26.5,-1.5
- parent: 2
- uid: 22027
components:
- type: Transform
@@ -161426,32 +182323,32 @@ entities:
parent: 2
- proto: Oracle
entities:
- - uid: 1170
+ - uid: 4100
components:
- type: Transform
- pos: 54.5,21.5
+ pos: 55.5,21.5
parent: 2
- proto: OreBag
entities:
- uid: 6881
components:
- type: Transform
- pos: -8.219676,-42.277306
+ pos: -11.350398,-45.25384
parent: 2
- proto: OreBox
entities:
- - uid: 7147
+ - uid: 6922
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-48.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-40.5
parent: 2
- proto: OreProcessor
entities:
- - uid: 16608
+ - uid: 28196
components:
- type: Transform
- pos: -14.5,-38.5
+ pos: -29.5,-40.5
parent: 2
- proto: OrganHumanAppendix
entities:
@@ -161512,38 +182409,38 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 8600
+ - uid: 9356
components:
- type: Transform
- pos: -17.5,-35.5
+ pos: -47.5,48.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 9356
+ - uid: 10653
components:
- type: Transform
- pos: -47.5,48.5
+ pos: 33.5,3.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 20032
+ - uid: 11862
components:
- type: Transform
- pos: -34.5,16.5
+ pos: -31.5,-46.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 20929
+ - uid: 17167
components:
- type: Transform
- pos: 36.5,3.5
+ pos: -18.5,37.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- - uid: 27953
+ - uid: 20032
components:
- type: Transform
- pos: -17.5,-46.5
+ pos: -34.5,16.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
@@ -161575,19 +182472,29 @@ entities:
parent: 2
- type: AtmosDevice
joinedGrid: 2
-- proto: PaintingCafeTerraceAtNight
+- proto: PaintingBlunt
entities:
- - uid: 5954
+ - uid: 821
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: -34.5,60.5
+ parent: 2
+ - uid: 12112
+ components:
+ - type: Transform
+ pos: 13.5,-37.5
+ parent: 2
+ - uid: 16851
+ components:
+ - type: Transform
+ pos: 23.5,-34.5
parent: 2
- proto: PaintingMonkey
entities:
- - uid: 5766
+ - uid: 1482
components:
- type: Transform
- pos: 21.5,-26.5
+ pos: -39.5,-29.5
parent: 2
- proto: PaintingPersistenceOfMemory
entities:
@@ -161606,6 +182513,31 @@ entities:
parent: 2
- proto: PaintingSadClown
entities:
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 63.5,34.5
+ parent: 2
+ - uid: 4643
+ components:
+ - type: Transform
+ pos: 61.5,34.5
+ parent: 2
+ - uid: 4696
+ components:
+ - type: Transform
+ pos: 85.5,28.5
+ parent: 2
+ - uid: 5906
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 2
+ - uid: 6938
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 2
- uid: 19421
components:
- type: Transform
@@ -161626,8 +182558,27 @@ entities:
rot: 1.5707963267948966 rad
pos: 90.5,44.5
parent: 2
+- proto: PaintingSleepingGypsy
+ entities:
+ - uid: 32040
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,34.5
+ parent: 2
- proto: Paper
entities:
+ - uid: 134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.4708214,58.159603
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: -22.557663,7.8041625
+ parent: 2
- uid: 652
components:
- type: Transform
@@ -161655,6 +182606,29 @@ entities:
- type: Transform
pos: -3.299249,16.703148
parent: 2
+ - uid: 3352
+ components:
+ - type: Transform
+ pos: 72.55543,59.37345
+ parent: 2
+ - type: Paper
+ content: >-
+ Was it ever even here...?
+
+
+ Or was it all just a dream...?
+ - uid: 3736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.353634,58.292416
+ parent: 2
+ - uid: 4211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.452635,61.676525
+ parent: 2
- uid: 5431
components:
- type: Transform
@@ -161672,6 +182646,21 @@ entities:
- type: Transform
pos: -62.09694,-1.5043344
parent: 2
+ - uid: 8812
+ components:
+ - type: Transform
+ pos: -20.70241,62.63365
+ parent: 2
+ - uid: 9043
+ components:
+ - type: Transform
+ pos: -13.021509,59.730175
+ parent: 2
+ - uid: 10712
+ components:
+ - type: Transform
+ pos: -5.3619056,6.6788263
+ parent: 2
- uid: 11242
components:
- type: Transform
@@ -161685,7 +182674,7 @@ entities:
- uid: 15122
components:
- type: Transform
- pos: 27.988136,52.66876
+ pos: 28.424322,52.808193
parent: 2
- uid: 18072
components:
@@ -161709,6 +182698,12 @@ entities:
- type: Transform
pos: 34.72652,-4.3186865
parent: 2
+ - uid: 22168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.599634,59.800488
+ parent: 2
- uid: 22278
components:
- type: Transform
@@ -161716,35 +182711,86 @@ entities:
parent: 2
- type: Paper
content: Have fun filling up the domes, Zookeepers! Cargo can buy you more animals.
- - uid: 23458
+ - uid: 22780
components:
- type: Transform
- pos: -62.19069,-1.3519907
+ pos: -5.4712806,6.7257013
parent: 2
- - uid: 26732
+ - uid: 23202
components:
- type: Transform
- pos: -47.28819,-27.477682
+ rot: -1.5707963267948966 rad
+ pos: -14.341822,58.472363
parent: 2
- - uid: 26733
+ - uid: 23204
components:
- type: Transform
- pos: -47.45225,-27.419088
+ pos: -14.529322,58.71455
+ parent: 2
+ - uid: 23458
+ components:
+ - type: Transform
+ pos: -62.19069,-1.3519907
parent: 2
- uid: 27245
components:
- type: Transform
pos: 34.597614,-4.4124365
parent: 2
+ - uid: 27340
+ components:
+ - type: Transform
+ pos: 14.624783,12.6721115
+ parent: 2
+ - type: Paper
+ stampState: paper_stamp-cmo
+ stampedBy:
+ - stampedColor: '#33CCFFFF'
+ stampedName: stamp-component-stamped-name-cmo
+ content: >2
+
+ [bold][head=1]NOTICE TO ALL MEDICAL STAFF:[/head]
+
+ [color=red]
+
+
+ Page 37, Line 80 of the Space Operating Procedures states that:
+
+ [color=black]
+
+
+ [italic]"Any substance with the capacity to cause harm as a consequence of overdose may not be stocked, stored, or displayed in an area and fashion that leaves such substances open and accessible to the public."[/italic]
+
+
+
+ Your compliance is [color=red]mandatory. [color=black]Thank you.
- uid: 27406
components:
- type: Transform
pos: 23.67961,-10.206588
parent: 2
- - uid: 28028
+ - uid: 27429
+ components:
+ - type: Transform
+ pos: -53.011257,-12.423383
+ parent: 2
+ - uid: 29294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.565819,49.774994
+ parent: 2
+ - uid: 30365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.187415,55.132004
+ parent: 2
+ - uid: 30366
components:
- type: Transform
- pos: -14.0838375,59.60498
+ rot: 1.5707963267948966 rad
+ pos: -10.35929,55.34294
parent: 2
- uid: 30459
components:
@@ -161763,50 +182809,12 @@ entities:
- type: Transform
pos: -22.162579,22.480202
parent: 2
- - uid: 32599
- components:
- - type: Transform
- pos: 82.99698,59.468273
- parent: 2
- - type: Paper
- content: >-
- This was my first station and I had fun designing it ! The name may not match the final shape, hopefully the bureaucrats won't mind, just got lost somewhere in the works.
-
- All of you enjoy your stay on board ! :)
-
-
- // Rose *a magnificent rose was drawn on the side*
-
-
-
- Done tweaking 'em tweakers, hopefully all those grids are fixed and well put, otherwise I might get in trouble.. Eh, whatevs, enjoy the station we polished together, fellas !
-
-
- // Unicorn
-
-
- *a childish unicorn head is taking the lower part of the paper*
- - uid: 35797
+ - uid: 33945
components:
- - type: MetaData
- name: Cryonics Setup Guide
- type: Transform
- pos: 18.658413,14.76111
+ rot: 3.141592653589793 rad
+ pos: 5.2967186,13.6565075
parent: 2
- - type: Paper
- content: >-
- Don't be intimidated, doctors! Cryonic tubes are a fantastic way to heal injuries. Here's a reminder on how to set them up:
-
-
- Step 1: Set freezer as low as it will go, and turn on.
-
- Step 2: Set filters to filter out CO2 and Nitrous Oxide, then turn both on.
-
-
- That's it! You're ready!
-
-
- Remember to take coats and other insulating clothing off of patients, or they'll take too long to get down to temperature. Put them in along with a beaker of cryoxadone, and take them out when they're healed.
- uid: 35801
components:
- type: MetaData
@@ -161829,65 +182837,99 @@ entities:
Cloning is *not* a cure-all. It can be distressing and psychologically damaging to wake up in a different body. Patients may act belligerent - and would you blame them? You may want to alert any active Psychologists to be on deck.
- - uid: 35838
+ - uid: 36134
components:
- type: Transform
- pos: 12.946826,4.6223097
+ pos: -14.013525,59.659668
parent: 2
- - type: Paper
- content: >-
- Please note that leaving chemicals that are able to be overdosed on outside of ocked containers is against Space Law.
-
-
- That includes this counter, which patients exiting triage may come across.
- - uid: 36105
+ - uid: 36215
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.573751,37.503773
+ pos: -10.351478,50.171066
parent: 2
- - uid: 36106
+ - uid: 36396
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.394064,37.68346
+ pos: -10.507728,48.725754
parent: 2
- - uid: 36107
+ - uid: 36603
components:
- type: Transform
- pos: -25.556133,37.77704
+ pos: 101.46787,61.670963
parent: 2
- - uid: 36108
+ - uid: 36604
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.362814,37.730335
+ pos: 101.58506,61.5694
parent: 2
- - uid: 36109
+ - uid: 36605
+ components:
+ - type: Transform
+ pos: 101.24131,61.60065
+ parent: 2
+ - uid: 36608
+ components:
+ - type: Transform
+ pos: 102.83506,60.28034
+ parent: 2
+ - uid: 36609
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.347189,37.511585
+ pos: 102.96006,59.78034
parent: 2
- - uid: 36134
+ - uid: 36610
components:
- type: Transform
- pos: -14.013525,59.659668
+ rot: 1.5707963267948966 rad
+ pos: 98.46006,59.06159
parent: 2
- - uid: 36502
+ - uid: 36611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.725685,57.93659
+ parent: 2
+ - uid: 36828
components:
- type: Transform
- rot: 0.11397720128297806 rad
- pos: -58.454735,30.42992
+ rot: 1.5707963267948966 rad
+ pos: 66.452126,72.404526
parent: 2
- type: Paper
+ stampState: paper_stamp-rd
+ stampedBy:
+ - stampedColor: '#1F66A0FF'
+ stampedName: stamp-component-stamped-name-rd
content: >-
- Ah shit, 'sup pal, ye may be wonderin' why's that note there, hell, why's 'em three AME flatpacks here too !
+ ...inconclusive. Will increase to 30 mg administered within rations in an attempt to induce clearer results. Three subjects complained of mild...
- Reason be simple, 'em nerds at CC didn't check'em power grid 'n the two crates ye were given ain't gonna be 'nuff to power the whole station with'em AME, enjoy 'em extra core with those three flatpacks, gloreh to engineerin', chief !
- -Bob B.
+
+
+ ...biological compound matches...
+
+
+
+
+ ...feverish, sweating, nauseous, skin discoloration...
+
+
+
+ ...fourteen casualties.
+ - uid: 36866
+ components:
+ - type: Transform
+ pos: 72.24895,72.652664
+ parent: 2
+ - uid: 36867
+ components:
+ - type: Transform
+ pos: 72.45207,72.7386
+ parent: 2
- proto: PaperBin10
entities:
- uid: 1956
@@ -161895,6 +182937,11 @@ entities:
- type: Transform
pos: 4.5,30.5
parent: 2
+ - uid: 31763
+ components:
+ - type: Transform
+ pos: 15.5,12.5
+ parent: 2
- uid: 35839
components:
- type: Transform
@@ -161920,11 +182967,6 @@ entities:
- type: Transform
pos: 47.5,24.5
parent: 2
- - uid: 35845
- components:
- - type: Transform
- pos: 52.5,22.5
- parent: 2
- uid: 35847
components:
- type: Transform
@@ -161950,27 +182992,30 @@ entities:
- type: Transform
pos: -48.5,2.5
parent: 2
- - uid: 35853
+ - uid: 35857
components:
- type: Transform
- pos: -49.5,14.5
+ pos: 11.5,43.5
parent: 2
- - uid: 35857
+ - uid: 36045
components:
- type: Transform
- pos: 11.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,25.5
parent: 2
- - uid: 35940
+ - uid: 38879
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,62.5
+ pos: -15.5,61.5
parent: 2
- - uid: 36045
+- proto: PaperBin20
+ entities:
+ - uid: 16224
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,25.5
+ pos: -19.5,-9.5
parent: 2
- proto: PaperCaptainsThoughts
entities:
@@ -161981,65 +183026,58 @@ entities:
parent: 2
- proto: ParticleAcceleratorControlBoxUnfinished
entities:
- - uid: 32153
+ - uid: 4005
components:
- type: Transform
- anchored: False
- rot: -7.8906110088017325 rad
- pos: -97.052246,49.01646
+ pos: 84.5,-15.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 6507
+ - uid: 5993
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-16.5
parent: 2
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 6697
+ - uid: 18992
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-15.5
parent: 2
- proto: ParticleAcceleratorEmitterStarboardUnfinished
entities:
- - uid: 8860
+ - uid: 18991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -100.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-17.5
parent: 2
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 18617
+ - uid: 21001
components:
- type: Transform
- anchored: False
- rot: -1.5707963267948966 rad
- pos: -96.708115,53.585007
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-16.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 32154
+ - uid: 18999
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,-16.5
parent: 2
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 8801
+ - uid: 18989
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,-16.5
parent: 2
- proto: PartRodMetal
entities:
@@ -162053,18 +183091,105 @@ entities:
- type: Transform
pos: -62.125828,39.512123
parent: 2
+- proto: PartRodMetal1
+ entities:
+ - uid: 36543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.28482,83.28317
+ parent: 2
+ - uid: 36544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.237946,83.02536
+ parent: 2
+ - uid: 36545
+ components:
+ - type: Transform
+ pos: 77.44107,82.93942
+ parent: 2
- proto: Pen
entities:
+ - uid: 564
+ components:
+ - type: Transform
+ pos: -14.31584,59.073666
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.427172,-9.291804
+ parent: 2
+ - uid: 780
+ components:
+ - type: Transform
+ pos: -28.506464,-19.77421
+ parent: 2
- uid: 1624
components:
- type: Transform
pos: -3.6820612,16.445335
parent: 2
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: -28.420527,-19.696085
+ parent: 2
+ - uid: 3744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.572384,57.878353
+ parent: 2
- uid: 7725
components:
- type: Transform
pos: 65.38882,27.469059
parent: 2
+ - uid: 11392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.288572,61.481213
+ parent: 2
+ - uid: 18229
+ components:
+ - type: Transform
+ pos: -26.438654,-23.366085
+ parent: 2
+ - uid: 19336
+ components:
+ - type: Transform
+ pos: -53.159695,-12.47807
+ parent: 2
+ - uid: 19339
+ components:
+ - type: Transform
+ pos: -35.98253,-18.708632
+ parent: 2
+ - uid: 25337
+ components:
+ - type: Transform
+ pos: -6.5520496,-20.295
+ parent: 2
+ - uid: 27351
+ components:
+ - type: Transform
+ pos: 14.92947,12.5471115
+ parent: 2
+ - uid: 27786
+ components:
+ - type: Transform
+ pos: -12.245527,59.628353
+ parent: 2
+ - uid: 28144
+ components:
+ - type: Transform
+ pos: -14.730719,-22.454208
+ parent: 2
- uid: 30534
components:
- type: Transform
@@ -162075,10 +183200,11 @@ entities:
- type: Transform
pos: -7.407786,18.849611
parent: 2
- - uid: 33572
+ - uid: 30997
components:
- type: Transform
- pos: 82.71484,57.73997
+ rot: 3.141592653589793 rad
+ pos: 5.7967186,13.66924
parent: 2
- uid: 35802
components:
@@ -162091,11 +183217,43 @@ entities:
rot: 3.141592653589793 rad
pos: -21.775414,62.501503
parent: 2
- - uid: 36110
+ - uid: 36612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.39692,61.513573
+ parent: 2
+ - uid: 36829
+ components:
+ - type: Transform
+ pos: 66.65503,72.35333
+ parent: 2
+ - uid: 36959
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.605001,37.691273
+ pos: -10.27135,54.65571
+ parent: 2
+ - uid: 36978
+ components:
+ - type: Transform
+ pos: -10.310412,49.147896
+ parent: 2
+ - uid: 36983
+ components:
+ - type: Transform
+ pos: -10.349475,49.397896
+ parent: 2
+ - uid: 36984
+ components:
+ - type: Transform
+ pos: -10.224475,50.60102
+ parent: 2
+ - uid: 38864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.116697,61.614025
parent: 2
- proto: PenCap
entities:
@@ -162115,35 +183273,19 @@ entities:
- uid: 5887
components:
- type: Transform
- pos: -4.4380546,7.3621264
+ pos: 5.5739765,5.417677
parent: 2
- uid: 5888
components:
- type: Transform
pos: 43.61646,40.589447
parent: 2
- - uid: 32597
- components:
- - type: Transform
- pos: 82.89567,46.477467
- parent: 2
- proto: Pickaxe
entities:
- uid: 6828
components:
- type: Transform
- pos: -9.897437,-42.430676
- parent: 2
- - uid: 18367
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.190088,-42.2273
- parent: 2
- - uid: 33448
- components:
- - type: Transform
- pos: 90.74044,26.865591
+ pos: -9.781736,-45.45107
parent: 2
- proto: PillCanister
entities:
@@ -162177,18 +183319,6 @@ entities:
- type: Transform
pos: 15.33622,-11.253563
parent: 2
-- proto: PillSpaceDrugs
- entities:
- - uid: 32553
- components:
- - type: Transform
- pos: 67.85401,52.91087
- parent: 2
- - uid: 32554
- components:
- - type: Transform
- pos: 67.61964,52.645245
- parent: 2
- proto: PillTricordrazine
entities:
- uid: 1647
@@ -162243,77 +183373,74 @@ entities:
parent: 2
- proto: PlasmaCanister
entities:
- - uid: 9351
+ - uid: 36225
components:
- type: Transform
- pos: -37.5,48.5
+ pos: -41.5,48.5
parent: 2
- type: AtmosDevice
joinedGrid: 2
- proto: PlasmaReinforcedWindowDirectional
entities:
- - uid: 49
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,19.5
- parent: 2
- uid: 90
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 35.5,21.5
parent: 2
- - uid: 117
+ - uid: 167
components:
- type: Transform
- pos: 0.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,32.5
parent: 2
- - uid: 167
+ - uid: 801
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 38.5,32.5
+ pos: 38.5,36.5
parent: 2
- - uid: 193
+ - uid: 802
components:
- type: Transform
- pos: 1.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,37.5
parent: 2
- - uid: 239
+ - uid: 1293
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,14.5
parent: 2
- - uid: 244
+ - uid: 1294
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,12.5
parent: 2
- - uid: 552
+ - uid: 1339
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,12.5
parent: 2
- - uid: 564
+ - uid: 1357
components:
- type: Transform
- pos: 0.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,12.5
parent: 2
- - uid: 801
+ - uid: 1358
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,14.5
parent: 2
- - uid: 802
+ - uid: 1359
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,37.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,14.5
parent: 2
- uid: 2817
components:
@@ -162327,6 +183454,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 38.5,38.5
parent: 2
+ - uid: 3206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,14.5
+ parent: 2
- uid: 3268
components:
- type: Transform
@@ -162342,6 +183475,12 @@ entities:
- type: Transform
pos: 35.5,22.5
parent: 2
+ - uid: 4079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,14.5
+ parent: 2
- uid: 4114
components:
- type: Transform
@@ -162354,11 +183493,11 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,-22.5
parent: 2
- - uid: 4556
+ - uid: 4725
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,30.5
+ pos: -9.5,33.5
parent: 2
- uid: 4733
components:
@@ -162375,6 +183514,23 @@ entities:
- type: Transform
pos: 46.5,27.5
parent: 2
+ - uid: 5516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,14.5
+ parent: 2
+ - uid: 5517
+ components:
+ - type: Transform
+ pos: -58.5,10.5
+ parent: 2
+ - uid: 5519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -57.5,14.5
+ parent: 2
- uid: 6020
components:
- type: Transform
@@ -162411,47 +183567,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 49.5,53.5
parent: 2
- - uid: 6240
- components:
- - type: Transform
- pos: 35.5,53.5
- parent: 2
- - uid: 6241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,53.5
- parent: 2
- - uid: 6242
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,54.5
- parent: 2
- - uid: 6243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,55.5
- parent: 2
- - uid: 6244
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,56.5
- parent: 2
- - uid: 6245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,57.5
- parent: 2
- - uid: 6246
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,57.5
- parent: 2
- uid: 6383
components:
- type: Transform
@@ -162494,91 +183609,27 @@ entities:
rot: -1.5707963267948966 rad
pos: 38.5,43.5
parent: 2
- - uid: 7468
- components:
- - type: Transform
- pos: -7.5,68.5
- parent: 2
- - uid: 7472
- components:
- - type: Transform
- pos: -11.5,68.5
- parent: 2
- - uid: 7507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,19.5
- parent: 2
- - uid: 7509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 2
- - uid: 7516
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,19.5
- parent: 2
- - uid: 7646
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,20.5
- parent: 2
- - uid: 7648
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,19.5
- parent: 2
- - uid: 7650
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,20.5
- parent: 2
- - uid: 8268
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,21.5
- parent: 2
- - uid: 8444
- components:
- - type: Transform
- pos: 2.5,21.5
- parent: 2
- - uid: 8643
+ - uid: 6913
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-16.5
+ pos: 5.5,10.5
parent: 2
- - uid: 8747
+ - uid: 7147
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-16.5
- parent: 2
- - uid: 8757
- components:
- - type: Transform
- pos: 2.5,-14.5
+ pos: 5.5,12.5
parent: 2
- - uid: 8760
+ - uid: 7468
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-16.5
+ pos: -7.5,68.5
parent: 2
- - uid: 8812
+ - uid: 7472
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-14.5
+ pos: -11.5,68.5
parent: 2
- uid: 9115
components:
@@ -162628,223 +183679,210 @@ entities:
rot: 1.5707963267948966 rad
pos: -23.5,-24.5
parent: 2
- - uid: 18329
+ - uid: 15781
components:
- type: Transform
- pos: -9.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,14.5
parent: 2
- - uid: 18340
+ - uid: 16584
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,68.5
+ pos: -18.5,39.5
parent: 2
- - uid: 19651
+ - uid: 17610
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,68.5
+ pos: 22.5,10.5
parent: 2
- - uid: 19846
+ - uid: 17611
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,68.5
+ pos: 21.5,10.5
parent: 2
- - uid: 25441
+ - uid: 17612
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,39.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,12.5
parent: 2
- - uid: 27717
+ - uid: 18329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,48.5
+ pos: -9.5,68.5
parent: 2
- - uid: 30394
+ - uid: 18340
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,68.5
parent: 2
- - uid: 30397
+ - uid: 19651
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,68.5
parent: 2
- - uid: 30400
+ - uid: 19846
components:
- type: Transform
- pos: 1.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,68.5
parent: 2
- - uid: 30403
+ - uid: 20250
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,30.5
parent: 2
- - uid: 30483
+ - uid: 22420
components:
- type: Transform
- pos: 35.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,34.5
parent: 2
- - uid: 30484
+ - uid: 22501
components:
- type: Transform
- pos: 36.5,21.5
+ pos: -57.5,10.5
parent: 2
- - uid: 30485
+ - uid: 22505
components:
- type: Transform
- pos: 37.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,14.5
parent: 2
- - uid: 30486
+ - uid: 22528
components:
- type: Transform
- pos: 38.5,21.5
+ pos: -59.5,10.5
parent: 2
-- proto: PlasmaTankFilled
- entities:
- - uid: 9592
+ - uid: 24355
components:
- type: Transform
- pos: -48.818756,33.7304
+ rot: 3.141592653589793 rad
+ pos: 21.5,12.5
parent: 2
- - uid: 9593
+ - uid: 25150
components:
- type: Transform
- pos: -48.58438,33.62493
+ rot: 3.141592653589793 rad
+ pos: 23.5,10.5
parent: 2
-- proto: PlasmaWindowDirectional
- entities:
- - uid: 30281
+ - uid: 25441
components:
- type: Transform
- pos: -71.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,39.5
parent: 2
- - uid: 30284
+ - uid: 26167
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,10.5
parent: 2
- - uid: 30285
+ - uid: 27350
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,8.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,10.5
parent: 2
- - uid: 30286
+ - uid: 30483
components:
- type: Transform
- pos: -69.5,7.5
+ pos: 35.5,21.5
parent: 2
- - uid: 30287
+ - uid: 30484
components:
- type: Transform
- pos: -70.5,7.5
+ pos: 36.5,21.5
parent: 2
- - uid: 30288
+ - uid: 30485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,7.5
+ pos: 37.5,21.5
parent: 2
- - uid: 30289
+ - uid: 30486
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,9.5
+ pos: 38.5,21.5
parent: 2
- - uid: 30291
+ - uid: 32039
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -69.5,7.5
+ pos: -31.5,40.5
parent: 2
- - uid: 30292
+ - uid: 33725
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -69.5,9.5
+ pos: -31.5,40.5
parent: 2
- - uid: 30293
+ - uid: 38784
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,9.5
+ pos: -16.5,39.5
parent: 2
- - uid: 30294
+- proto: PlasmaTankFilled
+ entities:
+ - uid: 9592
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -70.5,9.5
+ pos: -48.818756,33.7304
parent: 2
- - uid: 30295
+ - uid: 9593
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,9.5
+ pos: -48.58438,33.62493
parent: 2
- proto: PlasticFlapsAirtightClear
entities:
- - uid: 6620
+ - uid: 244
components:
- type: Transform
- pos: -33.5,-45.5
+ pos: -22.5,-49.5
parent: 2
- - uid: 6629
+ - uid: 2937
components:
- type: Transform
- pos: -19.5,-36.5
+ pos: -26.5,-40.5
parent: 2
- - uid: 6691
+ - uid: 6729
components:
- type: Transform
- pos: -20.5,-40.5
+ pos: -32.5,-40.5
parent: 2
- - uid: 6693
+ - uid: 6798
components:
- type: Transform
- pos: -52.5,-45.5
+ pos: -22.5,-47.5
parent: 2
- - uid: 6780
+ - uid: 6808
components:
- type: Transform
- pos: -20.5,-44.5
+ pos: -18.5,-47.5
parent: 2
- uid: 6962
components:
- type: Transform
pos: -22.5,-26.5
parent: 2
- - uid: 8699
- components:
- - type: Transform
- pos: -29.5,-45.5
- parent: 2
- - uid: 10338
- components:
- - type: Transform
- pos: -47.5,-50.5
- parent: 2
- - uid: 20718
+ - uid: 10343
components:
- type: Transform
- pos: -52.5,-49.5
+ pos: -22.5,-40.5
parent: 2
- - uid: 20719
+ - uid: 10512
components:
- type: Transform
- pos: -51.5,-50.5
+ pos: -18.5,-40.5
parent: 2
- - uid: 31775
+ - uid: 27952
components:
- type: Transform
- pos: -15.5,-36.5
+ pos: -18.5,-49.5
parent: 2
- uid: 31782
components:
@@ -162853,17 +183891,18 @@ entities:
parent: 2
- proto: PlasticFlapsOpaque
entities:
- - uid: 2925
+ - uid: 20720
components:
- type: Transform
- pos: -17.5,-19.5
+ pos: -17.5,-18.5
parent: 2
- proto: Plunger
entities:
- - uid: 33596
+ - uid: 37634
components:
- type: Transform
- pos: 81.83042,43.86668
+ rot: 1.5707963267948966 rad
+ pos: 75.63981,62.819332
parent: 2
- proto: PlushieCarp
entities:
@@ -162899,37 +183938,60 @@ entities:
rot: 3.141592653589793 rad
pos: -79.8485,25.229614
parent: 2
+ - uid: 33531
+ components:
+ - type: Transform
+ pos: 99.389084,18.571938
+ parent: 2
- uid: 33687
components:
- type: Transform
pos: -37.478252,61.489017
parent: 2
+- proto: PlushieDiona
+ entities:
+ - uid: 31735
+ components:
+ - type: Transform
+ pos: -3.3220685,0.0034998655
+ parent: 2
- proto: PlushieGhost
entities:
+ - uid: 5306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.503395,29.603338
+ parent: 2
- uid: 30093
components:
- type: Transform
pos: 91.25434,40.499058
parent: 2
+ - uid: 37625
+ components:
+ - type: Transform
+ pos: -41.521854,9.591109
+ parent: 2
+- proto: PlushieHolocarp
+ entities:
+ - uid: 33936
+ components:
+ - type: Transform
+ pos: 3.5841815,-0.32515478
+ parent: 2
- proto: PlushieLizard
entities:
- uid: 2081
components:
- type: Transform
- pos: -16.626633,-7.559744
+ pos: -17.31847,-8.458204
parent: 2
- uid: 13099
components:
- type: Transform
pos: 5.2591686,-34.27805
parent: 2
-- proto: PlushieMoth
- entities:
- - uid: 5984
- components:
- - type: Transform
- pos: 14.511692,-35.469685
- parent: 2
- proto: PlushieMothMusician
entities:
- uid: 461
@@ -162949,27 +184011,15 @@ entities:
- uid: 2079
components:
- type: Transform
- pos: -21.700851,-8.520681
+ pos: -16.81847,-8.450392
parent: 2
- uid: 13098
components:
- type: Transform
pos: 4.5912,-34.28977
parent: 2
-- proto: PlushieRouny
- entities:
- - uid: 33613
- components:
- - type: Transform
- pos: 82.21812,48.821774
- parent: 2
- proto: PlushieSharkBlue
entities:
- - uid: 5983
- components:
- - type: Transform
- pos: 15.273411,-35.575153
- parent: 2
- uid: 8481
components:
- type: Transform
@@ -162985,6 +184035,11 @@ entities:
- type: Transform
pos: 47.312172,-11.457953
parent: 2
+ - uid: 31997
+ components:
+ - type: Transform
+ pos: -42.413776,-35.308582
+ parent: 2
- proto: PlushieSharkGrey
entities:
- uid: 33688
@@ -163002,45 +184057,97 @@ entities:
- uid: 7684
components:
- type: Transform
- pos: -82.2916,29.49453
+ pos: -82.2916,29.49453
+ parent: 2
+ - uid: 23466
+ components:
+ - type: Transform
+ pos: -104.682976,3.9293537
+ parent: 2
+- proto: PlushieSlime
+ entities:
+ - uid: 22686
+ components:
+ - type: Transform
+ pos: -68.47823,-8.577678
+ parent: 2
+- proto: PlushieSnake
+ entities:
+ - uid: 30034
+ components:
+ - type: Transform
+ pos: 90.642136,17.907494
+ parent: 2
+ - uid: 37662
+ components:
+ - type: Transform
+ pos: -53.374634,55.493587
+ parent: 2
+- proto: PlushieSpaceLizard
+ entities:
+ - uid: 13101
+ components:
+ - type: Transform
+ pos: -3.5416126,-33.492893
+ parent: 2
+- proto: PortableFlasher
+ entities:
+ - uid: 26018
+ components:
+ - type: Transform
+ pos: -27.5,39.5
+ parent: 2
+ - uid: 32590
+ components:
+ - type: Transform
+ pos: -31.5,40.5
+ parent: 2
+ - uid: 33724
+ components:
+ - type: Transform
+ pos: -22.5,38.5
+ parent: 2
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -29.5,3.5
+ parent: 2
+ - uid: 3910
+ components:
+ - type: Transform
+ pos: 39.5,16.5
parent: 2
- - uid: 23466
+ - uid: 4818
components:
- type: Transform
- pos: -104.682976,3.9293537
+ pos: 21.5,-23.5
parent: 2
-- proto: PlushieSnake
- entities:
- - uid: 30034
+ - uid: 10236
components:
- type: Transform
- pos: 90.642136,17.907494
+ pos: 13.5,-31.5
parent: 2
-- proto: PlushieSpaceLizard
- entities:
- - uid: 13101
+ - uid: 12434
components:
- type: Transform
- pos: -3.5416126,-33.492893
+ pos: 23.5,-23.5
parent: 2
-- proto: PortableFlasher
- entities:
- - uid: 19390
+ - uid: 38099
components:
- type: Transform
- pos: -15.5,45.5
+ pos: -77.5,19.5
parent: 2
-- proto: PortableGeneratorJrPacman
- entities:
- - uid: 20191
+ - uid: 38708
components:
- type: Transform
- pos: -26.5,-4.5
+ pos: -35.5,71.5
parent: 2
- - uid: 20932
+ - uid: 38711
components:
- type: Transform
- pos: 39.5,13.5
+ pos: 35.5,57.5
parent: 2
- proto: PortableGeneratorPacman
entities:
@@ -163100,34 +184207,69 @@ entities:
- type: Transform
pos: 56.5,56.5
parent: 2
- - uid: 7055
+ - uid: 7056
components:
- type: Transform
- pos: -34.5,-32.5
+ pos: -24.5,-33.5
parent: 2
- - uid: 7056
+ - uid: 21029
components:
- type: Transform
- pos: -24.5,-33.5
+ pos: 90.5,76.5
parent: 2
- uid: 25064
components:
- type: Transform
pos: 71.5,31.5
parent: 2
-- proto: PosterContrabandAtmosiaDeclarationIndependence
- entities:
- - uid: 22421
+ - uid: 32361
components:
- type: Transform
- pos: -37.5,36.5
+ pos: -101.5,56.5
+ parent: 2
+ - uid: 36152
+ components:
+ - type: Transform
+ pos: 67.5,85.5
+ parent: 2
+ - uid: 36153
+ components:
+ - type: Transform
+ pos: 55.5,80.5
+ parent: 2
+ - uid: 36154
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 2
+ - uid: 36155
+ components:
+ - type: Transform
+ pos: 84.5,50.5
+ parent: 2
+ - uid: 36764
+ components:
+ - type: Transform
+ pos: 24.5,15.5
+ parent: 2
+ - uid: 36795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,63.5
+ parent: 2
+ - uid: 36796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,61.5
parent: 2
-- proto: PosterContrabandBorgFancy
+- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
- - uid: 29638
+ - uid: 22421
components:
- type: Transform
- pos: 6.5,-22.5
+ pos: -37.5,36.5
parent: 2
- proto: PosterContrabandBorgFancyv2
entities:
@@ -163138,10 +184280,16 @@ entities:
parent: 2
- proto: PosterContrabandBountyHunters
entities:
- - uid: 23349
+ - uid: 30780
components:
- type: Transform
- pos: -17.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,45.5
+ parent: 2
+ - uid: 35896
+ components:
+ - type: Transform
+ pos: -56.5,-30.5
parent: 2
- proto: PosterContrabandBreadLies
entities:
@@ -163150,6 +184298,22 @@ entities:
- type: Transform
pos: 32.5,-17.5
parent: 2
+- proto: PosterContrabandC20r
+ entities:
+ - uid: 15624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,79.5
+ parent: 2
+- proto: PosterContrabandCC64KAd
+ entities:
+ - uid: 38696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,38.5
+ parent: 2
- proto: PosterContrabandClown
entities:
- uid: 22056
@@ -163157,8 +184321,18 @@ entities:
- type: Transform
pos: -75.5,6.5
parent: 2
+ - uid: 35897
+ components:
+ - type: Transform
+ pos: -58.5,-30.5
+ parent: 2
- proto: PosterContrabandCommunistState
entities:
+ - uid: 12445
+ components:
+ - type: Transform
+ pos: 23.5,-35.5
+ parent: 2
- uid: 23354
components:
- type: Transform
@@ -163169,8 +184343,28 @@ entities:
- type: Transform
pos: -7.5,-10.5
parent: 2
+- proto: PosterContrabandDDayPromo
+ entities:
+ - uid: 15060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,41.5
+ parent: 2
+ - uid: 19878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,41.5
+ parent: 2
- proto: PosterContrabandDonk
entities:
+ - uid: 17905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,28.5
+ parent: 2
- uid: 23356
components:
- type: Transform
@@ -163178,10 +184372,16 @@ entities:
parent: 2
- proto: PosterContrabandDonutCorp
entities:
- - uid: 23361
+ - uid: 4736
components:
- type: Transform
- pos: 47.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,46.5
+ parent: 2
+ - uid: 37191
+ components:
+ - type: Transform
+ pos: -10.5,47.5
parent: 2
- proto: PosterContrabandEAT
entities:
@@ -163190,22 +184390,13 @@ entities:
- type: Transform
pos: -34.5,-17.5
parent: 2
- - uid: 22925
- components:
- - type: Transform
- pos: -42.5,-26.5
- parent: 2
- - uid: 23363
- components:
- - type: Transform
- pos: 27.5,-33.5
- parent: 2
- proto: PosterContrabandEnlistGorlex
entities:
- - uid: 29779
+ - uid: 30846
components:
- type: Transform
- pos: 83.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,75.5
parent: 2
- proto: PosterContrabandFreeDrone
entities:
@@ -163216,10 +184407,11 @@ entities:
parent: 2
- proto: PosterContrabandFreeSyndicateEncryptionKey
entities:
- - uid: 32595
+ - uid: 16004
components:
- type: Transform
- pos: 71.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,74.5
parent: 2
- proto: PosterContrabandFreeTonto
entities:
@@ -163230,29 +184422,49 @@ entities:
parent: 2
- proto: PosterContrabandFunPolice
entities:
+ - uid: 10371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,37.5
+ parent: 2
- uid: 23371
components:
- type: Transform
pos: -44.5,-6.5
parent: 2
+ - uid: 30786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,44.5
+ parent: 2
+ - uid: 30894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,35.5
+ parent: 2
- proto: PosterContrabandGotWood
entities:
- - uid: 23372
+ - uid: 3318
components:
- type: Transform
- pos: -54.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-0.5
parent: 2
- proto: PosterContrabandGreyTide
entities:
- - uid: 23373
+ - uid: 2025
components:
- type: Transform
- pos: -34.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-36.5
parent: 2
- - uid: 29780
+ - uid: 20875
components:
- type: Transform
- pos: 87.5,59.5
+ pos: -24.5,-10.5
parent: 2
- proto: PosterContrabandHaveaPuff
entities:
@@ -163268,10 +184480,12 @@ entities:
- type: Transform
pos: 21.5,-12.5
parent: 2
- - uid: 29778
+- proto: PosterContrabandKosmicheskayaStantsiya
+ entities:
+ - uid: 37574
components:
- type: Transform
- pos: 87.5,62.5
+ pos: -56.5,-7.5
parent: 2
- proto: PosterContrabandKudzu
entities:
@@ -163280,6 +184494,11 @@ entities:
- type: Transform
pos: 38.5,13.5
parent: 2
+ - uid: 37575
+ components:
+ - type: Transform
+ pos: -56.5,-0.5
+ parent: 2
- proto: PosterContrabandLamarr
entities:
- uid: 5741
@@ -163287,24 +184506,18 @@ entities:
- type: Transform
pos: 44.5,31.5
parent: 2
-- proto: PosterContrabandLustyExomorph
- entities:
- - uid: 23383
+ - uid: 36090
components:
- type: Transform
- pos: 12.5,-32.5
+ pos: -53.5,-26.5
parent: 2
- proto: PosterContrabandMaskedMen
entities:
- - uid: 23384
- components:
- - type: Transform
- pos: 23.5,-36.5
- parent: 2
- - uid: 30636
+ - uid: 30832
components:
- type: Transform
- pos: -49.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,29.5
parent: 2
- proto: PosterContrabandMissingGloves
entities:
@@ -163314,13 +184527,30 @@ entities:
rot: 3.141592653589793 rad
pos: -40.5,35.5
parent: 2
+ - uid: 30833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,28.5
+ parent: 2
- proto: PosterContrabandNuclearDeviceInformational
entities:
+ - uid: 4824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,75.5
+ parent: 2
- uid: 14083
components:
- type: Transform
pos: 29.5,40.5
parent: 2
+ - uid: 25987
+ components:
+ - type: Transform
+ pos: -22.5,52.5
+ parent: 2
- proto: PosterContrabandPower
entities:
- uid: 23394
@@ -163342,8 +184572,19 @@ entities:
- type: Transform
pos: 15.5,22.5
parent: 2
+ - uid: 37578
+ components:
+ - type: Transform
+ pos: -56.5,-5.5
+ parent: 2
- proto: PosterContrabandRebelsUnite
entities:
+ - uid: 4821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,71.5
+ parent: 2
- uid: 23398
components:
- type: Transform
@@ -163351,10 +184592,11 @@ entities:
parent: 2
- proto: PosterContrabandRedRum
entities:
- - uid: 7624
+ - uid: 11667
components:
- type: Transform
- pos: 18.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-27.5
parent: 2
- proto: PosterContrabandRevolt
entities:
@@ -163368,8 +184610,44 @@ entities:
- type: Transform
pos: -52.5,20.5
parent: 2
+- proto: PosterContrabandRevolver
+ entities:
+ - uid: 2592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,41.5
+ parent: 2
+ - uid: 3734
+ components:
+ - type: Transform
+ pos: -34.5,48.5
+ parent: 2
+ - uid: 28895
+ components:
+ - type: Transform
+ pos: -16.5,52.5
+ parent: 2
+ - uid: 30836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,33.5
+ parent: 2
+ - uid: 30838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-6.5
+ parent: 2
- proto: PosterContrabandRIPBadger
entities:
+ - uid: 20027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,72.5
+ parent: 2
- uid: 23397
components:
- type: Transform
@@ -163377,41 +184655,82 @@ entities:
parent: 2
- proto: PosterContrabandRise
entities:
- - uid: 23408
+ - uid: 739
components:
- type: Transform
- pos: -58.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,37.5
parent: 2
- proto: PosterContrabandRobustSoftdrinks
entities:
+ - uid: 4109
+ components:
+ - type: Transform
+ pos: -55.5,-26.5
+ parent: 2
- uid: 7625
components:
- type: Transform
pos: -37.5,-12.5
parent: 2
- - uid: 22801
+ - uid: 21930
components:
- type: Transform
- pos: -35.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-19.5
+ parent: 2
+- proto: PosterContrabandSafetyMothSyndie
+ entities:
+ - uid: 30848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,78.5
parent: 2
- proto: PosterContrabandSaucerNumberOne
entities:
- - uid: 23427
+ - uid: 1824
components:
- type: Transform
- pos: 22.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,12.5
+ parent: 2
+- proto: PosterContrabandShamblersJuice
+ entities:
+ - uid: 36092
+ components:
+ - type: Transform
+ pos: -34.5,-25.5
parent: 2
- proto: PosterContrabandSmoke
entities:
+ - uid: 2653
+ components:
+ - type: Transform
+ pos: -39.5,-28.5
+ parent: 2
+ - uid: 6919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-39.5
+ parent: 2
+ - uid: 10478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,45.5
+ parent: 2
- uid: 23429
components:
- type: Transform
pos: 44.5,16.5
parent: 2
- - uid: 25055
+ - uid: 30841
components:
- type: Transform
- pos: -34.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-17.5
parent: 2
- proto: PosterContrabandSpaceCola
entities:
@@ -163420,12 +184739,19 @@ entities:
- type: Transform
pos: -53.5,-13.5
parent: 2
+ - uid: 30842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-18.5
+ parent: 2
- proto: PosterContrabandSpaceCube
entities:
- - uid: 23432
+ - uid: 28885
components:
- type: Transform
- pos: -11.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,22.5
parent: 2
- proto: PosterContrabandSpaceUp
entities:
@@ -163441,22 +184767,52 @@ entities:
parent: 2
- proto: PosterContrabandSunkist
entities:
- - uid: 7628
+ - uid: 15190
components:
- type: Transform
- pos: -48.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-39.5
parent: 2
- uid: 23434
components:
- type: Transform
pos: -42.5,10.5
parent: 2
+ - uid: 26859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-12.5
+ parent: 2
+ - uid: 30844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-0.5
+ parent: 2
+- proto: PosterContrabandSyndicatePistol
+ entities:
+ - uid: 10273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,40.5
+ parent: 2
- proto: PosterContrabandSyndicateRecruitment
entities:
- - uid: 32596
+ - uid: 30847
components:
- type: Transform
- pos: 73.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 93.5,71.5
+ parent: 2
+- proto: PosterContrabandTheBigGasTruth
+ entities:
+ - uid: 30849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,53.5
parent: 2
- proto: PosterContrabandTheGriffin
entities:
@@ -163465,6 +184821,14 @@ entities:
- type: Transform
pos: 22.5,-9.5
parent: 2
+- proto: PosterContrabandTools
+ entities:
+ - uid: 14636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,0.5
+ parent: 2
- proto: PosterContrabandUnreadableAnnouncement
entities:
- uid: 7629
@@ -163472,11 +184836,33 @@ entities:
- type: Transform
pos: -35.5,-12.5
parent: 2
+ - uid: 14064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -123.5,54.5
+ parent: 2
+ - uid: 18831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -110.5,57.5
+ parent: 2
- uid: 23442
components:
- type: Transform
pos: 10.5,26.5
parent: 2
+ - uid: 35726
+ components:
+ - type: Transform
+ pos: 81.5,50.5
+ parent: 2
+ - uid: 38732
+ components:
+ - type: Transform
+ pos: -98.5,50.5
+ parent: 2
- proto: PosterContrabandVoteWeh
entities:
- uid: 23443
@@ -163484,6 +184870,14 @@ entities:
- type: Transform
pos: -7.5,17.5
parent: 2
+- proto: PosterContrabandWaffleCorp
+ entities:
+ - uid: 25633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,79.5
+ parent: 2
- proto: PosterContrabandWehWatches
entities:
- uid: 23445
@@ -163503,15 +184897,15 @@ entities:
parent: 2
- proto: PosterLegit12Gauge
entities:
- - uid: 23340
+ - uid: 23345
components:
- type: Transform
- pos: -23.5,49.5
+ pos: -5.5,36.5
parent: 2
- - uid: 23345
+ - uid: 25991
components:
- type: Transform
- pos: -5.5,36.5
+ pos: -19.5,37.5
parent: 2
- proto: PosterLegit50thAnniversaryVintageReprint
entities:
@@ -163522,17 +184916,24 @@ entities:
parent: 2
- proto: PosterLegitAnatomyPoster
entities:
- - uid: 23346
+ - uid: 1362
components:
- type: Transform
- pos: -8.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,17.5
+ parent: 2
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: -4.5,5.5
parent: 2
- proto: PosterLegitBarDrinks
entities:
- - uid: 3327
+ - uid: 31419
components:
- type: Transform
- pos: 16.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-36.5
parent: 2
- uid: 33679
components:
@@ -163540,6 +184941,16 @@ entities:
rot: 1.5707963267948966 rad
pos: -34.5,66.5
parent: 2
+ - uid: 35894
+ components:
+ - type: Transform
+ pos: -39.5,-17.5
+ parent: 2
+ - uid: 35895
+ components:
+ - type: Transform
+ pos: -58.5,-26.5
+ parent: 2
- proto: PosterLegitBlessThisSpess
entities:
- uid: 23348
@@ -163547,6 +184958,12 @@ entities:
- type: Transform
pos: -13.5,-6.5
parent: 2
+ - uid: 30782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,27.5
+ parent: 2
- proto: PosterLegitBotanyFood
entities:
- uid: 2452
@@ -163559,6 +184976,12 @@ entities:
- type: Transform
pos: -50.5,-12.5
parent: 2
+ - uid: 38884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,57.5
+ parent: 2
- proto: PosterLegitBuild
entities:
- uid: 23350
@@ -163566,18 +184989,105 @@ entities:
- type: Transform
pos: -52.5,28.5
parent: 2
-- proto: PosterLegitCleanliness
+ - uid: 30781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,31.5
+ parent: 2
+- proto: PosterLegitCarpMount
entities:
- - uid: 23352
+ - uid: 15661
components:
- type: Transform
- pos: -39.5,25.5
+ pos: -18.5,52.5
+ parent: 2
+ - uid: 28675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,36.5
+ parent: 2
+ - uid: 28845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,44.5
+ parent: 2
+ - uid: 28846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,59.5
+ parent: 2
+ - uid: 28847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,47.5
parent: 2
+- proto: PosterLegitCleanliness
+ entities:
- uid: 23353
components:
- type: Transform
pos: -5.5,16.5
parent: 2
+ - uid: 25099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,9.5
+ parent: 2
+ - uid: 26135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,8.5
+ parent: 2
+ - uid: 27073
+ components:
+ - type: Transform
+ pos: 73.5,-14.5
+ parent: 2
+ - uid: 27954
+ components:
+ - type: Transform
+ pos: -40.5,18.5
+ parent: 2
+ - uid: 37727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,18.5
+ parent: 2
+- proto: PosterLegitCohibaRobustoAd
+ entities:
+ - uid: 37609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,-34.5
+ parent: 2
+- proto: PosterLegitCornzza
+ entities:
+ - uid: 35898
+ components:
+ - type: Transform
+ pos: -59.5,-30.5
+ parent: 2
+- proto: PosterLegitDejaVu
+ entities:
+ - uid: 4674
+ components:
+ - type: Transform
+ pos: 13.5,-27.5
+ parent: 2
+ - uid: 16849
+ components:
+ - type: Transform
+ pos: 12.5,-36.5
+ parent: 2
- proto: PosterLegitDickGumshue
entities:
- uid: 5596
@@ -163585,10 +185095,17 @@ entities:
- type: Transform
pos: 44.5,35.5
parent: 2
- - uid: 23357
+ - uid: 23155
components:
- type: Transform
- pos: -37.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-7.5
+ parent: 2
+ - uid: 30785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,39.5
parent: 2
- proto: PosterLegitDoNotQuestion
entities:
@@ -163597,8 +185114,32 @@ entities:
- type: Transform
pos: -18.5,23.5
parent: 2
+ - uid: 28892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,34.5
+ parent: 2
+ - uid: 28900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,54.5
+ parent: 2
+ - uid: 28908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,67.5
+ parent: 2
- proto: PosterLegitDontPanic
entities:
+ - uid: 10339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,39.5
+ parent: 2
- uid: 23359
components:
- type: Transform
@@ -163611,17 +185152,35 @@ entities:
- type: Transform
pos: -48.5,-12.5
parent: 2
- - uid: 23362
+ - uid: 16596
components:
- type: Transform
- pos: 31.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,73.5
+ parent: 2
+- proto: PosterLegitEnlist
+ entities:
+ - uid: 30889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,71.5
+ parent: 2
+- proto: PosterLegitFoamForceAd
+ entities:
+ - uid: 10274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,39.5
parent: 2
- proto: PosterLegitFruitBowl
entities:
- - uid: 23368
+ - uid: 11343
components:
- type: Transform
- pos: -34.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,-20.5
parent: 2
- proto: PosterLegitFuckAround
entities:
@@ -163631,6 +185190,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,-6.5
parent: 2
+ - uid: 16153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,38.5
+ parent: 2
- proto: PosterLegitGetYourLEGS
entities:
- uid: 23370
@@ -163645,20 +185210,66 @@ entities:
- type: Transform
pos: -5.5,-33.5
parent: 2
+ - uid: 30830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,34.5
+ parent: 2
- proto: PosterLegitHereForYourSafety
entities:
+ - uid: 12481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,28.5
+ parent: 2
- uid: 23374
components:
- type: Transform
pos: -11.5,-26.5
parent: 2
+ - uid: 26730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,43.5
+ parent: 2
+ - uid: 28972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,63.5
+ parent: 2
+ - uid: 28975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -45.5,62.5
+ parent: 2
+ - uid: 36777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,64.5
+ parent: 2
- proto: PosterLegitHighClassMartini
entities:
- - uid: 23856
+ - uid: 300
+ components:
+ - type: Transform
+ pos: -40.5,-24.5
+ parent: 2
+ - uid: 19383
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-22.5
+ pos: -12.5,78.5
+ parent: 2
+ - uid: 31935
+ components:
+ - type: Transform
+ pos: -42.5,68.5
parent: 2
- proto: PosterLegitHotDonkExplosion
entities:
@@ -163674,13 +185285,38 @@ entities:
- type: Transform
pos: 11.5,-12.5
parent: 2
+ - uid: 35942
+ components:
+ - type: Transform
+ pos: -57.5,-26.5
+ parent: 2
+- proto: PosterLegitIonRifle
+ entities:
+ - uid: 10340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,37.5
+ parent: 2
- proto: PosterLegitJustAWeekAway
entities:
+ - uid: 19382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,73.5
+ parent: 2
- uid: 23380
components:
- type: Transform
pos: 31.5,8.5
parent: 2
+ - uid: 30831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,36.5
+ parent: 2
- proto: PosterLegitLoveIan
entities:
- uid: 23382
@@ -163688,12 +185324,29 @@ entities:
- type: Transform
pos: 13.5,26.5
parent: 2
+ - uid: 28963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,59.5
+ parent: 2
- proto: PosterLegitMedicate
entities:
- - uid: 23435
+ - uid: 1147
components:
- type: Transform
- pos: -4.5,0.5
+ pos: 21.5,17.5
+ parent: 2
+ - uid: 12996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 27326
+ components:
+ - type: Transform
+ pos: 5.5,8.5
parent: 2
- uid: 28642
components:
@@ -163707,6 +185360,11 @@ entities:
- type: Transform
pos: -81.5,2.5
parent: 2
+ - uid: 36091
+ components:
+ - type: Transform
+ pos: -38.5,-26.5
+ parent: 2
- proto: PosterLegitNanomichiAd
entities:
- uid: 23386
@@ -163714,6 +185372,39 @@ entities:
- type: Transform
pos: -53.5,32.5
parent: 2
+ - uid: 37577
+ components:
+ - type: Transform
+ pos: -49.5,-9.5
+ parent: 2
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 15235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-36.5
+ parent: 2
+ - uid: 28919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,67.5
+ parent: 2
+ - uid: 35893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,31.5
+ parent: 2
+- proto: PosterLegitNoERP
+ entities:
+ - uid: 28941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,67.5
+ parent: 2
- proto: PosterLegitNoTouching
entities:
- uid: 5409
@@ -163721,13 +185412,59 @@ entities:
- type: Transform
pos: -10.5,68.5
parent: 2
+ - uid: 15213
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,56.5
+ parent: 2
- proto: PosterLegitObey
entities:
+ - uid: 15513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,34.5
+ parent: 2
+ - uid: 16060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,32.5
+ parent: 2
- uid: 23390
components:
- type: Transform
pos: -44.5,3.5
parent: 2
+ - uid: 25315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,38.5
+ parent: 2
+ - uid: 28918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,67.5
+ parent: 2
+ - uid: 36779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,63.5
+ parent: 2
+ - uid: 36876
+ components:
+ - type: Transform
+ pos: 70.5,69.5
+ parent: 2
+ - uid: 36921
+ components:
+ - type: Transform
+ pos: 16.5,-23.5
+ parent: 2
- proto: PosterLegitPDAAd
entities:
- uid: 23391
@@ -163735,19 +185472,27 @@ entities:
- type: Transform
pos: -41.5,12.5
parent: 2
+ - uid: 38003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,44.5
+ parent: 2
- proto: PosterLegitPeriodicTable
entities:
- - uid: 23392
+ - uid: 29351
components:
- type: Transform
- pos: -36.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,13.5
parent: 2
- proto: PosterLegitPieSlice
entities:
- - uid: 7622
+ - uid: 16613
components:
- type: Transform
- pos: 27.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,72.5
parent: 2
- uid: 23393
components:
@@ -163763,6 +185508,12 @@ entities:
parent: 2
- proto: PosterLegitRenault
entities:
+ - uid: 16084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,32.5
+ parent: 2
- uid: 23399
components:
- type: Transform
@@ -163770,6 +185521,12 @@ entities:
parent: 2
- proto: PosterLegitReportCrimes
entities:
+ - uid: 10372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,53.5
+ parent: 2
- uid: 23400
components:
- type: Transform
@@ -163780,25 +185537,27 @@ entities:
- type: Transform
pos: 40.5,-14.5
parent: 2
- - uid: 23402
+ - uid: 23403
components:
- type: Transform
- pos: 19.5,-22.5
+ pos: -17.5,-23.5
parent: 2
- - uid: 23403
+ - uid: 23405
components:
- type: Transform
- pos: -17.5,-23.5
+ pos: -81.5,10.5
parent: 2
- - uid: 23404
+ - uid: 28891
components:
- type: Transform
- pos: -57.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,23.5
parent: 2
- - uid: 23405
+ - uid: 30837
components:
- type: Transform
- pos: -81.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-12.5
parent: 2
- proto: PosterLegitSafetyEyeProtection
entities:
@@ -163814,20 +185573,27 @@ entities:
parent: 2
- proto: PosterLegitSafetyInternals
entities:
- - uid: 23421
+ - uid: 7514
components:
- type: Transform
- pos: -57.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,38.5
parent: 2
- - uid: 23422
+ - uid: 15191
components:
- type: Transform
- pos: -31.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-47.5
parent: 2
- - uid: 23423
+ - uid: 23421
components:
- type: Transform
- pos: -21.5,52.5
+ pos: -57.5,38.5
+ parent: 2
+ - uid: 36769
+ components:
+ - type: Transform
+ pos: 24.5,14.5
parent: 2
- proto: PosterLegitSafetyMothBoH
entities:
@@ -163838,6 +185604,12 @@ entities:
parent: 2
- proto: PosterLegitSafetyMothDelam
entities:
+ - uid: 6708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,-39.5
+ parent: 2
- uid: 23410
components:
- type: Transform
@@ -163845,6 +185617,18 @@ entities:
parent: 2
- proto: PosterLegitSafetyMothEpi
entities:
+ - uid: 1564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,8.5
+ parent: 2
+ - uid: 15072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-0.5
+ parent: 2
- uid: 23411
components:
- type: Transform
@@ -163852,10 +185636,10 @@ entities:
parent: 2
- proto: PosterLegitSafetyMothFires
entities:
- - uid: 23412
+ - uid: 22312
components:
- type: Transform
- pos: -18.5,-10.5
+ pos: -12.5,-10.5
parent: 2
- proto: PosterLegitSafetyMothGlimmer
entities:
@@ -163895,15 +185679,35 @@ entities:
- type: Transform
pos: 14.5,-11.5
parent: 2
+ - uid: 25277
+ components:
+ - type: Transform
+ pos: 23.5,17.5
+ parent: 2
- proto: PosterLegitSafetyMothPiping
entities:
- - uid: 23417
+ - uid: 32267
components:
- type: Transform
- pos: -35.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,7.5
+ parent: 2
+- proto: PosterLegitSafetyMothPoisoning
+ entities:
+ - uid: 25837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,17.5
parent: 2
- proto: PosterLegitSafetyReport
entities:
+ - uid: 8062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,37.5
+ parent: 2
- uid: 23426
components:
- type: Transform
@@ -163914,8 +185718,43 @@ entities:
- type: Transform
pos: -0.5,33.5
parent: 2
+ - uid: 36793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,62.5
+ parent: 2
- proto: PosterLegitSecWatch
entities:
+ - uid: 2184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,33.5
+ parent: 2
+ - uid: 2596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,23.5
+ parent: 2
+ - uid: 10346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,46.5
+ parent: 2
+ - uid: 14963
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 2
+ - uid: 15413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,60.5
+ parent: 2
- uid: 17851
components:
- type: Transform
@@ -163926,19 +185765,92 @@ entities:
- type: Transform
pos: -8.5,68.5
parent: 2
-- proto: PosterLegitSoftCapPopArt
+ - uid: 21464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,43.5
+ parent: 2
+ - uid: 28623
+ components:
+ - type: Transform
+ pos: 8.5,-19.5
+ parent: 2
+ - uid: 30840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-17.5
+ parent: 2
+ - uid: 33634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,35.5
+ parent: 2
+- proto: PosterLegitSpaceCops
entities:
- - uid: 23430
+ - uid: 16008
components:
- type: Transform
- pos: 18.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: -10.5,43.5
+ parent: 2
+ - uid: 16430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,25.5
+ parent: 2
+ - uid: 25946
+ components:
+ - type: Transform
+ pos: -24.5,50.5
+ parent: 2
+ - uid: 30843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-9.5
+ parent: 2
+- proto: PosterLegitStateLaws
+ entities:
+ - uid: 3150
+ components:
+ - type: Transform
+ pos: 43.5,45.5
+ parent: 2
+ - uid: 19768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,38.5
+ parent: 2
+ - uid: 21174
+ components:
+ - type: Transform
+ pos: -5.5,0.5
+ parent: 2
+ - uid: 36922
+ components:
+ - type: Transform
+ pos: 16.5,-21.5
parent: 2
- proto: PosterLegitTheOwl
entities:
- - uid: 23438
+ - uid: 1391
components:
- type: Transform
- pos: 23.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-0.5
+ parent: 2
+- proto: PosterLegitThereIsNoGasGiant
+ entities:
+ - uid: 36794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,64.5
parent: 2
- proto: PosterLegitUeNo
entities:
@@ -163954,20 +185866,31 @@ entities:
- type: Transform
pos: -56.5,20.5
parent: 2
-- proto: PosterLegitWalk
+- proto: PosterLegitWorkForAFuture
entities:
- - uid: 23444
+ - uid: 7430
components:
- type: Transform
- pos: -39.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,47.5
+ parent: 2
+ - uid: 19372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-46.5
parent: 2
-- proto: PosterLegitWorkForAFuture
- entities:
- uid: 23446
components:
- type: Transform
pos: -80.5,6.5
parent: 2
+ - uid: 28877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,31.5
+ parent: 2
- proto: PottedPlant0
entities:
- uid: 30349
@@ -163980,13 +185903,6 @@ entities:
- type: Transform
pos: 50.46513,11.343471
parent: 2
-- proto: PottedPlant1
- entities:
- - uid: 29830
- components:
- - type: Transform
- pos: 90.5,55.5
- parent: 2
- proto: PottedPlant10
entities:
- uid: 2576
@@ -164014,19 +185930,41 @@ entities:
- type: Transform
pos: 91.5,15.5
parent: 2
+ - uid: 30187
+ components:
+ - type: Transform
+ pos: -69.5,-8.5
+ parent: 2
+ - uid: 30188
+ components:
+ - type: Transform
+ pos: -67.5,-8.5
+ parent: 2
- proto: PottedPlant11
entities:
+ - uid: 5668
+ components:
+ - type: Transform
+ pos: 23.5,9.5
+ parent: 2
- uid: 27963
components:
- type: Transform
pos: 19.3661,47.64291
parent: 2
+- proto: PottedPlant12
+ entities:
+ - uid: 5191
+ components:
+ - type: Transform
+ pos: 5.5,11.5
+ parent: 2
- proto: PottedPlant13
entities:
- - uid: 30452
+ - uid: 756
components:
- type: Transform
- pos: 13.5,-13.5
+ pos: 13.5,-14.5
parent: 2
- uid: 30505
components:
@@ -164050,13 +185988,6 @@ entities:
- type: Transform
pos: 18.5,-13.5
parent: 2
-- proto: PottedPlant15
- entities:
- - uid: 32469
- components:
- - type: Transform
- pos: 61.5,64.5
- parent: 2
- proto: PottedPlant17
entities:
- uid: 99
@@ -164066,10 +185997,15 @@ entities:
parent: 2
- proto: PottedPlant18
entities:
- - uid: 27965
+ - uid: 23855
components:
- type: Transform
- pos: -30.5,55.5
+ pos: -47.5,-4.5
+ parent: 2
+ - uid: 23856
+ components:
+ - type: Transform
+ pos: -47.5,2.5
parent: 2
- uid: 30339
components:
@@ -164086,12 +186022,36 @@ entities:
- type: Transform
pos: -45.5,2.5
parent: 2
-- proto: PottedPlant19
+- proto: PottedPlant2
entities:
- - uid: 23493
+ - uid: 3506
components:
- type: Transform
- pos: 80.5,54.5
+ pos: 5.5,9.5
+ parent: 2
+- proto: PottedPlant21
+ entities:
+ - uid: 25141
+ components:
+ - type: Transform
+ pos: 10.5,9.5
+ parent: 2
+ - uid: 25788
+ components:
+ - type: Transform
+ pos: 18.5,9.5
+ parent: 2
+- proto: PottedPlant22
+ entities:
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 23.5,13.5
+ parent: 2
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: 5.5,15.5
parent: 2
- proto: PottedPlant24
entities:
@@ -164100,6 +186060,13 @@ entities:
- type: Transform
pos: 45.5,-11.5
parent: 2
+- proto: PottedPlant26
+ entities:
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 23.5,11.5
+ parent: 2
- proto: PottedPlant4
entities:
- uid: 30519
@@ -164151,18 +186118,40 @@ entities:
parent: 2
- proto: PottedPlant6
entities:
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 5.5,13.5
+ parent: 2
+ - uid: 30301
+ components:
+ - type: Transform
+ pos: 23.5,15.5
+ parent: 2
- uid: 30458
components:
- type: Transform
pos: 26.5,-16.5
parent: 2
-- proto: PottedPlantBioluminscent
+- proto: PottedPlant7
entities:
- - uid: 29826
+ - uid: 6404
+ components:
+ - type: Transform
+ pos: 92.5,73.5
+ parent: 2
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: 90.5,77.5
+ parent: 2
+ - uid: 18738
components:
- type: Transform
- pos: 87.5,54.5
+ pos: 90.5,73.5
parent: 2
+- proto: PottedPlantBioluminscent
+ entities:
- uid: 30338
components:
- type: Transform
@@ -164175,31 +186164,56 @@ entities:
parent: 2
- proto: PottedPlantRandom
entities:
- - uid: 602
+ - uid: 306
components:
- type: Transform
- pos: -2.5,-4.5
+ pos: -14.5,5.5
parent: 2
- - uid: 673
+ - uid: 323
components:
- type: Transform
- pos: -23.5,-7.5
+ pos: -22.5,1.5
parent: 2
- - uid: 674
+ - uid: 397
components:
- type: Transform
- pos: -19.5,-7.5
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: -5.5,2.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: -2.5,-4.5
parent: 2
- uid: 677
components:
- type: Transform
pos: -13.5,-11.5
parent: 2
- - uid: 680
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 33.5,-18.5
+ parent: 2
+ - uid: 699
components:
- type: Transform
pos: -23.5,-11.5
parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 2
+ - uid: 751
+ components:
+ - type: Transform
+ pos: 8.5,-17.5
+ parent: 2
- uid: 1115
components:
- type: Transform
@@ -164240,31 +186254,6 @@ entities:
- type: Transform
pos: 29.5,-10.5
parent: 2
- - uid: 1482
- components:
- - type: Transform
- pos: -8.5,-2.5
- parent: 2
- - uid: 1483
- components:
- - type: Transform
- pos: -8.5,7.5
- parent: 2
- - uid: 1484
- components:
- - type: Transform
- pos: -3.5,0.5
- parent: 2
- - uid: 1485
- components:
- - type: Transform
- pos: -3.5,4.5
- parent: 2
- - uid: 1562
- components:
- - type: Transform
- pos: 3.5,7.5
- parent: 2
- uid: 1582
components:
- type: Transform
@@ -164310,76 +186299,41 @@ entities:
- type: Transform
pos: 3.5,-2.5
parent: 2
- - uid: 1715
- components:
- - type: Transform
- pos: -8.5,2.5
- parent: 2
- uid: 1716
components:
- type: Transform
pos: 6.5,2.5
parent: 2
- - uid: 1766
- components:
- - type: Transform
- pos: -29.5,1.5
- parent: 2
- - uid: 1768
- components:
- - type: Transform
- pos: 11.5,5.5
- parent: 2
- - uid: 1769
- components:
- - type: Transform
- pos: 15.5,5.5
- parent: 2
- uid: 1774
components:
- type: Transform
pos: 30.5,-13.5
parent: 2
- - uid: 1818
+ - uid: 1986
components:
- type: Transform
- pos: 23.5,9.5
+ pos: 9.5,27.5
parent: 2
- - uid: 1986
+ - uid: 2249
components:
- type: Transform
- pos: 9.5,27.5
+ pos: -25.5,51.5
parent: 2
- uid: 2657
components:
- type: Transform
pos: -19.5,53.5
parent: 2
- - uid: 2699
+ - uid: 2803
components:
- type: Transform
- pos: -23.5,56.5
+ pos: -27.5,46.5
parent: 2
- uid: 2926
components:
- type: Transform
pos: 16.5,40.5
parent: 2
- - uid: 3360
- components:
- - type: Transform
- pos: 19.5,-35.5
- parent: 2
- - uid: 3361
- components:
- - type: Transform
- pos: 16.5,-35.5
- parent: 2
- - uid: 3605
- components:
- - type: Transform
- pos: -39.5,15.5
- parent: 2
- uid: 3778
components:
- type: Transform
@@ -164390,6 +186344,11 @@ entities:
- type: Transform
pos: -31.5,-9.5
parent: 2
+ - uid: 3995
+ components:
+ - type: Transform
+ pos: 54.5,35.5
+ parent: 2
- uid: 4035
components:
- type: Transform
@@ -164415,11 +186374,41 @@ entities:
- type: Transform
pos: 13.5,-4.5
parent: 2
+ - uid: 4516
+ components:
+ - type: Transform
+ pos: 13.5,-36.5
+ parent: 2
- uid: 4531
components:
- type: Transform
pos: 52.5,24.5
parent: 2
+ - uid: 4550
+ components:
+ - type: Transform
+ pos: 49.5,42.5
+ parent: 2
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: -66.5,29.5
+ parent: 2
+ - uid: 4891
+ components:
+ - type: Transform
+ pos: 9.5,-22.5
+ parent: 2
+ - uid: 4898
+ components:
+ - type: Transform
+ pos: -59.5,-27.5
+ parent: 2
+ - uid: 4899
+ components:
+ - type: Transform
+ pos: -59.5,-29.5
+ parent: 2
- uid: 5246
components:
- type: Transform
@@ -164435,11 +186424,6 @@ entities:
- type: Transform
pos: 42.5,23.5
parent: 2
- - uid: 5419
- components:
- - type: Transform
- pos: 42.5,34.5
- parent: 2
- uid: 5448
components:
- type: Transform
@@ -164460,16 +186444,6 @@ entities:
- type: Transform
pos: 50.5,21.5
parent: 2
- - uid: 5728
- components:
- - type: Transform
- pos: 21.5,6.5
- parent: 2
- - uid: 5729
- components:
- - type: Transform
- pos: 23.5,6.5
- parent: 2
- uid: 5880
components:
- type: Transform
@@ -164490,15 +186464,20 @@ entities:
- type: Transform
pos: -8.5,-52.5
parent: 2
+ - uid: 5947
+ components:
+ - type: Transform
+ pos: 54.5,39.5
+ parent: 2
- uid: 6191
components:
- type: Transform
pos: -7.5,-4.5
parent: 2
- - uid: 6850
+ - uid: 6204
components:
- type: Transform
- pos: 34.5,-18.5
+ pos: -48.5,-35.5
parent: 2
- uid: 6851
components:
@@ -164520,30 +186499,30 @@ entities:
- type: Transform
pos: 39.5,-34.5
parent: 2
- - uid: 6855
+ - uid: 6858
components:
- type: Transform
- pos: 22.5,-36.5
+ pos: -15.5,-30.5
parent: 2
- - uid: 6856
+ - uid: 6862
components:
- type: Transform
- pos: 13.5,-36.5
+ pos: -25.5,-21.5
parent: 2
- - uid: 6857
+ - uid: 6960
components:
- type: Transform
- pos: -7.5,-42.5
+ pos: -35.5,-31.5
parent: 2
- - uid: 6858
+ - uid: 7171
components:
- type: Transform
- pos: -15.5,-30.5
+ pos: 5.5,48.5
parent: 2
- - uid: 6862
+ - uid: 7277
components:
- type: Transform
- pos: -25.5,-21.5
+ pos: -3.5,7.5
parent: 2
- uid: 7475
components:
@@ -164555,11 +186534,6 @@ entities:
- type: Transform
pos: -45.5,-13.5
parent: 2
- - uid: 7477
- components:
- - type: Transform
- pos: -39.5,-17.5
- parent: 2
- uid: 8397
components:
- type: Transform
@@ -164580,10 +186554,15 @@ entities:
- type: Transform
pos: -31.5,-13.5
parent: 2
- - uid: 9124
+ - uid: 8704
components:
- type: Transform
- pos: 11.5,-25.5
+ pos: -47.5,11.5
+ parent: 2
+ - uid: 8832
+ components:
+ - type: Transform
+ pos: -8.5,57.5
parent: 2
- uid: 9319
components:
@@ -164615,30 +186594,35 @@ entities:
- type: Transform
pos: -9.5,39.5
parent: 2
- - uid: 10618
+ - uid: 10024
components:
- type: Transform
- pos: -25.5,5.5
+ pos: -40.5,17.5
parent: 2
- - uid: 10619
+ - uid: 10025
components:
- type: Transform
- pos: -23.5,5.5
+ pos: -43.5,17.5
parent: 2
- - uid: 11219
+ - uid: 10709
components:
- type: Transform
- pos: -21.5,5.5
+ pos: -3.5,2.5
parent: 2
- - uid: 11220
+ - uid: 11658
components:
- type: Transform
- pos: -17.5,5.5
+ pos: -0.5,-2.5
parent: 2
- - uid: 11267
+ - uid: 11979
components:
- type: Transform
- pos: -43.5,-30.5
+ pos: 15.5,-17.5
+ parent: 2
+ - uid: 12707
+ components:
+ - type: Transform
+ pos: -70.5,19.5
parent: 2
- uid: 12967
components:
@@ -164660,15 +186644,25 @@ entities:
- type: Transform
pos: -69.5,13.5
parent: 2
- - uid: 13868
+ - uid: 13454
components:
- type: Transform
- pos: 45.5,17.5
+ pos: 20.5,-23.5
parent: 2
- - uid: 13870
+ - uid: 13455
components:
- type: Transform
- pos: -79.5,10.5
+ pos: 23.5,-21.5
+ parent: 2
+ - uid: 13588
+ components:
+ - type: Transform
+ pos: 18.5,-18.5
+ parent: 2
+ - uid: 13868
+ components:
+ - type: Transform
+ pos: 45.5,17.5
parent: 2
- uid: 13871
components:
@@ -164695,6 +186689,11 @@ entities:
- type: Transform
pos: 9.5,50.5
parent: 2
+ - uid: 14051
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 2
- uid: 14071
components:
- type: Transform
@@ -164710,11 +186709,6 @@ entities:
- type: Transform
pos: 15.5,45.5
parent: 2
- - uid: 14172
- components:
- - type: Transform
- pos: 5.5,47.5
- parent: 2
- uid: 14253
components:
- type: Transform
@@ -164745,36 +186739,36 @@ entities:
- type: Transform
pos: 21.5,46.5
parent: 2
- - uid: 15099
+ - uid: 15062
components:
- type: Transform
- pos: 23.5,51.5
+ pos: -14.5,39.5
+ parent: 2
+ - uid: 15071
+ components:
+ - type: Transform
+ pos: -11.5,-7.5
parent: 2
- uid: 15108
components:
- type: Transform
pos: 29.5,48.5
parent: 2
- - uid: 15204
+ - uid: 15253
components:
- type: Transform
- pos: -23.5,59.5
+ pos: -21.5,58.5
parent: 2
- - uid: 15491
+ - uid: 15266
components:
- type: Transform
- pos: -22.5,26.5
+ pos: 25.5,50.5
parent: 2
- uid: 15497
components:
- type: Transform
pos: -22.5,24.5
parent: 2
- - uid: 15566
- components:
- - type: Transform
- pos: -4.5,39.5
- parent: 2
- uid: 15741
components:
- type: Transform
@@ -164795,46 +186789,61 @@ entities:
- type: Transform
pos: -4.5,23.5
parent: 2
- - uid: 15893
+ - uid: 15999
components:
- type: Transform
- pos: -2.5,56.5
+ pos: -14.5,57.5
parent: 2
- - uid: 15922
+ - uid: 16168
components:
- type: Transform
- pos: -2.5,47.5
+ pos: -15.5,44.5
parent: 2
- - uid: 16395
+ - uid: 16278
components:
- type: Transform
- pos: -25.5,53.5
+ pos: -59.5,11.5
+ parent: 2
+ - uid: 16283
+ components:
+ - type: Transform
+ pos: -3.5,48.5
+ parent: 2
+ - uid: 16288
+ components:
+ - type: Transform
+ pos: -3.5,55.5
parent: 2
- uid: 16540
components:
- type: Transform
pos: 20.5,40.5
parent: 2
+ - uid: 17560
+ components:
+ - type: Transform
+ pos: 21.5,7.5
+ parent: 2
+ - uid: 17736
+ components:
+ - type: Transform
+ pos: -50.5,-25.5
+ parent: 2
- uid: 17918
components:
- type: Transform
pos: -7.5,66.5
parent: 2
- - uid: 17979
+ - uid: 18108
components:
- type: Transform
- pos: -27.5,53.5
+ pos: -39.5,21.5
parent: 2
- uid: 18316
components:
- type: Transform
pos: -11.5,71.5
parent: 2
- - uid: 18356
- components:
- - type: Transform
- pos: 11.5,18.5
- parent: 2
- uid: 18449
components:
- type: Transform
@@ -164855,6 +186864,21 @@ entities:
- type: Transform
pos: -55.5,-3.5
parent: 2
+ - uid: 19139
+ components:
+ - type: Transform
+ pos: -43.5,10.5
+ parent: 2
+ - uid: 19174
+ components:
+ - type: Transform
+ pos: -45.5,17.5
+ parent: 2
+ - uid: 19396
+ components:
+ - type: Transform
+ pos: -25.5,48.5
+ parent: 2
- uid: 19441
components:
- type: Transform
@@ -164905,6 +186929,21 @@ entities:
- type: Transform
pos: -11.5,78.5
parent: 2
+ - uid: 19639
+ components:
+ - type: Transform
+ pos: -27.5,53.5
+ parent: 2
+ - uid: 19649
+ components:
+ - type: Transform
+ pos: 3.5,52.5
+ parent: 2
+ - uid: 19730
+ components:
+ - type: Transform
+ pos: -38.5,67.5
+ parent: 2
- uid: 19760
components:
- type: Transform
@@ -164915,10 +186954,10 @@ entities:
- type: Transform
pos: -17.5,28.5
parent: 2
- - uid: 19815
+ - uid: 19767
components:
- type: Transform
- pos: 7.5,18.5
+ pos: -25.5,53.5
parent: 2
- uid: 19859
components:
@@ -164930,51 +186969,121 @@ entities:
- type: Transform
pos: 3.5,73.5
parent: 2
+ - uid: 20604
+ components:
+ - type: Transform
+ pos: -35.5,-35.5
+ parent: 2
+ - uid: 20670
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 2
- uid: 21324
components:
- type: Transform
pos: -28.5,-25.5
parent: 2
+ - uid: 21943
+ components:
+ - type: Transform
+ pos: -40.5,-19.5
+ parent: 2
- uid: 22150
components:
- type: Transform
pos: 34.5,-7.5
parent: 2
- - uid: 23378
+ - uid: 22264
components:
- type: Transform
- pos: -19.5,5.5
+ pos: 31.5,7.5
parent: 2
- - uid: 23447
+ - uid: 22283
components:
- type: Transform
- pos: -27.5,5.5
+ pos: 25.5,55.5
parent: 2
- - uid: 23452
+ - uid: 22298
components:
- type: Transform
- pos: -29.5,5.5
+ pos: -16.5,48.5
parent: 2
- - uid: 23637
+ - uid: 23373
components:
- type: Transform
- pos: 6.5,7.5
+ pos: -18.5,5.5
+ parent: 2
+ - uid: 23460
+ components:
+ - type: Transform
+ pos: -16.5,5.5
+ parent: 2
+ - uid: 23463
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 2
+ - uid: 23615
+ components:
+ - type: Transform
+ pos: -22.5,5.5
+ parent: 2
+ - uid: 23632
+ components:
+ - type: Transform
+ pos: -14.5,48.5
parent: 2
- uid: 24547
components:
- type: Transform
pos: 5.5,-4.5
parent: 2
- - uid: 27749
+ - uid: 25955
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -29.5,54.5
+ parent: 2
+ - uid: 25964
+ components:
+ - type: Transform
+ pos: -25.5,46.5
+ parent: 2
+ - uid: 26020
+ components:
+ - type: Transform
+ pos: -33.5,54.5
+ parent: 2
+ - uid: 27809
+ components:
+ - type: Transform
+ pos: -15.5,46.5
+ parent: 2
+ - uid: 28606
+ components:
+ - type: Transform
+ pos: -20.5,46.5
+ parent: 2
+ - uid: 28626
+ components:
+ - type: Transform
+ pos: -19.5,46.5
parent: 2
- uid: 29016
components:
- type: Transform
pos: 4.5,-12.5
parent: 2
+ - uid: 29211
+ components:
+ - type: Transform
+ pos: 22.5,-36.5
+ parent: 2
+ - uid: 29284
+ components:
+ - type: Transform
+ pos: -37.5,-11.5
+ parent: 2
- uid: 29709
components:
- type: Transform
@@ -164990,11 +187099,6 @@ entities:
- type: Transform
pos: 41.5,17.5
parent: 2
- - uid: 30262
- components:
- - type: Transform
- pos: 14.5,18.5
- parent: 2
- uid: 30263
components:
- type: Transform
@@ -165025,64 +187129,82 @@ entities:
- type: Transform
pos: 3.5,58.5
parent: 2
- - uid: 34962
+ - uid: 34964
components:
- type: Transform
- pos: 16.5,18.5
+ pos: -22.5,-16.5
parent: 2
- - uid: 34963
+ - uid: 34965
components:
- type: Transform
- pos: 20.5,18.5
+ pos: -18.5,-16.5
parent: 2
- - uid: 34964
+ - uid: 34970
components:
- type: Transform
- pos: -22.5,-16.5
+ pos: -14.5,18.5
parent: 2
- - uid: 34965
+ - uid: 34971
components:
- type: Transform
- pos: -18.5,-16.5
+ pos: -10.5,18.5
parent: 2
- - uid: 34966
+ - uid: 36094
components:
- type: Transform
- pos: -76.5,10.5
+ pos: -14.5,51.5
parent: 2
- - uid: 34967
+ - uid: 36116
components:
- type: Transform
- pos: -37.5,-10.5
+ pos: -14.5,42.5
parent: 2
- - uid: 34968
+ - uid: 36150
components:
- type: Transform
- pos: -40.5,-10.5
+ pos: -14.5,35.5
parent: 2
- - uid: 34970
+ - uid: 36756
components:
- type: Transform
- pos: -14.5,18.5
+ pos: 24.5,7.5
parent: 2
- - uid: 34971
+ - uid: 37017
components:
- type: Transform
- pos: -10.5,18.5
+ pos: -14.5,31.5
parent: 2
-- proto: PottedPlantRD
- entities:
- - uid: 28745
+ - uid: 37730
components:
- type: Transform
- pos: 42.5,28.5
+ pos: 47.5,17.5
+ parent: 2
+ - uid: 38091
+ components:
+ - type: Transform
+ pos: 10.5,-2.5
+ parent: 2
+ - uid: 38092
+ components:
+ - type: Transform
+ pos: 8.5,-2.5
+ parent: 2
+ - uid: 38093
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 2
+ - uid: 38094
+ components:
+ - type: Transform
+ pos: 10.5,7.5
parent: 2
-- proto: PowerCellHigh
+- proto: PottedPlantRD
entities:
- - uid: 14185
+ - uid: 28745
components:
- type: Transform
- pos: 11.751635,48.4722
+ pos: 42.5,28.5
parent: 2
- proto: PowerCellMedium
entities:
@@ -165100,23 +187222,13 @@ entities:
canCollide: False
- proto: PowerCellMediumPrinted
entities:
- - uid: 35806
- components:
- - type: Transform
- pos: 31.181543,7.7157393
- parent: 2
- - uid: 35807
+ - uid: 34062
components:
- type: Transform
- pos: 31.369043,7.5204268
+ pos: 22.866295,7.812888
parent: 2
- proto: PowerCellRecharger
entities:
- - uid: 1443
- components:
- - type: Transform
- pos: 9.5,13.5
- parent: 2
- uid: 1760
components:
- type: Transform
@@ -165128,10 +187240,22 @@ entities:
- type: Transform
pos: 4.5,28.5
parent: 2
- - uid: 2826
+ - uid: 4463
components:
- type: Transform
- pos: -12.5,-42.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,59.5
+ parent: 2
+ - uid: 4799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-18.5
+ parent: 2
+ - uid: 4897
+ components:
+ - type: Transform
+ pos: 8.5,-20.5
parent: 2
- uid: 5566
components:
@@ -165143,11 +187267,6 @@ entities:
- type: Transform
pos: 42.5,51.5
parent: 2
- - uid: 5735
- components:
- - type: Transform
- pos: 45.5,44.5
- parent: 2
- uid: 6047
components:
- type: Transform
@@ -165171,42 +187290,42 @@ entities:
rot: -1.5707963267948966 rad
pos: 49.5,34.5
parent: 2
- - uid: 9012
+ - uid: 8435
components:
- type: Transform
- pos: -47.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-0.5
parent: 2
- - uid: 9603
+ - uid: 9012
components:
- type: Transform
- pos: -53.5,35.5
+ pos: -47.5,23.5
parent: 2
- - uid: 14262
+ - uid: 11236
components:
- type: Transform
- pos: 20.5,59.5
+ pos: 8.5,-21.5
parent: 2
- - uid: 14264
+ - uid: 12413
components:
- type: Transform
- pos: 12.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-18.5
parent: 2
- - uid: 15105
+ - uid: 14172
components:
- type: Transform
- pos: 27.5,52.5
+ pos: -10.5,42.5
parent: 2
- - uid: 15555
+ - uid: 14262
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,34.5
+ pos: 20.5,59.5
parent: 2
- - uid: 15556
+ - uid: 17624
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,34.5
+ pos: 31.5,13.5
parent: 2
- uid: 19647
components:
@@ -165214,48 +187333,59 @@ entities:
rot: -1.5707963267948966 rad
pos: -43.5,60.5
parent: 2
- - uid: 29199
+ - uid: 20879
components:
- type: Transform
- pos: 46.5,29.5
+ pos: -34.5,35.5
parent: 2
- - uid: 30611
+ - uid: 29768
components:
- type: Transform
- pos: -45.5,0.5
+ pos: 96.5,77.5
parent: 2
- - uid: 30615
+ - uid: 32378
components:
- type: Transform
- pos: -45.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -110.5,48.5
parent: 2
- - uid: 35805
+ - uid: 36758
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,7.5
+ pos: 22.5,7.5
parent: 2
- - uid: 35808
+ - uid: 36759
components:
- type: Transform
- pos: 34.5,9.5
+ pos: 23.5,7.5
parent: 2
-- proto: PowerCellSmall
- entities:
- - uid: 30595
+ - uid: 36958
+ components:
+ - type: Transform
+ pos: -9.5,42.5
+ parent: 2
+ - uid: 36976
components:
- type: Transform
- pos: -45.539005,1.5387094
+ pos: -22.5,28.5
parent: 2
- - uid: 30612
+ - uid: 36977
components:
- type: Transform
- pos: -45.453068,1.3199594
+ pos: -12.5,28.5
parent: 2
- - uid: 30613
+ - uid: 38113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-41.5
+ parent: 2
+- proto: PowerCellSmallPrinted
+ entities:
+ - uid: 5729
components:
- type: Transform
- pos: -45.36713,1.1168344
+ pos: 23.028795,7.579294
parent: 2
- proto: PowerDrill
entities:
@@ -165266,11 +187396,22 @@ entities:
parent: 2
- proto: Poweredlight
entities:
- - uid: 375
+ - uid: 729
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-5.5
+ parent: 2
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 15.5,21.5
+ parent: 2
+ - uid: 1085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,5.5
parent: 2
- uid: 1374
components:
@@ -165278,26 +187419,50 @@ entities:
rot: 1.5707963267948966 rad
pos: -86.5,-14.5
parent: 2
- - uid: 1514
+ - uid: 1468
components:
- type: Transform
- pos: 18.5,16.5
+ pos: -56.5,37.5
+ parent: 2
+ - uid: 1484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-34.5
parent: 2
- uid: 1549
components:
- type: Transform
pos: -106.5,-5.5
parent: 2
+ - uid: 1610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,59.5
+ parent: 2
+ - uid: 1635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,5.5
+ parent: 2
+ - uid: 1840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,9.5
+ parent: 2
- uid: 2272
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -89.5,24.5
parent: 2
- - uid: 2365
+ - uid: 2382
components:
- type: Transform
- pos: -23.5,-40.5
+ pos: -36.5,-25.5
parent: 2
- uid: 2547
components:
@@ -165305,12 +187470,46 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,65.5
parent: 2
+ - uid: 2971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-35.5
+ parent: 2
- uid: 3070
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -27.5,-25.5
parent: 2
+ - uid: 3134
+ components:
+ - type: Transform
+ pos: 43.5,44.5
+ parent: 2
+ - uid: 3311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-19.5
+ parent: 2
+ - uid: 3312
+ components:
+ - type: Transform
+ pos: 7.5,-20.5
+ parent: 2
+ - uid: 3329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 3343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-25.5
+ parent: 2
- uid: 3410
components:
- type: Transform
@@ -165321,28 +187520,57 @@ entities:
- type: Transform
pos: 9.5,-50.5
parent: 2
+ - uid: 3771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,52.5
+ parent: 2
+ - uid: 3847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,44.5
+ parent: 2
+ - uid: 4204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,41.5
+ parent: 2
- uid: 4380
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -87.5,20.5
parent: 2
- - uid: 4448
+ - uid: 4408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -54.5,-18.5
+ parent: 2
+ - uid: 4639
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -35.5,42.5
+ pos: 49.5,42.5
+ parent: 2
+ - uid: 4838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-20.5
parent: 2
- uid: 4885
components:
- type: Transform
pos: -9.5,71.5
parent: 2
- - uid: 5197
+ - uid: 4919
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,-18.5
+ pos: 7.5,62.5
parent: 2
- uid: 5234
components:
@@ -165356,23 +187584,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -100.5,2.5
parent: 2
- - uid: 6661
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,1.5
- parent: 2
- - uid: 6677
+ - uid: 6665
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-43.5
parent: 2
- - uid: 7041
+ - uid: 7135
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,-29.5
+ pos: -35.5,-21.5
parent: 2
- uid: 7185
components:
@@ -165384,12 +187606,24 @@ entities:
- type: Transform
pos: -107.5,10.5
parent: 2
+ - uid: 7230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-33.5
+ parent: 2
- uid: 7265
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -106.5,22.5
parent: 2
+ - uid: 7284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-23.5
+ parent: 2
- uid: 7303
components:
- type: Transform
@@ -165406,6 +187640,11 @@ entities:
- type: Transform
pos: -60.5,-6.5
parent: 2
+ - uid: 7708
+ components:
+ - type: Transform
+ pos: 27.5,-13.5
+ parent: 2
- uid: 7792
components:
- type: Transform
@@ -165433,28 +187672,39 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,-7.5
parent: 2
+ - uid: 8432
+ components:
+ - type: Transform
+ pos: -76.5,14.5
+ parent: 2
- uid: 8759
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -0.5,-18.5
parent: 2
- - uid: 9654
+ - uid: 8838
components:
- type: Transform
- pos: -13.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,11.5
parent: 2
- - uid: 10343
+ - uid: 9090
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,-44.5
+ pos: 34.5,1.5
parent: 2
- - uid: 10512
+ - uid: 9654
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -47.5,-49.5
+ pos: -13.5,7.5
+ parent: 2
+ - uid: 11195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-39.5
parent: 2
- uid: 11269
components:
@@ -165478,11 +187728,23 @@ entities:
- type: Transform
pos: 33.5,-4.5
parent: 2
- - uid: 11469
+ - uid: 11842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-1.5
+ parent: 2
+ - uid: 12061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-22.5
+ parent: 2
+ - uid: 12080
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -41.5,-27.5
+ pos: -59.5,-16.5
parent: 2
- uid: 12955
components:
@@ -165502,11 +187764,17 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,48.5
parent: 2
- - uid: 14567
+ - uid: 13832
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,3.5
+ pos: -49.5,-27.5
+ parent: 2
+ - uid: 14383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,14.5
parent: 2
- uid: 14933
components:
@@ -165514,11 +187782,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 50.5,15.5
parent: 2
- - uid: 15144
+ - uid: 15063
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.5,-16.5
+ pos: -16.5,61.5
parent: 2
- uid: 15146
components:
@@ -165537,12 +187805,6 @@ entities:
rot: 3.141592653589793 rad
pos: -5.5,18.5
parent: 2
- - uid: 15159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,12.5
- parent: 2
- uid: 15161
components:
- type: Transform
@@ -165595,12 +187857,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 31.5,5.5
parent: 2
- - uid: 15183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-25.5
- parent: 2
- uid: 15185
components:
- type: Transform
@@ -165611,7 +187867,7 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-21.5
+ pos: -31.5,-43.5
parent: 2
- uid: 15197
components:
@@ -165623,17 +187879,6 @@ entities:
- type: Transform
pos: 8.5,-45.5
parent: 2
- - uid: 15212
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-23.5
- parent: 2
- - uid: 15214
- components:
- - type: Transform
- pos: 9.5,-40.5
- parent: 2
- uid: 15219
components:
- type: Transform
@@ -165656,17 +187901,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -51.5,42.5
parent: 2
- - uid: 15235
+ - uid: 15239
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -19.5,-39.5
- parent: 2
- - uid: 15237
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,25.5
+ pos: -23.5,49.5
parent: 2
- uid: 15240
components:
@@ -165704,12 +187943,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -99.5,30.5
parent: 2
- - uid: 15257
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-27.5
- parent: 2
- uid: 15262
components:
- type: Transform
@@ -165722,6 +187955,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -22.5,33.5
parent: 2
+ - uid: 15638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,49.5
+ parent: 2
+ - uid: 15640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,43.5
+ parent: 2
- uid: 15722
components:
- type: Transform
@@ -165740,30 +187985,12 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,-16.5
parent: 2
- - uid: 15857
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-22.5
- parent: 2
- - uid: 15901
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,-28.5
- parent: 2
- uid: 15919
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 42.5,-24.5
parent: 2
- - uid: 15951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,59.5
- parent: 2
- uid: 15953
components:
- type: Transform
@@ -165776,12 +188003,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,60.5
parent: 2
- - uid: 15959
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,47.5
- parent: 2
- uid: 15985
components:
- type: Transform
@@ -165798,47 +188019,22 @@ entities:
- type: Transform
pos: -16.5,-32.5
parent: 2
- - uid: 15991
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-16.5
- parent: 2
- uid: 16002
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,43.5
parent: 2
- - uid: 16515
- components:
- - type: Transform
- pos: -22.5,7.5
- parent: 2
- - uid: 16530
- components:
- - type: Transform
- pos: -28.5,7.5
- parent: 2
- - uid: 16554
- components:
- - type: Transform
- pos: -19.5,37.5
- parent: 2
- - uid: 16640
- components:
- - type: Transform
- pos: -29.5,-40.5
- parent: 2
- - uid: 17114
+ - uid: 16042
components:
- type: Transform
- pos: -18.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,24.5
parent: 2
- - uid: 17711
+ - uid: 17033
components:
- type: Transform
- pos: -16.5,7.5
+ pos: -52.5,35.5
parent: 2
- uid: 17795
components:
@@ -165858,18 +188054,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,45.5
parent: 2
- - uid: 17803
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,39.5
- parent: 2
- - uid: 17806
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-27.5
- parent: 2
- uid: 17808
components:
- type: Transform
@@ -165893,22 +188077,12 @@ entities:
- type: Transform
pos: 55.5,30.5
parent: 2
- - uid: 17816
- components:
- - type: Transform
- pos: -13.5,45.5
- parent: 2
- uid: 17817
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -11.5,28.5
parent: 2
- - uid: 17819
- components:
- - type: Transform
- pos: -47.5,14.5
- parent: 2
- uid: 17821
components:
- type: Transform
@@ -165947,23 +188121,6 @@ entities:
- type: Transform
pos: -11.5,-13.5
parent: 2
- - uid: 17831
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-21.5
- parent: 2
- - uid: 17832
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-21.5
- parent: 2
- - uid: 17836
- components:
- - type: Transform
- pos: 21.5,-27.5
- parent: 2
- uid: 17837
components:
- type: Transform
@@ -165984,31 +188141,13 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -12.5,-25.5
- parent: 2
- - uid: 17843
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-17.5
- parent: 2
- - uid: 17844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,39.5
+ pos: -12.5,-25.5
parent: 2
- uid: 17845
components:
- type: Transform
pos: -42.5,-10.5
parent: 2
- - uid: 17848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,-22.5
- parent: 2
- uid: 17849
components:
- type: Transform
@@ -166068,12 +188207,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,57.5
parent: 2
- - uid: 17871
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-17.5
- parent: 2
- uid: 17877
components:
- type: Transform
@@ -166148,17 +188281,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -45.5,49.5
parent: 2
- - uid: 17897
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-34.5
- parent: 2
- - uid: 17900
- components:
- - type: Transform
- pos: -7.5,56.5
- parent: 2
- uid: 17902
components:
- type: Transform
@@ -166183,36 +188305,18 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,37.5
parent: 2
- - uid: 17907
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-35.5
- parent: 2
- uid: 17908
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -51.5,50.5
parent: 2
- - uid: 17909
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,44.5
- parent: 2
- uid: 17911
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 55.5,6.5
parent: 2
- - uid: 17912
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -50.5,-28.5
- parent: 2
- uid: 17914
components:
- type: Transform
@@ -166264,17 +188368,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 49.5,-20.5
parent: 2
- - uid: 18002
- components:
- - type: Transform
- pos: 8.5,16.5
- parent: 2
- - uid: 18108
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,66.5
- parent: 2
- uid: 18141
components:
- type: Transform
@@ -166308,16 +188401,10 @@ entities:
pos: -6.5,-20.5
parent: 2
- uid: 18165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-37.5
- parent: 2
- - uid: 18166
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 82.5,70.5
+ pos: -51.5,37.5
parent: 2
- uid: 18167
components:
@@ -166346,12 +188433,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -14.5,37.5
parent: 2
- - uid: 18172
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,41.5
- parent: 2
- uid: 18175
components:
- type: Transform
@@ -166389,12 +188470,6 @@ entities:
- type: Transform
pos: -49.5,18.5
parent: 2
- - uid: 18183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,41.5
- parent: 2
- uid: 18184
components:
- type: Transform
@@ -166418,24 +188493,6 @@ entities:
- type: Transform
pos: -19.5,30.5
parent: 2
- - uid: 18191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,59.5
- parent: 2
- - uid: 18192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,53.5
- parent: 2
- - uid: 18193
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,53.5
- parent: 2
- uid: 18195
components:
- type: Transform
@@ -166458,10 +188515,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -39.5,49.5
parent: 2
- - uid: 19282
+ - uid: 19175
components:
- type: Transform
- pos: -55.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,21.5
parent: 2
- uid: 19283
components:
@@ -166498,33 +188556,52 @@ entities:
- type: Transform
pos: 5.5,66.5
parent: 2
+ - uid: 19811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-6.5
+ parent: 2
- uid: 19843
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -9.5,66.5
parent: 2
- - uid: 19875
+ - uid: 19877
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,49.5
+ pos: -49.5,49.5
parent: 2
- - uid: 19877
+ - uid: 19890
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -49.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,58.5
parent: 2
- uid: 19926
components:
- type: Transform
pos: -6.5,-40.5
parent: 2
- - uid: 19990
+ - uid: 19955
components:
- type: Transform
- pos: -20.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,7.5
+ parent: 2
+ - uid: 20173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-22.5
+ parent: 2
+ - uid: 20235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,11.5
parent: 2
- uid: 20970
components:
@@ -166532,10 +188609,27 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,26.5
parent: 2
- - uid: 22076
+ - uid: 21794
components:
- type: Transform
- pos: -24.5,7.5
+ pos: -3.5,55.5
+ parent: 2
+ - uid: 21810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,51.5
+ parent: 2
+ - uid: 21827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,48.5
+ parent: 2
+ - uid: 22090
+ components:
+ - type: Transform
+ pos: -6.5,7.5
parent: 2
- uid: 22112
components:
@@ -166543,11 +188637,40 @@ entities:
rot: 3.141592653589793 rad
pos: -51.5,-7.5
parent: 2
+ - uid: 22127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,48.5
+ parent: 2
+ - uid: 22317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,38.5
+ parent: 2
+ - uid: 22318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,40.5
+ parent: 2
- uid: 22352
components:
- type: Transform
pos: 14.5,66.5
parent: 2
+ - uid: 22372
+ components:
+ - type: Transform
+ pos: -16.5,-0.5
+ parent: 2
+ - uid: 22376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,-11.5
+ parent: 2
- uid: 22448
components:
- type: Transform
@@ -166582,17 +188705,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -30.5,-19.5
parent: 2
- - uid: 22462
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,15.5
- parent: 2
- - uid: 22463
- components:
- - type: Transform
- pos: 29.5,56.5
- parent: 2
- uid: 22464
components:
- type: Transform
@@ -166604,23 +188716,12 @@ entities:
- type: Transform
pos: 38.5,44.5
parent: 2
- - uid: 22466
- components:
- - type: Transform
- pos: 45.5,44.5
- parent: 2
- uid: 22467
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 38.5,32.5
parent: 2
- - uid: 22468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,63.5
- parent: 2
- uid: 22470
components:
- type: Transform
@@ -166818,6 +188919,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -95.5,-10.5
parent: 2
+ - uid: 22813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-29.5
+ parent: 2
- uid: 23011
components:
- type: Transform
@@ -166847,11 +188954,11 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-2.5
parent: 2
- - uid: 23061
+ - uid: 23058
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,56.5
parent: 2
- uid: 23063
components:
@@ -166859,94 +188966,35 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-8.5
parent: 2
- - uid: 23067
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-22.5
- parent: 2
- - uid: 23084
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,9.5
- parent: 2
- uid: 23085
components:
- type: Transform
pos: -0.5,23.5
parent: 2
- - uid: 23087
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,9.5
- parent: 2
- - uid: 23089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,9.5
- parent: 2
- uid: 23090
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,12.5
parent: 2
- - uid: 23091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,6.5
- parent: 2
- uid: 23092
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 31.5,-2.5
parent: 2
- - uid: 23093
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,13.5
- parent: 2
- - uid: 23094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,9.5
- parent: 2
- - uid: 23095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,6.5
- parent: 2
- uid: 23097
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 31.5,15.5
parent: 2
- - uid: 23098
- components:
- - type: Transform
- pos: 35.5,7.5
- parent: 2
- uid: 23100
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 14.5,-2.5
parent: 2
- - uid: 23101
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,0.5
- parent: 2
- uid: 23102
components:
- type: Transform
@@ -166982,6 +189030,12 @@ entities:
- type: Transform
pos: 15.5,3.5
parent: 2
+ - uid: 23112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-17.5
+ parent: 2
- uid: 23113
components:
- type: Transform
@@ -166993,12 +189047,6 @@ entities:
- type: Transform
pos: 18.5,-7.5
parent: 2
- - uid: 23115
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,6.5
- parent: 2
- uid: 23116
components:
- type: Transform
@@ -167010,18 +189058,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,0.5
parent: 2
- - uid: 23120
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,5.5
- parent: 2
- - uid: 23126
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,8.5
- parent: 2
- uid: 23128
components:
- type: Transform
@@ -167034,45 +189070,17 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,1.5
parent: 2
- - uid: 23132
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,1.5
- parent: 2
- uid: 23138
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -2.5,-8.5
parent: 2
- - uid: 23150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-2.5
- parent: 2
- - uid: 23154
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-2.5
- parent: 2
- - uid: 23155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-2.5
- parent: 2
- uid: 23156
components:
- type: Transform
- pos: -12.5,-4.5
- parent: 2
- - uid: 23157
- components:
- - type: Transform
- pos: -12.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,-16.5
parent: 2
- uid: 23158
components:
@@ -167107,16 +189115,6 @@ entities:
rot: 3.141592653589793 rad
pos: -16.5,12.5
parent: 2
- - uid: 23171
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 2
- - uid: 23174
- components:
- - type: Transform
- pos: -40.5,24.5
- parent: 2
- uid: 23176
components:
- type: Transform
@@ -167147,55 +189145,58 @@ entities:
rot: -1.5707963267948966 rad
pos: 53.5,6.5
parent: 2
- - uid: 23192
+ - uid: 23249
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -105.5,44.5
+ pos: 58.5,-37.5
parent: 2
- - uid: 23195
+ - uid: 23280
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -93.5,49.5
+ pos: -16.5,51.5
parent: 2
- - uid: 23210
+ - uid: 23787
components:
- type: Transform
- pos: -38.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,56.5
parent: 2
- - uid: 23215
+ - uid: 24537
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -105.5,58.5
+ pos: -39.5,-27.5
parent: 2
- - uid: 23249
+ - uid: 24913
components:
- type: Transform
- pos: 58.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -60.5,51.5
parent: 2
- - uid: 23538
+ - uid: 25506
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-22.5
+ pos: 8.5,5.5
parent: 2
- - uid: 23563
+ - uid: 25948
components:
- type: Transform
- pos: -40.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,44.5
parent: 2
- - uid: 24913
+ - uid: 26288
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -60.5,51.5
+ pos: -45.5,14.5
parent: 2
- - uid: 25060
+ - uid: 26486
components:
- type: Transform
- pos: -26.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,42.5
parent: 2
- uid: 27228
components:
@@ -167203,38 +189204,69 @@ entities:
rot: -1.5707963267948966 rad
pos: -94.5,-6.5
parent: 2
+ - uid: 27410
+ components:
+ - type: Transform
+ pos: 22.5,16.5
+ parent: 2
- uid: 27415
components:
- type: Transform
pos: -46.5,-14.5
parent: 2
- - uid: 27416
+ - uid: 27900
+ components:
+ - type: Transform
+ pos: 63.5,44.5
+ parent: 2
+ - uid: 28131
+ components:
+ - type: Transform
+ pos: -5.5,3.5
+ parent: 2
+ - uid: 28162
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 4.5,17.5
+ pos: -17.5,37.5
parent: 2
- - uid: 28332
+ - uid: 28250
+ components:
+ - type: Transform
+ pos: -22.5,-18.5
+ parent: 2
+ - uid: 28251
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -60.5,44.5
+ pos: -22.5,-25.5
parent: 2
- - uid: 28466
+ - uid: 28252
components:
- type: Transform
- pos: 13.5,25.5
+ pos: -20.5,-41.5
parent: 2
- - uid: 28467
+ - uid: 28253
+ components:
+ - type: Transform
+ pos: -24.5,-40.5
+ parent: 2
+ - uid: 28254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-46.5
+ parent: 2
+ - uid: 28332
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,51.5
+ pos: -60.5,44.5
parent: 2
- - uid: 28470
+ - uid: 28466
components:
- type: Transform
- pos: -27.5,37.5
+ pos: 13.5,25.5
parent: 2
- uid: 28471
components:
@@ -167264,18 +189296,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,71.5
parent: 2
- - uid: 28877
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,47.5
- parent: 2
- uid: 28996
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,-27.5
parent: 2
+ - uid: 29057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-39.5
+ parent: 2
- uid: 29177
components:
- type: Transform
@@ -167288,80 +189320,67 @@ entities:
rot: -1.5707963267948966 rad
pos: 69.5,11.5
parent: 2
- - uid: 29969
+ - uid: 29632
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -19.5,-44.5
- parent: 2
- - uid: 30098
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 83.5,40.5
+ pos: -1.5,38.5
parent: 2
- - uid: 30099
+ - uid: 29961
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 91.5,40.5
+ pos: -52.5,-27.5
parent: 2
- - uid: 30637
+ - uid: 30098
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,40.5
parent: 2
- - uid: 31180
+ - uid: 30261
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,2.5
+ pos: 6.5,16.5
parent: 2
- - uid: 31676
+ - uid: 30278
components:
- type: Transform
- pos: -49.5,-40.5
+ pos: -68.5,-8.5
parent: 2
- - uid: 31889
+ - uid: 30817
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,70.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,50.5
parent: 2
- - uid: 32142
+ - uid: 31005
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,47.5
+ pos: -14.5,16.5
parent: 2
- - uid: 32143
+ - uid: 31180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -99.5,55.5
- parent: 2
- - uid: 32149
- components:
- - type: Transform
- pos: -119.5,59.5
+ pos: -71.5,2.5
parent: 2
- - uid: 32150
+ - uid: 31931
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,43.5
+ pos: -11.5,-37.5
parent: 2
- - uid: 32447
+ - uid: 32060
components:
- type: Transform
- pos: -48.5,70.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,-24.5
parent: 2
- - uid: 32467
+ - uid: 32169
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 89.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,5.5
parent: 2
- uid: 32684
components:
@@ -167403,913 +189422,1173 @@ entities:
rot: 1.5707963267948966 rad
pos: -44.5,59.5
parent: 2
+ - uid: 35947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,71.5
+ parent: 2
+ - uid: 35948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,63.5
+ parent: 2
+ - uid: 36184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-23.5
+ parent: 2
- uid: 36458
components:
- type: Transform
pos: 33.5,-10.5
parent: 2
-- proto: PoweredLightBlueInterior
- entities:
- - uid: 28968
+ - uid: 36735
+ components:
+ - type: Transform
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 36884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 37259
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
+ parent: 2
+ - uid: 37427
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,80.5
+ pos: 26.5,54.5
parent: 2
- - uid: 31681
+ - uid: 37686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,13.5
+ parent: 2
+ - uid: 38095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,17.5
+ parent: 2
+ - uid: 38096
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,80.5
+ pos: 20.5,9.5
parent: 2
- - uid: 32654
+ - uid: 38098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,17.5
+ parent: 2
+ - uid: 38100
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,80.5
+ pos: 8.5,9.5
parent: 2
- - uid: 34042
+ - uid: 38101
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 4.5,80.5
+ pos: 6.5,18.5
parent: 2
- - uid: 34043
+ - uid: 38114
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 80.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,0.5
parent: 2
-- proto: PoweredLightColoredBlack
- entities:
- - uid: 8258
+ - uid: 38127
components:
- type: Transform
- pos: -68.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-45.5
parent: 2
-- proto: PoweredLightColoredRed
- entities:
- - uid: 4766
+ - uid: 38151
components:
- type: Transform
- pos: -74.5,-2.5
+ pos: -15.5,7.5
parent: 2
- - uid: 4888
+ - uid: 38170
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,45.5
+ pos: -17.5,7.5
parent: 2
- - uid: 9796
+ - uid: 38171
components:
- type: Transform
- pos: -20.5,48.5
+ pos: -19.5,7.5
parent: 2
- - uid: 29802
+ - uid: 38172
components:
- type: Transform
- pos: 74.5,26.5
+ pos: -21.5,7.5
parent: 2
-- proto: PoweredlightEmpty
- entities:
- - uid: 7072
+ - uid: 38855
components:
- type: Transform
- pos: -31.5,-30.5
+ pos: -6.5,30.5
parent: 2
- - uid: 7073
+ - uid: 38878
+ components:
+ - type: Transform
+ pos: -24.5,64.5
+ parent: 2
+ - uid: 38883
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,-33.5
+ pos: -18.5,53.5
parent: 2
- - uid: 7074
+ - uid: 38939
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,20.5
parent: 2
-- proto: PoweredlightLED
- entities:
- - uid: 22533
+ - uid: 38940
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-3.5
parent: 2
-- proto: PoweredLightPostSmall
+- proto: PoweredLightBlueInterior
entities:
- - uid: 5970
+ - uid: 6724
components:
- type: Transform
- pos: -41.5,72.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-43.5
parent: 2
- - uid: 9797
+ - uid: 6785
components:
- type: Transform
- pos: -17.5,-50.5
+ pos: -20.5,-48.5
parent: 2
- - uid: 10448
+ - uid: 6837
components:
- type: Transform
- pos: -90.5,-40.5
+ pos: -61.5,41.5
parent: 2
- - uid: 10449
+ - uid: 12109
components:
- type: Transform
- pos: -90.5,-59.5
+ pos: -48.5,70.5
parent: 2
- - uid: 10513
+ - uid: 12285
components:
- type: Transform
- pos: -81.5,-33.5
+ pos: 12.5,-54.5
parent: 2
- - uid: 13711
+ - uid: 12766
components:
- type: Transform
- pos: -79.5,89.5
+ pos: 5.5,-54.5
parent: 2
- - uid: 17010
+ - uid: 12777
components:
- type: Transform
- pos: -95.5,67.5
+ pos: -2.5,-54.5
parent: 2
- - uid: 26527
+ - uid: 12979
components:
- type: Transform
- pos: -52.5,59.5
+ pos: 102.5,74.5
parent: 2
- - uid: 28797
+ - uid: 13341
components:
- type: Transform
- pos: -120.5,38.5
+ pos: 62.5,50.5
parent: 2
- - uid: 30277
+ - uid: 13865
components:
- type: Transform
- pos: 1.5,-37.5
+ pos: 42.5,7.5
parent: 2
- - uid: 31302
+ - uid: 14088
components:
- type: Transform
- pos: -52.5,70.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,5.5
parent: 2
- - uid: 31890
+ - uid: 14180
components:
- type: Transform
- pos: 46.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 105.5,53.5
parent: 2
- - uid: 31894
+ - uid: 15119
components:
- type: Transform
- pos: 54.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,53.5
parent: 2
- - uid: 31926
+ - uid: 15176
components:
- type: Transform
- pos: -72.5,-15.5
+ pos: -94.5,15.5
parent: 2
- - uid: 31958
+ - uid: 15232
components:
- type: Transform
- pos: 87.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,40.5
parent: 2
- - uid: 32001
+ - uid: 15505
components:
- type: Transform
- pos: -66.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-8.5
parent: 2
- - uid: 32102
+ - uid: 15506
components:
- type: Transform
- pos: -129.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,0.5
parent: 2
- - uid: 32104
+ - uid: 15507
components:
- type: Transform
- pos: -126.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,1.5
parent: 2
- - uid: 32105
+ - uid: 15512
components:
- type: Transform
- pos: -115.5,66.5
+ pos: 46.5,-33.5
parent: 2
- - uid: 32108
+ - uid: 15558
components:
- type: Transform
- pos: -81.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-34.5
parent: 2
- - uid: 32111
+ - uid: 23376
components:
- type: Transform
- pos: -67.5,42.5
+ pos: -9.5,-54.5
parent: 2
- - uid: 32288
+ - uid: 28403
components:
- type: Transform
- pos: -65.5,51.5
+ pos: -35.5,-40.5
parent: 2
- - uid: 32321
+ - uid: 28968
components:
- type: Transform
- pos: -79.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,80.5
parent: 2
- - uid: 35077
+ - uid: 31681
components:
- type: Transform
- pos: 55.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,80.5
parent: 2
- - uid: 35079
+ - uid: 32654
components:
- type: Transform
- pos: 55.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,80.5
parent: 2
-- proto: PoweredlightRed
- entities:
- - uid: 2067
+ - uid: 34042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,80.5
+ parent: 2
+ - uid: 37691
+ components:
+ - type: Transform
+ pos: -36.5,4.5
+ parent: 2
+ - uid: 38947
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,39.5
+ pos: -73.5,27.5
parent: 2
- - uid: 19857
+ - uid: 38948
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,62.5
parent: 2
-- proto: PoweredlightSodium
+ - uid: 38949
+ components:
+ - type: Transform
+ pos: -103.5,0.5
+ parent: 2
+ - uid: 38950
+ components:
+ - type: Transform
+ pos: -65.5,-14.5
+ parent: 2
+ - uid: 38951
+ components:
+ - type: Transform
+ pos: -62.5,-33.5
+ parent: 2
+ - uid: 38955
+ components:
+ - type: Transform
+ pos: 58.5,-37.5
+ parent: 2
+- proto: PoweredLightColoredRed
entities:
- - uid: 17927
+ - uid: 4731
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 71.5,-8.5
+ pos: 92.5,72.5
parent: 2
- - uid: 26748
+ - uid: 4766
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-0.5
+ pos: -74.5,-2.5
parent: 2
- - uid: 32571
+ - uid: 6410
components:
- type: Transform
- pos: 74.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 96.5,78.5
parent: 2
- - uid: 32572
+ - uid: 15423
components:
- type: Transform
- pos: 62.5,65.5
+ pos: 77.5,85.5
parent: 2
- - uid: 32651
+ - type: PoweredLight
+ hasLampOnSpawn: LightTubeBroken
+ - uid: 30110
components:
- type: Transform
- pos: 84.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,73.5
parent: 2
- - uid: 32652
+ - uid: 32503
components:
- type: Transform
- pos: 84.5,59.5
+ pos: 91.5,79.5
parent: 2
- - uid: 32653
+ - uid: 36183
components:
- type: Transform
- pos: 84.5,56.5
+ pos: 69.5,85.5
parent: 2
-- proto: PoweredSmallLight
+ - uid: 36217
+ components:
+ - type: Transform
+ pos: 73.5,85.5
+ parent: 2
+ - uid: 36710
+ components:
+ - type: Transform
+ pos: 81.5,85.5
+ parent: 2
+ - uid: 36832
+ components:
+ - type: Transform
+ pos: 69.5,73.5
+ parent: 2
+- proto: PoweredlightEmpty
entities:
- - uid: 599
+ - uid: 7072
+ components:
+ - type: Transform
+ pos: -31.5,-30.5
+ parent: 2
+ - uid: 7073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-33.5
+ parent: 2
+ - uid: 7074
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,15.5
+ pos: -33.5,-34.5
parent: 2
- - uid: 8259
+- proto: PoweredlightLED
+ entities:
+ - uid: 15426
components:
- type: Transform
- pos: -60.5,-33.5
+ pos: 69.5,66.5
parent: 2
- - uid: 12979
+ - type: PoweredLight
+ hasLampOnSpawn: LightTubeBroken
+- proto: PoweredLightPostSmall
+ entities:
+ - uid: 3067
components:
- type: Transform
- pos: 22.5,50.5
+ pos: 42.5,-40.5
parent: 2
- - uid: 15150
+ - uid: 4777
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,15.5
+ pos: 68.5,43.5
parent: 2
- - uid: 17809
+ - uid: 5970
components:
- type: Transform
- pos: 7.5,-22.5
+ pos: -41.5,72.5
parent: 2
- - uid: 17826
+ - uid: 6727
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,15.5
+ pos: -35.5,-55.5
parent: 2
- - uid: 17833
+ - uid: 9638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-25.5
+ pos: 102.5,16.5
parent: 2
- - uid: 17835
+ - uid: 10448
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-25.5
+ pos: -90.5,-40.5
parent: 2
- - uid: 17917
+ - uid: 10449
components:
- type: Transform
- pos: -5.5,35.5
+ pos: -90.5,-59.5
parent: 2
- - uid: 18178
+ - uid: 10513
components:
- type: Transform
- pos: -29.5,42.5
+ pos: -81.5,-33.5
parent: 2
- - uid: 18194
+ - uid: 12075
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,28.5
+ pos: 17.5,-31.5
parent: 2
- - uid: 20834
+ - uid: 13004
components:
- type: Transform
- pos: 5.5,45.5
+ pos: -67.5,35.5
parent: 2
- - uid: 22294
+ - uid: 13711
components:
- type: Transform
- pos: 48.5,30.5
+ pos: -79.5,89.5
parent: 2
- - uid: 22439
+ - uid: 15559
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,-3.5
+ pos: 79.5,54.5
parent: 2
- - uid: 22447
+ - uid: 15864
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,8.5
+ pos: 88.5,-3.5
parent: 2
- - uid: 22457
+ - uid: 16061
components:
- type: Transform
- pos: 74.5,-10.5
+ pos: 4.5,46.5
parent: 2
- - uid: 22458
+ - uid: 17010
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-10.5
+ pos: -95.5,67.5
parent: 2
- - uid: 22461
+ - uid: 18715
components:
- type: Transform
- pos: -62.5,13.5
+ pos: 78.5,38.5
parent: 2
- - uid: 22469
+ - uid: 19257
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -55.5,40.5
+ pos: 90.5,-27.5
parent: 2
- - uid: 22490
+ - uid: 19258
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,51.5
+ pos: 112.5,-27.5
parent: 2
- - uid: 22496
+ - uid: 19259
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 47.5,51.5
+ pos: 90.5,-5.5
parent: 2
- - uid: 22499
+ - uid: 19260
components:
- type: Transform
- pos: 44.5,34.5
+ pos: 112.5,-5.5
parent: 2
- - uid: 22505
+ - uid: 19398
components:
- type: Transform
- pos: 9.5,-20.5
+ pos: 78.5,59.5
parent: 2
- - uid: 22506
+ - uid: 23293
components:
- type: Transform
- pos: 11.5,-20.5
+ pos: 42.5,11.5
parent: 2
- - uid: 22508
+ - uid: 26527
components:
- type: Transform
- pos: -75.5,1.5
+ pos: -52.5,59.5
parent: 2
- - uid: 22509
+ - uid: 29928
components:
- type: Transform
- pos: -79.5,1.5
+ pos: 93.5,42.5
parent: 2
- - uid: 22519
+ - uid: 30277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,16.5
+ pos: 1.5,-37.5
parent: 2
- - uid: 22527
+ - uid: 31302
components:
- type: Transform
- pos: -26.5,-27.5
+ pos: -52.5,70.5
parent: 2
- - uid: 22860
+ - uid: 32001
components:
- type: Transform
- pos: -29.5,67.5
+ pos: -66.5,-29.5
parent: 2
- - uid: 23129
+ - uid: 32094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,15.5
+ pos: 48.5,-28.5
parent: 2
- - uid: 23137
+ - uid: 32108
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,10.5
+ pos: -81.5,51.5
parent: 2
- - uid: 23146
+ - uid: 32111
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,15.5
+ pos: -67.5,42.5
parent: 2
- - uid: 23162
+ - uid: 32163
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,10.5
+ pos: 112.5,-16.5
parent: 2
- - uid: 23163
+ - uid: 32288
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,10.5
+ pos: -65.5,51.5
parent: 2
- - uid: 23164
+ - uid: 32321
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,10.5
+ pos: -79.5,69.5
parent: 2
- - uid: 23166
+ - uid: 32946
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,10.5
+ pos: 100.5,57.5
parent: 2
- - uid: 23168
+ - uid: 33105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,9.5
+ pos: 95.5,65.5
parent: 2
- - uid: 23172
+ - uid: 33446
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-9.5
+ pos: 89.5,51.5
parent: 2
- - uid: 23175
+ - uid: 33481
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-11.5
+ pos: 91.5,12.5
parent: 2
- - uid: 23179
+ - uid: 33521
components:
- type: Transform
- pos: -33.5,67.5
+ pos: 85.5,56.5
parent: 2
- - uid: 23252
+ - uid: 33855
components:
- type: Transform
- pos: -31.5,67.5
+ pos: 81.5,49.5
parent: 2
-- proto: PoweredSmallLightMaintenance
+ - uid: 34939
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 2
+ - uid: 35077
+ components:
+ - type: Transform
+ pos: 55.5,-56.5
+ parent: 2
+ - uid: 35079
+ components:
+ - type: Transform
+ pos: 55.5,-77.5
+ parent: 2
+ - uid: 35684
+ components:
+ - type: Transform
+ pos: 56.5,81.5
+ parent: 2
+ - uid: 35697
+ components:
+ - type: Transform
+ pos: 99.5,11.5
+ parent: 2
+ - uid: 36590
+ components:
+ - type: Transform
+ pos: 75.5,76.5
+ parent: 2
+ - uid: 36593
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 2
+ - uid: 36694
+ components:
+ - type: Transform
+ pos: 82.5,79.5
+ parent: 2
+ - uid: 36774
+ components:
+ - type: Transform
+ pos: 103.5,49.5
+ parent: 2
+ - uid: 37176
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 2
+ - uid: 37177
+ components:
+ - type: Transform
+ pos: 77.5,71.5
+ parent: 2
+ - uid: 37290
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 2
+ - uid: 37369
+ components:
+ - type: Transform
+ pos: -37.5,73.5
+ parent: 2
+ - uid: 37423
+ components:
+ - type: Transform
+ pos: 33.5,56.5
+ parent: 2
+ - uid: 38912
+ components:
+ - type: Transform
+ pos: 11.5,-40.5
+ parent: 2
+- proto: PoweredlightRed
entities:
- - uid: 431
+ - uid: 2067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,39.5
+ parent: 2
+ - uid: 32190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,-24.5
+ parent: 2
+ - uid: 37898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,-19.5
+ parent: 2
+ - uid: 37899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,-13.5
+ parent: 2
+ - uid: 37901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,-19.5
+ parent: 2
+ - uid: 37911
components:
- type: Transform
- pos: 66.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,-13.5
parent: 2
- - uid: 11198
+ - uid: 37917
components:
- type: Transform
- pos: -49.5,-32.5
+ pos: 97.5,-8.5
parent: 2
- - uid: 11204
+ - uid: 37918
components:
- type: Transform
- pos: -39.5,-32.5
+ pos: 105.5,-8.5
parent: 2
- - uid: 16290
+ - uid: 37923
components:
- type: Transform
- pos: 26.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 97.5,-24.5
parent: 2
- - uid: 16298
+ - uid: 37924
components:
- type: Transform
- pos: 40.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-13.5
parent: 2
- - uid: 17876
+ - uid: 37925
components:
- type: Transform
- pos: -5.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,-18.5
parent: 2
- - uid: 17913
+ - uid: 37926
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,28.5
+ pos: 79.5,-14.5
parent: 2
- - uid: 18472
+ - uid: 37927
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,52.5
+ pos: 88.5,-19.5
parent: 2
- - uid: 19165
+- proto: PoweredlightSodium
+ entities:
+ - uid: 17927
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 71.5,-8.5
parent: 2
- - uid: 19660
+ - uid: 26748
components:
- type: Transform
- pos: -68.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,-0.5
parent: 2
- - uid: 21084
+- proto: PoweredSmallLight
+ entities:
+ - uid: 599
components:
- type: Transform
- pos: -68.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,15.5
parent: 2
- - uid: 22504
+ - uid: 15150
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,15.5
parent: 2
- - uid: 22524
+ - uid: 17826
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -62.5,-30.5
+ pos: -23.5,15.5
parent: 2
- - uid: 22529
+ - uid: 17917
components:
- type: Transform
- pos: -30.5,-27.5
+ pos: -5.5,35.5
parent: 2
- - uid: 22549
+ - uid: 18194
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 39.5,-3.5
+ pos: 14.5,28.5
parent: 2
- - uid: 22550
+ - uid: 22294
+ components:
+ - type: Transform
+ pos: 48.5,30.5
+ parent: 2
+ - uid: 22439
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 32.5,43.5
+ pos: -68.5,-3.5
parent: 2
- - uid: 22557
+ - uid: 22447
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 84.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,8.5
parent: 2
- - uid: 22771
+ - uid: 22461
components:
- type: Transform
- pos: -43.5,70.5
+ pos: -62.5,13.5
parent: 2
- - uid: 23059
+ - uid: 22469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -55.5,40.5
+ parent: 2
+ - uid: 22490
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,11.5
+ pos: 37.5,51.5
parent: 2
- - uid: 23136
+ - uid: 22496
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 43.5,-31.5
+ pos: 47.5,51.5
parent: 2
- - uid: 23187
+ - uid: 22499
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,-11.5
+ pos: 44.5,34.5
parent: 2
- - uid: 25065
+ - uid: 22508
components:
- type: Transform
- pos: 70.5,30.5
+ pos: -75.5,1.5
parent: 2
- - uid: 26616
+ - uid: 22509
components:
- type: Transform
- pos: -54.5,53.5
+ pos: -79.5,1.5
parent: 2
- - uid: 32471
+ - uid: 22519
components:
- type: Transform
- pos: 55.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,16.5
parent: 2
- - uid: 32602
+ - uid: 22527
components:
- type: Transform
- pos: 58.5,66.5
+ pos: -26.5,-27.5
parent: 2
- - uid: 32604
+ - uid: 22860
components:
- type: Transform
- pos: 65.5,70.5
+ pos: -29.5,67.5
parent: 2
- - uid: 32605
+ - uid: 23129
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,15.5
parent: 2
- - uid: 32606
+ - uid: 23137
components:
- type: Transform
- pos: 62.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,10.5
parent: 2
- - uid: 32607
+ - uid: 23146
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 66.5,60.5
+ pos: -20.5,15.5
parent: 2
- - uid: 32609
+ - uid: 23162
components:
- type: Transform
- pos: 55.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,10.5
parent: 2
- - uid: 32611
+ - uid: 23163
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,10.5
parent: 2
- - uid: 32614
+ - uid: 23164
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 64.5,52.5
+ pos: -20.5,10.5
parent: 2
- - uid: 32617
+ - uid: 23166
components:
- type: Transform
- pos: 65.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,10.5
parent: 2
- - uid: 32619
+ - uid: 23168
components:
- type: Transform
- pos: 60.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,9.5
parent: 2
- - uid: 32620
+ - uid: 23179
components:
- type: Transform
- pos: 57.5,48.5
+ pos: -33.5,67.5
parent: 2
- - uid: 32624
+ - uid: 23252
components:
- type: Transform
- pos: 56.5,32.5
+ pos: -31.5,67.5
parent: 2
- - uid: 32626
+ - uid: 30792
components:
- type: Transform
- pos: 59.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-11.5
parent: 2
- - uid: 32628
+ - uid: 31058
components:
- type: Transform
- pos: 66.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,-11.5
parent: 2
- - uid: 32630
+ - uid: 37928
components:
- type: Transform
- pos: 69.5,36.5
+ pos: 91.5,-20.5
parent: 2
- - uid: 32632
+ - uid: 37929
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 91.5,-12.5
parent: 2
- - uid: 32633
+ - uid: 39289
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 52.5,36.5
+ pos: 74.5,-13.5
parent: 2
- - uid: 32634
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 36744
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,52.5
+ pos: 72.5,63.5
parent: 2
- - uid: 32635
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 36745
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - uid: 36879
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,57.5
+ pos: 66.5,69.5
parent: 2
- - uid: 32636
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 36880
+ - type: ApcPowerReceiver
+ powerLoad: 0
+- proto: PoweredSmallLightMaintenance
+ entities:
+ - uid: 431
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,60.5
+ pos: 66.5,30.5
parent: 2
- - type: PoweredLight
- ghostBlinkingCooldown: 60.0004096
- - uid: 32638
+ - uid: 4494
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,67.5
+ pos: 58.5,33.5
parent: 2
- - uid: 32641
+ - uid: 5948
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 78.5,64.5
+ pos: -29.5,-1.5
parent: 2
- - uid: 32642
+ - uid: 6940
components:
- type: Transform
- pos: 82.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 86.5,20.5
parent: 2
- - uid: 32643
+ - uid: 7225
components:
- type: Transform
- pos: 87.5,68.5
+ pos: 98.5,77.5
parent: 2
- - uid: 32644
+ - uid: 12991
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,16.5
parent: 2
- - uid: 32645
+ - uid: 14924
components:
- type: Transform
- pos: 92.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,5.5
parent: 2
- - uid: 32646
+ - uid: 16290
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 95.5,58.5
+ pos: 26.5,33.5
parent: 2
- - uid: 32647
+ - uid: 17913
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 95.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,28.5
parent: 2
- - uid: 32648
+ - uid: 18472
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 89.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,52.5
parent: 2
- - uid: 32649
+ - uid: 19077
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,6.5
parent: 2
- - uid: 32655
+ - uid: 19142
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 89.5,46.5
+ pos: -34.5,6.5
parent: 2
- - uid: 32656
+ - uid: 19165
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,34.5
parent: 2
- - uid: 32657
+ - uid: 19817
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 96.5,45.5
+ pos: 6.5,-18.5
parent: 2
- - uid: 32659
+ - uid: 21084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 99.5,41.5
+ pos: -68.5,-5.5
parent: 2
- - uid: 32661
+ - uid: 22524
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -62.5,-30.5
parent: 2
- - uid: 32662
+ - uid: 22529
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,33.5
+ pos: -30.5,-27.5
parent: 2
- - uid: 32663
+ - uid: 22549
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 89.5,32.5
+ pos: 39.5,-3.5
parent: 2
- - uid: 32664
+ - uid: 22550
components:
- type: Transform
- pos: 95.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,43.5
parent: 2
- - uid: 32665
+ - uid: 22557
components:
- type: Transform
- pos: 97.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,9.5
parent: 2
- - uid: 32667
+ - uid: 22771
components:
- type: Transform
- pos: 95.5,24.5
+ pos: -43.5,70.5
parent: 2
- - uid: 32668
+ - uid: 23059
components:
- type: Transform
- pos: 91.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,11.5
parent: 2
- - uid: 32669
+ - uid: 23136
components:
- type: Transform
- pos: 87.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-31.5
parent: 2
- - uid: 32672
+ - uid: 23187
components:
- type: Transform
- pos: 80.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-11.5
parent: 2
- - uid: 32673
+ - uid: 25065
components:
- type: Transform
- pos: 81.5,32.5
+ pos: 70.5,30.5
parent: 2
- - uid: 32674
+ - uid: 32528
components:
- type: Transform
- pos: 79.5,34.5
+ pos: 87.5,77.5
parent: 2
- - uid: 32675
+ - uid: 32633
components:
- type: Transform
- pos: 76.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,36.5
parent: 2
- - uid: 32676
+ - uid: 32811
components:
- type: Transform
- pos: 76.5,40.5
+ pos: 76.5,63.5
parent: 2
- - uid: 32679
+ - uid: 33299
components:
- type: Transform
- pos: 68.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,26.5
parent: 2
- - uid: 32683
+ - uid: 36877
components:
- type: Transform
- pos: 84.5,27.5
+ pos: 73.5,69.5
parent: 2
+ - type: PointLight
+ enabled: False
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 36878
+ - type: ApcPowerReceiver
+ powerLoad: 0
- proto: PoweredSmallLightMaintenanceRed
entities:
- uid: 3427
@@ -168318,18 +190597,46 @@ entities:
rot: -1.5707963267948966 rad
pos: -31.5,-8.5
parent: 2
+ - uid: 4455
+ components:
+ - type: Transform
+ pos: -35.5,56.5
+ parent: 2
- uid: 5974
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -35.5,-10.5
parent: 2
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: 20.5,-25.5
+ parent: 2
+ - uid: 8236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,43.5
+ parent: 2
- uid: 8304
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -64.5,-20.5
parent: 2
+ - uid: 11234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-19.5
+ parent: 2
+ - uid: 13815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-33.5
+ parent: 2
- uid: 15848
components:
- type: Transform
@@ -168348,54 +190655,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 23.5,24.5
parent: 2
- - uid: 16297
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-0.5
- parent: 2
- uid: 16299
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 39.5,-11.5
parent: 2
- - uid: 16300
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,43.5
- parent: 2
- uid: 16552
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 47.5,-21.5
parent: 2
- - uid: 17846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 47.5,-34.5
- parent: 2
- - uid: 17847
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-3.5
- parent: 2
- uid: 17875
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -2.5,35.5
parent: 2
- - uid: 17905
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,25.5
- parent: 2
- uid: 19384
components:
- type: Transform
@@ -168414,17 +190691,21 @@ entities:
rot: -1.5707963267948966 rad
pos: -75.5,24.5
parent: 2
+ - uid: 20959
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 2
- uid: 21069
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -67.5,22.5
parent: 2
- - uid: 22160
+ - uid: 22375
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,1.5
+ pos: -15.5,-4.5
parent: 2
- uid: 22518
components:
@@ -168438,24 +190719,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -32.5,-19.5
parent: 2
- - uid: 22532
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-30.5
- parent: 2
- - uid: 22537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,16.5
- parent: 2
- - uid: 22541
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-22.5
- parent: 2
- uid: 22544
components:
- type: Transform
@@ -168503,38 +190766,53 @@ entities:
rot: -1.5707963267948966 rad
pos: -61.5,-20.5
parent: 2
- - uid: 22568
+ - uid: 22569
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-31.5
+ pos: -5.5,-27.5
parent: 2
- - uid: 22569
+ - uid: 23298
components:
- type: Transform
- pos: -5.5,-27.5
+ pos: -26.5,-4.5
parent: 2
- - uid: 22574
+ - uid: 26516
components:
- type: Transform
- pos: 85.5,22.5
+ pos: -30.5,55.5
parent: 2
- - uid: 23298
+ - uid: 29027
components:
- type: Transform
- pos: -26.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-32.5
parent: 2
- - uid: 29674
+ - uid: 37201
components:
- type: Transform
- pos: -22.5,-37.5
+ pos: 79.5,3.5
parent: 2
-- proto: PresentRandom
- entities:
- - uid: 5958
+ - uid: 37371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-33.5
+ parent: 2
+ - uid: 37372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-33.5
+ parent: 2
+ - uid: 38040
+ components:
+ - type: Transform
+ pos: 18.5,-25.5
+ parent: 2
+ - uid: 38082
components:
- type: Transform
- pos: 21.15425,-35.52148
+ pos: -77.5,19.5
parent: 2
- proto: Protolathe
entities:
@@ -168545,10 +190823,10 @@ entities:
parent: 2
- proto: PsychBed
entities:
- - uid: 1128
+ - uid: 20469
components:
- type: Transform
- pos: -16.5,-7.5
+ pos: -14.5,-9.5
parent: 2
- proto: Puddle
entities:
@@ -168571,25 +190849,6 @@ entities:
Quantity: 50
- type: StepTrigger
active: False
- - uid: 33569
- components:
- - type: Transform
- pos: 91.5,27.5
- parent: 2
- - type: SolutionContainerManager
- solutions:
- puddle:
- temperature: 293.15
- canMix: False
- canReact: True
- maxVol: 1000
- name: null
- reagents:
- - data: null
- ReagentId: Blood
- Quantity: 50
- - type: StepTrigger
- active: False
- proto: PuddleFlour
entities:
- uid: 30095
@@ -168663,6 +190922,12 @@ entities:
- type: Transform
pos: -51.5,18.5
parent: 2
+ - uid: 644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-5.5
+ parent: 2
- uid: 921
components:
- type: Transform
@@ -168686,16 +190951,6 @@ entities:
- type: Transform
pos: 15.5,-9.5
parent: 2
- - uid: 1034
- components:
- - type: Transform
- pos: 35.5,3.5
- parent: 2
- - uid: 1066
- components:
- - type: Transform
- pos: 33.5,3.5
- parent: 2
- uid: 1133
components:
- type: Transform
@@ -168722,28 +190977,12 @@ entities:
- type: Transform
pos: 18.5,-10.5
parent: 2
- - uid: 1284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,15.5
- parent: 2
- uid: 1345
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
- - uid: 1384
- components:
- - type: Transform
- pos: 34.5,12.5
- parent: 2
- - uid: 1394
- components:
- - type: Transform
- pos: -23.5,58.5
- parent: 2
- uid: 1532
components:
- type: Transform
@@ -168779,16 +191018,10 @@ entities:
- type: Transform
pos: -62.5,5.5
parent: 2
- - uid: 3323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,37.5
- parent: 2
- - uid: 3376
+ - uid: 3153
components:
- type: Transform
- pos: -25.5,-4.5
+ pos: 49.5,44.5
parent: 2
- uid: 3516
components:
@@ -168816,22 +191049,17 @@ entities:
- type: Transform
pos: -52.5,-14.5
parent: 2
- - uid: 3816
+ - uid: 3621
components:
- type: Transform
- pos: -26.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,13.5
parent: 2
- uid: 3948
components:
- type: Transform
pos: -81.5,1.5
parent: 2
- - uid: 5119
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,-41.5
- parent: 2
- uid: 5216
components:
- type: Transform
@@ -168844,30 +191072,15 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,30.5
parent: 2
- - uid: 5753
- components:
- - type: Transform
- pos: 20.5,-23.5
- parent: 2
- - uid: 5754
- components:
- - type: Transform
- pos: 21.5,-23.5
- parent: 2
- - uid: 5901
- components:
- - type: Transform
- pos: 26.5,-34.5
- parent: 2
- - uid: 5902
+ - uid: 5251
components:
- type: Transform
- pos: 26.5,-32.5
+ pos: -10.5,34.5
parent: 2
- - uid: 6014
+ - uid: 5941
components:
- type: Transform
- pos: 7.5,-29.5
+ pos: 94.5,73.5
parent: 2
- uid: 6039
components:
@@ -168893,6 +191106,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 16.5,24.5
parent: 2
+ - uid: 6118
+ components:
+ - type: Transform
+ pos: 84.5,24.5
+ parent: 2
+ - uid: 6134
+ components:
+ - type: Transform
+ pos: 84.5,23.5
+ parent: 2
- uid: 6508
components:
- type: Transform
@@ -168903,16 +191126,37 @@ entities:
- type: Transform
pos: -3.5,-25.5
parent: 2
- - uid: 6678
+ - uid: 6669
components:
- type: Transform
- pos: -13.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-46.5
+ parent: 2
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: -15.5,-43.5
+ parent: 2
+ - uid: 6747
+ components:
+ - type: Transform
+ pos: -15.5,-42.5
+ parent: 2
+ - uid: 6779
+ components:
+ - type: Transform
+ pos: -23.5,-46.5
parent: 2
- uid: 6931
components:
- type: Transform
pos: -51.5,26.5
parent: 2
+ - uid: 7111
+ components:
+ - type: Transform
+ pos: -35.5,-26.5
+ parent: 2
- uid: 7392
components:
- type: Transform
@@ -168928,10 +191172,20 @@ entities:
- type: Transform
pos: -57.5,-9.5
parent: 2
- - uid: 7606
+ - uid: 7595
components:
- type: Transform
- pos: -56.5,-19.5
+ pos: 21.5,-25.5
+ parent: 2
+ - uid: 8243
+ components:
+ - type: Transform
+ pos: 94.5,74.5
+ parent: 2
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: 94.5,72.5
parent: 2
- uid: 8429
components:
@@ -168948,15 +191202,11 @@ entities:
- type: Transform
pos: -78.5,-2.5
parent: 2
- - uid: 8788
- components:
- - type: Transform
- pos: -50.5,16.5
- parent: 2
- - uid: 8838
+ - uid: 8770
components:
- type: Transform
- pos: -51.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,16.5
parent: 2
- uid: 8921
components:
@@ -169008,42 +191258,21 @@ entities:
- type: Transform
pos: -47.5,31.5
parent: 2
- - uid: 9134
- components:
- - type: Transform
- pos: -33.5,39.5
- parent: 2
- uid: 9147
components:
- type: Transform
pos: -4.5,-22.5
parent: 2
- - uid: 9218
- components:
- - type: Transform
- pos: -33.5,40.5
- parent: 2
- - uid: 9228
- components:
- - type: Transform
- pos: -33.5,41.5
- parent: 2
- uid: 9286
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -37.5,37.5
parent: 2
- - uid: 10065
- components:
- - type: Transform
- pos: -69.5,36.5
- parent: 2
- - uid: 10628
+ - uid: 11009
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-31.5
+ pos: 33.5,2.5
parent: 2
- uid: 11108
components:
@@ -169057,99 +191286,72 @@ entities:
rot: 3.141592653589793 rad
pos: -67.5,-2.5
parent: 2
- - uid: 11241
- components:
- - type: Transform
- pos: 71.5,30.5
- parent: 2
- - uid: 11342
- components:
- - type: Transform
- pos: -46.5,-25.5
- parent: 2
- - uid: 12934
- components:
- - type: Transform
- pos: 47.5,46.5
- parent: 2
- - uid: 12935
- components:
- - type: Transform
- pos: 46.5,42.5
- parent: 2
- - uid: 13244
+ - uid: 11221
components:
- type: Transform
- pos: -37.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,58.5
parent: 2
- - uid: 13645
+ - uid: 11241
components:
- type: Transform
- pos: 58.5,-37.5
+ pos: 71.5,30.5
parent: 2
- - uid: 14078
+ - uid: 11636
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,44.5
- parent: 2
- - uid: 14258
- components:
- - type: Transform
- pos: 27.5,55.5
- parent: 2
- - uid: 15525
- components:
- - type: Transform
- pos: -20.5,48.5
+ pos: 7.5,-27.5
parent: 2
- - uid: 15988
+ - uid: 11850
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,-46.5
parent: 2
- - uid: 16498
+ - uid: 12092
components:
- type: Transform
- pos: -25.5,46.5
+ pos: -24.5,4.5
parent: 2
- - uid: 16500
+ - uid: 12427
components:
- type: Transform
- pos: -23.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-18.5
parent: 2
- - uid: 16509
+ - uid: 12435
components:
- type: Transform
- pos: -19.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-18.5
parent: 2
- - uid: 16519
+ - uid: 12511
components:
- type: Transform
- pos: -20.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,53.5
parent: 2
- - uid: 16592
+ - uid: 12934
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,60.5
+ pos: 47.5,46.5
parent: 2
- - uid: 16669
+ - uid: 13645
components:
- type: Transform
- pos: -36.5,12.5
+ pos: 58.5,-37.5
parent: 2
- - uid: 16670
+ - uid: 14258
components:
- type: Transform
- pos: -37.5,12.5
+ pos: 27.5,55.5
parent: 2
- - uid: 18118
+ - uid: 15988
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-20.5
parent: 2
- uid: 18150
components:
@@ -169168,11 +191370,10 @@ entities:
- type: Transform
pos: -31.5,62.5
parent: 2
- - uid: 18197
+ - uid: 18353
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,60.5
+ pos: 11.5,11.5
parent: 2
- uid: 18438
components:
@@ -169201,40 +191402,30 @@ entities:
- type: Transform
pos: -51.5,0.5
parent: 2
- - uid: 18516
- components:
- - type: Transform
- pos: -41.5,24.5
- parent: 2
- - uid: 18528
- components:
- - type: Transform
- pos: -40.5,24.5
- parent: 2
- - uid: 19378
+ - uid: 19129
components:
- type: Transform
- pos: -18.5,48.5
+ pos: -38.5,13.5
parent: 2
- uid: 19428
components:
- type: Transform
pos: -77.5,1.5
parent: 2
- - uid: 19638
+ - uid: 19691
components:
- type: Transform
- pos: -13.5,-42.5
+ pos: -67.5,17.5
parent: 2
- - uid: 19691
+ - uid: 20208
components:
- type: Transform
- pos: -67.5,17.5
+ pos: -36.5,35.5
parent: 2
- - uid: 20172
+ - uid: 20627
components:
- type: Transform
- pos: -28.5,-4.5
+ pos: -35.5,-25.5
parent: 2
- uid: 20962
components:
@@ -169271,23 +191462,10 @@ entities:
- type: Transform
pos: 52.5,8.5
parent: 2
- - uid: 21209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,35.5
- parent: 2
- - uid: 22090
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-8.5
- parent: 2
- - uid: 22165
+ - uid: 21804
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-8.5
+ pos: -26.5,37.5
parent: 2
- uid: 22395
components:
@@ -169304,226 +191482,250 @@ entities:
- type: Transform
pos: 34.5,-0.5
parent: 2
- - uid: 23286
+ - uid: 23195
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,12.5
parent: 2
- - uid: 23290
+ - uid: 23292
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,33.5
+ pos: -15.5,-44.5
parent: 2
- - uid: 23294
+ - uid: 23498
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,14.5
+ pos: 95.5,79.5
parent: 2
- uid: 25071
components:
- type: Transform
pos: 71.5,29.5
parent: 2
- - uid: 27610
+ - uid: 25917
components:
- type: Transform
- pos: -17.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,42.5
parent: 2
- - uid: 27633
+ - uid: 25990
components:
- type: Transform
- pos: -16.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,43.5
parent: 2
- - uid: 28158
+ - uid: 25992
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,-32.5
+ pos: -32.5,43.5
parent: 2
- - uid: 28695
+ - uid: 26489
components:
- type: Transform
- pos: -56.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,43.5
parent: 2
- - uid: 28894
+ - uid: 26498
components:
- type: Transform
- pos: -18.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,43.5
parent: 2
- - uid: 28969
+ - uid: 26598
components:
- type: Transform
- pos: 34.5,3.5
+ pos: -24.5,5.5
parent: 2
- - uid: 28972
+ - uid: 27610
components:
- type: Transform
- pos: -21.5,48.5
+ pos: -17.5,-25.5
parent: 2
- - uid: 29610
+ - uid: 27633
components:
- type: Transform
- pos: 6.5,-29.5
+ pos: -16.5,-25.5
parent: 2
- - uid: 29753
+ - uid: 28693
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,62.5
+ pos: 6.5,46.5
parent: 2
- - uid: 29754
+ - uid: 28791
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,61.5
+ pos: -36.5,34.5
parent: 2
- - uid: 29755
+ - uid: 29006
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 82.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,62.5
parent: 2
- - uid: 29756
+ - uid: 30896
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,41.5
parent: 2
- - uid: 29770
+ - uid: 31118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,59.5
+ pos: 17.5,11.5
parent: 2
- - uid: 29771
+ - uid: 32317
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 86.5,58.5
+ pos: 96.5,79.5
parent: 2
- - uid: 31792
+ - uid: 34638
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-33.5
+ pos: 43.5,30.5
parent: 2
- - uid: 34638
+ - uid: 35838
components:
- type: Transform
- pos: 43.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,18.5
parent: 2
-- proto: RadiationCollector
- entities:
- - uid: 23017
+ - uid: 35853
components:
- type: Transform
- pos: -111.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,40.5
parent: 2
- - uid: 23018
+ - uid: 35974
components:
- type: Transform
- pos: -112.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,18.5
parent: 2
- - uid: 23049
+ - uid: 36729
components:
- type: Transform
- pos: -114.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-27.5
parent: 2
- - uid: 23341
+- proto: RadiationCollector
+ entities:
+ - uid: 19256
components:
- type: Transform
anchored: False
- pos: -93.1931,57.47908
+ pos: 107.129295,-8.744158
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 27871
+ - uid: 32191
components:
- type: Transform
- anchored: False
- pos: -119.22025,50.3151
+ pos: 99.5,-9.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - uid: 27906
+ - uid: 32248
+ components:
+ - type: Transform
+ pos: 102.5,-9.5
+ parent: 2
+- proto: RadiationCollectorFullTank
+ entities:
+ - uid: 16700
components:
- type: Transform
anchored: False
- pos: -107.89526,44.088966
+ pos: 108.87485,-11.5693445
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 28825
+ - uid: 29755
components:
- type: Transform
- pos: -113.5,57.5
+ pos: 108.5,-18.5
parent: 2
- - uid: 28826
+ - uid: 32160
components:
- type: Transform
- anchored: False
- pos: -110.99109,59.063522
+ pos: 108.5,-15.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - uid: 28827
+ - uid: 32161
components:
- type: Transform
- pos: -118.5,52.5
+ pos: 103.5,-9.5
parent: 2
- - uid: 32436
+ - uid: 32165
components:
- type: Transform
- anchored: False
- pos: -96.53507,58.04881
+ pos: 108.5,-17.5
parent: 2
- - type: Physics
- bodyType: Dynamic
- - uid: 32437
+ - uid: 32167
components:
- type: Transform
anchored: False
- pos: -99.46498,45.464916
+ pos: 94.88181,-9.615191
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 32438
+ - uid: 32168
+ components:
+ - type: Transform
+ pos: 99.5,-23.5
+ parent: 2
+ - uid: 32170
components:
- type: Transform
anchored: False
- pos: -100.38747,45.465878
+ pos: 103.67894,-24.319048
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 32439
+ - uid: 32192
+ components:
+ - type: Transform
+ pos: 100.5,-9.5
+ parent: 2
+ - uid: 32208
components:
- type: Transform
anchored: False
- pos: -99.62384,46.73476
+ pos: 102.766045,-24.085777
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 32440
+ - uid: 32247
components:
- type: Transform
anchored: False
- pos: -99.5,57.5
+ pos: 106.48126,-23.002579
parent: 2
- type: Physics
bodyType: Dynamic
- - uid: 32441
+ - uid: 32250
components:
- type: Transform
anchored: False
- pos: -101.0904,54.52224
+ pos: 95.794815,-10.019503
parent: 2
- type: Physics
bodyType: Dynamic
- proto: RadioHandheld
entities:
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 10.38207,62.76857
+ parent: 2
+ - uid: 6865
+ components:
+ - type: Transform
+ pos: 33.661804,2.4725661
+ parent: 2
+ - uid: 7810
+ components:
+ - type: Transform
+ pos: 33.388367,2.4960036
+ parent: 2
- uid: 9594
components:
- type: Transform
@@ -169542,42 +191744,32 @@ entities:
- uid: 9597
components:
- type: Transform
- pos: -50.831215,18.66408
- parent: 2
- - uid: 9598
- components:
- - type: Transform
- pos: -55.67106,35.860962
+ pos: -47.28383,16.587387
parent: 2
- uid: 9599
components:
- type: Transform
- pos: -55.413246,35.77893
+ pos: -54.146004,41.67244
parent: 2
- uid: 9600
components:
- type: Transform
- pos: -55.57731,35.60315
- parent: 2
- - uid: 19855
- components:
- - type: Transform
- pos: 10.573705,60.727715
+ pos: -64.51688,38.617752
parent: 2
- - uid: 22359
+ - uid: 15511
components:
- type: Transform
- pos: 26.287569,37.5581
+ pos: 10.63207,62.565445
parent: 2
- - uid: 22366
+ - uid: 20182
components:
- type: Transform
- pos: 10.386205,60.49855
+ pos: -35.74081,35.6401
parent: 2
- - uid: 22367
+ - uid: 22359
components:
- type: Transform
- pos: 10.698705,60.4673
+ pos: 26.287569,37.5581
parent: 2
- uid: 22382
components:
@@ -169592,7 +191784,7 @@ entities:
- uid: 22384
components:
- type: Transform
- pos: 28.617962,52.835003
+ pos: 29.057135,52.597256
parent: 2
- uid: 22385
components:
@@ -169622,12 +191814,12 @@ entities:
- uid: 22390
components:
- type: Transform
- pos: -11.339292,-10.879668
+ pos: -11.759426,-10.913472
parent: 2
- uid: 22391
components:
- type: Transform
- pos: -27.766466,-9.085171
+ pos: -29.510267,-9.276721
parent: 2
- uid: 22392
components:
@@ -169639,35 +191831,14 @@ entities:
- type: Transform
pos: -58.337063,13.594515
parent: 2
- - uid: 22396
- components:
- - type: Transform
- pos: -41.535954,31.496433
- parent: 2
- - uid: 22397
- components:
- - type: Transform
- pos: -54.073174,35.65238
- parent: 2
- proto: Railing
entities:
- - uid: 92
- components:
- - type: Transform
- pos: 0.5,-21.5
- parent: 2
- uid: 586
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 3.5,9.5
parent: 2
- - uid: 750
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,7.5
- parent: 2
- uid: 933
components:
- type: Transform
@@ -169680,16 +191851,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 64.5,20.5
parent: 2
- - uid: 1308
- components:
- - type: Transform
- pos: 25.5,3.5
- parent: 2
- - uid: 1309
- components:
- - type: Transform
- pos: 26.5,3.5
- parent: 2
- uid: 1310
components:
- type: Transform
@@ -169713,60 +191874,6 @@ entities:
rot: 3.141592653589793 rad
pos: 25.5,0.5
parent: 2
- - uid: 1352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,11.5
- parent: 2
- - uid: 1354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,13.5
- parent: 2
- - uid: 1355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,12.5
- parent: 2
- - uid: 1359
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,13.5
- parent: 2
- - uid: 1368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,10.5
- parent: 2
- - uid: 1370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,10.5
- parent: 2
- - uid: 1613
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,10.5
- parent: 2
- - uid: 1635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,10.5
- parent: 2
- - uid: 1865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,62.5
- parent: 2
- uid: 1899
components:
- type: Transform
@@ -169797,89 +191904,76 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,9.5
parent: 2
- - uid: 2412
+ - uid: 2520
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,-34.5
- parent: 2
- - uid: 2588
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-14.5
+ pos: 13.5,-28.5
parent: 2
- - uid: 3315
+ - uid: 2540
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-32.5
parent: 2
- - uid: 3490
+ - uid: 2588
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 25.5,-32.5
+ pos: 12.5,-14.5
parent: 2
- - uid: 3491
+ - uid: 2709
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 26.5,-32.5
- parent: 2
- - uid: 3508
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-29.5
+ pos: -19.5,25.5
parent: 2
- - uid: 3509
+ - uid: 3303
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 88.5,73.5
parent: 2
- - uid: 3510
+ - uid: 3361
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 88.5,72.5
parent: 2
- - uid: 3511
+ - uid: 3505
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-30.5
+ pos: 33.5,11.5
parent: 2
- - uid: 3512
+ - uid: 3679
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-29.5
+ pos: -62.5,17.5
parent: 2
- - uid: 3513
+ - uid: 4009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-28.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,70.5
parent: 2
- - uid: 3514
+ - uid: 4425
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-31.5
+ pos: 88.5,71.5
parent: 2
- - uid: 3515
+ - uid: 4655
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-30.5
+ pos: 20.5,-23.5
parent: 2
- - uid: 3679
+ - uid: 4803
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -62.5,17.5
+ pos: 88.5,78.5
parent: 2
- uid: 4982
components:
@@ -169932,11 +192026,45 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-15.5
parent: 2
- - uid: 6328
+ - uid: 5662
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,59.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,25.5
+ parent: 2
+ - uid: 5667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,25.5
+ parent: 2
+ - uid: 5943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -50.5,-8.5
+ parent: 2
+ - uid: 5983
+ components:
+ - type: Transform
+ pos: 21.5,-21.5
+ parent: 2
+ - uid: 6249
+ components:
+ - type: Transform
+ pos: 17.5,-31.5
+ parent: 2
+ - uid: 6520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-30.5
+ parent: 2
+ - uid: 6624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-54.5
parent: 2
- uid: 6676
components:
@@ -169944,6 +192072,41 @@ entities:
rot: -1.5707963267948966 rad
pos: 38.5,33.5
parent: 2
+ - uid: 6707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-30.5
+ parent: 2
+ - uid: 6728
+ components:
+ - type: Transform
+ pos: 43.5,12.5
+ parent: 2
+ - uid: 6734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-46.5
+ parent: 2
+ - uid: 7041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-30.5
+ parent: 2
+ - uid: 7352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,14.5
+ parent: 2
+ - uid: 7354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,14.5
+ parent: 2
- uid: 7478
components:
- type: Transform
@@ -169980,6 +192143,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,-22.5
parent: 2
+ - uid: 8155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,13.5
+ parent: 2
+ - uid: 8189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 2
+ - uid: 8190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,75.5
+ parent: 2
- uid: 8337
components:
- type: Transform
@@ -170042,6 +192223,12 @@ entities:
- type: Transform
pos: -59.5,19.5
parent: 2
+ - uid: 9678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-47.5
+ parent: 2
- uid: 9753
components:
- type: Transform
@@ -170154,24 +192341,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -67.5,41.5
parent: 2
- - uid: 9860
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,44.5
- parent: 2
- - uid: 9861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,45.5
- parent: 2
- - uid: 9862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,46.5
- parent: 2
- uid: 9863
components:
- type: Transform
@@ -170289,39 +192458,6 @@ entities:
- type: Transform
pos: -80.5,50.5
parent: 2
- - uid: 9927
- components:
- - type: Transform
- pos: -82.5,50.5
- parent: 2
- - uid: 9928
- components:
- - type: Transform
- pos: -83.5,50.5
- parent: 2
- - uid: 9929
- components:
- - type: Transform
- pos: -85.5,50.5
- parent: 2
- - uid: 9930
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,52.5
- parent: 2
- - uid: 9931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,52.5
- parent: 2
- - uid: 9932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,52.5
- parent: 2
- uid: 9933
components:
- type: Transform
@@ -170364,6 +192500,18 @@ entities:
rot: 3.141592653589793 rad
pos: -66.5,52.5
parent: 2
+ - uid: 10072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,55.5
+ parent: 2
+ - uid: 10190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,15.5
+ parent: 2
- uid: 10437
components:
- type: Transform
@@ -170416,80 +192564,168 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-41.5
parent: 2
- - uid: 10459
+ - uid: 10459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-42.5
+ parent: 2
+ - uid: 10460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-45.5
+ parent: 2
+ - uid: 10461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-47.5
+ parent: 2
+ - uid: 10462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -88.5,-48.5
+ parent: 2
+ - uid: 10583
+ components:
+ - type: Transform
+ pos: -66.5,-36.5
+ parent: 2
+ - uid: 10584
+ components:
+ - type: Transform
+ pos: -65.5,-36.5
+ parent: 2
+ - uid: 10585
+ components:
+ - type: Transform
+ pos: -64.5,-36.5
+ parent: 2
+ - uid: 10586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-30.5
+ parent: 2
+ - uid: 10587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-31.5
+ parent: 2
+ - uid: 10616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-32.5
+ parent: 2
+ - uid: 10649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-44.5
+ parent: 2
+ - uid: 11346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-54.5
+ parent: 2
+ - uid: 11399
+ components:
+ - type: Transform
+ pos: 23.5,-21.5
+ parent: 2
+ - uid: 11821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-43.5
+ parent: 2
+ - uid: 11822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-42.5
+ parent: 2
+ - uid: 11833
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-42.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-41.5
parent: 2
- - uid: 10460
+ - uid: 11834
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-45.5
parent: 2
- - uid: 10461
+ - uid: 11835
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -88.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-50.5
parent: 2
- - uid: 10462
+ - uid: 11846
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -88.5,-48.5
+ pos: -33.5,-50.5
parent: 2
- - uid: 10583
+ - uid: 11848
components:
- type: Transform
- pos: -66.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-49.5
parent: 2
- - uid: 10584
+ - uid: 11849
components:
- type: Transform
- pos: -65.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-48.5
parent: 2
- - uid: 10585
+ - uid: 11973
components:
- type: Transform
- pos: -64.5,-36.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-14.5
parent: 2
- - uid: 10586
+ - uid: 11981
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-14.5
parent: 2
- - uid: 10587
+ - uid: 12084
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,-31.5
+ pos: 13.5,-32.5
parent: 2
- - uid: 10616
+ - uid: 12409
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,-32.5
+ pos: 13.5,-30.5
parent: 2
- - uid: 11268
+ - uid: 12439
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-22.5
parent: 2
- - uid: 11973
+ - uid: 12447
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-16.5
parent: 2
- - uid: 12146
+ - uid: 13009
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,7.5
+ pos: 48.5,-30.5
parent: 2
- uid: 13441
components:
@@ -170602,10 +192838,35 @@ entities:
rot: -1.5707963267948966 rad
pos: 55.5,-53.5
parent: 2
- - uid: 13867
+ - uid: 13754
components:
- type: Transform
- pos: 16.5,19.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,0.5
+ parent: 2
+ - uid: 13761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,4.5
+ parent: 2
+ - uid: 13772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,3.5
+ parent: 2
+ - uid: 13773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,1.5
+ parent: 2
+ - uid: 14967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-31.5
parent: 2
- uid: 15208
components:
@@ -170631,12 +192892,30 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,37.5
parent: 2
+ - uid: 15708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,12.5
+ parent: 2
- uid: 15755
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -32.5,57.5
parent: 2
+ - uid: 16608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-48.5
+ parent: 2
+ - uid: 16848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-31.5
+ parent: 2
- uid: 17007
components:
- type: Transform
@@ -170655,11 +192934,40 @@ entities:
rot: 1.5707963267948966 rad
pos: 57.5,-53.5
parent: 2
- - uid: 17502
+ - uid: 17116
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-16.5
+ pos: 13.5,-29.5
+ parent: 2
+ - uid: 17690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-40.5
+ parent: 2
+ - uid: 17692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-49.5
+ parent: 2
+ - uid: 17732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-32.5
+ parent: 2
+ - uid: 17735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-32.5
+ parent: 2
+ - uid: 17749
+ components:
+ - type: Transform
+ pos: -40.5,-30.5
parent: 2
- uid: 18219
components:
@@ -170685,27 +192993,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 54.5,-41.5
parent: 2
- - uid: 18585
- components:
- - type: Transform
- pos: -88.5,50.5
- parent: 2
- - uid: 18587
- components:
- - type: Transform
- pos: -89.5,50.5
- parent: 2
- uid: 18603
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 58.5,-40.5
parent: 2
- - uid: 18621
+ - uid: 18678
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -88.5,52.5
+ pos: 85.5,-19.5
parent: 2
- uid: 18711
components:
@@ -170713,6 +193010,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-57.5
parent: 2
+ - uid: 18772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,-13.5
+ parent: 2
- uid: 18777
components:
- type: Transform
@@ -170742,17 +193045,98 @@ entities:
rot: -1.5707963267948966 rad
pos: -90.5,-43.5
parent: 2
- - uid: 19626
+ - uid: 18935
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -106.5,53.5
parent: 2
- - uid: 19650
+ - uid: 18995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,53.5
+ parent: 2
+ - uid: 18996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,52.5
+ parent: 2
+ - uid: 18997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -81.5,51.5
+ parent: 2
+ - uid: 19966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-33.5
+ parent: 2
+ - uid: 20273
+ components:
+ - type: Transform
+ pos: 16.5,9.5
+ parent: 2
+ - uid: 20523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,-28.5
+ parent: 2
+ - uid: 20543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,11.5
+ parent: 2
+ - uid: 20594
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,70.5
+ parent: 2
+ - uid: 20596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,77.5
+ parent: 2
+ - uid: 21023
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,62.5
+ pos: 88.5,77.5
+ parent: 2
+ - uid: 21104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,-33.5
+ parent: 2
+ - uid: 21117
+ components:
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 2
+ - uid: 21119
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 2
+ - uid: 21120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 2
+ - uid: 22048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-31.5
parent: 2
- uid: 22122
components:
@@ -170784,17 +193168,53 @@ entities:
rot: 1.5707963267948966 rad
pos: 64.5,22.5
parent: 2
- - uid: 22279
+ - uid: 22181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -107.5,53.5
+ parent: 2
+ - uid: 22243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -104.5,52.5
+ parent: 2
+ - uid: 22251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -105.5,53.5
+ parent: 2
+ - uid: 22269
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,58.5
+ pos: 88.5,72.5
+ parent: 2
+ - uid: 22270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 2
+ - uid: 22542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-32.5
parent: 2
- uid: 22675
components:
- type: Transform
pos: -19.5,-13.5
parent: 2
+ - uid: 22817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,10.5
+ parent: 2
- uid: 22885
components:
- type: Transform
@@ -170805,6 +193225,12 @@ entities:
- type: Transform
pos: -24.5,-13.5
parent: 2
+ - uid: 22947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-35.5
+ parent: 2
- uid: 23127
components:
- type: Transform
@@ -170833,35 +193259,188 @@ entities:
rot: 1.5707963267948966 rad
pos: 64.5,19.5
parent: 2
- - uid: 24483
+ - uid: 24858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,-33.5
+ parent: 2
+ - uid: 24859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,-33.5
+ parent: 2
+ - uid: 24864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-33.5
+ parent: 2
+ - uid: 24865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-33.5
+ parent: 2
+ - uid: 26084
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-27.5
+ pos: -1.5,61.5
parent: 2
- - uid: 26853
+ - uid: 26620
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-28.5
+ pos: 93.5,70.5
+ parent: 2
+ - uid: 26721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 2
+ - uid: 26860
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 2
+ - uid: 27118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,78.5
parent: 2
- uid: 27167
components:
- type: Transform
pos: -23.5,-13.5
parent: 2
+ - uid: 27325
+ components:
+ - type: Transform
+ pos: 12.5,9.5
+ parent: 2
+ - uid: 27327
+ components:
+ - type: Transform
+ pos: 17.5,9.5
+ parent: 2
+ - uid: 27384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,10.5
+ parent: 2
+ - uid: 27697
+ components:
+ - type: Transform
+ pos: -67.5,33.5
+ parent: 2
+ - uid: 27702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -68.5,34.5
+ parent: 2
+ - uid: 27704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -67.5,35.5
+ parent: 2
+ - uid: 27865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,75.5
+ parent: 2
+ - uid: 27873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,43.5
+ parent: 2
+ - uid: 27889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,42.5
+ parent: 2
+ - uid: 27890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,42.5
+ parent: 2
+ - uid: 27891
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 2
+ - uid: 27892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,42.5
+ parent: 2
+ - uid: 27893
+ components:
+ - type: Transform
+ pos: 63.5,43.5
+ parent: 2
+ - uid: 27894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,42.5
+ parent: 2
+ - uid: 27895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,41.5
+ parent: 2
- uid: 28062
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 13.5,36.5
parent: 2
+ - uid: 28123
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,-8.5
+ parent: 2
+ - uid: 28260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-20.5
+ parent: 2
+ - uid: 28262
+ components:
+ - type: Transform
+ pos: -14.5,-20.5
+ parent: 2
- uid: 28644
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -29.5,18.5
parent: 2
+ - uid: 28735
+ components:
+ - type: Transform
+ pos: 34.5,11.5
+ parent: 2
+ - uid: 28978
+ components:
+ - type: Transform
+ pos: 25.5,3.5
+ parent: 2
- uid: 30221
components:
- type: Transform
@@ -170879,12 +193458,33 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,62.5
parent: 2
+ - uid: 30305
+ components:
+ - type: Transform
+ pos: 26.5,3.5
+ parent: 2
+ - uid: 30310
+ components:
+ - type: Transform
+ pos: -41.5,-30.5
+ parent: 2
+ - uid: 30321
+ components:
+ - type: Transform
+ pos: 3.5,50.5
+ parent: 2
- uid: 30370
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-36.5
parent: 2
+ - uid: 30375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,12.5
+ parent: 2
- uid: 30379
components:
- type: Transform
@@ -170927,34 +193527,16 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,-16.5
parent: 2
- - uid: 30406
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-23.5
- parent: 2
- - uid: 30407
- components:
- - type: Transform
- pos: 2.5,-26.5
- parent: 2
- - uid: 30409
+ - uid: 30585
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-22.5
- parent: 2
- - uid: 30449
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-14.5
+ pos: -62.5,9.5
parent: 2
- - uid: 30585
+ - uid: 31737
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,9.5
+ pos: 11.5,9.5
parent: 2
- uid: 31914
components:
@@ -170998,33 +193580,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 57.5,-47.5
parent: 2
- - uid: 32230
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -101.5,49.5
- parent: 2
- - uid: 32231
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -100.5,49.5
- parent: 2
- - uid: 32232
- components:
- - type: Transform
- pos: -101.5,53.5
- parent: 2
- - uid: 32233
+ - uid: 32252
components:
- type: Transform
- pos: -100.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,-52.5
parent: 2
- - uid: 32252
+ - uid: 32264
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -90.5,-52.5
+ pos: -88.5,1.5
parent: 2
- uid: 32268
components:
@@ -171062,16 +193628,105 @@ entities:
rot: 1.5707963267948966 rad
pos: -88.5,-36.5
parent: 2
- - uid: 34959
+ - uid: 32375
components:
- type: Transform
- pos: 20.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,52.5
parent: 2
- - uid: 35476
+ - uid: 32540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,44.5
+ parent: 2
+ - uid: 32541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,44.5
+ parent: 2
+ - uid: 32544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,41.5
+ parent: 2
+ - uid: 32545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,41.5
+ parent: 2
+ - uid: 32546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,41.5
+ parent: 2
+ - uid: 32547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,41.5
+ parent: 2
+ - uid: 32550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,43.5
+ parent: 2
+ - uid: 33857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,59.5
+ parent: 2
+ - uid: 34212
+ components:
+ - type: Transform
+ pos: 44.5,12.5
+ parent: 2
+ - uid: 34213
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -81.5,53.5
+ pos: 46.5,9.5
+ parent: 2
+ - uid: 34994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,18.5
+ parent: 2
+ - uid: 34995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,17.5
+ parent: 2
+ - uid: 34996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,16.5
+ parent: 2
+ - uid: 34999
+ components:
+ - type: Transform
+ pos: 105.5,19.5
+ parent: 2
+ - uid: 35001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,15.5
+ parent: 2
+ - uid: 35475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,2.5
parent: 2
- uid: 35477
components:
@@ -171361,47 +194016,224 @@ entities:
rot: 3.141592653589793 rad
pos: -70.5,52.5
parent: 2
-- proto: RailingCorner
- entities:
- - uid: 797
+ - uid: 36166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,43.5
+ parent: 2
+ - uid: 36167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,42.5
+ parent: 2
+ - uid: 36168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,41.5
+ parent: 2
+ - uid: 36737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-30.5
+ parent: 2
+ - uid: 36738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-29.5
+ parent: 2
+ - uid: 36739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-28.5
+ parent: 2
+ - uid: 36897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-18.5
+ parent: 2
+ - uid: 36898
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,6.5
+ pos: -6.5,-18.5
parent: 2
- - uid: 2384
+ - uid: 37283
components:
- type: Transform
- pos: 65.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,3.5
parent: 2
- - uid: 3310
+ - uid: 37284
+ components:
+ - type: Transform
+ pos: -30.5,4.5
+ parent: 2
+ - uid: 37285
+ components:
+ - type: Transform
+ pos: -29.5,4.5
+ parent: 2
+ - uid: 37286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,3.5
+ parent: 2
+ - uid: 37315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,71.5
+ parent: 2
+ - uid: 37316
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 23.5,-32.5
+ pos: -37.5,72.5
parent: 2
- - uid: 3504
+ - uid: 37317
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-27.5
+ pos: -36.5,71.5
parent: 2
- - uid: 3505
+ - uid: 37421
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,-27.5
+ pos: 33.5,56.5
parent: 2
- - uid: 3506
+ - uid: 37422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,55.5
+ parent: 2
+ - uid: 38165
+ components:
+ - type: Transform
+ pos: -46.5,-30.5
+ parent: 2
+ - uid: 38166
+ components:
+ - type: Transform
+ pos: -45.5,-30.5
+ parent: 2
+ - uid: 38167
+ components:
+ - type: Transform
+ pos: -44.5,-30.5
+ parent: 2
+ - uid: 38168
+ components:
+ - type: Transform
+ pos: -43.5,-30.5
+ parent: 2
+ - uid: 38169
+ components:
+ - type: Transform
+ pos: -42.5,-30.5
+ parent: 2
+ - uid: 39225
+ components:
+ - type: Transform
+ pos: 31.5,-26.5
+ parent: 2
+ - uid: 39228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-27.5
+ parent: 2
+ - uid: 39229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-28.5
+ parent: 2
+ - uid: 39230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-29.5
+ parent: 2
+ - uid: 39231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-30.5
+ parent: 2
+ - uid: 39232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-31.5
+ parent: 2
+ - uid: 39234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-32.5
+ parent: 2
+ - uid: 39235
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-32.5
+ pos: 37.5,-31.5
parent: 2
- - uid: 3507
+ - uid: 39236
components:
- type: Transform
- pos: 36.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-30.5
+ parent: 2
+ - uid: 39237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-29.5
+ parent: 2
+ - uid: 39238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-28.5
+ parent: 2
+ - uid: 39239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-27.5
+ parent: 2
+ - uid: 39240
+ components:
+ - type: Transform
+ pos: 36.5,-26.5
+ parent: 2
+- proto: RailingCorner
+ entities:
+ - uid: 2384
+ components:
+ - type: Transform
+ pos: 65.5,-20.5
+ parent: 2
+ - uid: 2740
+ components:
+ - type: Transform
+ pos: -66.5,33.5
+ parent: 2
+ - uid: 2742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-31.5
parent: 2
- uid: 3943
components:
@@ -171439,190 +194271,474 @@ entities:
- uid: 4969
components:
- type: Transform
- pos: 61.5,-23.5
+ pos: 61.5,-23.5
+ parent: 2
+ - uid: 4970
+ components:
+ - type: Transform
+ pos: 60.5,-24.5
+ parent: 2
+ - uid: 4971
+ components:
+ - type: Transform
+ pos: 58.5,-25.5
+ parent: 2
+ - uid: 4972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-25.5
+ parent: 2
+ - uid: 4973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-24.5
+ parent: 2
+ - uid: 4974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-22.5
+ parent: 2
+ - uid: 4975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,-19.5
+ parent: 2
+ - uid: 4976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-18.5
+ parent: 2
+ - uid: 4977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,-17.5
+ parent: 2
+ - uid: 4978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-16.5
+ parent: 2
+ - uid: 4979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-15.5
+ parent: 2
+ - uid: 4980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-14.5
+ parent: 2
+ - uid: 4981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-13.5
+ parent: 2
+ - uid: 6185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,14.5
+ parent: 2
+ - uid: 6240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,14.5
+ parent: 2
+ - uid: 6241
+ components:
+ - type: Transform
+ pos: 45.5,12.5
+ parent: 2
+ - uid: 6405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-29.5
+ parent: 2
+ - uid: 6666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 2
+ - uid: 6714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-55.5
+ parent: 2
+ - uid: 7086
+ components:
+ - type: Transform
+ pos: 18.5,-31.5
+ parent: 2
+ - uid: 7090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-29.5
+ parent: 2
+ - uid: 8336
+ components:
+ - type: Transform
+ pos: 65.5,23.5
+ parent: 2
+ - uid: 9940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -65.5,52.5
+ parent: 2
+ - uid: 10070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,54.5
+ parent: 2
+ - uid: 10073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,56.5
+ parent: 2
+ - uid: 10582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -67.5,-36.5
+ parent: 2
+ - uid: 11863
+ components:
+ - type: Transform
+ pos: -33.5,-55.5
+ parent: 2
+ - uid: 12318
+ components:
+ - type: Transform
+ pos: 34.5,54.5
+ parent: 2
+ - uid: 12323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,56.5
+ parent: 2
+ - uid: 12712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -68.5,35.5
+ parent: 2
+ - uid: 12940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-13.5
+ parent: 2
+ - uid: 12995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -66.5,35.5
+ parent: 2
+ - uid: 13243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-18.5
+ parent: 2
+ - uid: 13674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-42.5
+ parent: 2
+ - uid: 17379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-14.5
+ parent: 2
+ - uid: 18163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-19.5
+ parent: 2
+ - uid: 19438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -108.5,51.5
+ parent: 2
+ - uid: 19645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 2
+ - uid: 20524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-28.5
+ parent: 2
+ - uid: 20683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-30.5
+ parent: 2
+ - uid: 20791
+ components:
+ - type: Transform
+ pos: 49.5,-30.5
+ parent: 2
+ - uid: 20932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-28.5
+ parent: 2
+ - uid: 21092
+ components:
+ - type: Transform
+ pos: -28.5,-13.5
+ parent: 2
+ - uid: 22131
+ components:
+ - type: Transform
+ pos: -77.5,-32.5
+ parent: 2
+ - uid: 22132
+ components:
+ - type: Transform
+ pos: -70.5,-38.5
+ parent: 2
+ - uid: 22240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -108.5,53.5
+ parent: 2
+ - uid: 22248
+ components:
+ - type: Transform
+ pos: -104.5,51.5
+ parent: 2
+ - uid: 22543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-13.5
+ parent: 2
+ - uid: 22553
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 2
+ - uid: 22571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-13.5
parent: 2
- - uid: 4970
+ - uid: 22627
components:
- type: Transform
- pos: 60.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-13.5
parent: 2
- - uid: 4971
+ - uid: 22800
components:
- type: Transform
- pos: 58.5,-25.5
+ pos: -13.5,-13.5
parent: 2
- - uid: 4972
+ - uid: 22802
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-25.5
+ pos: -22.5,-13.5
parent: 2
- - uid: 4973
+ - uid: 24820
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,11.5
parent: 2
- - uid: 4974
+ - uid: 26197
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,58.5
parent: 2
- - uid: 4975
+ - uid: 26326
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -68.5,33.5
parent: 2
- - uid: 4976
+ - uid: 27867
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 52.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,43.5
parent: 2
- - uid: 4977
+ - uid: 27874
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.5,-17.5
+ pos: 62.5,43.5
parent: 2
- - uid: 4978
+ - uid: 27877
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-16.5
+ pos: 64.5,41.5
parent: 2
- - uid: 4979
+ - uid: 27878
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,41.5
parent: 2
- - uid: 4980
+ - uid: 27879
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 57.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,70.5
parent: 2
- - uid: 4981
+ - uid: 28002
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 59.5,-13.5
+ pos: -1.5,60.5
parent: 2
- - uid: 8336
+ - uid: 32269
components:
- type: Transform
- pos: 65.5,23.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,-33.5
parent: 2
- - uid: 9940
+ - uid: 32542
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -65.5,52.5
+ pos: 73.5,44.5
parent: 2
- - uid: 10582
+ - uid: 32543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -67.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,42.5
parent: 2
- - uid: 13674
+ - uid: 33289
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-42.5
+ pos: 79.5,57.5
parent: 2
- - uid: 19645
+ - uid: 33291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 79.5,58.5
parent: 2
- - uid: 21092
+ - uid: 33292
components:
- type: Transform
- pos: -28.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,58.5
parent: 2
- - uid: 22131
+ - uid: 33564
components:
- type: Transform
- pos: -77.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,57.5
parent: 2
- - uid: 22132
+ - uid: 37311
components:
- type: Transform
- pos: -70.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,72.5
parent: 2
- - uid: 22543
+ - uid: 37312
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,72.5
parent: 2
- - uid: 22553
+ - uid: 37313
components:
- type: Transform
- pos: -16.5,-13.5
+ pos: -36.5,70.5
parent: 2
- - uid: 22571
+ - uid: 37314
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-13.5
+ pos: -38.5,70.5
parent: 2
- - uid: 22627
+ - uid: 38164
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-13.5
+ pos: -47.5,-30.5
parent: 2
- - uid: 22800
+- proto: RailingCornerSmall
+ entities:
+ - uid: 268
components:
- type: Transform
- pos: -13.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-32.5
parent: 2
- - uid: 22802
+ - uid: 1355
components:
- type: Transform
- pos: -22.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,12.5
parent: 2
- - uid: 23545
+ - uid: 1818
components:
- type: Transform
- pos: 6.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,12.5
parent: 2
- - uid: 24820
+ - uid: 1828
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 65.5,11.5
+ pos: 16.5,13.5
parent: 2
- - uid: 32269
+ - uid: 2199
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -90.5,-33.5
+ pos: 82.5,34.5
parent: 2
-- proto: RailingCornerSmall
- entities:
- - uid: 1369
+ - uid: 3946
components:
- type: Transform
- pos: 28.5,10.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,-17.5
parent: 2
- - uid: 2552
+ - uid: 4615
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-28.5
+ pos: -38.5,-32.5
parent: 2
- - uid: 3946
+ - uid: 4764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-17.5
+ pos: -48.5,-34.5
parent: 2
- uid: 4990
components:
@@ -171754,17 +194870,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 66.5,-16.5
parent: 2
- - uid: 5989
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,12.5
- parent: 2
- - uid: 6370
+ - uid: 8789
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-14.5
+ pos: 18.5,15.5
parent: 2
- uid: 8884
components:
@@ -171789,6 +194898,12 @@ entities:
- type: Transform
pos: -58.5,16.5
parent: 2
+ - uid: 8945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,15.5
+ parent: 2
- uid: 9945
components:
- type: Transform
@@ -171807,6 +194922,12 @@ entities:
rot: 3.141592653589793 rad
pos: -88.5,-35.5
parent: 2
+ - uid: 10567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,34.5
+ parent: 2
- uid: 10612
components:
- type: Transform
@@ -171818,11 +194939,40 @@ entities:
- type: Transform
pos: -67.5,-33.5
parent: 2
- - uid: 15054
+ - uid: 11010
+ components:
+ - type: Transform
+ pos: -35.5,-51.5
+ parent: 2
+ - uid: 11325
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-26.5
+ pos: 20.5,-21.5
+ parent: 2
+ - uid: 11836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -35.5,-53.5
+ parent: 2
+ - uid: 11845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-51.5
+ parent: 2
+ - uid: 11847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-53.5
+ parent: 2
+ - uid: 11853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-47.5
parent: 2
- uid: 15404
components:
@@ -171836,18 +194986,67 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,38.5
parent: 2
+ - uid: 15875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,34.5
+ parent: 2
+ - uid: 15876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,34.5
+ parent: 2
+ - uid: 16090
+ components:
+ - type: Transform
+ pos: 1.5,33.5
+ parent: 2
- uid: 16398
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,57.5
parent: 2
+ - uid: 16960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,-14.5
+ parent: 2
+ - uid: 18367
+ components:
+ - type: Transform
+ pos: -44.5,30.5
+ parent: 2
- uid: 18556
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 55.5,-42.5
parent: 2
+ - uid: 18640
+ components:
+ - type: Transform
+ pos: 82.5,-18.5
+ parent: 2
+ - uid: 20281
+ components:
+ - type: Transform
+ pos: 30.5,10.5
+ parent: 2
+ - uid: 21011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -50.5,30.5
+ parent: 2
+ - uid: 22118
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 2
- uid: 22123
components:
- type: Transform
@@ -171866,263 +195065,463 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,63.5
parent: 2
- - uid: 30410
+ - uid: 22585
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-21.5
+ pos: 37.5,-26.5
parent: 2
- - uid: 30411
+ - uid: 22634
components:
- type: Transform
- pos: 1.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-33.5
parent: 2
- - uid: 34960
+ - uid: 23637
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,19.5
+ pos: 30.5,-26.5
parent: 2
- - uid: 34961
+ - uid: 23740
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,19.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,44.5
parent: 2
- - uid: 35474
+ - uid: 23929
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -79.5,52.5
+ pos: 28.5,10.5
parent: 2
- - uid: 35475
+ - uid: 26621
components:
- type: Transform
- pos: -81.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,70.5
parent: 2
-- proto: RandomAnimalSpawner
- entities:
- - uid: 21128
+ - uid: 27377
components:
- type: Transform
- pos: -102.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 32.5,11.5
parent: 2
- - uid: 27967
+ - uid: 27896
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -97.5,15.5
+ pos: 62.5,41.5
parent: 2
-- proto: RandomArcade
- entities:
- - uid: 6307
+ - uid: 27897
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-21.5
+ pos: 64.5,41.5
parent: 2
- - uid: 6308
+ - uid: 27898
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,43.5
parent: 2
- - uid: 6309
+ - uid: 27899
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-21.5
+ pos: 62.5,43.5
parent: 2
- - uid: 8478
+ - uid: 30328
+ components:
+ - type: Transform
+ pos: 26.5,10.5
+ parent: 2
+ - uid: 30784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,38.5
+ parent: 2
+ - uid: 30999
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,-21.5
+ pos: 12.5,13.5
parent: 2
- - uid: 15545
+ - uid: 32548
components:
- type: Transform
- pos: 27.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,41.5
parent: 2
- - uid: 16606
+ - uid: 32549
components:
- type: Transform
- pos: 23.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,42.5
parent: 2
- - uid: 17975
+ - uid: 33658
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,40.5
parent: 2
- - uid: 18279
+ - uid: 34997
components:
- type: Transform
- pos: 26.5,-18.5
+ pos: 106.5,15.5
parent: 2
- - uid: 19648
+ - uid: 34998
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 106.5,19.5
parent: 2
- - uid: 20190
+ - uid: 35002
components:
- type: Transform
- pos: 22.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 104.5,15.5
parent: 2
- - uid: 20195
+ - uid: 35003
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 22.5,-21.5
+ pos: 104.5,19.5
parent: 2
- - uid: 20199
+ - uid: 35474
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: -79.5,52.5
parent: 2
-- proto: RandomArtifactSpawner
- entities:
- - uid: 4488
+ - uid: 37287
components:
- type: Transform
- pos: 39.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,4.5
parent: 2
-- proto: RandomBoards
- entities:
- - uid: 3378
+ - uid: 37288
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.5,-4.5
+ pos: -28.5,4.5
parent: 2
- - uid: 6300
+ - uid: 37289
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,2.5
parent: 2
- - uid: 6656
+ - uid: 38959
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -65.5,-20.5
+ pos: 85.5,-11.5
parent: 2
- - uid: 10410
+ - uid: 38960
components:
- type: Transform
- pos: -50.5,27.5
+ pos: 88.5,-11.5
parent: 2
- - uid: 23280
+ - uid: 38961
+ components:
+ - type: Transform
+ pos: 81.5,-11.5
+ parent: 2
+ - uid: 38962
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,44.5
+ pos: 81.5,-21.5
parent: 2
- - uid: 23283
+ - uid: 38963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,-21.5
+ parent: 2
+ - uid: 38964
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,45.5
+ pos: 88.5,-21.5
parent: 2
- - uid: 23288
+ - uid: 39233
+ components:
+ - type: Transform
+ pos: 37.5,-33.5
+ parent: 2
+- proto: RailingRound
+ entities:
+ - uid: 8216
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,35.5
+ pos: 96.5,70.5
parent: 2
- - uid: 23289
+ - uid: 20595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,70.5
+ parent: 2
+ - uid: 20658
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -39.5,33.5
+ pos: 92.5,70.5
parent: 2
- - uid: 23291
+ - uid: 26722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,70.5
+ parent: 2
+ - uid: 28264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-20.5
+ parent: 2
+ - uid: 28265
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,36.5
+ pos: -15.5,-20.5
parent: 2
- - uid: 23293
+- proto: RandomAmmoBox
+ entities:
+ - uid: 37377
+ components:
+ - type: Transform
+ pos: 63.5,85.5
+ parent: 2
+ - uid: 37636
+ components:
+ - type: Transform
+ pos: -67.5,-29.5
+ parent: 2
+ - uid: 37637
+ components:
+ - type: Transform
+ pos: -25.5,-33.5
+ parent: 2
+ - uid: 37638
+ components:
+ - type: Transform
+ pos: 26.5,-32.5
+ parent: 2
+ - uid: 37639
+ components:
+ - type: Transform
+ pos: 92.5,5.5
+ parent: 2
+ - uid: 37640
+ components:
+ - type: Transform
+ pos: 101.5,74.5
+ parent: 2
+ - uid: 37641
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 2
+ - uid: 37642
+ components:
+ - type: Transform
+ pos: 96.5,79.5
+ parent: 2
+ - uid: 37643
+ components:
+ - type: Transform
+ pos: -33.5,69.5
+ parent: 2
+ - uid: 37645
+ components:
+ - type: Transform
+ pos: -49.5,66.5
+ parent: 2
+ - uid: 37646
+ components:
+ - type: Transform
+ pos: -43.5,54.5
+ parent: 2
+ - uid: 37647
+ components:
+ - type: Transform
+ pos: -68.5,38.5
+ parent: 2
+ - uid: 38769
+ components:
+ - type: Transform
+ pos: -118.5,52.5
+ parent: 2
+ - uid: 38770
+ components:
+ - type: Transform
+ pos: -110.5,59.5
+ parent: 2
+ - uid: 38771
+ components:
+ - type: Transform
+ pos: -100.5,57.5
+ parent: 2
+ - uid: 38772
+ components:
+ - type: Transform
+ pos: -94.5,47.5
+ parent: 2
+ - uid: 38773
+ components:
+ - type: Transform
+ pos: -103.5,40.5
+ parent: 2
+ - uid: 38774
+ components:
+ - type: Transform
+ pos: -116.5,48.5
+ parent: 2
+ - uid: 38775
+ components:
+ - type: Transform
+ pos: -110.5,41.5
+ parent: 2
+- proto: RandomAnimalSpawner
+ entities:
+ - uid: 21128
+ components:
+ - type: Transform
+ pos: -102.5,26.5
+ parent: 2
+ - uid: 27967
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,14.5
+ pos: -97.5,15.5
parent: 2
- - uid: 33603
+- proto: RandomArcade
+ entities:
+ - uid: 3488
components:
- type: Transform
- pos: 84.5,50.5
+ pos: -57.5,-27.5
parent: 2
- - uid: 33604
+ - uid: 4236
components:
- type: Transform
- pos: 97.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,-29.5
parent: 2
- - uid: 33605
+ - uid: 6306
components:
- type: Transform
- pos: 60.5,60.5
+ pos: -55.5,-27.5
parent: 2
- - uid: 33606
+ - uid: 8375
components:
- type: Transform
- pos: 59.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -58.5,-29.5
parent: 2
- - uid: 33607
+ - uid: 8376
components:
- type: Transform
- pos: 76.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-29.5
parent: 2
- - uid: 33712
+ - uid: 16429
components:
- type: Transform
- pos: -50.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,62.5
parent: 2
- - uid: 33717
+ - uid: 19661
components:
- type: Transform
- pos: -48.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,62.5
parent: 2
- - uid: 33721
+ - uid: 20195
components:
- type: Transform
- pos: -50.5,26.5
+ pos: -58.5,-27.5
parent: 2
-- proto: RandomBook
+ - uid: 23479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,62.5
+ parent: 2
+ - uid: 23584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,62.5
+ parent: 2
+ - uid: 27164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -56.5,-29.5
+ parent: 2
+ - uid: 31171
+ components:
+ - type: Transform
+ pos: -56.5,-27.5
+ parent: 2
+- proto: RandomArtifactSpawner
entities:
- - uid: 928
+ - uid: 4488
components:
- type: Transform
- pos: 62.532875,14.8503
+ pos: 39.5,55.5
parent: 2
- - uid: 988
+- proto: RandomBoards
+ entities:
+ - uid: 6656
components:
- type: Transform
- pos: 62.40397,14.404987
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-20.5
parent: 2
- - uid: 2091
+ - uid: 10410
components:
- type: Transform
- pos: 58.734295,22.132498
+ pos: -50.5,27.5
parent: 2
- - uid: 4444
+ - uid: 11447
components:
- type: Transform
- pos: -4.2542644,-0.5392866
+ pos: 6.5,46.5
parent: 2
- - uid: 4447
+ - uid: 16598
components:
- type: Transform
- pos: -7.7464514,4.816182
+ pos: 19.5,-25.5
parent: 2
- - uid: 4456
+ - uid: 20505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,13.5
+ parent: 2
+ - uid: 33712
+ components:
+ - type: Transform
+ pos: -50.5,25.5
+ parent: 2
+ - uid: 33717
+ components:
+ - type: Transform
+ pos: -48.5,25.5
+ parent: 2
+ - uid: 33721
components:
- type: Transform
- pos: 4.624553,7.4763384
+ pos: -50.5,26.5
parent: 2
+- proto: RandomBook
+ entities:
- uid: 4484
components:
- type: Transform
@@ -172149,6 +195548,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 59.5,29.5
parent: 2
+ - uid: 11481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.3166614,4.395546
+ parent: 2
- uid: 18380
components:
- type: Transform
@@ -172159,115 +195564,179 @@ entities:
- type: Transform
pos: -15.5,66.5
parent: 2
- - uid: 18383
+- proto: RandomCrystalSpawner
+ entities:
+ - uid: 29805
components:
- type: Transform
- pos: -19.5,62.5
+ pos: 95.5,30.5
parent: 2
- - uid: 18384
+ - uid: 29807
components:
- type: Transform
- pos: -22.5,62.5
+ pos: 96.5,29.5
parent: 2
- - uid: 26722
+ - uid: 33484
components:
- type: Transform
- pos: -43.746933,-25.672995
+ pos: 77.5,66.5
parent: 2
- - uid: 33582
+ - uid: 33485
components:
- type: Transform
- pos: 85.5,50.5
+ pos: 60.5,68.5
parent: 2
-- proto: RandomBox
- entities:
- - uid: 33583
+ - uid: 33486
components:
- type: Transform
- pos: 75.5,64.5
+ pos: 58.5,67.5
parent: 2
-- proto: RandomDrinkBottle
- entities:
- - uid: 30694
+ - uid: 33487
components:
- type: Transform
- pos: -40.5,65.5
+ pos: 63.5,69.5
parent: 2
- - uid: 33584
+ - uid: 33488
components:
- type: Transform
- pos: 64.5,63.5
+ pos: 64.5,56.5
parent: 2
- - uid: 33658
+ - uid: 33489
components:
- type: Transform
- pos: -40.5,63.5
+ pos: 66.5,53.5
parent: 2
-- proto: RandomDrinkGlass
- entities:
- - uid: 19707
+ - uid: 33490
components:
- type: Transform
- pos: -40.5,67.5
+ pos: 90.5,29.5
parent: 2
- - uid: 19768
+ - uid: 33491
components:
- type: Transform
- pos: -40.5,66.5
+ pos: 79.5,29.5
parent: 2
- - uid: 19773
+ - uid: 33492
components:
- type: Transform
- pos: -40.5,64.5
+ pos: 102.5,40.5
parent: 2
-- proto: RandomFoodBakedWhole
- entities:
- - uid: 33581
+ - uid: 33493
components:
- type: Transform
- pos: 95.5,49.5
+ pos: 103.5,43.5
parent: 2
-- proto: RandomInstruments
- entities:
- - uid: 460
+ - uid: 33494
components:
- type: Transform
- pos: -73.5,2.5
+ pos: 99.5,50.5
parent: 2
- - uid: 917
+ - uid: 33495
components:
- type: Transform
- pos: -71.5,1.5
+ pos: 97.5,49.5
parent: 2
- - uid: 2723
+ - uid: 33497
components:
- type: Transform
- pos: 26.5,-34.5
+ pos: 98.5,30.5
parent: 2
- - uid: 5900
+ - uid: 33520
components:
- type: Transform
- pos: 26.5,-32.5
+ pos: 87.5,31.5
parent: 2
- - uid: 11270
+ - uid: 34229
components:
- type: Transform
- pos: -71.5,2.5
+ pos: 81.5,66.5
parent: 2
- - uid: 33585
+ - uid: 34242
components:
- type: Transform
- pos: 78.5,58.5
+ pos: 97.5,39.5
parent: 2
- - uid: 33586
+ - uid: 34798
components:
- type: Transform
- pos: 80.5,64.5
+ pos: 93.5,19.5
parent: 2
- - uid: 33587
+ - uid: 35761
+ components:
+ - type: Transform
+ pos: 98.5,14.5
+ parent: 2
+ - uid: 35762
+ components:
+ - type: Transform
+ pos: 99.5,15.5
+ parent: 2
+ - uid: 35763
+ components:
+ - type: Transform
+ pos: 96.5,21.5
+ parent: 2
+ - uid: 35764
+ components:
+ - type: Transform
+ pos: 99.5,19.5
+ parent: 2
+ - uid: 35765
+ components:
+ - type: Transform
+ pos: 97.5,17.5
+ parent: 2
+ - uid: 35766
+ components:
+ - type: Transform
+ pos: 94.5,15.5
+ parent: 2
+ - uid: 36881
+ components:
+ - type: Transform
+ pos: 76.5,65.5
+ parent: 2
+ - uid: 36882
+ components:
+ - type: Transform
+ pos: 65.5,66.5
+ parent: 2
+ - uid: 36883
+ components:
+ - type: Transform
+ pos: 66.5,68.5
+ parent: 2
+ - uid: 38766
+ components:
+ - type: Transform
+ pos: -120.5,60.5
+ parent: 2
+ - uid: 38767
+ components:
+ - type: Transform
+ pos: -115.5,36.5
+ parent: 2
+ - uid: 38768
+ components:
+ - type: Transform
+ pos: -90.5,46.5
+ parent: 2
+- proto: RandomInstruments
+ entities:
+ - uid: 460
+ components:
+ - type: Transform
+ pos: -73.5,2.5
+ parent: 2
+ - uid: 917
+ components:
+ - type: Transform
+ pos: -71.5,1.5
+ parent: 2
+ - uid: 11270
components:
- type: Transform
- pos: 95.5,26.5
+ pos: -71.5,2.5
parent: 2
- proto: RandomMedicCorpseSpawner
entities:
@@ -172283,6 +195752,32 @@ entities:
parent: 2
- proto: RandomPainting
entities:
+ - uid: 6860
+ components:
+ - type: Transform
+ pos: 22.5,47.5
+ parent: 2
+ - uid: 10325
+ components:
+ - type: Transform
+ pos: -5.5,56.5
+ parent: 2
+ - uid: 15073
+ components:
+ - type: Transform
+ pos: 22.5,51.5
+ parent: 2
+ - uid: 15692
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 2
+ - uid: 19393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,48.5
+ parent: 2
- uid: 23547
components:
- type: Transform
@@ -172313,21 +195808,11 @@ entities:
- type: Transform
pos: 9.5,51.5
parent: 2
- - uid: 23598
- components:
- - type: Transform
- pos: 4.5,47.5
- parent: 2
- uid: 23599
components:
- type: Transform
pos: 5.5,57.5
parent: 2
- - uid: 23600
- components:
- - type: Transform
- pos: -5.5,57.5
- parent: 2
- uid: 23601
components:
- type: Transform
@@ -172348,16 +195833,6 @@ entities:
- type: Transform
pos: -24.5,65.5
parent: 2
- - uid: 23605
- components:
- - type: Transform
- pos: -29.5,56.5
- parent: 2
- - uid: 23606
- components:
- - type: Transform
- pos: -40.5,25.5
- parent: 2
- uid: 23607
components:
- type: Transform
@@ -172423,16 +195898,6 @@ entities:
- type: Transform
pos: -60.5,-22.5
parent: 2
- - uid: 23626
- components:
- - type: Transform
- pos: -57.5,-22.5
- parent: 2
- - uid: 23628
- components:
- - type: Transform
- pos: -43.5,-31.5
- parent: 2
- uid: 23630
components:
- type: Transform
@@ -172468,11 +195933,6 @@ entities:
- type: Transform
pos: -9.5,-6.5
parent: 2
- - uid: 23640
- components:
- - type: Transform
- pos: 7.5,5.5
- parent: 2
- uid: 23641
components:
- type: Transform
@@ -172483,11 +195943,6 @@ entities:
- type: Transform
pos: -3.5,8.5
parent: 2
- - uid: 23643
- components:
- - type: Transform
- pos: 26.5,25.5
- parent: 2
- uid: 23644
components:
- type: Transform
@@ -172508,11 +195963,6 @@ entities:
- type: Transform
pos: 49.5,35.5
parent: 2
- - uid: 23648
- components:
- - type: Transform
- pos: 46.5,45.5
- parent: 2
- uid: 23649
components:
- type: Transform
@@ -172538,68 +195988,70 @@ entities:
- type: Transform
pos: 55.5,1.5
parent: 2
- - uid: 23654
+ - uid: 23656
components:
- type: Transform
- pos: 73.5,-12.5
+ pos: 32.5,-22.5
parent: 2
- - uid: 23655
+ - uid: 23663
components:
- type: Transform
- pos: 51.5,-28.5
+ pos: -12.5,-36.5
parent: 2
- - uid: 23656
+ - uid: 23664
components:
- type: Transform
- pos: 32.5,-22.5
+ pos: -29.5,-26.5
parent: 2
- - uid: 23657
+ - uid: 23666
components:
- type: Transform
- pos: 26.5,-26.5
+ pos: -53.5,6.5
parent: 2
- - uid: 23658
+ - uid: 23667
components:
- type: Transform
- pos: 18.5,-25.5
+ pos: -61.5,14.5
parent: 2
- - uid: 23659
+ - uid: 23669
components:
- type: Transform
- pos: 12.5,-25.5
+ pos: -68.5,18.5
parent: 2
- - uid: 23660
+ - uid: 30850
components:
- type: Transform
- pos: 10.5,-21.5
+ pos: 30.5,50.5
parent: 2
- - uid: 23663
+ - uid: 34208
components:
- type: Transform
- pos: -12.5,-36.5
+ pos: 53.5,-28.5
parent: 2
- - uid: 23664
+ - uid: 37544
components:
- type: Transform
- pos: -29.5,-26.5
+ pos: -2.5,-30.5
parent: 2
- - uid: 23666
+ - uid: 37716
components:
- type: Transform
- pos: -53.5,6.5
+ pos: -43.5,22.5
parent: 2
- - uid: 23667
+- proto: RandomPosterAny
+ entities:
+ - uid: 15148
components:
- type: Transform
- pos: -61.5,14.5
+ pos: 12.5,-34.5
parent: 2
- - uid: 23669
+- proto: RandomPosterLegit
+ entities:
+ - uid: 19445
components:
- type: Transform
- pos: -68.5,18.5
+ pos: 70.5,-12.5
parent: 2
-- proto: RandomPosterLegit
- entities:
- uid: 23450
components:
- type: Transform
@@ -172635,31 +196087,16 @@ entities:
- type: Transform
pos: -52.5,32.5
parent: 2
- - uid: 23479
- components:
- - type: Transform
- pos: -23.5,33.5
- parent: 2
- uid: 23512
components:
- type: Transform
pos: 58.5,49.5
parent: 2
- - uid: 23520
- components:
- - type: Transform
- pos: 71.5,-12.5
- parent: 2
- uid: 23521
components:
- type: Transform
pos: 75.5,-13.5
parent: 2
- - uid: 23522
- components:
- - type: Transform
- pos: 79.5,-11.5
- parent: 2
- uid: 23523
components:
- type: Transform
@@ -172675,1553 +196112,1758 @@ entities:
- type: Transform
pos: 52.5,-28.5
parent: 2
- - uid: 23526
+ - uid: 23526
+ components:
+ - type: Transform
+ pos: 53.5,-32.5
+ parent: 2
+ - uid: 23527
+ components:
+ - type: Transform
+ pos: 46.5,-32.5
+ parent: 2
+ - uid: 23528
+ components:
+ - type: Transform
+ pos: 41.5,-35.5
+ parent: 2
+ - uid: 23529
+ components:
+ - type: Transform
+ pos: 28.5,-35.5
+ parent: 2
+ - uid: 23549
+ components:
+ - type: Transform
+ pos: 5.5,-53.5
+ parent: 2
+ - uid: 23570
+ components:
+ - type: Transform
+ pos: -82.5,3.5
+ parent: 2
+ - uid: 23574
+ components:
+ - type: Transform
+ pos: -93.5,-6.5
+ parent: 2
+ - uid: 23575
+ components:
+ - type: Transform
+ pos: -95.5,-12.5
+ parent: 2
+ - uid: 23581
+ components:
+ - type: Transform
+ pos: -52.5,42.5
+ parent: 2
+ - uid: 23587
+ components:
+ - type: Transform
+ pos: -8.5,36.5
+ parent: 2
+ - uid: 26887
+ components:
+ - type: Transform
+ pos: -32.5,32.5
+ parent: 2
+ - uid: 38150
+ components:
+ - type: Transform
+ pos: 71.5,-9.5
+ parent: 2
+- proto: RandomScienceCorpseSpawner
+ entities:
+ - uid: 5341
+ components:
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 2
+ - uid: 5385
+ components:
+ - type: Transform
+ pos: 61.5,52.5
+ parent: 2
+- proto: RandomSnacks
+ entities:
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: -2.5,12.5
+ parent: 2
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: -5.5,11.5
+ parent: 2
+ - uid: 15548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,33.5
+ parent: 2
+ - uid: 15551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,33.5
+ parent: 2
+- proto: RandomSoap
+ entities:
+ - uid: 18885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -117.5,-8.5
+ parent: 2
+ - uid: 38776
+ components:
+ - type: Transform
+ pos: -108.5,43.5
+ parent: 2
+- proto: RandomSpawner
+ entities:
+ - uid: 7016
+ components:
+ - type: Transform
+ pos: -28.5,-32.5
+ parent: 2
+ - uid: 7017
+ components:
+ - type: Transform
+ pos: -28.5,-33.5
+ parent: 2
+ - uid: 7018
+ components:
+ - type: Transform
+ pos: -33.5,-32.5
+ parent: 2
+ - uid: 7019
+ components:
+ - type: Transform
+ pos: -33.5,-33.5
+ parent: 2
+ - uid: 7020
+ components:
+ - type: Transform
+ pos: -27.5,-34.5
+ parent: 2
+ - uid: 7021
+ components:
+ - type: Transform
+ pos: -25.5,-32.5
+ parent: 2
+ - uid: 7022
+ components:
+ - type: Transform
+ pos: -29.5,-38.5
+ parent: 2
+ - uid: 7023
+ components:
+ - type: Transform
+ pos: -32.5,-38.5
+ parent: 2
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: -33.5,-36.5
+ parent: 2
+ - uid: 31108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -49.5,64.5
+ parent: 2
+ - uid: 38733
+ components:
+ - type: Transform
+ pos: -96.5,50.5
+ parent: 2
+ - uid: 38735
+ components:
+ - type: Transform
+ pos: -93.5,49.5
+ parent: 2
+ - uid: 38736
components:
- type: Transform
- pos: 53.5,-32.5
+ pos: -99.5,45.5
parent: 2
- - uid: 23527
+ - uid: 38737
components:
- type: Transform
- pos: 46.5,-32.5
+ pos: -103.5,49.5
parent: 2
- - uid: 23528
+ - uid: 38739
components:
- type: Transform
- pos: 41.5,-35.5
+ pos: -109.5,55.5
parent: 2
- - uid: 23529
+ - uid: 38740
components:
- type: Transform
- pos: 28.5,-35.5
+ pos: -114.5,55.5
parent: 2
- - uid: 23530
+ - uid: 38741
components:
- type: Transform
- pos: 24.5,-35.5
+ pos: -111.5,59.5
parent: 2
- - uid: 23531
+ - uid: 38742
components:
- type: Transform
- pos: 12.5,-30.5
+ pos: -112.5,59.5
parent: 2
- - uid: 23532
+ - uid: 38743
components:
- type: Transform
- pos: 12.5,-31.5
+ pos: -117.5,53.5
parent: 2
- - uid: 23533
+ - uid: 38744
components:
- type: Transform
- pos: 23.5,-23.5
+ pos: -116.5,47.5
parent: 2
- - uid: 23549
+ - uid: 38745
components:
- type: Transform
- pos: 5.5,-53.5
+ pos: -117.5,46.5
parent: 2
- - uid: 23570
+ - uid: 38746
components:
- type: Transform
- pos: -82.5,3.5
+ pos: -116.5,45.5
parent: 2
- - uid: 23574
+ - uid: 38747
components:
- type: Transform
- pos: -93.5,-6.5
+ pos: -123.5,52.5
parent: 2
- - uid: 23575
+ - uid: 38748
components:
- type: Transform
- pos: -95.5,-12.5
+ pos: -124.5,51.5
parent: 2
- - uid: 23581
+ - uid: 38749
components:
- type: Transform
- pos: -52.5,42.5
+ pos: -124.5,46.5
parent: 2
- - uid: 23583
+ - uid: 38750
components:
- type: Transform
- pos: -31.5,39.5
+ pos: -123.5,44.5
parent: 2
- - uid: 23584
+ - uid: 38751
components:
- type: Transform
- pos: -27.5,33.5
+ pos: -123.5,43.5
parent: 2
- - uid: 23585
+ - uid: 38752
components:
- type: Transform
- pos: -31.5,25.5
+ pos: -120.5,37.5
parent: 2
- - uid: 23587
+ - uid: 38753
components:
- type: Transform
- pos: -8.5,36.5
+ pos: -117.5,36.5
parent: 2
- - uid: 26887
+ - uid: 38754
components:
- type: Transform
- pos: -32.5,32.5
+ pos: -116.5,36.5
parent: 2
-- proto: RandomScienceCorpseSpawner
- entities:
- - uid: 5341
+ - uid: 38755
components:
- type: Transform
- pos: 56.5,53.5
+ pos: -111.5,35.5
parent: 2
- - uid: 5385
+ - uid: 38756
components:
- type: Transform
- pos: 61.5,52.5
+ pos: -103.5,35.5
parent: 2
-- proto: RandomSnacks
- entities:
- - uid: 1640
+ - uid: 38757
components:
- type: Transform
- pos: -2.5,12.5
+ pos: -98.5,35.5
parent: 2
- - uid: 1641
+ - uid: 38758
components:
- type: Transform
- pos: -5.5,11.5
+ pos: -94.5,36.5
parent: 2
- - uid: 15548
+ - uid: 38759
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,33.5
+ pos: -93.5,39.5
parent: 2
- - uid: 15551
+ - uid: 38760
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,33.5
+ pos: -93.5,40.5
parent: 2
-- proto: RandomSoap
- entities:
- - uid: 33588
+ - uid: 38761
components:
- type: Transform
- pos: 96.5,26.5
+ pos: -91.5,43.5
parent: 2
- - uid: 33608
+ - uid: 38762
components:
- type: Transform
- pos: 73.5,59.5
+ pos: -89.5,48.5
parent: 2
- - uid: 33609
+ - uid: 38763
components:
- type: Transform
- pos: 88.5,49.5
+ pos: -89.5,49.5
parent: 2
- - uid: 33610
+ - uid: 38764
components:
- type: Transform
- pos: 68.5,42.5
+ pos: -91.5,53.5
parent: 2
-- proto: RandomSpawner
- entities:
- - uid: 7016
+ - uid: 38765
components:
- type: Transform
- pos: -28.5,-32.5
+ pos: -90.5,61.5
parent: 2
- - uid: 7017
+- proto: RandomSpawner100
+ entities:
+ - uid: 225
components:
- type: Transform
- pos: -28.5,-33.5
+ pos: -22.5,-4.5
parent: 2
- - uid: 7018
+ - uid: 260
components:
- type: Transform
- pos: -33.5,-32.5
+ pos: 96.5,77.5
parent: 2
- - uid: 7019
+ - uid: 633
components:
- type: Transform
- pos: -33.5,-33.5
+ pos: -16.5,-5.5
parent: 2
- - uid: 7020
+ - uid: 640
components:
- type: Transform
- pos: -27.5,-34.5
+ pos: -17.5,-5.5
parent: 2
- - uid: 7021
+ - uid: 691
components:
- type: Transform
- pos: -25.5,-32.5
+ pos: -17.5,-4.5
parent: 2
- - uid: 7022
+ - uid: 3933
components:
- type: Transform
- pos: -29.5,-38.5
+ pos: -37.5,13.5
parent: 2
- - uid: 7023
+ - uid: 4407
components:
- type: Transform
- pos: -32.5,-38.5
+ pos: 74.5,33.5
parent: 2
- - uid: 7024
+ - uid: 4460
components:
- type: Transform
- pos: -33.5,-36.5
+ pos: 83.5,27.5
parent: 2
- - uid: 31108
+ - uid: 4482
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,64.5
+ pos: 66.5,32.5
parent: 2
-- proto: RandomSpawner100
- entities:
- - uid: 3933
+ - uid: 4627
components:
- type: Transform
- pos: -37.5,13.5
+ pos: 83.5,26.5
parent: 2
- - uid: 15501
+ - uid: 4629
components:
- type: Transform
- pos: -40.5,12.5
+ pos: 85.5,27.5
parent: 2
- - uid: 16631
+ - uid: 4630
components:
- type: Transform
- pos: -39.5,10.5
+ pos: 82.5,26.5
parent: 2
- - uid: 16633
+ - uid: 6716
components:
- type: Transform
- pos: -38.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-22.5
parent: 2
- - uid: 16635
+ - uid: 7208
components:
- type: Transform
- pos: -36.5,10.5
+ pos: 68.5,33.5
parent: 2
- - uid: 30072
+ - uid: 8185
components:
- type: Transform
- pos: 91.5,39.5
+ pos: 96.5,72.5
parent: 2
- - uid: 30080
+ - uid: 8186
components:
- type: Transform
- pos: 89.5,42.5
+ pos: 96.5,73.5
parent: 2
- - uid: 30083
+ - uid: 8187
components:
- type: Transform
- pos: 85.5,44.5
+ pos: 97.5,72.5
parent: 2
- - uid: 30085
+ - uid: 8195
components:
- type: Transform
- pos: 86.5,36.5
+ pos: 97.5,73.5
parent: 2
- - uid: 30086
+ - uid: 8196
components:
- type: Transform
- pos: 85.5,37.5
+ pos: 101.5,73.5
parent: 2
- - uid: 30090
+ - uid: 8198
components:
- type: Transform
- pos: 90.5,37.5
+ pos: 92.5,77.5
parent: 2
- - uid: 31107
+ - uid: 8199
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,65.5
+ pos: 90.5,78.5
parent: 2
-- proto: RandomVendingDrinks
- entities:
- - uid: 1597
+ - uid: 8200
components:
- type: Transform
- pos: -6.5,16.5
+ pos: 102.5,72.5
parent: 2
- - uid: 5176
+ - uid: 8201
components:
- type: Transform
- pos: 74.5,-13.5
+ pos: 91.5,78.5
parent: 2
- - uid: 5885
+ - uid: 8217
components:
- type: Transform
- pos: 11.5,-51.5
+ pos: 98.5,73.5
parent: 2
- - uid: 6826
+ - uid: 15501
components:
- type: Transform
- pos: -15.5,-27.5
+ pos: -40.5,12.5
parent: 2
- - uid: 8468
+ - uid: 16631
components:
- type: Transform
- pos: -10.5,59.5
+ pos: -39.5,10.5
parent: 2
- - uid: 9000
+ - uid: 16633
components:
- type: Transform
- pos: -51.5,23.5
+ pos: -38.5,10.5
parent: 2
- - uid: 9330
+ - uid: 19123
components:
- type: Transform
- pos: -38.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,12.5
parent: 2
- - uid: 13318
+ - uid: 20315
components:
- type: Transform
- pos: 52.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,44.5
parent: 2
- - uid: 19610
+ - uid: 20407
components:
- type: Transform
- pos: -10.5,78.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,43.5
parent: 2
-- proto: RandomVendingSnacks
- entities:
- - uid: 1596
+ - uid: 20408
components:
- type: Transform
- pos: -7.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,42.5
parent: 2
- - uid: 5155
+ - uid: 20467
components:
- type: Transform
- pos: 71.5,-13.5
+ pos: -28.5,-2.5
parent: 2
- - uid: 5884
+ - uid: 20468
components:
- type: Transform
- pos: -8.5,-51.5
+ pos: -32.5,-5.5
parent: 2
- - uid: 6827
+ - uid: 21026
components:
- type: Transform
- pos: -14.5,-27.5
+ pos: 98.5,72.5
parent: 2
- - uid: 8621
+ - uid: 21027
components:
- type: Transform
- pos: -11.5,59.5
+ pos: 91.5,77.5
parent: 2
- - uid: 9003
+ - uid: 21032
components:
- type: Transform
- pos: -50.5,23.5
+ pos: 99.5,74.5
parent: 2
- - uid: 13243
+ - uid: 21033
components:
- type: Transform
- pos: -37.5,15.5
+ pos: 86.5,75.5
parent: 2
- - uid: 19609
+ - uid: 21035
components:
- type: Transform
- pos: 13.5,78.5
+ pos: 101.5,72.5
parent: 2
-- proto: ReagentContainerOliveoil
- entities:
- - uid: 7604
+ - uid: 22377
components:
- type: Transform
- pos: -56.631985,-19.181768
+ pos: -30.5,-4.5
parent: 2
- - uid: 7605
+ - uid: 23157
components:
- type: Transform
- pos: -56.39761,-19.334112
+ pos: -20.5,-5.5
parent: 2
-- proto: ReagentGrinderMachineCircuitboard
- entities:
- - uid: 35821
+ - uid: 23192
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.983044,27.480843
+ pos: -38.5,9.5
parent: 2
-- proto: Recycler
- entities:
- - uid: 36390
+ - uid: 23749
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,11.5
parent: 2
- - type: DeviceLinkSink
- links:
- - 23365
-- proto: RegenerativeMesh
- entities:
- - uid: 30679
+ - uid: 23752
components:
- type: Transform
- pos: 76.73633,38.6791
+ rot: -1.5707963267948966 rad
+ pos: -38.5,6.5
parent: 2
-- proto: ReinforcedGirder
- entities:
- - uid: 1202
+ - uid: 27137
components:
- type: Transform
- pos: -99.5,64.5
+ pos: 96.5,76.5
parent: 2
- - uid: 3067
+ - uid: 27860
components:
- type: Transform
- pos: 82.5,-8.5
+ pos: -31.5,-5.5
parent: 2
- - uid: 6430
+ - uid: 29342
components:
- type: Transform
- pos: 87.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,8.5
parent: 2
- - uid: 11641
+ - uid: 29355
components:
- type: Transform
- pos: -68.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,1.5
parent: 2
- - uid: 13716
+ - uid: 29356
components:
- type: Transform
- pos: 83.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,9.5
parent: 2
- - uid: 13717
+ - uid: 29367
components:
- type: Transform
- pos: 87.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,9.5
parent: 2
- - uid: 13718
+ - uid: 29380
components:
- type: Transform
- pos: 85.5,1.5
+ pos: 85.5,76.5
parent: 2
- - uid: 13719
+ - uid: 30072
components:
- type: Transform
- pos: 84.5,1.5
+ pos: 91.5,39.5
parent: 2
- - uid: 13720
+ - uid: 30080
components:
- type: Transform
- pos: 82.5,1.5
+ pos: 89.5,42.5
parent: 2
- - uid: 13721
+ - uid: 30083
components:
- type: Transform
- pos: 87.5,1.5
+ pos: 85.5,44.5
parent: 2
- - uid: 13724
+ - uid: 30085
components:
- type: Transform
- pos: 86.5,-8.5
+ pos: 86.5,36.5
parent: 2
- - uid: 13726
+ - uid: 30086
components:
- type: Transform
- pos: 46.5,-37.5
+ pos: 85.5,37.5
parent: 2
- - uid: 13727
+ - uid: 30090
components:
- type: Transform
- pos: 46.5,-38.5
+ pos: 90.5,37.5
parent: 2
- - uid: 13728
+ - uid: 30127
components:
- type: Transform
- pos: 46.5,-41.5
+ pos: 83.5,73.5
parent: 2
- - uid: 13729
+ - uid: 31107
components:
- type: Transform
- pos: 49.5,-41.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,65.5
parent: 2
- - uid: 13730
+ - uid: 32436
components:
- type: Transform
- pos: 51.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,4.5
parent: 2
- - uid: 13731
+ - uid: 32437
components:
- type: Transform
- pos: 52.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,2.5
parent: 2
- - uid: 13732
+ - uid: 32456
components:
- type: Transform
- pos: 52.5,-40.5
+ pos: 91.5,65.5
parent: 2
- - uid: 13733
+ - uid: 32482
components:
- type: Transform
- pos: 52.5,-37.5
+ pos: 98.5,76.5
parent: 2
- - uid: 13734
+ - uid: 32483
components:
- type: Transform
- pos: 52.5,-35.5
+ pos: 92.5,72.5
parent: 2
- - uid: 13735
+ - uid: 32484
components:
- type: Transform
- pos: 40.5,-36.5
+ pos: 91.5,73.5
parent: 2
- - uid: 13736
+ - uid: 32485
components:
- type: Transform
- pos: 40.5,-38.5
+ pos: 92.5,74.5
parent: 2
- - uid: 13737
+ - uid: 32486
components:
- type: Transform
- pos: 40.5,-40.5
+ pos: 95.5,78.5
parent: 2
- - uid: 13738
+ - uid: 32487
components:
- type: Transform
- pos: 41.5,-41.5
+ pos: 94.5,77.5
parent: 2
- - uid: 13739
+ - uid: 32488
components:
- type: Transform
- pos: 44.5,-41.5
+ pos: 93.5,77.5
parent: 2
- - uid: 13785
+ - uid: 32489
components:
- type: Transform
- pos: 88.5,5.5
+ pos: 93.5,78.5
parent: 2
- - uid: 13786
+ - uid: 32490
components:
- type: Transform
- pos: 88.5,4.5
+ pos: 86.5,71.5
parent: 2
- - uid: 13787
+ - uid: 32491
components:
- type: Transform
- pos: 87.5,2.5
+ pos: 87.5,70.5
parent: 2
- - uid: 13788
+ - uid: 32492
components:
- type: Transform
- pos: 88.5,9.5
+ pos: 86.5,69.5
parent: 2
- - uid: 18795
+ - uid: 32493
components:
- type: Transform
- pos: -102.5,42.5
+ pos: 86.5,68.5
parent: 2
- - uid: 18803
+ - uid: 32494
components:
- type: Transform
- pos: -125.5,58.5
+ pos: 87.5,67.5
parent: 2
- - uid: 18804
+ - uid: 32495
components:
- type: Transform
- pos: -125.5,56.5
+ pos: 94.5,68.5
parent: 2
- - uid: 18805
+ - uid: 32496
components:
- type: Transform
- pos: -126.5,54.5
+ pos: 95.5,68.5
parent: 2
- - uid: 18806
+ - uid: 32497
components:
- type: Transform
- pos: -126.5,52.5
+ pos: 97.5,69.5
parent: 2
- - uid: 18807
+ - uid: 32529
components:
- type: Transform
- pos: -126.5,50.5
+ pos: 89.5,64.5
parent: 2
- - uid: 18808
+ - uid: 32530
components:
- type: Transform
- pos: -125.5,46.5
+ pos: 97.5,64.5
parent: 2
- - uid: 18809
+ - uid: 33626
components:
- type: Transform
- pos: -125.5,45.5
+ pos: 91.5,64.5
parent: 2
- - uid: 18810
+ - uid: 33627
components:
- type: Transform
- pos: -125.5,44.5
+ pos: 92.5,65.5
parent: 2
- - uid: 18811
+ - uid: 34035
components:
- type: Transform
- pos: -126.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,3.5
parent: 2
- - uid: 18812
+ - uid: 37278
components:
- type: Transform
- pos: -125.5,40.5
+ pos: -25.5,7.5
parent: 2
- - uid: 18813
+ - uid: 37291
components:
- type: Transform
- pos: -125.5,37.5
+ pos: -24.5,7.5
parent: 2
- - uid: 18814
+ - uid: 37516
components:
- type: Transform
- pos: -121.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,0.5
parent: 2
- - uid: 18815
+ - uid: 37517
components:
- type: Transform
- pos: -120.5,37.5
+ pos: -35.5,3.5
parent: 2
- - uid: 18816
+ - uid: 37611
components:
- type: Transform
- pos: -117.5,64.5
+ pos: -36.5,2.5
parent: 2
- - uid: 18817
+ - uid: 37619
components:
- type: Transform
- pos: -114.5,64.5
+ pos: -39.5,3.5
parent: 2
- - uid: 18818
+ - uid: 37669
components:
- type: Transform
- pos: -113.5,64.5
+ pos: -40.5,2.5
parent: 2
- - uid: 18819
+ - uid: 37670
components:
- type: Transform
- pos: -111.5,64.5
+ pos: -41.5,3.5
parent: 2
- - uid: 18820
+ - uid: 37671
components:
- type: Transform
- pos: -107.5,64.5
+ pos: -38.5,2.5
parent: 2
- - uid: 18821
+ - uid: 37672
components:
- type: Transform
- pos: -105.5,65.5
+ pos: -39.5,1.5
parent: 2
- - uid: 18822
+ - uid: 37673
components:
- type: Transform
- pos: -103.5,65.5
+ pos: -38.5,1.5
parent: 2
- - uid: 18823
+ - uid: 37674
components:
- type: Transform
- pos: -102.5,64.5
+ pos: -38.5,0.5
parent: 2
- - uid: 18824
+ - uid: 37675
components:
- type: Transform
- pos: -100.5,64.5
+ pos: -35.5,0.5
parent: 2
- - uid: 18825
+ - uid: 37676
components:
- type: Transform
- pos: -99.5,61.5
+ pos: -42.5,1.5
parent: 2
- - uid: 18826
+ - uid: 37677
components:
- type: Transform
- pos: -99.5,60.5
+ pos: -36.5,3.5
parent: 2
- - uid: 18879
+ - uid: 37684
components:
- type: Transform
- pos: -121.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,8.5
parent: 2
- - uid: 18880
+ - uid: 37685
components:
- type: Transform
- pos: -125.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,6.5
parent: 2
- - uid: 19912
+ - uid: 37710
components:
- type: Transform
- pos: -69.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,4.5
parent: 2
- - uid: 19913
+ - uid: 37711
components:
- type: Transform
- pos: -72.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-6.5
parent: 2
- - uid: 19914
+ - uid: 37712
components:
- type: Transform
- pos: -72.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-8.5
parent: 2
- - uid: 19915
+ - uid: 37713
components:
- type: Transform
- pos: -69.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,1.5
parent: 2
- - uid: 19916
+ - uid: 37714
components:
- type: Transform
- pos: -67.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,1.5
parent: 2
- - uid: 19917
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 1597
components:
- type: Transform
- pos: -67.5,-12.5
+ pos: -6.5,16.5
parent: 2
- - uid: 26394
+ - uid: 5885
components:
- type: Transform
- pos: -96.5,87.5
+ pos: 11.5,-51.5
parent: 2
- - uid: 26395
+ - uid: 6826
components:
- type: Transform
- pos: -92.5,68.5
+ pos: -15.5,-27.5
parent: 2
- - uid: 26415
+ - uid: 8468
components:
- type: Transform
- pos: -92.5,74.5
+ pos: -10.5,59.5
parent: 2
- - uid: 26416
+ - uid: 9000
components:
- type: Transform
- pos: -94.5,80.5
+ pos: -51.5,23.5
parent: 2
- - uid: 26417
+ - uid: 13318
components:
- type: Transform
- pos: -93.5,78.5
+ pos: 52.5,-10.5
parent: 2
- - uid: 26418
+ - uid: 13854
components:
- type: Transform
- pos: -96.5,94.5
+ pos: 71.5,-10.5
parent: 2
- - uid: 26419
+ - uid: 19140
components:
- type: Transform
- pos: -96.5,95.5
+ pos: -43.5,8.5
parent: 2
- - uid: 26420
+ - uid: 19610
components:
- type: Transform
- pos: -96.5,97.5
+ pos: -10.5,78.5
parent: 2
- - uid: 26421
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 1596
components:
- type: Transform
- pos: -92.5,100.5
+ pos: -7.5,16.5
parent: 2
- - uid: 26422
+ - uid: 5884
components:
- type: Transform
- pos: -92.5,90.5
+ pos: -8.5,-51.5
parent: 2
- - uid: 26424
+ - uid: 6827
components:
- type: Transform
- pos: -86.5,116.5
+ pos: -14.5,-27.5
parent: 2
- - uid: 26425
+ - uid: 8621
components:
- type: Transform
- pos: -96.5,105.5
+ pos: -11.5,59.5
parent: 2
- - uid: 26426
+ - uid: 9003
components:
- type: Transform
- pos: -97.5,106.5
+ pos: -50.5,23.5
parent: 2
- - uid: 26427
+ - uid: 19152
components:
- type: Transform
- pos: -96.5,109.5
+ pos: -43.5,9.5
parent: 2
- - uid: 26428
+ - uid: 19609
components:
- type: Transform
- pos: -92.5,109.5
+ pos: 13.5,78.5
parent: 2
- - uid: 26429
+ - uid: 27098
components:
- type: Transform
- pos: -91.5,111.5
+ pos: 72.5,-10.5
parent: 2
- - uid: 26430
+- proto: ReagentContainerOliveoil
+ entities:
+ - uid: 23769
components:
- type: Transform
- pos: -90.5,115.5
+ pos: -57.34222,-21.269592
parent: 2
- - uid: 26431
+ - uid: 31043
components:
- type: Transform
- pos: -96.5,115.5
+ pos: -57.568783,-21.519592
parent: 2
- - uid: 26433
+- proto: ReagentGrinderMachineCircuitboard
+ entities:
+ - uid: 35821
components:
- type: Transform
- pos: -87.5,116.5
+ rot: 3.141592653589793 rad
+ pos: -49.983044,27.480843
parent: 2
- - uid: 26434
+- proto: ReagentSlimeSpawner
+ entities:
+ - uid: 35963
components:
- type: Transform
- pos: -84.5,115.5
+ pos: 74.5,85.5
parent: 2
- - uid: 26435
+ - uid: 35965
components:
- type: Transform
- pos: -80.5,111.5
+ pos: 73.5,84.5
parent: 2
- - uid: 26442
+ - uid: 36042
components:
- type: Transform
- pos: -77.5,111.5
+ pos: 72.5,85.5
parent: 2
- - uid: 26443
+- proto: Recycler
+ entities:
+ - uid: 19134
components:
- type: Transform
- pos: -79.5,111.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,2.5
parent: 2
- - uid: 26444
+ - type: DeviceLinkSink
+ links:
+ - 38734
+- proto: ReinforcedGirder
+ entities:
+ - uid: 1202
components:
- type: Transform
- pos: -74.5,115.5
+ pos: -99.5,64.5
parent: 2
- - uid: 26445
+ - uid: 6445
components:
- type: Transform
- pos: -69.5,114.5
+ pos: 115.5,-4.5
parent: 2
- - uid: 26446
+ - uid: 7410
components:
- type: Transform
- pos: -67.5,115.5
+ pos: 88.5,-30.5
parent: 2
- - uid: 26447
+ - uid: 7600
components:
- type: Transform
- pos: -65.5,114.5
+ pos: -48.5,79.5
parent: 2
- - uid: 26448
+ - uid: 7982
components:
- type: Transform
- pos: -64.5,115.5
+ pos: 38.5,81.5
parent: 2
- - uid: 26449
+ - uid: 7983
components:
- type: Transform
- pos: -61.5,114.5
+ pos: 16.5,80.5
parent: 2
- - uid: 26450
+ - uid: 7985
components:
- type: Transform
- pos: -62.5,111.5
+ pos: 48.5,81.5
parent: 2
- - uid: 26451
+ - uid: 7986
components:
- type: Transform
- pos: -66.5,105.5
+ pos: 40.5,81.5
parent: 2
- - uid: 26453
+ - uid: 8002
components:
- type: Transform
- pos: -67.5,101.5
+ pos: 52.5,80.5
parent: 2
- - uid: 26454
+ - uid: 8270
components:
- type: Transform
- pos: -66.5,99.5
+ pos: 87.5,-30.5
parent: 2
- - uid: 26455
+ - uid: 8300
components:
- type: Transform
- pos: -66.5,98.5
+ pos: 95.5,-30.5
parent: 2
- - uid: 26456
+ - uid: 8306
components:
- type: Transform
- pos: -61.5,105.5
+ pos: 97.5,-29.5
parent: 2
- - uid: 26457
+ - uid: 8308
components:
- type: Transform
- pos: -60.5,109.5
+ pos: 98.5,-29.5
parent: 2
- - uid: 26460
+ - uid: 8345
components:
- type: Transform
- pos: -62.5,98.5
+ pos: 101.5,-30.5
parent: 2
- - uid: 26461
+ - uid: 8346
components:
- type: Transform
- pos: -61.5,97.5
+ pos: 105.5,-29.5
parent: 2
- - uid: 26462
+ - uid: 8347
components:
- type: Transform
- pos: -64.5,93.5
+ pos: 106.5,-31.5
parent: 2
- - uid: 26463
+ - uid: 8348
components:
- type: Transform
- pos: -66.5,88.5
+ pos: 110.5,-31.5
parent: 2
- - uid: 26464
+ - uid: 8349
components:
- type: Transform
- pos: -62.5,86.5
+ pos: 113.5,-30.5
parent: 2
- - uid: 26465
+ - uid: 8485
components:
- type: Transform
- pos: -61.5,84.5
+ pos: 114.5,-30.5
parent: 2
- - uid: 26466
+ - uid: 8712
components:
- type: Transform
- pos: -62.5,83.5
+ pos: 115.5,-28.5
parent: 2
- - uid: 26467
+ - uid: 8713
components:
- type: Transform
- pos: -66.5,82.5
+ pos: 115.5,-27.5
parent: 2
- - uid: 26468
+ - uid: 8801
components:
- type: Transform
- pos: -66.5,77.5
+ pos: 116.5,-20.5
parent: 2
- - uid: 26469
+ - uid: 8854
components:
- type: Transform
- pos: -62.5,77.5
+ pos: 115.5,-16.5
parent: 2
- - uid: 26470
+ - uid: 8860
components:
- type: Transform
- pos: -59.5,77.5
+ pos: 115.5,-14.5
parent: 2
- - uid: 26471
+ - uid: 8959
components:
- type: Transform
- pos: -53.5,77.5
+ pos: 114.5,-12.5
parent: 2
- - uid: 26472
+ - uid: 8963
components:
- type: Transform
- pos: -51.5,79.5
+ pos: 114.5,-10.5
parent: 2
- - uid: 26473
+ - uid: 8971
components:
- type: Transform
- pos: -49.5,74.5
+ pos: 115.5,-3.5
parent: 2
- - uid: 26474
+ - uid: 8981
components:
- type: Transform
- pos: -47.5,78.5
+ pos: 116.5,-1.5
parent: 2
- - uid: 26475
+ - uid: 9173
components:
- type: Transform
- pos: -49.5,77.5
+ pos: 116.5,5.5
parent: 2
- - uid: 26476
+ - uid: 9174
components:
- type: Transform
- pos: -56.5,72.5
+ pos: 116.5,7.5
parent: 2
- - uid: 26477
+ - uid: 12775
components:
- type: Transform
- pos: -58.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-21.5
parent: 2
- - uid: 26478
+ - uid: 12938
components:
- type: Transform
- pos: -45.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-2.5
parent: 2
- - uid: 26483
+ - uid: 13325
components:
- type: Transform
- pos: -65.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-7.5
parent: 2
- - uid: 26484
+ - uid: 13326
components:
- type: Transform
- pos: -66.5,72.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-13.5
parent: 2
- - uid: 26485
+ - uid: 13333
components:
- type: Transform
- pos: -35.5,75.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,-17.5
parent: 2
- - uid: 26486
+ - uid: 13334
components:
- type: Transform
- pos: -34.5,75.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,-10.5
parent: 2
- - uid: 26487
+ - uid: 13335
components:
- type: Transform
- pos: -33.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-5.5
parent: 2
- - uid: 26488
+ - uid: 13339
components:
- type: Transform
- pos: -30.5,76.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,-0.5
parent: 2
- - uid: 26489
+ - uid: 13731
components:
- type: Transform
- pos: -29.5,70.5
+ pos: 52.5,-41.5
parent: 2
- - uid: 26490
+ - uid: 13732
components:
- type: Transform
- pos: -37.5,70.5
+ pos: 52.5,-40.5
parent: 2
- - uid: 26492
+ - uid: 13733
components:
- type: Transform
- pos: -18.5,75.5
+ pos: 52.5,-37.5
parent: 2
- - uid: 26493
+ - uid: 13735
components:
- type: Transform
- pos: -24.5,74.5
+ pos: 40.5,-36.5
parent: 2
- - uid: 26494
+ - uid: 13736
components:
- type: Transform
- pos: -20.5,75.5
+ pos: 40.5,-38.5
parent: 2
- - uid: 26495
+ - uid: 13785
components:
- type: Transform
- pos: -14.5,72.5
+ pos: 88.5,5.5
parent: 2
- - uid: 26496
+ - uid: 13786
components:
- type: Transform
- pos: -18.5,70.5
+ pos: 88.5,4.5
parent: 2
- - uid: 26497
+ - uid: 18254
components:
- type: Transform
- pos: -17.5,70.5
+ pos: -15.5,79.5
parent: 2
- - uid: 26498
+ - uid: 18525
components:
- type: Transform
- pos: -24.5,72.5
+ rot: 3.141592653589793 rad
+ pos: 108.5,-3.5
parent: 2
- - uid: 26499
+ - uid: 18809
components:
- type: Transform
- pos: -27.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,19.5
parent: 2
- - uid: 26500
+ - uid: 18811
components:
- type: Transform
- pos: 22.5,70.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,22.5
parent: 2
- - uid: 26501
+ - uid: 18816
components:
- type: Transform
- pos: 19.5,80.5
+ pos: -117.5,64.5
parent: 2
- - uid: 26502
+ - uid: 18817
components:
- type: Transform
- pos: 20.5,80.5
+ pos: -114.5,64.5
parent: 2
- - uid: 26503
+ - uid: 18818
components:
- type: Transform
- pos: 22.5,80.5
+ pos: -113.5,64.5
parent: 2
- - uid: 26504
+ - uid: 18819
components:
- type: Transform
- pos: 25.5,77.5
+ pos: -111.5,64.5
parent: 2
- - uid: 26505
+ - uid: 18820
components:
- type: Transform
- pos: 25.5,74.5
+ pos: -107.5,64.5
parent: 2
- - uid: 26506
+ - uid: 18821
components:
- type: Transform
- pos: 26.5,72.5
+ pos: -105.5,65.5
parent: 2
- - uid: 26508
+ - uid: 18822
components:
- type: Transform
- pos: 21.5,73.5
+ pos: -103.5,65.5
parent: 2
- - uid: 26509
+ - uid: 18823
components:
- type: Transform
- pos: 20.5,77.5
+ pos: -102.5,64.5
parent: 2
- - uid: 26510
+ - uid: 18824
components:
- type: Transform
- pos: 23.5,67.5
+ pos: -100.5,64.5
parent: 2
- - uid: 26511
+ - uid: 18871
components:
- type: Transform
- pos: 27.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,-23.5
parent: 2
- - uid: 26512
+ - uid: 18874
components:
- type: Transform
- pos: 29.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,2.5
parent: 2
- - uid: 26513
+ - uid: 18875
components:
- type: Transform
- pos: 32.5,70.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,8.5
parent: 2
- - uid: 26514
+ - uid: 18879
components:
- type: Transform
- pos: 41.5,70.5
+ pos: -121.5,64.5
parent: 2
- - uid: 26515
+ - uid: 18881
components:
- type: Transform
- pos: 34.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -117.5,-24.5
parent: 2
- - uid: 26516
+ - uid: 18928
components:
- type: Transform
- pos: 35.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,24.5
parent: 2
- - uid: 26517
+ - uid: 18948
components:
- type: Transform
- pos: 39.5,71.5
+ pos: 35.5,76.5
parent: 2
- - uid: 26519
+ - uid: 18954
components:
- type: Transform
- pos: 42.5,70.5
+ pos: 47.5,77.5
parent: 2
- - uid: 26520
+ - uid: 18959
components:
- type: Transform
- pos: 76.5,77.5
+ pos: 45.5,77.5
parent: 2
- - uid: 26521
+ - uid: 19100
components:
- type: Transform
- pos: 44.5,70.5
+ pos: -28.5,80.5
parent: 2
- - uid: 26522
+ - uid: 19344
components:
- type: Transform
- pos: 45.5,73.5
+ pos: 26.5,81.5
parent: 2
- - uid: 26523
+ - uid: 19348
components:
- type: Transform
- pos: 45.5,76.5
+ pos: 27.5,81.5
parent: 2
- - uid: 26524
+ - uid: 19351
components:
- type: Transform
- pos: 46.5,77.5
+ pos: 29.5,81.5
parent: 2
- - uid: 26525
+ - uid: 19385
components:
- type: Transform
- pos: 50.5,80.5
+ pos: -29.5,80.5
parent: 2
- - uid: 26526
+ - uid: 22186
components:
- type: Transform
- pos: 52.5,80.5
+ rot: 3.141592653589793 rad
+ pos: -116.5,5.5
parent: 2
- - uid: 26528
+ - uid: 22187
components:
- type: Transform
- pos: 45.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,8.5
parent: 2
- - uid: 26529
+ - uid: 22188
components:
- type: Transform
- pos: 45.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,20.5
parent: 2
- - uid: 26530
+ - uid: 22192
components:
- type: Transform
- pos: 48.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -117.5,-23.5
parent: 2
- - uid: 26531
+ - uid: 25942
components:
- type: Transform
- pos: 49.5,71.5
+ pos: -17.5,80.5
parent: 2
- - uid: 26532
+ - uid: 25943
components:
- type: Transform
- pos: 51.5,75.5
+ pos: -18.5,79.5
parent: 2
- - uid: 26533
+ - uid: 26238
components:
- type: Transform
- pos: 53.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: 83.5,-3.5
parent: 2
- - uid: 26534
+ - uid: 26239
components:
- type: Transform
- pos: 59.5,80.5
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-3.5
parent: 2
- - uid: 26535
+ - uid: 26394
components:
- type: Transform
- pos: 62.5,79.5
+ pos: -96.5,87.5
parent: 2
- - uid: 26536
+ - uid: 26395
components:
- type: Transform
- pos: 63.5,79.5
+ pos: -92.5,68.5
parent: 2
- - uid: 26537
+ - uid: 26415
components:
- type: Transform
- pos: 65.5,80.5
+ pos: -92.5,74.5
parent: 2
- - uid: 26538
+ - uid: 26416
components:
- type: Transform
- pos: 68.5,79.5
+ pos: -94.5,80.5
parent: 2
- - uid: 26539
+ - uid: 26417
components:
- type: Transform
- pos: 64.5,76.5
+ pos: -93.5,78.5
parent: 2
- - uid: 26540
+ - uid: 26418
components:
- type: Transform
- pos: 70.5,80.5
+ pos: -96.5,94.5
parent: 2
- - uid: 26541
+ - uid: 26419
components:
- type: Transform
- pos: 75.5,80.5
+ pos: -96.5,95.5
parent: 2
- - uid: 26543
+ - uid: 26420
components:
- type: Transform
- pos: 73.5,80.5
+ pos: -96.5,97.5
parent: 2
- - uid: 26544
+ - uid: 26421
components:
- type: Transform
- pos: 72.5,76.5
+ pos: -92.5,100.5
parent: 2
- - uid: 26545
+ - uid: 26422
components:
- type: Transform
- pos: 80.5,81.5
+ pos: -92.5,90.5
parent: 2
- - uid: 26546
+ - uid: 26424
components:
- type: Transform
- pos: 82.5,81.5
+ pos: -86.5,116.5
parent: 2
- - uid: 26547
+ - uid: 26425
components:
- type: Transform
- pos: 86.5,81.5
+ pos: -96.5,105.5
parent: 2
- - uid: 26548
+ - uid: 26426
components:
- type: Transform
- pos: 87.5,77.5
+ pos: -97.5,106.5
parent: 2
- - uid: 26549
+ - uid: 26427
components:
- type: Transform
- pos: 92.5,77.5
+ pos: -96.5,109.5
parent: 2
- - uid: 26550
+ - uid: 26428
components:
- type: Transform
- pos: 101.5,64.5
+ pos: -92.5,109.5
parent: 2
- - uid: 26551
+ - uid: 26429
components:
- type: Transform
- pos: 92.5,80.5
+ pos: -91.5,111.5
parent: 2
- - uid: 26552
+ - uid: 26430
components:
- type: Transform
- pos: 94.5,81.5
+ pos: -90.5,115.5
parent: 2
- - uid: 26553
+ - uid: 26431
components:
- type: Transform
- pos: 97.5,80.5
+ pos: -96.5,115.5
parent: 2
- - uid: 26554
+ - uid: 26433
components:
- type: Transform
- pos: 98.5,77.5
+ pos: -87.5,116.5
parent: 2
- - uid: 26555
+ - uid: 26434
components:
- type: Transform
- pos: 100.5,75.5
+ pos: -84.5,115.5
parent: 2
- - uid: 26556
+ - uid: 26435
components:
- type: Transform
- pos: 99.5,74.5
+ pos: -80.5,111.5
parent: 2
- - uid: 26557
+ - uid: 26442
components:
- type: Transform
- pos: 101.5,72.5
+ pos: -77.5,111.5
parent: 2
- - uid: 26558
+ - uid: 26443
components:
- type: Transform
- pos: 101.5,70.5
+ pos: -79.5,111.5
parent: 2
- - uid: 26559
+ - uid: 26444
components:
- type: Transform
- pos: 98.5,65.5
+ pos: -74.5,115.5
parent: 2
- - uid: 26560
+ - uid: 26445
components:
- type: Transform
- pos: 96.5,66.5
+ pos: -69.5,114.5
parent: 2
- - uid: 26561
+ - uid: 26446
components:
- type: Transform
- pos: 95.5,71.5
+ pos: -67.5,115.5
parent: 2
- - uid: 26562
+ - uid: 26447
components:
- type: Transform
- pos: 98.5,60.5
+ pos: -65.5,114.5
parent: 2
- - uid: 26563
+ - uid: 26448
components:
- type: Transform
- pos: 100.5,54.5
+ pos: -64.5,115.5
parent: 2
- - uid: 26564
+ - uid: 26449
components:
- type: Transform
- pos: 102.5,59.5
+ pos: -61.5,114.5
parent: 2
- - uid: 26566
+ - uid: 26450
components:
- type: Transform
- pos: 102.5,60.5
+ pos: -62.5,111.5
parent: 2
- - uid: 26568
+ - uid: 26451
components:
- type: Transform
- pos: 102.5,52.5
+ pos: -66.5,105.5
parent: 2
- - uid: 26570
+ - uid: 26453
components:
- type: Transform
- pos: 105.5,48.5
+ pos: -67.5,101.5
parent: 2
- - uid: 26571
+ - uid: 26454
components:
- type: Transform
- pos: 98.5,12.5
+ pos: -66.5,99.5
parent: 2
- - uid: 26572
+ - uid: 26455
components:
- type: Transform
- pos: 107.5,42.5
+ pos: -66.5,98.5
parent: 2
- - uid: 26582
+ - uid: 26456
components:
- type: Transform
- pos: 107.5,41.5
+ pos: -61.5,105.5
parent: 2
- - uid: 26583
+ - uid: 26457
components:
- type: Transform
- pos: 106.5,38.5
+ pos: -60.5,109.5
parent: 2
- - uid: 26589
+ - uid: 26460
components:
- type: Transform
- pos: 106.5,39.5
+ pos: -62.5,98.5
parent: 2
- - uid: 26595
+ - uid: 26461
components:
- type: Transform
- pos: 106.5,36.5
+ pos: -61.5,97.5
parent: 2
- - uid: 26596
+ - uid: 26462
components:
- type: Transform
- pos: 106.5,31.5
+ pos: -64.5,93.5
parent: 2
- - uid: 26597
+ - uid: 26463
components:
- type: Transform
- pos: 108.5,29.5
+ pos: -66.5,88.5
parent: 2
- - uid: 26599
+ - uid: 26464
components:
- type: Transform
- pos: 108.5,24.5
+ pos: -62.5,86.5
parent: 2
- - uid: 26600
+ - uid: 26465
components:
- type: Transform
- pos: 108.5,20.5
+ pos: -61.5,84.5
parent: 2
- - uid: 26601
+ - uid: 26466
components:
- type: Transform
- pos: 107.5,20.5
+ pos: -62.5,83.5
parent: 2
- - uid: 26602
+ - uid: 26467
components:
- type: Transform
- pos: 104.5,19.5
+ pos: -66.5,82.5
parent: 2
- - uid: 26603
+ - uid: 26468
components:
- type: Transform
- pos: 97.5,18.5
+ pos: -66.5,77.5
parent: 2
- - uid: 26608
+ - uid: 26469
components:
- type: Transform
- pos: 102.5,21.5
+ pos: -62.5,77.5
parent: 2
- - uid: 26609
+ - uid: 26470
components:
- type: Transform
- pos: 104.5,28.5
+ pos: -59.5,77.5
parent: 2
- - uid: 26610
+ - uid: 26471
components:
- type: Transform
- pos: 105.5,17.5
+ pos: -53.5,77.5
parent: 2
- - uid: 26611
+ - uid: 26472
components:
- type: Transform
- pos: 102.5,15.5
+ pos: -51.5,79.5
parent: 2
- - uid: 26612
+ - uid: 26473
components:
- type: Transform
- pos: 99.5,10.5
+ pos: -49.5,74.5
parent: 2
- - uid: 26613
+ - uid: 26474
components:
- type: Transform
- pos: 91.5,11.5
+ pos: -47.5,78.5
parent: 2
- - uid: 26619
+ - uid: 26475
components:
- type: Transform
- pos: 98.5,6.5
+ pos: -49.5,77.5
parent: 2
- - uid: 26620
+ - uid: 26476
components:
- type: Transform
- pos: 97.5,6.5
+ pos: -56.5,72.5
parent: 2
- - uid: 26621
+ - uid: 26477
components:
- type: Transform
- pos: 94.5,5.5
+ pos: -58.5,71.5
parent: 2
- - uid: 26622
+ - uid: 26478
components:
- type: Transform
- pos: 93.5,2.5
+ pos: -45.5,74.5
parent: 2
- - uid: 26625
+ - uid: 26483
components:
- type: Transform
- pos: 92.5,0.5
+ pos: -65.5,71.5
parent: 2
- - uid: 26626
+ - uid: 26484
components:
- type: Transform
- pos: 92.5,-3.5
+ pos: -66.5,72.5
parent: 2
- - uid: 26634
+ - uid: 26487
components:
- type: Transform
- pos: 92.5,-5.5
+ pos: -36.5,80.5
parent: 2
- - uid: 26635
+ - uid: 26488
components:
- type: Transform
- pos: 91.5,-4.5
+ pos: -30.5,76.5
parent: 2
- - uid: 26636
+ - uid: 26492
components:
- type: Transform
- pos: 80.5,-23.5
+ pos: -18.5,75.5
parent: 2
- - uid: 26637
+ - uid: 26493
components:
- type: Transform
- pos: 90.5,-10.5
+ pos: -24.5,74.5
parent: 2
- - uid: 26638
+ - uid: 26494
components:
- type: Transform
- pos: 92.5,-10.5
+ pos: -20.5,75.5
parent: 2
- - uid: 26639
+ - uid: 26501
components:
- type: Transform
- pos: 84.5,-10.5
+ pos: 19.5,80.5
parent: 2
- - uid: 26640
+ - uid: 26502
components:
- type: Transform
- pos: 81.5,-10.5
+ pos: 20.5,80.5
parent: 2
- - uid: 26641
+ - uid: 26509
components:
- type: Transform
- pos: 85.5,-23.5
+ pos: 20.5,77.5
parent: 2
- - uid: 26642
+ - uid: 26525
components:
- type: Transform
- pos: 85.5,-25.5
+ pos: 50.5,80.5
parent: 2
- uid: 26643
components:
@@ -174433,6 +198075,11 @@ entities:
- type: Transform
pos: 67.5,-93.5
parent: 2
+ - uid: 27136
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 2
- uid: 27246
components:
- type: Transform
@@ -174458,10 +198105,10 @@ entities:
- type: Transform
pos: 47.5,-88.5
parent: 2
- - uid: 27407
+ - uid: 27256
components:
- type: Transform
- pos: 43.5,-87.5
+ pos: 66.5,37.5
parent: 2
- uid: 27512
components:
@@ -174478,106 +198125,11 @@ entities:
- type: Transform
pos: 39.5,-90.5
parent: 2
- - uid: 27786
- components:
- - type: Transform
- pos: 38.5,-85.5
- parent: 2
- - uid: 27787
- components:
- - type: Transform
- pos: 39.5,-87.5
- parent: 2
- - uid: 27788
- components:
- - type: Transform
- pos: 39.5,-82.5
- parent: 2
- - uid: 27789
- components:
- - type: Transform
- pos: 39.5,-77.5
- parent: 2
- - uid: 27790
- components:
- - type: Transform
- pos: 44.5,-79.5
- parent: 2
- - uid: 27791
- components:
- - type: Transform
- pos: 40.5,-73.5
- parent: 2
- - uid: 27806
- components:
- - type: Transform
- pos: 39.5,-72.5
- parent: 2
- - uid: 27807
- components:
- - type: Transform
- pos: 43.5,-71.5
- parent: 2
- - uid: 27808
- components:
- - type: Transform
- pos: 43.5,-65.5
- parent: 2
- - uid: 27809
- components:
- - type: Transform
- pos: 45.5,-66.5
- parent: 2
- - uid: 27810
- components:
- - type: Transform
- pos: 37.5,-64.5
- parent: 2
- - uid: 27811
- components:
- - type: Transform
- pos: 38.5,-64.5
- parent: 2
- - uid: 27812
- components:
- - type: Transform
- pos: 42.5,-59.5
- parent: 2
- - uid: 27813
- components:
- - type: Transform
- pos: 38.5,-57.5
- parent: 2
- uid: 27966
components:
- type: Transform
pos: 36.5,-52.5
parent: 2
- - uid: 27968
- components:
- - type: Transform
- pos: 43.5,-56.5
- parent: 2
- - uid: 27974
- components:
- - type: Transform
- pos: 40.5,-53.5
- parent: 2
- - uid: 28126
- components:
- - type: Transform
- pos: 38.5,-52.5
- parent: 2
- - uid: 28137
- components:
- - type: Transform
- pos: 41.5,-48.5
- parent: 2
- - uid: 28139
- components:
- - type: Transform
- pos: 44.5,-50.5
- parent: 2
- uid: 28225
components:
- type: Transform
@@ -174628,16 +198180,6 @@ entities:
- type: Transform
pos: 26.5,-53.5
parent: 2
- - uid: 29045
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 2
- - uid: 29152
- components:
- - type: Transform
- pos: -51.5,-38.5
- parent: 2
- uid: 29153
components:
- type: Transform
@@ -174903,16 +198445,6 @@ entities:
- type: Transform
pos: -105.5,-42.5
parent: 2
- - uid: 29496
- components:
- - type: Transform
- pos: -106.5,-40.5
- parent: 2
- - uid: 29497
- components:
- - type: Transform
- pos: -104.5,-34.5
- parent: 2
- uid: 29511
components:
- type: Transform
@@ -174928,347 +198460,241 @@ entities:
- type: Transform
pos: -101.5,-31.5
parent: 2
- - uid: 29514
- components:
- - type: Transform
- pos: -106.5,-27.5
- parent: 2
- - uid: 29515
- components:
- - type: Transform
- pos: -112.5,-27.5
- parent: 2
- - uid: 29516
- components:
- - type: Transform
- pos: -114.5,-27.5
- parent: 2
- - uid: 29517
- components:
- - type: Transform
- pos: -112.5,-31.5
- parent: 2
- - uid: 29538
- components:
- - type: Transform
- pos: -112.5,-32.5
- parent: 2
- - uid: 29539
- components:
- - type: Transform
- pos: -116.5,-31.5
- parent: 2
- - uid: 29561
- components:
- - type: Transform
- pos: -118.5,-31.5
- parent: 2
- - uid: 29570
- components:
- - type: Transform
- pos: -119.5,-31.5
- parent: 2
- - uid: 29571
- components:
- - type: Transform
- pos: -108.5,-31.5
- parent: 2
- - uid: 29572
- components:
- - type: Transform
- pos: -119.5,-27.5
- parent: 2
- - uid: 29573
- components:
- - type: Transform
- pos: -120.5,-25.5
- parent: 2
- - uid: 29574
- components:
- - type: Transform
- pos: -120.5,-24.5
- parent: 2
- - uid: 29575
- components:
- - type: Transform
- pos: -119.5,-18.5
- parent: 2
- - uid: 29576
- components:
- - type: Transform
- pos: -115.5,-21.5
- parent: 2
- - uid: 29577
- components:
- - type: Transform
- pos: -119.5,-8.5
- parent: 2
- - uid: 29578
- components:
- - type: Transform
- pos: -115.5,-12.5
- parent: 2
- - uid: 29579
- components:
- - type: Transform
- pos: -114.5,-5.5
- parent: 2
- - uid: 29580
- components:
- - type: Transform
- pos: -119.5,-1.5
- parent: 2
- - uid: 29581
- components:
- - type: Transform
- pos: -120.5,-0.5
- parent: 2
- - uid: 29582
- components:
- - type: Transform
- pos: -119.5,0.5
- parent: 2
- - uid: 29583
- components:
- - type: Transform
- pos: -114.5,1.5
- parent: 2
- - uid: 29584
- components:
- - type: Transform
- pos: -115.5,5.5
- parent: 2
- - uid: 29585
- components:
- - type: Transform
- pos: -119.5,14.5
- parent: 2
- - uid: 29586
- components:
- - type: Transform
- pos: -119.5,10.5
- parent: 2
- - uid: 29587
- components:
- - type: Transform
- pos: -115.5,9.5
- parent: 2
- - uid: 29588
+ - uid: 29609
components:
- type: Transform
- pos: -120.5,17.5
+ pos: -128.5,67.5
parent: 2
- - uid: 29589
+ - uid: 29917
components:
- type: Transform
- pos: -119.5,17.5
+ pos: -123.5,68.5
parent: 2
- - uid: 29590
+ - uid: 30265
components:
- type: Transform
- pos: -115.5,20.5
+ pos: -121.5,67.5
parent: 2
- - uid: 29591
+ - uid: 30390
components:
- type: Transform
- pos: -114.5,19.5
+ pos: -93.5,81.5
parent: 2
- - uid: 29592
+ - uid: 30393
components:
- type: Transform
- pos: -120.5,25.5
+ pos: -116.5,67.5
parent: 2
- - uid: 29593
+ - uid: 30416
components:
- type: Transform
- pos: -119.5,29.5
+ pos: -115.5,67.5
parent: 2
- - uid: 29594
+ - uid: 30418
components:
- type: Transform
- pos: -120.5,28.5
+ pos: -104.5,65.5
parent: 2
- - uid: 29595
+ - uid: 30420
components:
- type: Transform
- pos: -114.5,30.5
+ pos: -96.5,68.5
parent: 2
- - uid: 29596
+ - uid: 30424
components:
- type: Transform
- pos: -120.5,33.5
+ pos: -61.5,76.5
parent: 2
- - uid: 29597
+ - uid: 30425
components:
- type: Transform
- pos: -118.5,33.5
+ pos: -92.5,88.5
parent: 2
- - uid: 29598
+ - uid: 31178
components:
- type: Transform
- pos: -129.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 91.5,5.5
parent: 2
- - uid: 29599
+ - uid: 32318
components:
- type: Transform
- pos: -127.5,33.5
+ pos: -94.5,64.5
parent: 2
- - uid: 29600
+ - uid: 34807
components:
- type: Transform
- pos: -129.5,35.5
+ pos: -113.5,36.5
parent: 2
- - uid: 29601
+ - uid: 35595
components:
- type: Transform
- pos: -128.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,16.5
parent: 2
- - uid: 29602
+ - uid: 35598
components:
- type: Transform
- pos: -112.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,10.5
parent: 2
- - uid: 29603
+ - uid: 35599
components:
- type: Transform
- pos: -119.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,18.5
parent: 2
- - uid: 29604
+ - uid: 35879
components:
- type: Transform
- pos: -118.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -118.5,-28.5
parent: 2
- - uid: 29605
+ - uid: 35968
components:
- type: Transform
- pos: -109.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -115.5,32.5
parent: 2
- - uid: 29606
+ - uid: 35978
components:
- type: Transform
- pos: -104.5,40.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,-20.5
parent: 2
- - uid: 29607
+ - uid: 36410
components:
- type: Transform
- pos: -129.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,36.5
parent: 2
- - uid: 29608
+ - uid: 36411
components:
- type: Transform
- pos: -127.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,29.5
parent: 2
- - uid: 29609
+ - uid: 36412
components:
- type: Transform
- pos: -128.5,67.5
+ rot: 3.141592653589793 rad
+ pos: -120.5,35.5
parent: 2
- - uid: 29880
+ - uid: 36413
components:
- type: Transform
- pos: 102.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -118.5,27.5
parent: 2
- - uid: 29881
+ - uid: 36418
components:
- type: Transform
- pos: 102.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -119.5,23.5
parent: 2
- - uid: 29882
+ - uid: 37236
components:
- type: Transform
- pos: 102.5,36.5
+ pos: -37.5,80.5
parent: 2
- - uid: 29884
+ - uid: 37437
components:
- type: Transform
- pos: 102.5,41.5
+ pos: -33.5,77.5
parent: 2
- - uid: 29885
+ - uid: 37441
components:
- type: Transform
- pos: 102.5,43.5
+ pos: -32.5,80.5
parent: 2
- - uid: 29886
+ - uid: 37446
components:
- type: Transform
- pos: 102.5,44.5
+ pos: -40.5,77.5
parent: 2
- - uid: 29887
+ - uid: 37447
components:
- type: Transform
- pos: 100.5,47.5
+ pos: -41.5,77.5
parent: 2
- - uid: 29888
+ - uid: 37872
components:
- type: Transform
- pos: 100.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 114.5,-22.5
parent: 2
- - uid: 29889
+ - uid: 37958
components:
- type: Transform
- pos: 99.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 106.5,-3.5
parent: 2
- - uid: 29890
+ - uid: 37959
components:
- type: Transform
- pos: 99.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 94.5,-3.5
parent: 2
- - uid: 29917
+ - uid: 38501
components:
- type: Transform
- pos: -123.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -124.5,54.5
parent: 2
- - uid: 30265
+ - uid: 38684
components:
- type: Transform
- pos: -121.5,67.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,58.5
parent: 2
- - uid: 30390
+ - uid: 38685
components:
- type: Transform
- pos: -93.5,81.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,63.5
parent: 2
- - uid: 30393
+ - uid: 38686
components:
- type: Transform
- pos: -116.5,67.5
+ rot: 3.141592653589793 rad
+ pos: -125.5,63.5
parent: 2
- - uid: 30416
+ - uid: 38725
components:
- type: Transform
- pos: -115.5,67.5
+ pos: -113.5,-42.5
parent: 2
- - uid: 30418
+ - uid: 38726
components:
- type: Transform
- pos: -104.5,65.5
+ pos: -106.5,-41.5
parent: 2
- - uid: 30420
+ - uid: 38727
components:
- type: Transform
- pos: -96.5,68.5
+ pos: -119.5,-42.5
parent: 2
- - uid: 30424
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 761
components:
- type: Transform
- pos: -61.5,76.5
+ pos: -38.5,74.5
parent: 2
- - uid: 30425
+ - uid: 770
components:
- type: Transform
- pos: -92.5,88.5
+ pos: -39.5,74.5
parent: 2
- - uid: 32318
+ - uid: 2202
components:
- type: Transform
- pos: -94.5,64.5
+ pos: 27.5,22.5
parent: 2
-- proto: ReinforcedPlasmaWindow
- entities:
- - uid: 2202
+ - uid: 2440
components:
- type: Transform
- pos: 27.5,22.5
+ pos: -50.5,53.5
parent: 2
- uid: 2839
components:
@@ -175325,21 +198751,6 @@ entities:
- type: Transform
pos: 40.5,52.5
parent: 2
- - uid: 4204
- components:
- - type: Transform
- pos: -33.5,52.5
- parent: 2
- - uid: 4217
- components:
- - type: Transform
- pos: -32.5,52.5
- parent: 2
- - uid: 4223
- components:
- - type: Transform
- pos: -31.5,52.5
- parent: 2
- uid: 4227
components:
- type: Transform
@@ -175400,25 +198811,15 @@ entities:
- type: Transform
pos: 55.5,25.5
parent: 2
- - uid: 4646
- components:
- - type: Transform
- pos: 92.5,39.5
- parent: 2
- - uid: 4647
- components:
- - type: Transform
- pos: 92.5,40.5
- parent: 2
- - uid: 4648
+ - uid: 4929
components:
- type: Transform
- pos: 92.5,41.5
+ pos: 6.5,69.5
parent: 2
- - uid: 4850
+ - uid: 4931
components:
- type: Transform
- pos: -113.5,41.5
+ pos: 12.5,69.5
parent: 2
- uid: 5540
components:
@@ -175430,6 +198831,11 @@ entities:
- type: Transform
pos: 43.5,52.5
parent: 2
+ - uid: 5940
+ components:
+ - type: Transform
+ pos: -22.5,40.5
+ parent: 2
- uid: 6100
components:
- type: Transform
@@ -175440,6 +198846,11 @@ entities:
- type: Transform
pos: 41.5,52.5
parent: 2
+ - uid: 6441
+ components:
+ - type: Transform
+ pos: 92.5,-15.5
+ parent: 2
- uid: 7639
components:
- type: Transform
@@ -175455,6 +198866,11 @@ entities:
- type: Transform
pos: -56.5,18.5
parent: 2
+ - uid: 8823
+ components:
+ - type: Transform
+ pos: -20.5,40.5
+ parent: 2
- uid: 8870
components:
- type: Transform
@@ -175480,6 +198896,11 @@ entities:
- type: Transform
pos: -59.5,21.5
parent: 2
+ - uid: 9039
+ components:
+ - type: Transform
+ pos: -25.5,40.5
+ parent: 2
- uid: 9044
components:
- type: Transform
@@ -175525,6 +198946,11 @@ entities:
- type: Transform
pos: 39.5,52.5
parent: 2
+ - uid: 9329
+ components:
+ - type: Transform
+ pos: -37.5,74.5
+ parent: 2
- uid: 9469
components:
- type: Transform
@@ -175585,20 +199011,25 @@ entities:
- type: Transform
pos: -39.5,52.5
parent: 2
- - uid: 9481
+ - uid: 9613
components:
- type: Transform
- pos: -37.5,52.5
+ pos: -56.5,17.5
parent: 2
- - uid: 9482
+ - uid: 11264
components:
- type: Transform
- pos: -37.5,47.5
+ pos: 92.5,-14.5
parent: 2
- - uid: 9613
+ - uid: 13251
components:
- type: Transform
- pos: -56.5,17.5
+ pos: 92.5,-16.5
+ parent: 2
+ - uid: 13271
+ components:
+ - type: Transform
+ pos: 92.5,-17.5
parent: 2
- uid: 13459
components:
@@ -175670,45 +199101,47 @@ entities:
- type: Transform
pos: 22.5,44.5
parent: 2
+ - uid: 15481
+ components:
+ - type: Transform
+ pos: -23.5,40.5
+ parent: 2
- uid: 15517
components:
- type: Transform
pos: -15.5,41.5
parent: 2
- - uid: 15631
+ - uid: 15699
components:
- type: Transform
- pos: -26.5,43.5
+ pos: -20.5,52.5
parent: 2
- - uid: 15670
+ - uid: 15705
components:
- type: Transform
- pos: -25.5,43.5
+ pos: -21.5,51.5
parent: 2
- - uid: 15671
+ - uid: 16171
components:
- type: Transform
- pos: -24.5,43.5
+ pos: -20.5,47.5
parent: 2
- uid: 16281
components:
- type: Transform
pos: -15.5,40.5
parent: 2
- - uid: 16528
- components:
- - type: Transform
- pos: -21.5,45.5
- parent: 2
- - uid: 16529
+ - uid: 16644
components:
- type: Transform
- pos: -17.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-18.5
parent: 2
- - uid: 16612
+ - uid: 16645
components:
- type: Transform
- pos: -30.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-16.5
parent: 2
- uid: 18000
components:
@@ -175720,125 +199153,22 @@ entities:
- type: Transform
pos: 11.5,69.5
parent: 2
- - uid: 18163
+ - uid: 18387
components:
- type: Transform
- pos: -113.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,10.5
parent: 2
- uid: 18388
components:
- type: Transform
pos: -59.5,47.5
parent: 2
- - uid: 18638
- components:
- - type: Transform
- pos: -103.5,57.5
- parent: 2
- - uid: 18641
- components:
- - type: Transform
- pos: -102.5,57.5
- parent: 2
- - uid: 18642
- components:
- - type: Transform
- pos: -104.5,57.5
- parent: 2
- - uid: 18643
- components:
- - type: Transform
- pos: -102.5,55.5
- parent: 2
- - uid: 18644
- components:
- - type: Transform
- pos: -103.5,55.5
- parent: 2
- - uid: 18645
- components:
- - type: Transform
- pos: -104.5,55.5
- parent: 2
- - uid: 18646
- components:
- - type: Transform
- pos: -104.5,45.5
- parent: 2
- - uid: 18647
- components:
- - type: Transform
- pos: -103.5,45.5
- parent: 2
- - uid: 18648
- components:
- - type: Transform
- pos: -102.5,45.5
- parent: 2
- - uid: 18649
- components:
- - type: Transform
- pos: -104.5,47.5
- parent: 2
- - uid: 18650
- components:
- - type: Transform
- pos: -103.5,47.5
- parent: 2
- - uid: 18651
- components:
- - type: Transform
- pos: -102.5,47.5
- parent: 2
- - uid: 18671
- components:
- - type: Transform
- pos: -104.5,53.5
- parent: 2
- - uid: 18672
- components:
- - type: Transform
- pos: -104.5,52.5
- parent: 2
- - uid: 18673
- components:
- - type: Transform
- pos: -104.5,51.5
- parent: 2
- - uid: 18674
- components:
- - type: Transform
- pos: -104.5,50.5
- parent: 2
- - uid: 18675
- components:
- - type: Transform
- pos: -104.5,49.5
- parent: 2
- - uid: 18676
- components:
- - type: Transform
- pos: -102.5,53.5
- parent: 2
- - uid: 18677
- components:
- - type: Transform
- pos: -102.5,52.5
- parent: 2
- - uid: 18678
- components:
- - type: Transform
- pos: -102.5,51.5
- parent: 2
- - uid: 18679
- components:
- - type: Transform
- pos: -102.5,50.5
- parent: 2
- - uid: 18680
+ - uid: 18389
components:
- type: Transform
- pos: -102.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -78.5,10.5
parent: 2
- uid: 18689
components:
@@ -175846,50 +199176,23 @@ entities:
rot: -1.5707963267948966 rad
pos: 70.5,20.5
parent: 2
- - uid: 18769
- components:
- - type: Transform
- pos: -112.5,60.5
- parent: 2
- - uid: 18770
- components:
- - type: Transform
- pos: -111.5,60.5
- parent: 2
- - uid: 18771
- components:
- - type: Transform
- pos: -121.5,52.5
- parent: 2
- - uid: 18772
- components:
- - type: Transform
- pos: -121.5,51.5
- parent: 2
- - uid: 18773
- components:
- - type: Transform
- pos: -121.5,50.5
- parent: 2
- - uid: 18774
- components:
- - type: Transform
- pos: -113.5,42.5
- parent: 2
- - uid: 18775
+ - uid: 19205
components:
- type: Transform
- pos: -112.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-17.5
parent: 2
- - uid: 18776
+ - uid: 19224
components:
- type: Transform
- pos: -111.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-15.5
parent: 2
- - uid: 19086
+ - uid: 19225
components:
- type: Transform
- pos: -95.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-14.5
parent: 2
- uid: 19654
components:
@@ -176021,15 +199324,15 @@ entities:
- type: Transform
pos: -35.5,68.5
parent: 2
- - uid: 19806
+ - uid: 19808
components:
- type: Transform
- pos: -45.5,67.5
+ pos: -17.5,57.5
parent: 2
- - uid: 19808
+ - uid: 21043
components:
- type: Transform
- pos: -17.5,57.5
+ pos: 92.5,-18.5
parent: 2
- uid: 22156
components:
@@ -176037,30 +199340,30 @@ entities:
rot: -1.5707963267948966 rad
pos: 70.5,17.5
parent: 2
- - uid: 22283
+ - uid: 22287
components:
- type: Transform
- pos: 4.5,62.5
+ pos: 9.5,63.5
parent: 2
- - uid: 22285
+ - uid: 22293
components:
- type: Transform
- pos: 4.5,58.5
+ pos: 10.5,63.5
parent: 2
- - uid: 22625
+ - uid: 22334
components:
- type: Transform
- pos: 29.5,44.5
+ pos: 8.5,63.5
parent: 2
- - uid: 22668
+ - uid: 22625
components:
- type: Transform
- pos: -9.5,33.5
+ pos: 29.5,44.5
parent: 2
- - uid: 22679
+ - uid: 23286
components:
- type: Transform
- pos: -9.5,34.5
+ pos: -19.5,52.5
parent: 2
- uid: 23785
components:
@@ -176082,25 +199385,130 @@ entities:
- type: Transform
pos: -18.5,43.5
parent: 2
- - uid: 26359
+ - uid: 25976
components:
- type: Transform
- pos: -33.5,36.5
+ pos: -21.5,50.5
+ parent: 2
+ - uid: 25993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,43.5
+ parent: 2
+ - uid: 25996
+ components:
+ - type: Transform
+ pos: -28.5,39.5
+ parent: 2
+ - uid: 26012
+ components:
+ - type: Transform
+ pos: -27.5,40.5
+ parent: 2
+ - uid: 26500
+ components:
+ - type: Transform
+ pos: -27.5,43.5
parent: 2
- uid: 26618
components:
- type: Transform
pos: -61.5,49.5
parent: 2
+ - uid: 26719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,39.5
+ parent: 2
+ - uid: 27407
+ components:
+ - type: Transform
+ pos: -25.5,43.5
+ parent: 2
+ - uid: 27551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,43.5
+ parent: 2
+ - uid: 27828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,43.5
+ parent: 2
+ - uid: 27829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,43.5
+ parent: 2
+ - uid: 27830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,43.5
+ parent: 2
+ - uid: 27831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,41.5
+ parent: 2
+ - uid: 27835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,41.5
+ parent: 2
+ - uid: 27836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,41.5
+ parent: 2
+ - uid: 27837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,41.5
+ parent: 2
- uid: 27846
components:
- type: Transform
pos: -61.5,48.5
parent: 2
- - uid: 27972
+ - uid: 27904
components:
- type: Transform
- pos: -18.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,39.5
+ parent: 2
+ - uid: 27905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,39.5
+ parent: 2
+ - uid: 27910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,45.5
+ parent: 2
+ - uid: 27911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,45.5
+ parent: 2
+ - uid: 27912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,45.5
parent: 2
- uid: 28140
components:
@@ -176137,6 +199545,27 @@ entities:
- type: Transform
pos: -55.5,48.5
parent: 2
+ - uid: 28884
+ components:
+ - type: Transform
+ pos: -27.5,52.5
+ parent: 2
+ - uid: 29123
+ components:
+ - type: Transform
+ pos: -25.5,52.5
+ parent: 2
+ - uid: 29132
+ components:
+ - type: Transform
+ pos: -19.5,47.5
+ parent: 2
+ - uid: 29790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,83.5
+ parent: 2
- uid: 30674
components:
- type: Transform
@@ -176162,158 +199591,53 @@ entities:
- type: Transform
pos: 10.5,69.5
parent: 2
- - uid: 31219
- components:
- - type: Transform
- pos: -94.5,55.5
- parent: 2
- - uid: 31222
- components:
- - type: Transform
- pos: -96.5,55.5
- parent: 2
- - uid: 31223
+ - uid: 35915
components:
- type: Transform
- pos: -112.5,41.5
+ pos: 74.5,83.5
parent: 2
- - uid: 32215
+ - uid: 35958
components:
- type: Transform
- pos: -96.5,56.5
+ pos: 68.5,83.5
parent: 2
- - uid: 32216
+ - uid: 36285
components:
- type: Transform
- pos: -95.5,56.5
- parent: 2
- - uid: 32217
- components:
- - type: Transform
- pos: -94.5,56.5
- parent: 2
- - uid: 32218
- components:
- - type: Transform
- pos: -94.5,46.5
- parent: 2
- - uid: 32219
- components:
- - type: Transform
- pos: -94.5,47.5
- parent: 2
- - uid: 32220
- components:
- - type: Transform
- pos: -95.5,46.5
- parent: 2
- - uid: 32221
- components:
- - type: Transform
- pos: -95.5,47.5
- parent: 2
- - uid: 32222
- components:
- - type: Transform
- pos: -96.5,46.5
- parent: 2
- - uid: 32223
- components:
- - type: Transform
- pos: -96.5,47.5
- parent: 2
- - uid: 32246
- components:
- - type: Transform
- pos: -111.5,41.5
- parent: 2
- - uid: 32249
- components:
- - type: Transform
- pos: -122.5,52.5
- parent: 2
- - uid: 32250
- components:
- - type: Transform
- pos: -122.5,51.5
- parent: 2
- - uid: 32251
- components:
- - type: Transform
- pos: -122.5,50.5
- parent: 2
- - uid: 32256
- components:
- - type: Transform
- pos: -111.5,61.5
- parent: 2
- - uid: 32257
- components:
- - type: Transform
- pos: -112.5,61.5
- parent: 2
- - uid: 32258
- components:
- - type: Transform
- pos: -113.5,61.5
- parent: 2
- - uid: 33718
- components:
- - type: Transform
- pos: -58.5,14.5
- parent: 2
- - uid: 33720
- components:
- - type: Transform
- pos: -57.5,14.5
- parent: 2
- - uid: 33725
- components:
- - type: Transform
- pos: -35.5,47.5
- parent: 2
- - uid: 33726
- components:
- - type: Transform
- pos: -59.5,14.5
- parent: 2
- - uid: 33727
- components:
- - type: Transform
- pos: -57.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,83.5
parent: 2
- - uid: 34979
+ - uid: 36664
components:
- type: Transform
- pos: -59.5,10.5
+ pos: 80.5,83.5
parent: 2
- - uid: 36115
+ - uid: 36665
components:
- type: Transform
- pos: -20.5,46.5
+ pos: 82.5,83.5
parent: 2
- - uid: 36116
+ - uid: 37188
components:
- type: Transform
- pos: -19.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -79.5,10.5
parent: 2
- - uid: 36468
+ - uid: 37223
components:
- type: Transform
- pos: -58.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -75.5,10.5
parent: 2
-- proto: ReinforcedPlasmaWindowDiagonal
- entities:
- - uid: 22539
+ - uid: 37309
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,69.5
+ pos: -36.5,74.5
parent: 2
- - uid: 22540
+ - uid: 37310
components:
- type: Transform
- pos: 6.5,69.5
+ pos: -35.5,74.5
parent: 2
- proto: ReinforcedUraniumWindow
entities:
@@ -176373,25 +199697,27 @@ entities:
rot: -1.5707963267948966 rad
pos: 70.5,19.5
parent: 2
- - uid: 738
+ - uid: 567
components:
- type: Transform
- pos: -7.5,-43.5
+ pos: 49.5,-35.5
parent: 2
- - uid: 812
+ - uid: 679
components:
- type: Transform
- pos: -30.5,-39.5
+ pos: 47.5,-35.5
parent: 2
- - uid: 1090
+ - uid: 810
components:
- type: Transform
- pos: -26.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-46.5
parent: 2
- - uid: 1096
+ - uid: 1051
components:
- type: Transform
- pos: -32.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,7.5
parent: 2
- uid: 1099
components:
@@ -176444,11 +199770,39 @@ entities:
rot: -1.5707963267948966 rad
pos: -108.5,9.5
parent: 2
+ - uid: 1315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,0.5
+ parent: 2
+ - uid: 1519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,60.5
+ parent: 2
- uid: 1762
components:
- type: Transform
pos: -44.5,-3.5
parent: 2
+ - uid: 1819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,7.5
+ parent: 2
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 15.5,19.5
+ parent: 2
+ - uid: 1822
+ components:
+ - type: Transform
+ pos: 16.5,19.5
+ parent: 2
- uid: 1892
components:
- type: Transform
@@ -176494,21 +199848,6 @@ entities:
- type: Transform
pos: -99.5,-14.5
parent: 2
- - uid: 2393
- components:
- - type: Transform
- pos: -11.5,-43.5
- parent: 2
- - uid: 2394
- components:
- - type: Transform
- pos: -12.5,-43.5
- parent: 2
- - uid: 2395
- components:
- - type: Transform
- pos: -10.5,-43.5
- parent: 2
- uid: 2457
components:
- type: Transform
@@ -176519,15 +199858,16 @@ entities:
- type: Transform
pos: -1.5,-48.5
parent: 2
- - uid: 2575
+ - uid: 2485
components:
- type: Transform
- pos: -1.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,59.5
parent: 2
- - uid: 2616
+ - uid: 2575
components:
- type: Transform
- pos: 22.5,47.5
+ pos: -1.5,-45.5
parent: 2
- uid: 2621
components:
@@ -176599,11 +199939,23 @@ entities:
- type: Transform
pos: -24.5,32.5
parent: 2
+ - uid: 2907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-32.5
+ parent: 2
- uid: 2956
components:
- type: Transform
pos: -98.5,-12.5
parent: 2
+ - uid: 3002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-30.5
+ parent: 2
- uid: 3028
components:
- type: Transform
@@ -176624,10 +199976,11 @@ entities:
- type: Transform
pos: 8.5,36.5
parent: 2
- - uid: 3163
+ - uid: 3069
components:
- type: Transform
- pos: -39.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-40.5
parent: 2
- uid: 3170
components:
@@ -176734,20 +200087,21 @@ entities:
- type: Transform
pos: 8.5,-40.5
parent: 2
- - uid: 3329
+ - uid: 3353
components:
- type: Transform
- pos: 16.5,-37.5
+ pos: 4.5,-48.5
parent: 2
- - uid: 3337
+ - uid: 3360
components:
- type: Transform
- pos: -42.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-31.5
parent: 2
- - uid: 3353
+ - uid: 3428
components:
- type: Transform
- pos: 4.5,-48.5
+ pos: 55.5,38.5
parent: 2
- uid: 3477
components:
@@ -176779,6 +200133,12 @@ entities:
- type: Transform
pos: 38.5,-35.5
parent: 2
+ - uid: 3490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-29.5
+ parent: 2
- uid: 3530
components:
- type: Transform
@@ -176799,6 +200159,12 @@ entities:
- type: Transform
pos: 32.5,-35.5
parent: 2
+ - uid: 3583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-46.5
+ parent: 2
- uid: 3627
components:
- type: Transform
@@ -176809,25 +200175,28 @@ entities:
- type: Transform
pos: -50.5,33.5
parent: 2
- - uid: 3695
+ - uid: 3703
components:
- type: Transform
- pos: -46.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-28.5
parent: 2
- - uid: 3697
+ - uid: 3829
components:
- type: Transform
- pos: -47.5,36.5
+ pos: 47.5,-32.5
parent: 2
- - uid: 3983
+ - uid: 3832
components:
- type: Transform
- pos: -35.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,58.5
parent: 2
- - uid: 4005
+ - uid: 4224
components:
- type: Transform
- pos: -37.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-45.5
parent: 2
- uid: 4600
components:
@@ -176854,6 +200223,22 @@ entities:
- type: Transform
pos: 65.5,25.5
parent: 2
+ - uid: 4680
+ components:
+ - type: Transform
+ pos: -67.5,31.5
+ parent: 2
+ - uid: 4684
+ components:
+ - type: Transform
+ pos: -69.5,31.5
+ parent: 2
+ - uid: 4700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-31.5
+ parent: 2
- uid: 5064
components:
- type: Transform
@@ -176914,6 +200299,12 @@ entities:
- type: Transform
pos: 71.5,1.5
parent: 2
+ - uid: 5241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,54.5
+ parent: 2
- uid: 5270
components:
- type: Transform
@@ -176937,6 +200328,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -107.5,-8.5
parent: 2
+ - uid: 5742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-32.5
+ parent: 2
- uid: 5822
components:
- type: Transform
@@ -177107,11 +200504,6 @@ entities:
- type: Transform
pos: -9.5,-52.5
parent: 2
- - uid: 5875
- components:
- - type: Transform
- pos: -9.5,-51.5
- parent: 2
- uid: 5876
components:
- type: Transform
@@ -177132,105 +200524,62 @@ entities:
- type: Transform
pos: 12.5,-52.5
parent: 2
- - uid: 5994
- components:
- - type: Transform
- pos: -46.5,32.5
- parent: 2
- - uid: 5995
- components:
- - type: Transform
- pos: -48.5,36.5
- parent: 2
- - uid: 5997
- components:
- - type: Transform
- pos: -48.5,32.5
- parent: 2
- - uid: 6184
- components:
- - type: Transform
- pos: 44.5,-35.5
- parent: 2
- - uid: 6419
- components:
- - type: Transform
- pos: 50.5,-35.5
- parent: 2
- - uid: 6426
- components:
- - type: Transform
- pos: 81.5,-0.5
- parent: 2
- - uid: 6428
- components:
- - type: Transform
- pos: 81.5,-2.5
- parent: 2
- - uid: 6429
- components:
- - type: Transform
- pos: 81.5,-4.5
- parent: 2
- - uid: 6431
- components:
- - type: Transform
- pos: 81.5,-6.5
- parent: 2
- - uid: 6440
+ - uid: 5950
components:
- type: Transform
- pos: 78.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-29.5
parent: 2
- - uid: 6444
+ - uid: 5994
components:
- type: Transform
- pos: 79.5,-16.5
+ pos: -46.5,32.5
parent: 2
- - uid: 6445
+ - uid: 5997
components:
- type: Transform
- pos: 80.5,-16.5
+ pos: -48.5,32.5
parent: 2
- - uid: 6446
+ - uid: 6184
components:
- type: Transform
- pos: 81.5,-16.5
+ pos: 44.5,-35.5
parent: 2
- - uid: 6449
+ - uid: 6272
components:
- type: Transform
- pos: 78.5,-19.5
+ pos: -46.5,38.5
parent: 2
- - uid: 6450
+ - uid: 6335
components:
- type: Transform
- pos: 78.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,59.5
parent: 2
- - uid: 6451
+ - uid: 6350
components:
- type: Transform
- pos: 78.5,-21.5
+ pos: 55.5,37.5
parent: 2
- - uid: 6452
+ - uid: 6440
components:
- type: Transform
- pos: 79.5,-14.5
+ pos: 78.5,-16.5
parent: 2
- - uid: 6453
+ - uid: 6449
components:
- type: Transform
- pos: 80.5,-14.5
+ pos: 78.5,-19.5
parent: 2
- - uid: 6454
+ - uid: 6450
components:
- type: Transform
- pos: 80.5,-18.5
+ pos: 78.5,-20.5
parent: 2
- - uid: 6455
+ - uid: 6451
components:
- type: Transform
- pos: 79.5,-18.5
+ pos: 78.5,-21.5
parent: 2
- uid: 6458
components:
@@ -177242,55 +200591,59 @@ entities:
- type: Transform
pos: 74.5,-22.5
parent: 2
- - uid: 6649
+ - uid: 6575
components:
- type: Transform
- pos: -9.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,35.5
parent: 2
- - uid: 6657
+ - uid: 6649
components:
- type: Transform
- pos: -8.5,-43.5
+ pos: -48.5,38.5
parent: 2
- - uid: 6737
+ - uid: 6667
components:
- type: Transform
- pos: -41.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-45.5
parent: 2
- - uid: 6738
+ - uid: 6732
components:
- type: Transform
- pos: -39.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-51.5
parent: 2
- - uid: 6739
+ - uid: 6742
components:
- type: Transform
- pos: -43.5,-45.5
+ pos: -24.5,-47.5
parent: 2
- - uid: 6747
+ - uid: 6762
components:
- type: Transform
- pos: -44.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-39.5
parent: 2
- - uid: 6754
+ - uid: 6768
components:
- type: Transform
- pos: -52.5,-43.5
+ pos: -16.5,-47.5
parent: 2
- - uid: 6760
+ - uid: 6770
components:
- type: Transform
- pos: -40.5,-45.5
+ pos: -25.5,-47.5
parent: 2
- uid: 6811
components:
- type: Transform
pos: -47.5,32.5
parent: 2
- - uid: 6817
+ - uid: 6824
components:
- type: Transform
- pos: -20.5,-41.5
+ pos: -7.5,-46.5
parent: 2
- uid: 6946
components:
@@ -177351,41 +200704,6 @@ entities:
rot: 3.141592653589793 rad
pos: -107.5,21.5
parent: 2
- - uid: 7278
- components:
- - type: Transform
- pos: -44.5,-37.5
- parent: 2
- - uid: 7279
- components:
- - type: Transform
- pos: -43.5,-37.5
- parent: 2
- - uid: 7280
- components:
- - type: Transform
- pos: -42.5,-37.5
- parent: 2
- - uid: 7281
- components:
- - type: Transform
- pos: -41.5,-37.5
- parent: 2
- - uid: 7282
- components:
- - type: Transform
- pos: -40.5,-37.5
- parent: 2
- - uid: 7283
- components:
- - type: Transform
- pos: -39.5,-37.5
- parent: 2
- - uid: 7284
- components:
- - type: Transform
- pos: -38.5,-37.5
- parent: 2
- uid: 7347
components:
- type: Transform
@@ -177396,21 +200714,11 @@ entities:
- type: Transform
pos: -43.5,4.5
parent: 2
- - uid: 7352
- components:
- - type: Transform
- pos: 47.5,12.5
- parent: 2
- uid: 7353
components:
- type: Transform
pos: 47.5,11.5
parent: 2
- - uid: 7354
- components:
- - type: Transform
- pos: 47.5,10.5
- parent: 2
- uid: 7355
components:
- type: Transform
@@ -177456,6 +200764,17 @@ entities:
- type: Transform
pos: -77.5,26.5
parent: 2
+ - uid: 7425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,55.5
+ parent: 2
+ - uid: 7567
+ components:
+ - type: Transform
+ pos: -19.5,59.5
+ parent: 2
- uid: 7860
components:
- type: Transform
@@ -177611,6 +200930,11 @@ entities:
- type: Transform
pos: -82.5,13.5
parent: 2
+ - uid: 7925
+ components:
+ - type: Transform
+ pos: 45.5,-35.5
+ parent: 2
- uid: 7975
components:
- type: Transform
@@ -177661,16 +200985,6 @@ entities:
- type: Transform
pos: -104.5,2.5
parent: 2
- - uid: 7992
- components:
- - type: Transform
- pos: -103.5,1.5
- parent: 2
- - uid: 7993
- components:
- - type: Transform
- pos: -102.5,1.5
- parent: 2
- uid: 8007
components:
- type: Transform
@@ -177886,35 +201200,31 @@ entities:
- type: Transform
pos: -98.5,-3.5
parent: 2
- - uid: 8400
- components:
- - type: Transform
- pos: 47.5,-4.5
- parent: 2
- - uid: 8432
+ - uid: 8292
components:
- type: Transform
- pos: -74.5,16.5
+ pos: 43.5,-35.5
parent: 2
- - uid: 8433
+ - uid: 8400
components:
- type: Transform
- pos: -74.5,15.5
+ pos: 47.5,-4.5
parent: 2
- - uid: 8434
+ - uid: 8694
components:
- type: Transform
- pos: -74.5,14.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,61.5
parent: 2
- - uid: 8614
+ - uid: 8730
components:
- type: Transform
- pos: -77.5,11.5
+ pos: -50.5,35.5
parent: 2
- - uid: 8730
+ - uid: 8734
components:
- type: Transform
- pos: -50.5,35.5
+ pos: -47.5,38.5
parent: 2
- uid: 8796
components:
@@ -177936,6 +201246,11 @@ entities:
- type: Transform
pos: -56.5,22.5
parent: 2
+ - uid: 8811
+ components:
+ - type: Transform
+ pos: -45.5,38.5
+ parent: 2
- uid: 8819
components:
- type: Transform
@@ -177961,6 +201276,17 @@ entities:
- type: Transform
pos: -58.5,33.5
parent: 2
+ - uid: 9093
+ components:
+ - type: Transform
+ pos: -6.5,-46.5
+ parent: 2
+ - uid: 9105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,6.5
+ parent: 2
- uid: 9235
components:
- type: Transform
@@ -177971,11 +201297,6 @@ entities:
- type: Transform
pos: -98.5,26.5
parent: 2
- - uid: 9237
- components:
- - type: Transform
- pos: 41.5,14.5
- parent: 2
- uid: 9246
components:
- type: Transform
@@ -178051,6 +201372,12 @@ entities:
- type: Transform
pos: -47.5,63.5
parent: 2
+ - uid: 9605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -58.5,36.5
+ parent: 2
- uid: 9644
components:
- type: Transform
@@ -178061,6 +201388,12 @@ entities:
- type: Transform
pos: -47.5,64.5
parent: 2
+ - uid: 10189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,16.5
+ parent: 2
- uid: 10381
components:
- type: Transform
@@ -178096,17 +201429,17 @@ entities:
- type: Transform
pos: 48.5,-35.5
parent: 2
- - uid: 11011
- components:
- - type: Transform
- pos: -17.5,-47.5
- parent: 2
- uid: 11152
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 70.5,16.5
parent: 2
+ - uid: 11393
+ components:
+ - type: Transform
+ pos: -19.5,62.5
+ parent: 2
- uid: 11418
components:
- type: Transform
@@ -178117,37 +201450,31 @@ entities:
- type: Transform
pos: -98.5,-10.5
parent: 2
- - uid: 11500
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -102.5,-0.5
- parent: 2
- uid: 11504
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -103.5,-1.5
parent: 2
- - uid: 11645
+ - uid: 11864
components:
- type: Transform
- pos: -49.5,-50.5
+ pos: -39.5,-39.5
parent: 2
- - uid: 11838
+ - uid: 11865
components:
- type: Transform
- pos: -52.5,-41.5
+ pos: -40.5,-39.5
parent: 2
- - uid: 11864
+ - uid: 11972
components:
- type: Transform
- pos: -39.5,-39.5
+ pos: 3.5,-21.5
parent: 2
- - uid: 11865
+ - uid: 12101
components:
- type: Transform
- pos: -40.5,-39.5
+ pos: 14.5,-20.5
parent: 2
- uid: 12144
components:
@@ -178159,40 +201486,49 @@ entities:
- type: Transform
pos: 44.5,-12.5
parent: 2
- - uid: 12710
+ - uid: 12220
components:
- type: Transform
- pos: 42.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,11.5
parent: 2
- - uid: 12921
+ - uid: 12343
components:
- type: Transform
- pos: 6.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-30.5
parent: 2
- - uid: 12963
+ - uid: 12708
components:
- type: Transform
- pos: 47.5,-10.5
+ pos: -66.5,31.5
parent: 2
- - uid: 13005
+ - uid: 12921
components:
- type: Transform
- pos: 43.5,14.5
+ pos: 6.5,57.5
parent: 2
- - uid: 13007
+ - uid: 12935
components:
- type: Transform
- pos: 42.5,12.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-18.5
parent: 2
- - uid: 13008
+ - uid: 12963
components:
- type: Transform
- pos: 43.5,12.5
+ pos: 47.5,-10.5
parent: 2
- - uid: 13009
+ - uid: 12974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-0.5
+ parent: 2
+ - uid: 12982
components:
- type: Transform
- pos: 41.5,12.5
+ pos: 25.5,-35.5
parent: 2
- uid: 13014
components:
@@ -178244,1907 +201580,2822 @@ entities:
- type: Transform
pos: -107.5,3.5
parent: 2
- - uid: 13024
+ - uid: 13024
+ components:
+ - type: Transform
+ pos: -106.5,2.5
+ parent: 2
+ - uid: 13026
+ components:
+ - type: Transform
+ pos: -91.5,-11.5
+ parent: 2
+ - uid: 13027
+ components:
+ - type: Transform
+ pos: -90.5,-13.5
+ parent: 2
+ - uid: 13028
+ components:
+ - type: Transform
+ pos: -89.5,-14.5
+ parent: 2
+ - uid: 13029
+ components:
+ - type: Transform
+ pos: -79.5,-14.5
+ parent: 2
+ - uid: 13030
+ components:
+ - type: Transform
+ pos: -78.5,-13.5
+ parent: 2
+ - uid: 13031
+ components:
+ - type: Transform
+ pos: -77.5,-11.5
+ parent: 2
+ - uid: 13177
+ components:
+ - type: Transform
+ pos: -47.5,65.5
+ parent: 2
+ - uid: 13254
+ components:
+ - type: Transform
+ pos: -107.5,27.5
+ parent: 2
+ - uid: 13255
+ components:
+ - type: Transform
+ pos: -106.5,27.5
+ parent: 2
+ - uid: 13256
+ components:
+ - type: Transform
+ pos: -106.5,28.5
+ parent: 2
+ - uid: 13257
+ components:
+ - type: Transform
+ pos: -102.5,31.5
+ parent: 2
+ - uid: 13258
+ components:
+ - type: Transform
+ pos: -106.5,29.5
+ parent: 2
+ - uid: 13259
+ components:
+ - type: Transform
+ pos: -105.5,29.5
+ parent: 2
+ - uid: 13260
+ components:
+ - type: Transform
+ pos: -104.5,30.5
+ parent: 2
+ - uid: 13261
+ components:
+ - type: Transform
+ pos: -101.5,31.5
+ parent: 2
+ - uid: 13262
+ components:
+ - type: Transform
+ pos: -103.5,30.5
+ parent: 2
+ - uid: 13263
+ components:
+ - type: Transform
+ pos: -103.5,31.5
+ parent: 2
+ - uid: 13264
+ components:
+ - type: Transform
+ pos: -105.5,30.5
+ parent: 2
+ - uid: 13265
+ components:
+ - type: Transform
+ pos: -100.5,31.5
+ parent: 2
+ - uid: 13273
+ components:
+ - type: Transform
+ pos: -41.5,-9.5
+ parent: 2
+ - uid: 13279
+ components:
+ - type: Transform
+ pos: -102.5,17.5
+ parent: 2
+ - uid: 13280
+ components:
+ - type: Transform
+ pos: -103.5,17.5
+ parent: 2
+ - uid: 13281
+ components:
+ - type: Transform
+ pos: -103.5,18.5
+ parent: 2
+ - uid: 13282
+ components:
+ - type: Transform
+ pos: -104.5,18.5
+ parent: 2
+ - uid: 13283
+ components:
+ - type: Transform
+ pos: -105.5,18.5
+ parent: 2
+ - uid: 13284
+ components:
+ - type: Transform
+ pos: -105.5,19.5
+ parent: 2
+ - uid: 13285
+ components:
+ - type: Transform
+ pos: -106.5,19.5
+ parent: 2
+ - uid: 13286
+ components:
+ - type: Transform
+ pos: -106.5,20.5
+ parent: 2
+ - uid: 13287
+ components:
+ - type: Transform
+ pos: -106.5,21.5
+ parent: 2
+ - uid: 13294
+ components:
+ - type: Transform
+ pos: -104.5,-1.5
+ parent: 2
+ - uid: 13295
+ components:
+ - type: Transform
+ pos: -105.5,-1.5
+ parent: 2
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: -105.5,-2.5
+ parent: 2
+ - uid: 13297
+ components:
+ - type: Transform
+ pos: -106.5,-2.5
+ parent: 2
+ - uid: 13298
+ components:
+ - type: Transform
+ pos: -106.5,-3.5
+ parent: 2
+ - uid: 13299
+ components:
+ - type: Transform
+ pos: -106.5,-4.5
+ parent: 2
+ - uid: 13301
+ components:
+ - type: Transform
+ pos: -107.5,-10.5
+ parent: 2
+ - uid: 13302
+ components:
+ - type: Transform
+ pos: -106.5,-10.5
+ parent: 2
+ - uid: 13303
+ components:
+ - type: Transform
+ pos: -106.5,-11.5
+ parent: 2
+ - uid: 13304
+ components:
+ - type: Transform
+ pos: -106.5,-12.5
+ parent: 2
+ - uid: 13305
+ components:
+ - type: Transform
+ pos: -105.5,-12.5
+ parent: 2
+ - uid: 13306
+ components:
+ - type: Transform
+ pos: -105.5,-13.5
+ parent: 2
+ - uid: 13307
+ components:
+ - type: Transform
+ pos: -104.5,-13.5
+ parent: 2
+ - uid: 13308
+ components:
+ - type: Transform
+ pos: -103.5,-13.5
+ parent: 2
+ - uid: 13309
+ components:
+ - type: Transform
+ pos: -103.5,-14.5
+ parent: 2
+ - uid: 13310
+ components:
+ - type: Transform
+ pos: -102.5,-14.5
+ parent: 2
+ - uid: 13311
+ components:
+ - type: Transform
+ pos: -101.5,-14.5
+ parent: 2
+ - uid: 13312
+ components:
+ - type: Transform
+ pos: -100.5,-14.5
+ parent: 2
+ - uid: 13388
+ components:
+ - type: Transform
+ pos: 56.5,-32.5
+ parent: 2
+ - uid: 13389
+ components:
+ - type: Transform
+ pos: 56.5,-36.5
+ parent: 2
+ - uid: 13395
+ components:
+ - type: Transform
+ pos: 58.5,-35.5
+ parent: 2
+ - uid: 13396
+ components:
+ - type: Transform
+ pos: 60.5,-32.5
+ parent: 2
+ - uid: 13397
+ components:
+ - type: Transform
+ pos: 61.5,-32.5
+ parent: 2
+ - uid: 13805
+ components:
+ - type: Transform
+ pos: 92.5,18.5
+ parent: 2
+ - uid: 13819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,26.5
+ parent: 2
+ - uid: 13937
+ components:
+ - type: Transform
+ pos: 19.5,60.5
+ parent: 2
+ - uid: 13938
+ components:
+ - type: Transform
+ pos: 17.5,60.5
+ parent: 2
+ - uid: 13940
+ components:
+ - type: Transform
+ pos: 27.5,57.5
+ parent: 2
+ - uid: 13945
+ components:
+ - type: Transform
+ pos: 7.5,57.5
+ parent: 2
+ - uid: 13946
+ components:
+ - type: Transform
+ pos: 8.5,57.5
+ parent: 2
+ - uid: 13947
+ components:
+ - type: Transform
+ pos: 9.5,57.5
+ parent: 2
+ - uid: 13961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,25.5
+ parent: 2
+ - uid: 13975
+ components:
+ - type: Transform
+ pos: 30.5,55.5
+ parent: 2
+ - uid: 13978
+ components:
+ - type: Transform
+ pos: 24.5,58.5
+ parent: 2
+ - uid: 14007
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 2
+ - uid: 14008
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 2
+ - uid: 14009
+ components:
+ - type: Transform
+ pos: 21.5,37.5
+ parent: 2
+ - uid: 14010
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 2
+ - uid: 14029
+ components:
+ - type: Transform
+ pos: 11.5,51.5
+ parent: 2
+ - uid: 14030
+ components:
+ - type: Transform
+ pos: 10.5,51.5
+ parent: 2
+ - uid: 14043
+ components:
+ - type: Transform
+ pos: 23.5,58.5
+ parent: 2
+ - uid: 14044
+ components:
+ - type: Transform
+ pos: 23.5,59.5
+ parent: 2
+ - uid: 14065
+ components:
+ - type: Transform
+ pos: 22.5,59.5
+ parent: 2
+ - uid: 14067
+ components:
+ - type: Transform
+ pos: 22.5,60.5
+ parent: 2
+ - uid: 14208
+ components:
+ - type: Transform
+ pos: 10.5,41.5
+ parent: 2
+ - uid: 14372
+ components:
+ - type: Transform
+ pos: -20.5,59.5
+ parent: 2
+ - uid: 14567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-46.5
+ parent: 2
+ - uid: 14593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,3.5
+ parent: 2
+ - uid: 14969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -69.5,4.5
+ parent: 2
+ - uid: 15183
+ components:
+ - type: Transform
+ pos: 21.5,-17.5
+ parent: 2
+ - uid: 15214
+ components:
+ - type: Transform
+ pos: -22.5,59.5
+ parent: 2
+ - uid: 15248
+ components:
+ - type: Transform
+ pos: -22.5,62.5
+ parent: 2
+ - uid: 15251
+ components:
+ - type: Transform
+ pos: -18.5,62.5
+ parent: 2
+ - uid: 15344
+ components:
+ - type: Transform
+ pos: -30.5,23.5
+ parent: 2
+ - uid: 15345
+ components:
+ - type: Transform
+ pos: -29.5,23.5
+ parent: 2
+ - uid: 15346
+ components:
+ - type: Transform
+ pos: -28.5,23.5
+ parent: 2
+ - uid: 15347
+ components:
+ - type: Transform
+ pos: -26.5,23.5
+ parent: 2
+ - uid: 15348
+ components:
+ - type: Transform
+ pos: -25.5,23.5
+ parent: 2
+ - uid: 15349
+ components:
+ - type: Transform
+ pos: -24.5,23.5
+ parent: 2
+ - uid: 15368
+ components:
+ - type: Transform
+ pos: -26.5,27.5
+ parent: 2
+ - uid: 15369
+ components:
+ - type: Transform
+ pos: -24.5,27.5
+ parent: 2
+ - uid: 15370
+ components:
+ - type: Transform
+ pos: -28.5,27.5
+ parent: 2
+ - uid: 15371
+ components:
+ - type: Transform
+ pos: -30.5,27.5
+ parent: 2
+ - uid: 15381
+ components:
+ - type: Transform
+ pos: -30.5,26.5
+ parent: 2
+ - uid: 15385
+ components:
+ - type: Transform
+ pos: -28.5,26.5
+ parent: 2
+ - uid: 15386
+ components:
+ - type: Transform
+ pos: -26.5,26.5
+ parent: 2
+ - uid: 15387
+ components:
+ - type: Transform
+ pos: -24.5,26.5
+ parent: 2
+ - uid: 15414
+ components:
+ - type: Transform
+ pos: -23.5,30.5
+ parent: 2
+ - uid: 15477
+ components:
+ - type: Transform
+ pos: -30.5,31.5
+ parent: 2
+ - uid: 15478
+ components:
+ - type: Transform
+ pos: -30.5,32.5
+ parent: 2
+ - uid: 15644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,8.5
+ parent: 2
+ - uid: 15760
+ components:
+ - type: Transform
+ pos: -47.5,66.5
+ parent: 2
+ - uid: 15789
+ components:
+ - type: Transform
+ pos: -9.5,37.5
+ parent: 2
+ - uid: 15893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,54.5
+ parent: 2
+ - uid: 16306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-0.5
+ parent: 2
+ - uid: 16369
+ components:
+ - type: Transform
+ pos: -12.5,69.5
+ parent: 2
+ - uid: 16392
+ components:
+ - type: Transform
+ pos: -12.5,74.5
+ parent: 2
+ - uid: 16404
+ components:
+ - type: Transform
+ pos: -12.5,71.5
+ parent: 2
+ - uid: 16445
+ components:
+ - type: Transform
+ pos: -11.5,42.5
+ parent: 2
+ - uid: 16485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-0.5
+ parent: 2
+ - uid: 17389
+ components:
+ - type: Transform
+ pos: 13.5,-20.5
+ parent: 2
+ - uid: 17564
+ components:
+ - type: Transform
+ pos: 14.5,19.5
+ parent: 2
+ - uid: 17719
+ components:
+ - type: Transform
+ pos: 15.5,-20.5
+ parent: 2
+ - uid: 17787
+ components:
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 2
+ - uid: 17819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -52.5,13.5
+ parent: 2
+ - uid: 17861
+ components:
+ - type: Transform
+ pos: -0.5,63.5
+ parent: 2
+ - uid: 18096
+ components:
+ - type: Transform
+ pos: -47.5,67.5
+ parent: 2
+ - uid: 18097
+ components:
+ - type: Transform
+ pos: -54.5,42.5
+ parent: 2
+ - uid: 18344
+ components:
+ - type: Transform
+ pos: -24.5,60.5
+ parent: 2
+ - uid: 18371
+ components:
+ - type: Transform
+ pos: -53.5,42.5
+ parent: 2
+ - uid: 19079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,4.5
+ parent: 2
+ - uid: 19081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,5.5
+ parent: 2
+ - uid: 19083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,5.5
+ parent: 2
+ - uid: 19157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,8.5
+ parent: 2
+ - uid: 19228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,3.5
+ parent: 2
+ - uid: 19232
+ components:
+ - type: Transform
+ pos: -38.5,-7.5
+ parent: 2
+ - uid: 19301
+ components:
+ - type: Transform
+ pos: 47.5,-3.5
+ parent: 2
+ - uid: 19343
+ components:
+ - type: Transform
+ pos: -81.5,-15.5
+ parent: 2
+ - uid: 19345
+ components:
+ - type: Transform
+ pos: -108.5,5.5
+ parent: 2
+ - uid: 19347
+ components:
+ - type: Transform
+ pos: -87.5,32.5
+ parent: 2
+ - uid: 19380
+ components:
+ - type: Transform
+ pos: -12.5,24.5
+ parent: 2
+ - uid: 19381
+ components:
+ - type: Transform
+ pos: -12.5,25.5
+ parent: 2
+ - uid: 19452
+ components:
+ - type: Transform
+ pos: 47.5,-1.5
+ parent: 2
+ - uid: 19453
+ components:
+ - type: Transform
+ pos: 47.5,-5.5
+ parent: 2
+ - uid: 19459
+ components:
+ - type: Transform
+ pos: -98.5,-11.5
+ parent: 2
+ - uid: 19480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,59.5
+ parent: 2
+ - uid: 19533
+ components:
+ - type: Transform
+ pos: -8.5,79.5
+ parent: 2
+ - uid: 19534
+ components:
+ - type: Transform
+ pos: -8.5,80.5
+ parent: 2
+ - uid: 19535
+ components:
+ - type: Transform
+ pos: -8.5,81.5
+ parent: 2
+ - uid: 19536
+ components:
+ - type: Transform
+ pos: -8.5,82.5
+ parent: 2
+ - uid: 19537
+ components:
+ - type: Transform
+ pos: -6.5,79.5
+ parent: 2
+ - uid: 19538
+ components:
+ - type: Transform
+ pos: -6.5,80.5
+ parent: 2
+ - uid: 19539
+ components:
+ - type: Transform
+ pos: -6.5,81.5
+ parent: 2
+ - uid: 19540
+ components:
+ - type: Transform
+ pos: -6.5,82.5
+ parent: 2
+ - uid: 19541
+ components:
+ - type: Transform
+ pos: -4.5,79.5
+ parent: 2
+ - uid: 19542
+ components:
+ - type: Transform
+ pos: -4.5,80.5
+ parent: 2
+ - uid: 19543
+ components:
+ - type: Transform
+ pos: -4.5,81.5
+ parent: 2
+ - uid: 19544
+ components:
+ - type: Transform
+ pos: -4.5,82.5
+ parent: 2
+ - uid: 19545
+ components:
+ - type: Transform
+ pos: -0.5,79.5
+ parent: 2
+ - uid: 19546
+ components:
+ - type: Transform
+ pos: -0.5,80.5
+ parent: 2
+ - uid: 19547
+ components:
+ - type: Transform
+ pos: -0.5,81.5
+ parent: 2
+ - uid: 19548
components:
- type: Transform
- pos: -106.5,2.5
+ pos: -0.5,82.5
parent: 2
- - uid: 13025
+ - uid: 19549
components:
- type: Transform
- pos: -104.5,1.5
+ pos: 1.5,79.5
parent: 2
- - uid: 13026
+ - uid: 19550
components:
- type: Transform
- pos: -91.5,-11.5
+ pos: 1.5,80.5
parent: 2
- - uid: 13027
+ - uid: 19551
components:
- type: Transform
- pos: -90.5,-13.5
+ pos: 1.5,81.5
parent: 2
- - uid: 13028
+ - uid: 19552
components:
- type: Transform
- pos: -89.5,-14.5
+ pos: 1.5,82.5
parent: 2
- - uid: 13029
+ - uid: 19553
components:
- type: Transform
- pos: -79.5,-14.5
+ pos: 3.5,79.5
parent: 2
- - uid: 13030
+ - uid: 19554
components:
- type: Transform
- pos: -78.5,-13.5
+ pos: 3.5,80.5
parent: 2
- - uid: 13031
+ - uid: 19555
components:
- type: Transform
- pos: -77.5,-11.5
+ pos: 3.5,81.5
parent: 2
- - uid: 13177
+ - uid: 19556
components:
- type: Transform
- pos: -47.5,65.5
+ pos: 3.5,82.5
parent: 2
- - uid: 13254
+ - uid: 19557
components:
- type: Transform
- pos: -107.5,27.5
+ pos: 7.5,79.5
parent: 2
- - uid: 13255
+ - uid: 19558
components:
- type: Transform
- pos: -106.5,27.5
+ pos: 7.5,80.5
parent: 2
- - uid: 13256
+ - uid: 19559
components:
- type: Transform
- pos: -106.5,28.5
+ pos: 7.5,81.5
parent: 2
- - uid: 13257
+ - uid: 19560
components:
- type: Transform
- pos: -102.5,31.5
+ pos: 7.5,82.5
parent: 2
- - uid: 13258
+ - uid: 19561
components:
- type: Transform
- pos: -106.5,29.5
+ pos: 9.5,79.5
parent: 2
- - uid: 13259
+ - uid: 19562
components:
- type: Transform
- pos: -105.5,29.5
+ pos: 9.5,80.5
parent: 2
- - uid: 13260
+ - uid: 19563
components:
- type: Transform
- pos: -104.5,30.5
+ pos: 9.5,81.5
parent: 2
- - uid: 13261
+ - uid: 19564
components:
- type: Transform
- pos: -101.5,31.5
+ pos: 9.5,82.5
parent: 2
- - uid: 13262
+ - uid: 19565
components:
- type: Transform
- pos: -103.5,30.5
+ pos: 11.5,79.5
parent: 2
- - uid: 13263
+ - uid: 19566
components:
- type: Transform
- pos: -103.5,31.5
+ pos: 11.5,80.5
parent: 2
- - uid: 13264
+ - uid: 19567
components:
- type: Transform
- pos: -105.5,30.5
+ pos: 11.5,81.5
parent: 2
- - uid: 13265
+ - uid: 19568
components:
- type: Transform
- pos: -100.5,31.5
+ pos: 11.5,82.5
parent: 2
- - uid: 13273
+ - uid: 19619
components:
- type: Transform
- pos: -41.5,-9.5
+ pos: 15.5,77.5
parent: 2
- - uid: 13279
+ - uid: 19620
components:
- type: Transform
- pos: -102.5,17.5
+ pos: 15.5,76.5
parent: 2
- - uid: 13280
+ - uid: 19621
components:
- type: Transform
- pos: -103.5,17.5
+ pos: 15.5,75.5
parent: 2
- - uid: 13281
+ - uid: 19622
components:
- type: Transform
- pos: -103.5,18.5
+ pos: 15.5,74.5
parent: 2
- - uid: 13282
+ - uid: 19623
components:
- type: Transform
- pos: -104.5,18.5
+ pos: -12.5,77.5
parent: 2
- - uid: 13283
+ - uid: 19624
components:
- type: Transform
- pos: -105.5,18.5
+ pos: -12.5,76.5
parent: 2
- - uid: 13284
+ - uid: 19625
components:
- type: Transform
- pos: -105.5,19.5
+ pos: -12.5,75.5
parent: 2
- - uid: 13285
+ - uid: 19756
components:
- type: Transform
- pos: -106.5,19.5
+ pos: -55.5,42.5
parent: 2
- - uid: 13286
+ - uid: 19771
components:
- type: Transform
- pos: -106.5,20.5
+ pos: -57.5,42.5
parent: 2
- - uid: 13287
+ - uid: 19773
components:
- type: Transform
- pos: -106.5,21.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,44.5
parent: 2
- - uid: 13294
+ - uid: 19815
components:
- type: Transform
- pos: -104.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,5.5
parent: 2
- - uid: 13295
+ - uid: 19842
components:
- type: Transform
- pos: -105.5,-1.5
+ pos: -12.5,70.5
parent: 2
- - uid: 13296
+ - uid: 19876
components:
- type: Transform
- pos: -105.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,27.5
parent: 2
- - uid: 13297
+ - uid: 19901
components:
- type: Transform
- pos: -106.5,-2.5
+ pos: 77.5,2.5
parent: 2
- - uid: 13298
+ - uid: 19902
components:
- type: Transform
- pos: -106.5,-3.5
+ pos: 77.5,3.5
parent: 2
- - uid: 13299
+ - uid: 19905
components:
- type: Transform
- pos: -106.5,-4.5
+ pos: -66.5,-18.5
parent: 2
- - uid: 13301
+ - uid: 19906
components:
- type: Transform
- pos: -107.5,-10.5
+ pos: -66.5,-14.5
parent: 2
- - uid: 13302
+ - uid: 19909
components:
- type: Transform
- pos: -106.5,-10.5
+ pos: -66.5,-15.5
parent: 2
- - uid: 13303
+ - uid: 19910
components:
- type: Transform
- pos: -106.5,-11.5
+ pos: -66.5,-17.5
parent: 2
- - uid: 13304
+ - uid: 20010
components:
- type: Transform
- pos: -106.5,-12.5
+ pos: 44.5,-32.5
parent: 2
- - uid: 13305
+ - uid: 20015
components:
- type: Transform
- pos: -105.5,-12.5
+ pos: -63.5,-17.5
parent: 2
- - uid: 13306
+ - uid: 20016
components:
- type: Transform
- pos: -105.5,-13.5
+ pos: -63.5,-18.5
parent: 2
- - uid: 13307
+ - uid: 20017
components:
- type: Transform
- pos: -104.5,-13.5
+ pos: -63.5,-15.5
parent: 2
- - uid: 13308
+ - uid: 20018
components:
- type: Transform
- pos: -103.5,-13.5
+ pos: -63.5,-14.5
parent: 2
- - uid: 13309
+ - uid: 20035
components:
- type: Transform
- pos: -103.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 43.5,10.5
parent: 2
- - uid: 13310
+ - uid: 20164
components:
- type: Transform
- pos: -102.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,44.5
parent: 2
- - uid: 13311
+ - uid: 20435
components:
- type: Transform
- pos: -101.5,-14.5
+ pos: -23.5,62.5
parent: 2
- - uid: 13312
+ - uid: 20490
components:
- type: Transform
- pos: -100.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,10.5
parent: 2
- - uid: 13388
+ - uid: 20600
components:
- type: Transform
- pos: 56.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,-15.5
parent: 2
- - uid: 13389
+ - uid: 20606
components:
- type: Transform
- pos: 56.5,-36.5
+ pos: -98.5,29.5
parent: 2
- - uid: 13390
+ - uid: 20852
components:
- type: Transform
- pos: 54.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,3.5
parent: 2
- - uid: 13391
+ - uid: 20944
components:
- type: Transform
- pos: 54.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: -81.5,32.5
parent: 2
- - uid: 13392
+ - uid: 20956
components:
- type: Transform
- pos: 54.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-23.5
parent: 2
- - uid: 13393
+ - uid: 20973
components:
- type: Transform
- pos: 58.5,-33.5
+ pos: -85.5,23.5
parent: 2
- - uid: 13394
+ - uid: 21338
components:
- type: Transform
- pos: 58.5,-34.5
+ pos: 12.5,19.5
parent: 2
- - uid: 13395
+ - uid: 21339
components:
- type: Transform
- pos: 58.5,-35.5
+ pos: 18.5,18.5
parent: 2
- - uid: 13396
+ - uid: 21899
components:
- type: Transform
- pos: 60.5,-32.5
+ pos: 25.5,-33.5
parent: 2
- - uid: 13397
+ - uid: 22068
components:
- type: Transform
- pos: 61.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,13.5
parent: 2
- - uid: 13805
+ - uid: 22165
components:
- type: Transform
- pos: 92.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,1.5
parent: 2
- - uid: 13937
+ - uid: 22365
components:
- type: Transform
- pos: 19.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,61.5
parent: 2
- - uid: 13938
+ - uid: 22652
components:
- type: Transform
- pos: 17.5,60.5
+ pos: 48.5,-32.5
parent: 2
- - uid: 13940
+ - uid: 22655
components:
- type: Transform
- pos: 27.5,57.5
+ pos: 49.5,-32.5
parent: 2
- - uid: 13945
+ - uid: 22687
components:
- type: Transform
- pos: 7.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,54.5
parent: 2
- - uid: 13946
+ - uid: 22690
components:
- type: Transform
- pos: 8.5,57.5
+ pos: -0.5,41.5
parent: 2
- - uid: 13947
+ - uid: 22691
components:
- type: Transform
- pos: 9.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,14.5
parent: 2
- - uid: 13958
+ - uid: 22719
components:
- type: Transform
- pos: 26.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -104.5,14.5
parent: 2
- - uid: 13959
+ - uid: 22721
components:
- type: Transform
- pos: 28.5,57.5
+ pos: 60.5,58.5
parent: 2
- - uid: 13975
+ - uid: 22723
components:
- type: Transform
- pos: 30.5,55.5
+ rot: 3.141592653589793 rad
+ pos: -106.5,13.5
parent: 2
- - uid: 13978
+ - uid: 22731
components:
- type: Transform
- pos: 24.5,58.5
+ pos: -83.5,23.5
parent: 2
- - uid: 14007
+ - uid: 22749
components:
- type: Transform
- pos: 21.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,5.5
parent: 2
- - uid: 14008
+ - uid: 22923
components:
- type: Transform
- pos: 21.5,38.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,44.5
parent: 2
- - uid: 14009
+ - uid: 23080
components:
- type: Transform
- pos: 21.5,37.5
+ pos: 12.5,-21.5
parent: 2
- - uid: 14010
+ - uid: 23232
components:
- type: Transform
- pos: 21.5,36.5
+ pos: -38.5,-39.5
parent: 2
- - uid: 14029
+ - uid: 23291
components:
- type: Transform
- pos: 11.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,10.5
parent: 2
- - uid: 14030
+ - uid: 23430
components:
- type: Transform
- pos: 10.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,5.5
parent: 2
- - uid: 14043
+ - uid: 23600
components:
- type: Transform
- pos: 23.5,58.5
+ pos: -28.5,51.5
parent: 2
- - uid: 14044
+ - uid: 23643
components:
- type: Transform
- pos: 23.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -58.5,34.5
parent: 2
- - uid: 14045
+ - uid: 23677
components:
- type: Transform
- pos: 13.5,59.5
+ pos: -0.5,45.5
parent: 2
- - uid: 14063
+ - uid: 23714
components:
- type: Transform
- pos: 13.5,58.5
+ pos: -58.5,42.5
parent: 2
- - uid: 14064
+ - uid: 23795
components:
- type: Transform
- pos: 12.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,18.5
parent: 2
- - uid: 14065
+ - uid: 24349
components:
- type: Transform
- pos: 22.5,59.5
+ pos: 13.5,19.5
parent: 2
- - uid: 14066
+ - uid: 24700
components:
- type: Transform
- pos: 14.5,59.5
+ pos: 3.5,-25.5
parent: 2
- - uid: 14067
+ - uid: 25059
components:
- type: Transform
- pos: 22.5,60.5
+ pos: 20.5,-17.5
parent: 2
- - uid: 14068
+ - uid: 25060
components:
- type: Transform
- pos: 14.5,60.5
+ pos: 19.5,-17.5
parent: 2
- - uid: 14131
+ - uid: 25242
components:
- type: Transform
- pos: 23.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,24.5
parent: 2
- - uid: 14192
+ - uid: 25249
components:
- type: Transform
- pos: 28.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-28.5
parent: 2
- - uid: 14208
+ - uid: 25303
components:
- type: Transform
- pos: 10.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,25.5
parent: 2
- - uid: 14209
+ - uid: 25308
components:
- type: Transform
- pos: 11.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,23.5
parent: 2
- - uid: 14256
+ - uid: 25798
components:
- type: Transform
- pos: 24.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,12.5
parent: 2
- - uid: 15121
+ - uid: 25805
components:
- type: Transform
- pos: 27.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-39.5
parent: 2
- - uid: 15344
+ - uid: 26295
components:
- type: Transform
- pos: -30.5,23.5
+ pos: 79.5,6.5
parent: 2
- - uid: 15345
+ - uid: 26344
components:
- type: Transform
- pos: -29.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,12.5
parent: 2
- - uid: 15346
+ - uid: 26384
components:
- type: Transform
- pos: -28.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,-15.5
parent: 2
- - uid: 15347
+ - uid: 26387
components:
- type: Transform
- pos: -26.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -84.5,32.5
parent: 2
- - uid: 15348
+ - uid: 26390
components:
- type: Transform
- pos: -25.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,-15.5
parent: 2
- - uid: 15349
+ - uid: 26411
components:
- type: Transform
- pos: -24.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,10.5
parent: 2
- - uid: 15368
+ - uid: 26423
components:
- type: Transform
- pos: -26.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,32.5
parent: 2
- - uid: 15369
+ - uid: 26575
components:
- type: Transform
- pos: -24.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-15.5
parent: 2
- - uid: 15370
+ - uid: 26576
components:
- type: Transform
- pos: -28.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -85.5,-15.5
parent: 2
- - uid: 15371
+ - uid: 26579
components:
- type: Transform
- pos: -30.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -82.5,32.5
parent: 2
- - uid: 15381
+ - uid: 26580
components:
- type: Transform
- pos: -30.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -83.5,32.5
parent: 2
- - uid: 15385
+ - uid: 26587
components:
- type: Transform
- pos: -28.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -107.5,22.5
parent: 2
- - uid: 15386
+ - uid: 26609
components:
- type: Transform
- pos: -26.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,39.5
parent: 2
- - uid: 15387
+ - uid: 26610
components:
- type: Transform
- pos: -24.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,40.5
parent: 2
- - uid: 15413
+ - uid: 26611
components:
- type: Transform
- pos: -23.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,41.5
parent: 2
- - uid: 15414
+ - uid: 26734
components:
- type: Transform
- pos: -23.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-37.5
parent: 2
- - uid: 15477
+ - uid: 26874
components:
- type: Transform
- pos: -30.5,31.5
+ pos: -15.5,-47.5
parent: 2
- - uid: 15478
+ - uid: 27507
components:
- type: Transform
- pos: -30.5,32.5
+ pos: -20.5,-49.5
parent: 2
- - uid: 15479
+ - uid: 27582
components:
- type: Transform
- pos: -30.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,56.5
parent: 2
- - uid: 15480
+ - uid: 27701
components:
- type: Transform
- pos: -29.5,35.5
+ pos: -70.5,32.5
parent: 2
- - uid: 15481
+ - uid: 27703
components:
- type: Transform
- pos: -28.5,35.5
+ pos: -70.5,33.5
parent: 2
- - uid: 15482
+ - uid: 27706
components:
- type: Transform
- pos: -26.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -68.5,31.5
parent: 2
- - uid: 15483
+ - uid: 27707
components:
- type: Transform
- pos: -25.5,35.5
+ pos: -70.5,36.5
parent: 2
- - uid: 15484
+ - uid: 28004
components:
- type: Transform
- pos: -24.5,35.5
+ pos: -70.5,35.5
parent: 2
- - uid: 15760
+ - uid: 28027
components:
- type: Transform
- pos: -47.5,66.5
+ pos: -70.5,34.5
parent: 2
- - uid: 15789
+ - uid: 28163
components:
- type: Transform
- pos: -9.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-39.5
parent: 2
- - uid: 15875
+ - uid: 28176
components:
- type: Transform
- pos: -2.5,61.5
+ pos: -43.5,-39.5
parent: 2
- - uid: 15876
+ - uid: 28216
components:
- type: Transform
- pos: -2.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-46.5
parent: 2
- - uid: 15878
+ - uid: 28511
components:
- type: Transform
- pos: -2.5,58.5
+ pos: 55.5,36.5
parent: 2
- - uid: 15904
+ - uid: 28549
components:
- type: Transform
- pos: -46.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,3.5
parent: 2
- - uid: 16369
+ - uid: 28587
components:
- type: Transform
- pos: -12.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,18.5
parent: 2
- - uid: 16392
+ - uid: 28595
components:
- type: Transform
- pos: -12.5,74.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,18.5
parent: 2
- - uid: 16404
+ - uid: 29074
components:
- type: Transform
- pos: -12.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,13.5
parent: 2
- - uid: 16445
+ - uid: 29143
components:
- type: Transform
- pos: -11.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,15.5
parent: 2
- - uid: 17787
+ - uid: 29187
components:
- type: Transform
- pos: 11.5,26.5
+ pos: -82.5,23.5
parent: 2
- - uid: 17861
+ - uid: 29230
components:
- type: Transform
- pos: -0.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,2.5
parent: 2
- - uid: 18078
+ - uid: 29271
components:
- type: Transform
- pos: -14.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,1.5
parent: 2
- - uid: 18079
+ - uid: 29285
components:
- type: Transform
- pos: -14.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,2.5
parent: 2
- - uid: 18096
+ - uid: 29295
components:
- type: Transform
- pos: -47.5,67.5
+ pos: -28.5,50.5
parent: 2
- - uid: 18097
+ - uid: 29297
components:
- type: Transform
- pos: -54.5,42.5
+ pos: -28.5,48.5
parent: 2
- - uid: 18371
+ - uid: 29304
components:
- type: Transform
- pos: -53.5,42.5
+ pos: 92.5,16.5
parent: 2
- - uid: 18622
+ - uid: 29497
components:
- type: Transform
- pos: -92.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-0.5
parent: 2
- - uid: 18623
+ - uid: 29514
components:
- type: Transform
- pos: -91.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-1.5
parent: 2
- - uid: 18624
+ - uid: 29539
components:
- type: Transform
- pos: -90.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-2.5
parent: 2
- - uid: 18625
+ - uid: 29541
components:
- type: Transform
- pos: -90.5,50.5
+ pos: -28.5,49.5
parent: 2
- - uid: 18626
+ - uid: 29664
components:
- type: Transform
- pos: -91.5,50.5
+ pos: 12.5,-23.5
parent: 2
- - uid: 18627
+ - uid: 29737
components:
- type: Transform
- pos: -92.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,7.5
parent: 2
- - uid: 19301
+ - uid: 29771
components:
- type: Transform
- pos: 47.5,-3.5
+ pos: 78.5,8.5
parent: 2
- - uid: 19343
+ - uid: 29834
components:
- type: Transform
- pos: -81.5,-15.5
+ pos: 89.5,14.5
parent: 2
- - uid: 19345
+ - uid: 29954
components:
- type: Transform
- pos: -108.5,5.5
+ pos: -42.5,-39.5
parent: 2
- - uid: 19347
+ - uid: 29959
components:
- type: Transform
- pos: -87.5,32.5
+ pos: -44.5,-39.5
parent: 2
- - uid: 19369
+ - uid: 29996
components:
- type: Transform
- pos: -52.5,-47.5
+ pos: 90.5,14.5
parent: 2
- - uid: 19380
+ - uid: 30018
components:
- type: Transform
- pos: -12.5,24.5
+ pos: 92.5,17.5
parent: 2
- - uid: 19381
+ - uid: 30022
components:
- type: Transform
- pos: -12.5,25.5
+ pos: 89.5,20.5
parent: 2
- - uid: 19383
+ - uid: 30023
components:
- type: Transform
- pos: -4.5,22.5
+ pos: 90.5,20.5
parent: 2
- - uid: 19452
+ - uid: 30363
components:
- type: Transform
- pos: 47.5,-1.5
+ pos: -25.5,47.5
parent: 2
- - uid: 19453
+ - uid: 30697
components:
- type: Transform
- pos: 47.5,-5.5
+ pos: -61.5,45.5
parent: 2
- - uid: 19459
+ - uid: 30698
components:
- type: Transform
- pos: -98.5,-11.5
+ pos: -61.5,46.5
parent: 2
- - uid: 19533
+ - uid: 30753
components:
- type: Transform
- pos: -8.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,17.5
parent: 2
- - uid: 19534
+ - uid: 30882
components:
- type: Transform
- pos: -8.5,80.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,8.5
parent: 2
- - uid: 19535
+ - uid: 30905
components:
- type: Transform
- pos: -8.5,81.5
+ pos: -27.5,47.5
parent: 2
- - uid: 19536
+ - uid: 31746
components:
- type: Transform
- pos: -8.5,82.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,18.5
parent: 2
- - uid: 19537
+ - uid: 31764
components:
- type: Transform
- pos: -6.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,18.5
parent: 2
- - uid: 19538
+ - uid: 33571
components:
- type: Transform
- pos: -6.5,80.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,28.5
parent: 2
- - uid: 19539
+ - uid: 33572
components:
- type: Transform
- pos: -6.5,81.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,28.5
parent: 2
- - uid: 19540
+ - uid: 33573
components:
- type: Transform
- pos: -6.5,82.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,28.5
parent: 2
- - uid: 19541
+ - uid: 33574
components:
- type: Transform
- pos: -4.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,28.5
parent: 2
- - uid: 19542
+ - uid: 33704
components:
- type: Transform
- pos: -4.5,80.5
+ pos: -15.5,33.5
parent: 2
- - uid: 19543
+ - uid: 33715
components:
- type: Transform
- pos: -4.5,81.5
+ pos: -7.5,-8.5
parent: 2
- - uid: 19544
+ - uid: 33716
components:
- type: Transform
- pos: -4.5,82.5
+ pos: -11.5,-6.5
parent: 2
- - uid: 19545
+ - uid: 34210
components:
- type: Transform
- pos: -0.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,58.5
parent: 2
- - uid: 19546
+ - uid: 34376
components:
- type: Transform
- pos: -0.5,80.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,2.5
parent: 2
- - uid: 19547
+ - uid: 34377
components:
- type: Transform
- pos: -0.5,81.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,3.5
parent: 2
- - uid: 19548
+ - uid: 34739
components:
- type: Transform
- pos: -0.5,82.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,-3.5
parent: 2
- - uid: 19549
+ - uid: 34926
components:
- type: Transform
- pos: 1.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-3.5
parent: 2
- - uid: 19550
+ - uid: 35602
components:
- type: Transform
- pos: 1.5,80.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,85.5
parent: 2
- - uid: 19551
+ - uid: 35603
components:
- type: Transform
- pos: 1.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,84.5
parent: 2
- - uid: 19552
+ - uid: 35604
components:
- type: Transform
- pos: 1.5,82.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,83.5
parent: 2
- - uid: 19553
+ - uid: 35609
components:
- type: Transform
- pos: 3.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,88.5
parent: 2
- - uid: 19554
+ - uid: 35611
components:
- type: Transform
- pos: 3.5,80.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,88.5
parent: 2
- - uid: 19555
+ - uid: 35613
components:
- type: Transform
- pos: 3.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,88.5
parent: 2
- - uid: 19556
+ - uid: 35890
components:
- type: Transform
- pos: 3.5,82.5
+ pos: -15.5,34.5
parent: 2
- - uid: 19557
+ - uid: 35946
components:
- type: Transform
- pos: 7.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,8.5
parent: 2
- - uid: 19558
+ - uid: 36111
components:
- type: Transform
- pos: 7.5,80.5
+ pos: -15.5,32.5
parent: 2
- - uid: 19559
+ - uid: 36232
components:
- type: Transform
- pos: 7.5,81.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,61.5
parent: 2
- - uid: 19560
+ - uid: 36389
components:
- type: Transform
- pos: 7.5,82.5
+ pos: -38.5,-9.5
parent: 2
- - uid: 19561
+ - uid: 36466
components:
- type: Transform
- pos: 9.5,79.5
+ pos: -7.5,-7.5
parent: 2
- - uid: 19562
+ - uid: 36904
components:
- type: Transform
- pos: 9.5,80.5
+ pos: 11.5,41.5
parent: 2
- - uid: 19563
+ - uid: 36962
components:
- type: Transform
- pos: 9.5,81.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,61.5
parent: 2
- - uid: 19564
+ - uid: 36966
components:
- type: Transform
- pos: 9.5,82.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,61.5
parent: 2
- - uid: 19565
+ - uid: 37281
components:
- type: Transform
- pos: 11.5,79.5
+ pos: -32.5,1.5
parent: 2
- - uid: 19566
+ - uid: 37282
components:
- type: Transform
- pos: 11.5,80.5
+ pos: -32.5,0.5
parent: 2
- - uid: 19567
+ - uid: 37415
components:
- type: Transform
- pos: 11.5,81.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,58.5
parent: 2
- - uid: 19568
+ - uid: 37416
components:
- type: Transform
- pos: 11.5,82.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,58.5
parent: 2
- - uid: 19619
+ - uid: 37417
components:
- type: Transform
- pos: 15.5,77.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,58.5
parent: 2
- - uid: 19620
+ - uid: 37660
components:
- type: Transform
- pos: 15.5,76.5
+ pos: -0.5,43.5
parent: 2
- - uid: 19621
+ - uid: 38111
components:
- type: Transform
- pos: 15.5,75.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-46.5
parent: 2
- - uid: 19622
+ - uid: 38112
components:
- type: Transform
- pos: 15.5,74.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-46.5
parent: 2
- - uid: 19623
+ - uid: 38851
components:
- type: Transform
- pos: -12.5,77.5
+ pos: -5.5,44.5
parent: 2
- - uid: 19624
+ - uid: 38863
components:
- type: Transform
- pos: -12.5,76.5
+ pos: -18.5,61.5
parent: 2
- - uid: 19625
+ - uid: 38875
components:
- type: Transform
- pos: -12.5,75.5
+ pos: -24.5,62.5
parent: 2
- - uid: 19756
+ - uid: 38877
components:
- type: Transform
- pos: -55.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,61.5
parent: 2
- - uid: 19771
+ - uid: 38881
components:
- type: Transform
- pos: -57.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,60.5
parent: 2
- - uid: 19842
+ - uid: 38893
components:
- type: Transform
- pos: -12.5,70.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-41.5
parent: 2
- - uid: 19897
+ - uid: 38894
components:
- type: Transform
- pos: 81.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-42.5
parent: 2
- - uid: 19898
+ - uid: 38895
components:
- type: Transform
- pos: 81.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-43.5
parent: 2
- - uid: 19901
+ - uid: 38936
components:
- type: Transform
- pos: 77.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,28.5
parent: 2
- - uid: 19902
+ - uid: 38937
components:
- type: Transform
- pos: 77.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -72.5,25.5
parent: 2
- - uid: 19905
+- proto: ReinforcedWindowDiagonal
+ entities:
+ - uid: 11280
components:
- type: Transform
- pos: -66.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,59.5
parent: 2
- - uid: 19906
+ - uid: 28746
components:
- type: Transform
- pos: -66.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,60.5
parent: 2
- - uid: 19909
+ - uid: 28943
components:
- type: Transform
- pos: -66.5,-15.5
+ pos: 7.5,18.5
parent: 2
- - uid: 19910
+- proto: RemoteSignaller
+ entities:
+ - uid: 18739
components:
+ - type: MetaData
+ name: door lock
- type: Transform
- pos: -66.5,-17.5
+ pos: 94.6388,74.76317
parent: 2
- - uid: 20009
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30104:
+ - Pressed: Toggle
+ - uid: 19332
components:
- type: Transform
- pos: 50.5,-32.5
+ pos: -54.21658,49.407204
parent: 2
- - uid: 20010
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25782:
+ - Pressed: Trigger
+ - uid: 23728
components:
+ - type: MetaData
+ name: dock lock
- type: Transform
- pos: 44.5,-32.5
+ pos: 94.42005,74.66942
parent: 2
- - uid: 20015
+ - type: DeviceLinkSource
+ linkedPorts:
+ 18764:
+ - Pressed: Toggle
+ 18749:
+ - Pressed: Toggle
+ 4830:
+ - Pressed: Toggle
+ - uid: 31177
components:
- type: Transform
- pos: -63.5,-17.5
+ pos: -69.39074,1.2561102
parent: 2
- - uid: 20016
+ - uid: 35713
components:
+ - type: MetaData
+ name: igniter remote 2
- type: Transform
- pos: -63.5,-18.5
+ pos: -37.270546,37.394592
parent: 2
- - uid: 20017
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35711:
+ - Pressed: Trigger
+ - uid: 35714
components:
+ - type: MetaData
+ name: igniter remote 1
- type: Transform
- pos: -63.5,-15.5
+ pos: -37.27836,37.73053
parent: 2
- - uid: 20018
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35712:
+ - Pressed: Trigger
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 4008
components:
- type: Transform
- pos: -63.5,-14.5
+ pos: 41.5,28.5
parent: 2
- - uid: 20600
+- proto: ReverseEngineeringMachine
+ entities:
+ - uid: 30669
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,-15.5
+ pos: 32.5,27.5
parent: 2
- - uid: 20606
+- proto: RevolverCapGun
+ entities:
+ - uid: 1317
components:
- type: Transform
- pos: -98.5,29.5
+ pos: -31.35418,-33.27407
parent: 2
- - uid: 20944
+ - uid: 1319
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -81.5,32.5
+ pos: -31.526054,-33.031883
parent: 2
- - uid: 20973
+ - uid: 30515
components:
- type: Transform
- pos: -85.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 0.33749866,66.66399
parent: 2
- - uid: 21017
+- proto: RiotBulletShield
+ entities:
+ - uid: 5116
components:
- type: Transform
- pos: -46.5,-48.5
+ pos: -23.659271,41.753593
parent: 2
- - uid: 21815
+ - type: Blocking
+ blockingToggleActionEntity: 28912
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 28912
+ - uid: 10263
components:
- type: Transform
- pos: -5.5,22.5
+ pos: -23.510834,41.480156
parent: 2
- - uid: 22068
+ - uid: 23207
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,13.5
+ pos: -23.354584,41.74578
parent: 2
- - uid: 22420
+- proto: RiotLaserShield
+ entities:
+ - uid: 10262
components:
- type: Transform
- pos: -6.5,22.5
+ pos: -23.417084,42.753593
parent: 2
- - uid: 22719
+ - uid: 10264
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,14.5
+ pos: -23.557709,42.64422
parent: 2
- - uid: 22721
+ - uid: 26512
components:
- type: Transform
- pos: 60.5,58.5
+ pos: -23.667084,42.74578
parent: 2
- - uid: 22723
+- proto: Roboisseur
+ entities:
+ - uid: 26694
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -106.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-16.5
parent: 2
- - uid: 22731
+- proto: RollerBed
+ entities:
+ - uid: 2064
components:
- type: Transform
- pos: -83.5,23.5
+ pos: 4.3534513,-2.0945592
parent: 2
- - uid: 23232
+ - uid: 2065
components:
- type: Transform
- pos: -38.5,-39.5
+ pos: -0.17779875,1.3351283
parent: 2
- - uid: 23544
+ - uid: 20291
components:
- type: Transform
- pos: -38.5,-45.5
+ pos: 17.471647,12.751869
parent: 2
- - uid: 23714
+ - uid: 39222
components:
- type: Transform
- pos: -58.5,42.5
+ pos: 4.9550138,-2.3679967
parent: 2
- - uid: 25242
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 19130
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,24.5
+ pos: 67.5,71.5
parent: 2
- - uid: 25303
+ - uid: 22229
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,25.5
+ pos: -105.5,49.5
parent: 2
- - uid: 25308
+ - uid: 29334
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,23.5
+ pos: 93.5,39.5
parent: 2
- - uid: 25798
+ - uid: 29335
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,12.5
+ pos: 74.5,81.5
parent: 2
- - uid: 26215
+ - uid: 34799
components:
- type: Transform
- pos: -20.5,38.5
+ pos: -101.5,53.5
parent: 2
- - uid: 26216
+ - uid: 35306
components:
- type: Transform
- pos: -24.5,38.5
+ pos: -109.5,44.5
parent: 2
- - uid: 26318
+ - uid: 36238
components:
- type: Transform
- pos: -26.5,38.5
+ pos: -102.5,46.5
parent: 2
- - uid: 26319
+- proto: SalvageFleshSpawner
+ entities:
+ - uid: 8228
components:
- type: Transform
- pos: -25.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,49.5
parent: 2
- - uid: 26329
+ - uid: 14359
components:
- type: Transform
- pos: -22.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,48.5
parent: 2
- - uid: 26334
+ - uid: 18573
components:
- type: Transform
- pos: -21.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,48.5
parent: 2
- - uid: 26384
+ - uid: 18939
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,-15.5
+ pos: -101.5,41.5
parent: 2
- - uid: 26387
+ - uid: 18940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -84.5,32.5
+ pos: -102.5,40.5
parent: 2
- - uid: 26390
+ - uid: 20593
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,-15.5
+ pos: -115.5,46.5
parent: 2
- - uid: 26411
+ - uid: 22220
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -108.5,10.5
+ pos: -117.5,47.5
parent: 2
- - uid: 26423
+ - uid: 22222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,32.5
+ pos: -109.5,52.5
parent: 2
- - uid: 26575
+ - uid: 22230
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-15.5
+ pos: -110.5,50.5
parent: 2
- - uid: 26576
+ - uid: 22241
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -85.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -108.5,50.5
parent: 2
- - uid: 26579
+ - uid: 32348
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -82.5,32.5
+ pos: -110.5,53.5
parent: 2
- - uid: 26580
+ - uid: 38214
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -83.5,32.5
+ pos: -111.5,51.5
parent: 2
- - uid: 26581
+ - uid: 38215
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -103.5,-0.5
+ pos: -107.5,56.5
parent: 2
- - uid: 26587
+ - uid: 38290
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -107.5,22.5
+ pos: -102.5,52.5
parent: 2
- - uid: 27954
+ - uid: 38730
components:
- type: Transform
- pos: -17.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -106.5,54.5
parent: 2
- - uid: 28174
+ - uid: 38731
components:
- type: Transform
- pos: -20.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: -115.5,48.5
parent: 2
- - uid: 28175
+- proto: SalvageHumanCorpseSpawner
+ entities:
+ - uid: 36714
components:
- type: Transform
- pos: -31.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 82.5,84.5
parent: 2
- - uid: 28176
+- proto: SalvageMagnet
+ entities:
+ - uid: 6685
components:
- type: Transform
- pos: -43.5,-39.5
+ pos: -34.5,-55.5
parent: 2
- - uid: 29001
+- proto: SalvageMagnetMachineCircuitboard
+ entities:
+ - uid: 35822
components:
- type: Transform
- pos: -7.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -49.27992,27.769905
parent: 2
- - uid: 29187
+- proto: SalvageMaterialCrateSpawner
+ entities:
+ - uid: 22238
components:
- type: Transform
- pos: -82.5,23.5
+ pos: -99.5,55.5
parent: 2
- - uid: 29304
+ - uid: 32347
components:
- type: Transform
- pos: 92.5,16.5
+ pos: -109.5,58.5
parent: 2
- - uid: 29813
+- proto: SalvagePartsSpawnerLow
+ entities:
+ - uid: 19146
components:
- type: Transform
- pos: 91.5,56.5
+ pos: -110.5,56.5
parent: 2
- - uid: 29814
+ - uid: 22244
components:
- type: Transform
- pos: 91.5,55.5
+ pos: -103.5,54.5
parent: 2
- - uid: 29815
+ - uid: 32379
components:
- type: Transform
- pos: 91.5,54.5
+ pos: -110.5,49.5
parent: 2
- - uid: 29816
+ - uid: 36451
components:
- type: Transform
- pos: 90.5,53.5
+ pos: -107.5,48.5
parent: 2
- - uid: 29817
+- proto: SalvagePartsSpawnerMid
+ entities:
+ - uid: 3697
components:
- type: Transform
- pos: 89.5,53.5
+ pos: -111.5,42.5
parent: 2
- - uid: 29818
+ - uid: 3717
components:
- type: Transform
- pos: 89.5,57.5
+ pos: -101.5,40.5
parent: 2
- - uid: 29819
+ - uid: 4556
components:
- type: Transform
- pos: 90.5,57.5
+ pos: -114.5,56.5
parent: 2
- - uid: 29834
+ - uid: 22221
components:
- type: Transform
- pos: 89.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,52.5
parent: 2
- - uid: 29954
+ - uid: 38227
components:
- type: Transform
- pos: -42.5,-39.5
+ pos: -104.5,53.5
parent: 2
- - uid: 29959
+ - uid: 38690
components:
- type: Transform
- pos: -44.5,-39.5
+ pos: -105.5,56.5
parent: 2
- - uid: 29962
+- proto: Saw
+ entities:
+ - uid: 3993
components:
- type: Transform
- pos: -52.5,-42.5
+ pos: 61.397247,56.450893
parent: 2
- - uid: 29996
+ - uid: 11480
components:
- type: Transform
- pos: 90.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -16.81246,-0.46133184
parent: 2
- - uid: 30018
+- proto: Scalpel
+ entities:
+ - uid: 20307
components:
- type: Transform
- pos: 92.5,17.5
+ pos: -22.769842,-0.4947375
parent: 2
- - uid: 30022
+ - uid: 35989
components:
- type: Transform
- pos: 89.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 66.64422,81.415405
parent: 2
- - uid: 30023
+ - uid: 35991
components:
- type: Transform
- pos: 90.5,20.5
+ rot: 3.141592653589793 rad
+ pos: 66.44109,81.68103
parent: 2
- - uid: 30254
+- proto: ScalpelShiv
+ entities:
+ - uid: 36789
components:
- type: Transform
- pos: -40.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 72.173744,63.180843
parent: 2
- - uid: 30278
+- proto: Screen
+ entities:
+ - uid: 1834
components:
- type: Transform
- pos: -76.5,11.5
+ pos: -0.5,8.5
parent: 2
- - uid: 30297
+ - uid: 2755
components:
- type: Transform
- pos: -78.5,11.5
+ pos: -6.5,56.5
parent: 2
- - uid: 30298
+ - uid: 16657
components:
- type: Transform
- pos: -79.5,11.5
+ pos: -3.5,72.5
parent: 2
- - uid: 30697
+ - uid: 25096
components:
- type: Transform
- pos: -61.5,45.5
+ pos: 7.5,-49.5
parent: 2
- - uid: 30698
+ - uid: 25187
components:
- type: Transform
- pos: -61.5,46.5
+ pos: -4.5,-49.5
parent: 2
- - uid: 31620
+ - uid: 25418
components:
- type: Transform
- pos: 81.5,72.5
+ pos: 8.5,47.5
parent: 2
- - uid: 31621
+ - uid: 26879
components:
- type: Transform
- pos: 81.5,71.5
+ pos: -0.5,24.5
parent: 2
- - uid: 31622
+ - uid: 36405
components:
- type: Transform
- pos: 81.5,70.5
+ pos: -15.5,18.5
parent: 2
- - uid: 31623
+ - uid: 36939
components:
- type: Transform
- pos: 82.5,73.5
+ pos: -15.5,51.5
parent: 2
- - uid: 31624
+- proto: Screwdriver
+ entities:
+ - uid: 13391
components:
- type: Transform
- pos: 83.5,73.5
+ pos: 20.487843,-25.602575
parent: 2
- - uid: 31625
+ - uid: 30745
components:
- type: Transform
- pos: 84.5,73.5
+ pos: 5.529853,64.83037
parent: 2
- - uid: 31626
+ - uid: 32042
components:
- type: Transform
- pos: 85.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: -10.227475,31.679127
parent: 2
- - uid: 31627
+ - uid: 38840
components:
- type: Transform
- pos: 85.5,71.5
+ pos: 10.653106,58.48732
parent: 2
- - uid: 31628
+- proto: SecBreachingHammer
+ entities:
+ - uid: 16541
components:
- type: Transform
- pos: 85.5,70.5
+ pos: -26.344074,37.36297
parent: 2
- - uid: 31718
+ - uid: 16556
components:
- type: Transform
- pos: -22.5,-45.5
+ pos: -26.680012,37.43328
parent: 2
- - uid: 31719
+- proto: SecurityTechFab
+ entities:
+ - uid: 6527
components:
- type: Transform
- pos: -23.5,-45.5
+ pos: -10.5,35.5
parent: 2
- - uid: 31720
+- proto: SecurityWhistle
+ entities:
+ - uid: 12312
components:
- type: Transform
- pos: -24.5,-45.5
+ pos: 4.786683,-21.79053
parent: 2
- - uid: 31721
+ - uid: 16426
components:
- type: Transform
- pos: -25.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -1.7549825,45.51517
parent: 2
- - uid: 31722
+ - uid: 17385
components:
- type: Transform
- pos: -26.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 7.927308,-20.399904
parent: 2
- - uid: 31723
+ - uid: 22670
components:
- type: Transform
- pos: -27.5,-45.5
+ pos: -1.4893575,45.64017
parent: 2
- - uid: 33715
+- proto: SeedExtractor
+ entities:
+ - uid: 6626
components:
- type: Transform
- pos: -7.5,-8.5
+ pos: -30.5,62.5
parent: 2
- - uid: 33716
+ - uid: 7420
components:
- type: Transform
- pos: -11.5,-6.5
+ pos: -55.5,2.5
parent: 2
- - uid: 34035
+- proto: SeedExtractorMachineCircuitboard
+ entities:
+ - uid: 35823
components:
- type: Transform
- pos: -38.5,-9.5
+ pos: -48.736313,27.502619
parent: 2
- - uid: 36082
+- proto: ShadowTree01
+ entities:
+ - uid: 3376
components:
- type: Transform
- pos: -37.5,-9.5
+ pos: -29.984224,0.58970785
parent: 2
- - uid: 36466
+ - uid: 12480
components:
- type: Transform
- pos: -7.5,-7.5
+ pos: -69.236984,33.44146
parent: 2
-- proto: ReinforcedWindowDiagonal
+- proto: ShadowTree02
entities:
- - uid: 11280
+ - uid: 10125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 31.427204,54.33744
parent: 2
- - uid: 20318
+ - uid: 12073
components:
- type: Transform
- pos: 13.5,60.5
+ pos: 20.674809,-30.533852
parent: 2
- - uid: 28491
+ - uid: 20518
components:
- type: Transform
- pos: 12.5,59.5
+ pos: -65.75261,33.058647
parent: 2
- - uid: 28746
+ - uid: 20945
+ components:
+ - type: Transform
+ pos: 50.24563,-30.892014
+ parent: 2
+ - uid: 36955
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,60.5
+ pos: -8.584565,46.419033
parent: 2
-- proto: RemoteSignaller
+- proto: ShadowTree03
entities:
- - uid: 19332
+ - uid: 4685
components:
- type: Transform
- pos: -54.21658,49.407204
+ pos: -65.69011,35.980522
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 25782:
- - Pressed: Trigger
- - uid: 29772
+ - uid: 13005
components:
- type: Transform
- pos: 86.6962,58.53138
+ rot: 1.5707963267948966 rad
+ pos: 45.734314,11.295286
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29746:
- - Pressed: Toggle
- 29749:
- - Pressed: Toggle
- 29748:
- - Pressed: Toggle
- - uid: 29775
+- proto: ShadowTree04
+ entities:
+ - uid: 799
components:
- type: Transform
- pos: 86.72745,61.84388
+ rot: 3.141592653589793 rad
+ pos: -35.53171,72.672165
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29768:
- - Pressed: Toggle
- - uid: 31177
+ - uid: 5308
components:
- type: Transform
- pos: -69.39074,1.2561102
+ rot: 1.5707963267948966 rad
+ pos: 43.7265,15.310911
parent: 2
- - uid: 35713
+ - uid: 10127
components:
- - type: MetaData
- name: igniter remote 2
- type: Transform
- pos: -37.270546,37.394592
+ rot: 3.141592653589793 rad
+ pos: 31.778767,57.08744
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 35711:
- - Pressed: Trigger
- - uid: 35714
+ - uid: 12077
components:
- - type: MetaData
- name: igniter remote 1
- type: Transform
- pos: -37.27836,37.73053
+ pos: 14.7373085,-29.385414
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 35712:
- - Pressed: Trigger
-- proto: ResearchAndDevelopmentServer
- entities:
- - uid: 4008
+ - uid: 21109
components:
- type: Transform
- pos: 41.5,28.5
+ pos: 46.87844,-31.376389
parent: 2
-- proto: ReverseEngineeringMachine
- entities:
- - uid: 30669
+ - uid: 22613
components:
- type: Transform
- pos: 32.5,27.5
+ pos: -69.46355,35.183647
parent: 2
-- proto: RevolverCapGun
- entities:
- - uid: 30515
+ - uid: 33598
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.33749866,66.66399
+ pos: 76.145,58.45787
parent: 2
-- proto: RightArmSkeleton
- entities:
- - uid: 33564
+ - uid: 37276
components:
- type: Transform
- pos: 91.12259,27.50425
+ pos: -31.40168,3.79151
parent: 2
-- proto: RightFootSkeleton
+- proto: ShadowTree05
entities:
- - uid: 33562
+ - uid: 673
components:
- type: Transform
- pos: 91.57869,26.597147
+ rot: 3.141592653589793 rad
+ pos: -35.9614,69.35185
parent: 2
-- proto: RightHandSkeleton
- entities:
- - uid: 33561
+ - uid: 12946
components:
- type: Transform
- pos: 91.15384,27.4105
+ rot: 1.5707963267948966 rad
+ pos: 46.78119,12.389036
parent: 2
-- proto: RightLegSkeleton
- entities:
- - uid: 33563
+ - uid: 22370
components:
- type: Transform
- pos: 91.625565,26.628397
+ pos: 6.3908415,44.54611
parent: 2
-- proto: RiotBulletShield
- entities:
- - uid: 5116
+ - uid: 25054
components:
- type: Transform
- pos: -21.559855,48.603073
+ pos: -42.23135,21.623549
parent: 2
- - type: Blocking
- blockingToggleActionEntity: 28912
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 28912
- - uid: 15524
+ - uid: 33234
components:
- type: Transform
- pos: -21.372355,48.415573
+ rot: 3.141592653589793 rad
+ pos: 80.50109,58.952194
parent: 2
- - type: Blocking
- blockingToggleActionEntity: 28913
- - type: ActionsContainer
- - type: ContainerContainer
- containers:
- actions: !type:Container
- ents:
- - 28913
-- proto: RiotShield
- entities:
- - uid: 16523
+ - uid: 37277
components:
- type: Transform
- pos: -20.682251,45.644035
+ pos: -28.796724,0.98494244
parent: 2
- - uid: 16524
+ - uid: 37279
components:
- type: Transform
- pos: -20.229126,45.59716
+ pos: -29.003242,4.5024476
parent: 2
-- proto: Roboisseur
+- proto: ShadowTree06
entities:
- - uid: 26694
+ - uid: 669
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -39.547337,70.28935
parent: 2
-- proto: RollerBed
- entities:
- - uid: 2064
+ - uid: 10126
components:
- type: Transform
- pos: -3.4424314,-2.3650932
+ rot: 3.141592653589793 rad
+ pos: 35.520954,53.71244
parent: 2
- - uid: 2065
+ - uid: 12076
components:
- type: Transform
- pos: -2.4229002,-2.3885307
+ pos: 20.182621,-32.5026
parent: 2
-- proto: SalvageMagnet
- entities:
- - uid: 8359
+ - uid: 37167
components:
- type: Transform
- pos: -19.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 76.79538,56.597992
parent: 2
-- proto: SalvageMagnetMachineCircuitboard
- entities:
- - uid: 35822
+ - uid: 38918
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -49.27992,27.769905
+ pos: 11.556456,-43.622894
parent: 2
-- proto: Saw
+- proto: ShardGlass
entities:
- - uid: 2120
+ - uid: 7008
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.324295,9.645422
+ pos: -30.115973,-32.023853
parent: 2
- - uid: 3993
+ - uid: 7058
components:
- type: Transform
- pos: 61.397247,56.450893
+ pos: -29.29566,-32.24651
parent: 2
- - uid: 11480
+ - uid: 7059
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.81246,-0.46133184
+ pos: -26.237066,-35.855885
parent: 2
-- proto: Scalpel
- entities:
- - uid: 20307
+ - uid: 7060
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.511127,-0.548332
+ pos: -26.647223,-36.27776
parent: 2
-- proto: Screen
- entities:
- - uid: 1834
+ - uid: 7062
components:
- type: Transform
- pos: -0.5,8.5
+ pos: -31.686287,-37.625416
parent: 2
- - uid: 6292
+ - uid: 7063
components:
- type: Transform
- pos: -6.5,57.5
+ pos: -33.17457,-31.519947
parent: 2
- - uid: 16657
+ - uid: 7064
components:
- type: Transform
- pos: -3.5,72.5
+ pos: -31.381598,-31.144947
parent: 2
- - uid: 25088
+ - uid: 7065
components:
- type: Transform
- pos: -12.5,-22.5
+ pos: -31.451912,-30.74651
parent: 2
- - uid: 25096
+ - uid: 7066
components:
- type: Transform
- pos: 7.5,-49.5
+ pos: -32.295662,-35.480885
parent: 2
- - uid: 25187
+ - uid: 32298
components:
- type: Transform
- pos: -4.5,-49.5
+ pos: -106.18157,52.081886
parent: 2
- - uid: 25418
+ - uid: 32299
components:
- type: Transform
- pos: 8.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -105.11907,54.269386
parent: 2
- - uid: 26879
+ - uid: 32339
components:
- type: Transform
- pos: -0.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -109.02532,50.84751
parent: 2
- - uid: 27110
+ - uid: 32349
components:
- type: Transform
- pos: -27.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -109.3222,51.175636
parent: 2
- - uid: 36405
+ - uid: 32350
components:
- type: Transform
- pos: -15.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -109.86907,56.00376
parent: 2
-- proto: Screwdriver
- entities:
- - uid: 28027
+ - uid: 32352
components:
- type: Transform
- pos: -68.461975,33.55795
+ pos: -105.77532,51.894386
parent: 2
- - uid: 30745
+ - uid: 36033
components:
- type: Transform
- pos: 5.529853,64.83037
+ rot: -1.5707963267948966 rad
+ pos: 66.43081,80.85431
parent: 2
-- proto: SecBreachingHammer
- entities:
- - uid: 16541
+ - uid: 36034
components:
- type: Transform
- pos: -20.617142,48.735115
+ rot: -1.5707963267948966 rad
+ pos: 66.05581,80.432434
parent: 2
- - uid: 16556
+ - uid: 36035
components:
- type: Transform
- pos: -20.406204,48.56324
+ rot: 1.5707963267948966 rad
+ pos: 73.290184,81.72931
parent: 2
-- proto: SecurityTechFab
- entities:
- - uid: 28918
+ - uid: 36036
components:
- type: Transform
- pos: -28.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 74.383934,84.47931
parent: 2
-- proto: SeedExtractor
- entities:
- - uid: 6626
+ - uid: 36037
components:
- type: Transform
- pos: -30.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 74.68081,84.26056
parent: 2
- - uid: 7420
+ - uid: 36038
components:
- type: Transform
- pos: -55.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 68.39956,85.619934
parent: 2
-- proto: SeedExtractorMachineCircuitboard
- entities:
- - uid: 35823
+ - uid: 36854
components:
- type: Transform
- pos: -48.736313,27.502619
+ rot: -1.5707963267948966 rad
+ pos: 66.8427,69.07924
parent: 2
-- proto: ShardGlass
- entities:
- - uid: 7008
+ - uid: 36855
components:
- type: Transform
- pos: -30.115973,-32.023853
+ rot: -1.5707963267948966 rad
+ pos: 66.06926,62.579235
parent: 2
- - uid: 7058
+ - uid: 36856
components:
- type: Transform
- pos: -29.29566,-32.24651
+ rot: -1.5707963267948966 rad
+ pos: 74.81145,69.58705
parent: 2
- - uid: 7059
+ - uid: 36857
components:
- type: Transform
- pos: -26.237066,-35.855885
+ rot: -1.5707963267948966 rad
+ pos: 71.772385,71.95424
parent: 2
- - uid: 7060
+ - uid: 36858
components:
- type: Transform
- pos: -26.647223,-36.27776
+ rot: -1.5707963267948966 rad
+ pos: 71.928635,71.57924
parent: 2
- - uid: 7061
+ - uid: 36859
components:
- type: Transform
- pos: -24.303473,-37.68401
+ rot: -1.5707963267948966 rad
+ pos: 67.06926,71.29799
parent: 2
- - uid: 7062
+ - uid: 36870
components:
- type: Transform
- pos: -31.686287,-37.625416
+ rot: 3.141592653589793 rad
+ pos: 68.928795,70.87613
parent: 2
- - uid: 7063
+ - uid: 38729
components:
- type: Transform
- pos: -33.17457,-31.519947
+ rot: -1.5707963267948966 rad
+ pos: -102.72845,51.91001
parent: 2
- - uid: 7064
+- proto: ShardGlassPlasma
+ entities:
+ - uid: 20591
components:
- type: Transform
- pos: -31.381598,-31.144947
+ rot: -1.5707963267948966 rad
+ pos: 78.24576,82.78317
parent: 2
- - uid: 7065
+ - uid: 33542
components:
- type: Transform
- pos: -31.451912,-30.74651
+ rot: -1.5707963267948966 rad
+ pos: 77.78482,82.40817
parent: 2
- - uid: 7066
+ - uid: 36540
components:
- type: Transform
- pos: -32.295662,-35.480885
+ rot: -1.5707963267948966 rad
+ pos: 76.26138,83.197235
parent: 2
- proto: SheetGlass
entities:
- uid: 1389
components:
- type: Transform
- pos: 36.006603,5.6036973
+ pos: 17.5964,11.711675
parent: 2
- - uid: 4951
+ - uid: 2722
components:
- type: Transform
- pos: 30.433826,30.65002
+ pos: 21.019302,-18.386
parent: 2
- - uid: 5311
+ - uid: 4951
components:
- type: Transform
- pos: 44.379402,44.823036
+ pos: 30.433826,30.65002
parent: 2
- - uid: 6913
+ - uid: 5311
components:
- type: Transform
- pos: -13.36253,-41.474854
+ pos: 46.46135,45.5695
parent: 2
- - uid: 6925
+ - uid: 7137
components:
- type: Transform
- pos: -20.52983,-31.376986
+ pos: -15.442333,-43.295673
parent: 2
- uid: 9015
components:
@@ -180164,7 +204415,7 @@ entities:
- uid: 16505
components:
- type: Transform
- pos: -28.270676,46.46827
+ pos: -10.319507,34.73851
parent: 2
- uid: 35085
components:
@@ -180210,14 +204461,14 @@ entities:
- uid: 9587
components:
- type: Transform
- pos: -50.54839,16.646076
+ pos: -51.65883,18.610825
parent: 2
- proto: SheetPlastic
entities:
- uid: 1390
components:
- type: Transform
- pos: 36.463634,5.709166
+ pos: 17.43455,11.641362
parent: 2
- uid: 5264
components:
@@ -180227,22 +204478,27 @@ entities:
- uid: 5310
components:
- type: Transform
- pos: 44.473152,44.834755
+ pos: 46.02385,45.60075
parent: 2
- - uid: 6926
+ - uid: 6954
components:
- type: Transform
- pos: -20.273832,-31.411205
+ pos: -15.430614,-44.432392
parent: 2
- uid: 9016
components:
- type: Transform
- pos: -51.44946,16.640251
+ pos: -50.79164,18.649887
parent: 2
- uid: 16506
components:
- type: Transform
- pos: -28.583176,46.496048
+ pos: -10.538569,34.596916
+ parent: 2
+ - uid: 25230
+ components:
+ - type: Transform
+ pos: 21.519302,-18.35475
parent: 2
- proto: SheetPlastic1
entities:
@@ -180261,13 +204517,7 @@ entities:
- uid: 1388
components:
- type: Transform
- pos: 35.48536,5.67401
- parent: 2
- - uid: 3843
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.565186,37.67611
+ pos: 17.352983,11.75855
parent: 2
- uid: 5265
components:
@@ -180277,33 +204527,32 @@ entities:
- uid: 5309
components:
- type: Transform
- pos: 44.356327,44.74312
+ pos: 45.570724,45.632
parent: 2
- - uid: 6912
+ - uid: 9013
components:
- type: Transform
- pos: -13.64378,-41.474854
+ pos: -51.402584,18.687126
parent: 2
- - uid: 6924
+ - uid: 9287
components:
- type: Transform
- pos: -20.711332,-31.379955
+ pos: -36.4682,40.55866
parent: 2
- - uid: 9013
+ - uid: 10628
components:
- type: Transform
- pos: -51.402584,18.687126
+ pos: -15.465771,-42.39333
parent: 2
- - uid: 9287
+ - uid: 12315
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.377686,37.58236
+ pos: 20.54274,-18.35475
parent: 2
- uid: 16504
components:
- type: Transform
- pos: -28.534563,46.746048
+ pos: -10.474476,34.65311
parent: 2
- proto: SheetSteel1
entities:
@@ -180332,11 +204581,6 @@ entities:
- type: Transform
pos: -30.135977,-37.648735
parent: 2
- - uid: 7080
- components:
- - type: Transform
- pos: -25.51879,-35.63311
- parent: 2
- uid: 8354
components:
- type: Transform
@@ -180347,6 +204591,16 @@ entities:
- type: Transform
pos: -69.44933,0.06079769
parent: 2
+ - uid: 36546
+ components:
+ - type: Transform
+ pos: 76.80826,83.55661
+ parent: 2
+ - uid: 36547
+ components:
+ - type: Transform
+ pos: 78.081696,82.39255
+ parent: 2
- proto: SheetUranium
entities:
- uid: 9591
@@ -180354,6 +204608,26 @@ entities:
- type: Transform
pos: -58.44775,28.5514
parent: 2
+- proto: Shinai
+ entities:
+ - uid: 15324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.40282,-24.344273
+ parent: 2
+ - uid: 20212
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.52782,-24.063023
+ parent: 2
+ - uid: 27258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.488758,-24.227085
+ parent: 2
- proto: ShowcaseRobot
entities:
- uid: 22664
@@ -180363,14 +204637,6 @@ entities:
parent: 2
- proto: ShuttersNormalOpen
entities:
- - uid: 352
- components:
- - type: Transform
- pos: -26.5,38.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 438
- uid: 1884
components:
- type: Transform
@@ -180378,7 +204644,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 1928
components:
- type: Transform
@@ -180386,7 +204652,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 1931
components:
- type: Transform
@@ -180395,7 +204661,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 1932
components:
- type: Transform
@@ -180404,7 +204670,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 1944
components:
- type: Transform
@@ -180413,7 +204679,7 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 1945
components:
- type: Transform
@@ -180422,91 +204688,31 @@ entities:
parent: 2
- type: DeviceLinkSink
links:
- - 17789
+ - 30596
- uid: 6075
components:
- type: Transform
pos: 19.5,22.5
parent: 2
- - uid: 6076
- components:
- - type: Transform
- pos: 20.5,22.5
- parent: 2
- - uid: 17788
- components:
- - type: Transform
- pos: 11.5,26.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 17790
- - uid: 26844
- components:
- - type: Transform
- pos: -33.5,36.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 27089
- - uid: 28719
- components:
- - type: Transform
- pos: -25.5,38.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 438
- - uid: 28720
- components:
- - type: Transform
- pos: -24.5,38.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 438
- - uid: 28721
- components:
- - type: Transform
- pos: -22.5,38.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 438
- - uid: 28722
- components:
- - type: Transform
- pos: -21.5,38.5
- parent: 2
- - type: DeviceLinkSink
- links:
- - 438
- - uid: 28723
- components:
- - type: Transform
- pos: -20.5,38.5
- parent: 2
- type: DeviceLinkSink
links:
- - 438
- - uid: 29748
+ - 37456
+ - uid: 6076
components:
- type: Transform
- pos: 82.5,57.5
+ pos: 20.5,22.5
parent: 2
- type: DeviceLinkSink
links:
- - 29750
- - 29772
- - uid: 29749
+ - 37456
+ - uid: 17788
components:
- type: Transform
- pos: 83.5,57.5
+ pos: 11.5,26.5
parent: 2
- type: DeviceLinkSink
links:
- - 29750
- - 29772
+ - 37413
- uid: 36478
components:
- type: Transform
@@ -180579,103 +204785,117 @@ entities:
- type: DeviceLinkSink
links:
- 36485
-- proto: ShuttersRadiationOpen
- entities:
- - uid: 18589
+ - uid: 37455
components:
- type: Transform
- pos: -102.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,26.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18590
+ - 30596
+- proto: ShuttersRadiationOpen
+ entities:
+ - uid: 13244
components:
- type: Transform
- pos: -102.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-15.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18591
+ - 12599
+ - 12626
+ - uid: 16707
components:
- type: Transform
- pos: -102.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-16.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18592
+ - 12599
+ - 12626
+ - uid: 18666
components:
- type: Transform
- pos: -102.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-18.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18593
+ - 12599
+ - 12626
+ - uid: 19207
components:
- type: Transform
- pos: -102.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-17.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18666
+ - 12599
+ - 12626
+ - uid: 19209
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-14.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18667
+ - 12599
+ - 12626
+ - uid: 19210
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-15.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18668
+ - 12599
+ - 12626
+ - uid: 19211
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-16.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18669
+ - 12599
+ - 12626
+ - uid: 19212
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,-18.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
- - uid: 18670
+ - 12599
+ - 12626
+ - uid: 29314
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -104.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-17.5
parent: 2
- type: DeviceLinkSink
links:
- - 18779
-- proto: ShuttersWindowOpen
- entities:
- - uid: 28724
+ - 12599
+ - 12626
+ - uid: 29315
components:
- type: Transform
- pos: -23.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 92.5,-14.5
parent: 2
- type: DeviceLinkSink
links:
- - 438
+ - 12599
+ - 12626
- proto: shuttle_manipulator
entities:
- uid: 4624
@@ -180683,8 +204903,33 @@ entities:
- type: Transform
pos: 18.5,38.5
parent: 2
-- proto: SignalButton
+ - uid: 11969
+ components:
+ - type: Transform
+ pos: 29.5,-19.5
+ parent: 2
+- proto: SignAi
+ entities:
+ - uid: 28087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,43.5
+ parent: 2
+- proto: SignalButtonDirectional
entities:
+ - uid: 427
+ components:
+ - type: MetaData
+ name: jani light button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -70.5,13.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37233:
+ - Pressed: Toggle
- uid: 2512
components:
- type: Transform
@@ -180698,21 +204943,20 @@ entities:
- uid: 8740
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,57.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 4222:
+ 4201:
- Pressed: Toggle
4191:
- Pressed: Toggle
- 4201:
+ 4222:
- Pressed: Toggle
- uid: 8974
components:
- type: MetaData
- desc: Allows patients to leave without having medical access.
name: exit button
- type: Transform
rot: 1.5707963267948966 rad
@@ -180722,21 +204966,19 @@ entities:
linkedPorts:
22823:
- Pressed: Toggle
- 22822:
+ 13814:
- Pressed: Toggle
- uid: 9098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,53.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 4196:
- - Pressed: Toggle
- 4187:
+ 15048:
- Pressed: Toggle
- 1523:
+ 15047:
- Pressed: Toggle
- uid: 9223
components:
@@ -180748,6 +204990,62 @@ entities:
linkedPorts:
9253:
- Pressed: Toggle
+ - uid: 12599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-13.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19209:
+ - Pressed: Toggle
+ 19210:
+ - Pressed: Toggle
+ 19211:
+ - Pressed: Toggle
+ 19207:
+ - Pressed: Toggle
+ 19212:
+ - Pressed: Toggle
+ 29315:
+ - Pressed: Toggle
+ 13244:
+ - Pressed: Toggle
+ 16707:
+ - Pressed: Toggle
+ 29314:
+ - Pressed: Toggle
+ 18666:
+ - Pressed: Toggle
+ - uid: 12626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-19.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29315:
+ - Pressed: Toggle
+ 13244:
+ - Pressed: Toggle
+ 16707:
+ - Pressed: Toggle
+ 29314:
+ - Pressed: Toggle
+ 18666:
+ - Pressed: Toggle
+ 19212:
+ - Pressed: Toggle
+ 19207:
+ - Pressed: Toggle
+ 19211:
+ - Pressed: Toggle
+ 19210:
+ - Pressed: Toggle
+ 19209:
+ - Pressed: Toggle
- uid: 12929
components:
- type: Transform
@@ -180770,55 +205068,38 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
+ 1523:
+ - Pressed: Toggle
4187:
- Pressed: Toggle
4196:
- Pressed: Toggle
- 1523:
- - Pressed: Toggle
- - uid: 15119
+ - uid: 14202
components:
+ - type: MetaData
+ name: doors button
- type: Transform
rot: -1.5707963267948966 rad
- pos: 24.5,48.5
+ pos: 7.5,5.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 15096:
- - Pressed: Toggle
- 15097:
- - Pressed: Toggle
- 15123:
+ 22823:
- Pressed: Toggle
- 15075:
+ 13814:
- Pressed: Toggle
- - uid: 15127
+ - uid: 15906
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,51.5
+ pos: 21.5,60.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 15048:
- - Pressed: Toggle
- 15047:
- - Pressed: Toggle
- 15064:
- - Pressed: Toggle
- 15063:
- - Pressed: Toggle
- 15062:
- - Pressed: Toggle
- 15061:
- - Pressed: Toggle
- 15060:
- - Pressed: Toggle
- 15057:
+ 15059:
- Pressed: Toggle
15058:
- Pressed: Toggle
- 15059:
+ 15057:
- Pressed: Toggle
15065:
- Pressed: Toggle
@@ -180830,42 +205111,6 @@ entities:
- Pressed: Toggle
15069:
- Pressed: Toggle
- 15070:
- - Pressed: Toggle
- 15071:
- - Pressed: Toggle
- 15072:
- - Pressed: Toggle
- - uid: 17789
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,28.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 1944:
- - Pressed: Toggle
- 1932:
- - Pressed: Toggle
- 1931:
- - Pressed: Toggle
- 1945:
- - Pressed: Toggle
- 1884:
- - Pressed: Toggle
- 1928:
- - Pressed: Toggle
- - uid: 17790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,28.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 17788:
- - Pressed: Toggle
- uid: 17791
components:
- type: Transform
@@ -180882,10 +205127,6 @@ entities:
- Pressed: Toggle
15080:
- Pressed: Toggle
- 15078:
- - Pressed: Toggle
- 15079:
- - Pressed: Toggle
- uid: 17792
components:
- type: Transform
@@ -180893,10 +205134,6 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 15090:
- - Pressed: Toggle
- 15089:
- - Pressed: Toggle
15084:
- Pressed: Toggle
15085:
@@ -180907,6 +205144,10 @@ entities:
- Pressed: Toggle
15088:
- Pressed: Toggle
+ 15089:
+ - Pressed: Toggle
+ 15090:
+ - Pressed: Toggle
- uid: 17793
components:
- type: Transform
@@ -180921,626 +205162,530 @@ entities:
- Pressed: Toggle
15094:
- Pressed: Toggle
- 15097:
- - Pressed: Toggle
- 15096:
+ 15092:
- Pressed: Toggle
15091:
- Pressed: Toggle
- 15092:
+ 37202:
- Pressed: Toggle
- - uid: 18779
+ - uid: 19938
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -102.5,48.5
+ pos: 4.5,52.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 18591:
- - Pressed: Toggle
- 18592:
+ 15051:
- Pressed: Toggle
- 18590:
+ 15050:
- Pressed: Toggle
- 18589:
+ 15049:
- Pressed: Toggle
- 18593:
+ 15055:
- Pressed: Toggle
- 18666:
+ 15056:
- Pressed: Toggle
- 18667:
+ 15048:
- Pressed: Toggle
- 18668:
+ 15047:
- Pressed: Toggle
- 18669:
+ - uid: 22295
+ components:
+ - type: MetaData
+ name: jani light button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-0.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25517:
- Pressed: Toggle
- 18670:
+ 9521:
- Pressed: Toggle
- - uid: 19389
+ - uid: 26827
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
- pos: -27.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-0.5
parent: 2
- - uid: 19938
+ - type: DeviceLinkSource
+ linkedPorts:
+ 24343:
+ - Pressed: Toggle
+ - uid: 26832
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,25.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 15051:
- - Pressed: Toggle
- 15050:
- - Pressed: Toggle
- 15049:
- - Pressed: Toggle
- 15042:
+ 24317:
- Pressed: Toggle
- 15044:
+ - uid: 28714
+ components:
+ - type: Transform
+ pos: -55.5,47.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29636:
- Pressed: Toggle
- 15043:
+ 29390:
- Pressed: Toggle
- 15045:
+ 31417:
- Pressed: Toggle
- 15055:
+ 23712:
- Pressed: Toggle
- 15056:
+ 31446:
- Pressed: Toggle
- - uid: 22047
+ - uid: 30772
components:
- - type: MetaData
- desc: Opens the adjacent door.
- name: exit button
- type: Transform
- pos: 10.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,48.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 19819:
+ 22608:
- Pressed: Toggle
- - uid: 23328
+ - uid: 31151
components:
- type: MetaData
- name: exit button
+ name: jani light button
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,-12.5
+ pos: 16.5,41.5
parent: 2
+ - type: WirelessNetworkConnection
+ range: 500
- type: DeviceLinkSource
linkedPorts:
- 364:
+ 29623:
- Pressed: Toggle
- - uid: 35837
+ - uid: 32084
components:
- - type: MetaData
- desc: Allows patients to leave without having medical access.
- name: exit button
- type: Transform
rot: 3.141592653589793 rad
- pos: 20.5,8.5
+ pos: 90.5,71.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 22816:
- - Pressed: Toggle
- 22817:
+ 32083:
- Pressed: Toggle
- 22818:
- - Pressed: Toggle
-- proto: SignalButtonDirectional
- entities:
- - uid: 438
+ - uid: 32086
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,39.5
+ pos: 93.5,76.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 352:
- - Pressed: Toggle
- 28719:
- - Pressed: Toggle
- 28720:
- - Pressed: Toggle
- 28724:
+ 30126:
- Pressed: Toggle
- 28721:
+ 4844:
- Pressed: Toggle
- 28722:
+ - uid: 36182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,14.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30932:
- Pressed: Toggle
- 28723:
+ 29344:
- Pressed: Toggle
- - uid: 22295
+ - uid: 36484
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,59.5
+ pos: -56.5,11.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 22293:
+ 36480:
- Pressed: Toggle
- 22287:
+ 36479:
- Pressed: Toggle
- - uid: 25537
+ 36478:
+ - Pressed: Toggle
+ 36483:
+ - Pressed: Toggle
+ 36482:
+ - Pressed: Toggle
+ 36481:
+ - Pressed: Toggle
+ - uid: 36485
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-9.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 9521:
+ 36487:
- Pressed: Toggle
- 25517:
+ 36488:
- Pressed: Toggle
- - uid: 26827
+ 36486:
+ - Pressed: Toggle
+ - uid: 36931
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
rot: 3.141592653589793 rad
- pos: -49.5,-0.5
+ pos: -55.5,-13.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 24343:
+ 36181:
- Pressed: Toggle
- - uid: 26832
+ - uid: 37221
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,57.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 24317:
+ 1523:
- Pressed: Toggle
- - uid: 28714
+ 4187:
+ - Pressed: Toggle
+ 4196:
+ - Pressed: Toggle
+ - uid: 37224
components:
- type: Transform
- pos: -55.5,47.5
+ pos: 10.5,57.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 29636:
- - Pressed: Toggle
- 29390:
+ 15045:
- Pressed: Toggle
- 31417:
+ 15043:
- Pressed: Toggle
- 23712:
+ 15042:
- Pressed: Toggle
- 31446:
+ 15044:
- Pressed: Toggle
- - uid: 30596
+ - uid: 37227
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-19.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 1566:
+ 37230:
- Pressed: Toggle
- - uid: 30673
+ - uid: 37228
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.5,-18.5
+ pos: -11.5,-23.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 30654:
+ 37226:
- Pressed: Toggle
- - uid: 30933
+ - uid: 37229
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -52.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-23.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 30932:
+ 37226:
- Pressed: Toggle
- - uid: 31151
+ - uid: 37232
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,41.5
+ pos: 51.5,23.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 29623:
+ 37231:
- Pressed: Toggle
- - uid: 36484
+ - uid: 37725
components:
+ - type: MetaData
+ name: jani light button
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,60.5
parent: 2
+ - type: WirelessNetworkConnection
+ range: 1000
- type: DeviceLinkSource
linkedPorts:
- 36480:
- - Pressed: Toggle
- 36479:
- - Pressed: Toggle
- 36478:
- - Pressed: Toggle
- 36483:
- - Pressed: Toggle
- 36482:
- - Pressed: Toggle
- 36481:
+ 37724:
- Pressed: Toggle
- - uid: 36485
+ 21130: []
+ - uid: 38118
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-9.5
+ pos: 29.5,3.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 36487:
- - Pressed: Toggle
- 36488:
+ 38107:
- Pressed: Toggle
- 36486:
+ 30311:
- Pressed: Toggle
- proto: SignalSwitchDirectional
entities:
- - uid: 170
+ - uid: 3283
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-45.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-41.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 6721:
+ 26697:
- On: Forward
- Off: Off
- 6668:
+ 2326:
- On: Forward
- Off: Off
- 6845:
+ 2261:
- On: Forward
- Off: Off
- 6576:
- - Off: Off
- - On: Forward
- 6918:
- - On: Forward
- - Off: Off
- 9845:
- - On: Forward
- - Off: Off
- 6616:
- - On: Forward
- - Off: Off
- 8601:
+ 2395:
- On: Forward
- Off: Off
- 6932:
+ 2315:
- On: Forward
- Off: Off
- 10342:
+ 3338:
- On: Forward
- Off: Off
- 9035:
+ 3282:
- On: Forward
- Off: Off
- 6923:
+ 2961:
- On: Forward
- Off: Off
- 760:
+ 28201:
- On: Forward
- Off: Off
- - uid: 6779
+ - uid: 11344
components:
- type: Transform
- pos: -28.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-47.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 6744:
- - On: Forward
- - Off: Off
- 6745:
- - On: Forward
- - Off: Off
- 6757:
- - On: Forward
- - Off: Off
- 6772:
- - On: Forward
- - Off: Off
- 6743:
- - On: Forward
- - Off: Off
- 6746:
- - On: Forward
- - Off: Off
- 6750:
- - On: Forward
- - Off: Off
- 6758:
- - On: Forward
- - Off: Off
- 6756:
- - On: Forward
- - Off: Off
- 6684:
- - On: Forward
- - Off: Off
- 6685:
+ 9598:
- On: Forward
- Off: Off
- 6686:
- - On: Forward
- - Off: Off
- 6687:
- - On: Forward
- - Off: Off
- 10646:
- - On: Forward
- - Off: Off
- 10621:
- - On: Forward
- - Off: Off
- 10627:
- - On: Forward
- - Off: Off
- 10647:
- - On: Forward
- - Off: Off
- 29980:
- - On: Forward
- - Off: Off
- 6782:
- - On: Forward
- - Off: Off
- 6783:
- - On: Forward
- - Off: Off
- 31776:
- - On: Forward
- - Off: Off
- 31777:
- - On: Forward
- - Off: Off
- 31778:
- - On: Forward
- - Off: Off
- 31779:
+ 16629:
- On: Forward
- Off: Off
- 31780:
+ 10338:
- On: Forward
- Off: Off
- 6963:
+ 11645:
- On: Forward
- Off: Off
- 10624:
+ - uid: 11872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-47.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3493:
- On: Forward
- Off: Off
- 10622:
+ 6705:
- On: Forward
- Off: Off
- 8181:
+ 11837:
- On: Forward
- Off: Off
- 6961:
+ 11875:
- On: Forward
- Off: Off
- 27957:
- - Off: Off
- - On: Forward
- 6727:
+ - uid: 20721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-26.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 21164:
- On: Forward
- Off: Off
- 6755:
- - Off: Off
- - On: Forward
- 436:
+ 28998:
- On: Forward
- Off: Off
- 6749:
+ 29964:
- On: Forward
- Off: Off
- 5414:
- - On: Forward
+ 29965:
- Off: Off
- 6710:
- On: Forward
- - Off: Off
- 6669:
+ 23857:
- On: Forward
- Off: Off
- 6621:
+ 31645:
- On: Forward
- Off: Off
- 11850:
+ 22862:
- On: Forward
- Off: Off
- 31688:
+ 1113:
- On: Forward
- Off: Off
- 31689:
+ 1303:
- On: Forward
- Off: Off
- 6753:
+ 1096:
- On: Forward
- Off: Off
- 6748:
+ 1335:
- On: Forward
- Off: Off
- 6752:
+ 21018:
- On: Forward
- Off: Off
- 5429:
+ 1153:
- On: Forward
- Off: Off
- 3542:
+ 1443:
- On: Forward
- Off: Off
- 6714:
+ 27301:
- On: Forward
- Off: Off
- 11853:
+ 6358:
- On: Forward
- Off: Off
- - uid: 23220
+ - uid: 28204
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-26.5
+ pos: -21.5,-26.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 21164:
- - On: Forward
- - Off: Off
- 28998:
- - Off: Off
- - On: Forward
- 29964:
- - On: Forward
- - Off: Off
- 29965:
+ 6961:
- On: Forward
- Off: Off
- 23857:
+ 8181:
- On: Forward
- Off: Off
- 31645:
+ 10622:
- On: Forward
- Off: Off
- 11849:
+ 10624:
- On: Forward
- Off: Off
- 31687:
+ 6963:
- On: Forward
- Off: Off
- 11841:
+ 31780:
- On: Forward
- Off: Off
- 30791:
+ 31779:
- On: Forward
- Off: Off
- 31055:
+ 31778:
- On: Forward
- Off: Off
- 22358:
+ 31776:
- On: Forward
- Off: Off
- 22736:
+ 6783:
- On: Forward
- Off: Off
- 34056:
+ 29980:
- On: Forward
- Off: Off
- 34057:
+ 6782:
- On: Forward
- Off: Off
- 34058:
+ 31777:
- On: Forward
- Off: Off
- 34059:
+ 10647:
- On: Forward
- Off: Off
- 34060:
+ 16640:
- On: Forward
- Off: Off
- 20562:
+ 8182:
- On: Forward
- Off: Off
- 34061:
+ 6866:
- On: Forward
- Off: Off
- 34062:
+ 11171:
- On: Forward
- Off: Off
- 34063:
+ 23544:
- On: Forward
- Off: Off
- 34064:
+ 6733:
- On: Forward
- Off: Off
- 34065:
+ - uid: 38734
+ components:
+ - type: Transform
+ pos: -35.5,5.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19134:
- On: Forward
- Off: Off
- 34066:
+ 13760:
- On: Forward
- Off: Off
- 34067:
+ 13753:
- On: Forward
- Off: Off
- 31690:
+ 19091:
- On: Forward
- Off: Off
- 6725:
- - Off: Off
- - On: Forward
- 20722:
+ 19089:
- On: Forward
- Off: Off
- 7096:
+ 13752:
- On: Forward
- Off: Off
- 30642:
+ 13755:
- On: Forward
- Off: Off
- 6650:
+ 29725:
- On: Forward
- Off: Off
- 6734:
+ 19128:
- On: Forward
- Off: Off
- 20720:
- - Off: Off
- - On: Forward
- 760: []
- - uid: 27089
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,32.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 26844:
- - Off: Close
- - On: Open
- - uid: 29750
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,57.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29746:
- - On: Open
- - Off: Close
- 29749:
- - On: Open
- - Off: Close
- 29748:
- - On: Open
- - Off: Close
- - uid: 29774
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 84.5,60.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 29768:
- - On: Open
- - Off: Close
- proto: SignAnomaly
entities:
- uid: 4002
@@ -181555,23 +205700,25 @@ entities:
- type: Transform
pos: 41.5,38.5
parent: 2
-- proto: SignArmory
+- proto: SignArcade
entities:
- - uid: 16447
+ - uid: 4034
components:
- type: Transform
- pos: -19.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-30.5
parent: 2
- - uid: 24778
+- proto: SignArmory
+ entities:
+ - uid: 16447
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,46.5
+ pos: -19.5,43.5
parent: 2
- - uid: 36184
+ - uid: 26499
components:
- type: Transform
- pos: -31.5,38.5
+ pos: -23.5,43.5
parent: 2
- proto: SignAtmos
entities:
@@ -181596,16 +205743,11 @@ entities:
parent: 2
- proto: SignBar
entities:
- - uid: 2186
- components:
- - type: Transform
- pos: 12.5,-21.5
- parent: 2
- - uid: 3366
+ - uid: 12981
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-17.5
+ pos: -50.5,-24.5
parent: 2
- uid: 15532
components:
@@ -181619,27638 +205761,27820 @@ entities:
- type: Transform
pos: 52.5,52.5
parent: 2
-- proto: SignBiohazard
- entities:
- - uid: 5352
- components:
- - type: Transform
- pos: 51.5,47.5
- parent: 2
-- proto: SignBiohazardMed
- entities:
- - uid: 5353
- components:
- - type: Transform
- pos: 55.5,47.5
- parent: 2
-- proto: SignBridge
- entities:
- - uid: 2599
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,37.5
- parent: 2
-- proto: SignCargo
- entities:
- - uid: 2946
- components:
- - type: Transform
- pos: -9.5,-17.5
- parent: 2
-- proto: SignChapel
- entities:
- - uid: 2204
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,22.5
- parent: 2
- - uid: 23882
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.511288,19.44273
- parent: 2
-- proto: SignChem
- entities:
- - uid: 1177
- components:
- - type: Transform
- pos: 18.5,-12.5
- parent: 2
- - uid: 1422
- components:
- - type: Transform
- pos: 15.5,4.5
- parent: 2
- - uid: 1423
- components:
- - type: Transform
- pos: 18.5,-6.5
- parent: 2
-- proto: SignCloning
- entities:
- - uid: 2188
+ - uid: 34228
components:
- type: Transform
- pos: 21.5,4.5
+ pos: 71.5,81.5
parent: 2
- - uid: 30970
+ - uid: 36120
components:
- type: Transform
- pos: 29.5,1.5
+ pos: 74.5,86.5
parent: 2
-- proto: SignConference
- entities:
- - uid: 14164
+ - uid: 36121
components:
- type: Transform
- pos: 16.5,46.5
+ pos: 64.5,86.5
parent: 2
-- proto: SignConspiracyBoard
- entities:
- - uid: 2888
+ - uid: 36159
components:
- type: Transform
- pos: 47.5,35.5
+ pos: 62.5,56.5
parent: 2
- - uid: 14047
+ - uid: 36161
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,51.5
+ pos: 60.5,49.5
parent: 2
- - uid: 15973
+ - uid: 36276
components:
- type: Transform
- pos: -35.5,36.5
+ pos: 76.5,86.5
parent: 2
-- proto: SignCourt
- entities:
- - uid: 4443
+ - uid: 36698
components:
- type: Transform
- pos: -1.5,50.5
+ pos: 82.5,86.5
parent: 2
-- proto: SignCryogenicsMed
- entities:
- - uid: 1008
+ - uid: 36886
components:
- type: Transform
- pos: 32.5,-3.5
+ pos: 65.5,72.5
parent: 2
- - uid: 30968
+ - uid: 36890
components:
- type: Transform
- pos: 30.5,-12.5
+ pos: 70.5,67.5
parent: 2
-- proto: SignDanger
+- proto: SignBiohazard
entities:
- - uid: 5354
- components:
- - type: Transform
- pos: 54.5,50.5
- parent: 2
- - uid: 5355
- components:
- - type: Transform
- pos: 51.5,50.5
- parent: 2
- - uid: 19658
+ - uid: 5352
components:
- type: Transform
- pos: 6.5,66.5
+ pos: 51.5,47.5
parent: 2
- - uid: 19667
+ - uid: 18897
components:
- type: Transform
- pos: 3.5,66.5
+ pos: -111.5,54.5
parent: 2
- - uid: 33543
+ - uid: 22250
components:
- type: Transform
- pos: 85.5,21.5
+ pos: -101.5,50.5
parent: 2
- - uid: 33544
+ - uid: 32368
components:
- type: Transform
- pos: 63.5,32.5
+ pos: -108.5,47.5
parent: 2
- - uid: 33545
+ - uid: 32369
components:
- type: Transform
- pos: 61.5,33.5
+ pos: -104.5,57.5
parent: 2
- - uid: 33546
+ - uid: 32370
components:
- type: Transform
- pos: 53.5,37.5
+ pos: -101.5,54.5
parent: 2
- - uid: 33547
+ - uid: 32374
components:
- type: Transform
- pos: 53.5,44.5
+ pos: -111.5,50.5
parent: 2
- - uid: 33548
+ - uid: 35988
components:
- type: Transform
- pos: 56.5,58.5
+ pos: 64.5,82.5
parent: 2
- - uid: 33549
+ - uid: 36158
components:
- type: Transform
- pos: 61.5,58.5
+ pos: 55.5,60.5
parent: 2
- - uid: 33550
+ - uid: 36809
components:
- type: Transform
- pos: 52.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,70.5
parent: 2
- - uid: 33551
+ - uid: 38418
components:
- type: Transform
- pos: 95.5,48.5
+ pos: -108.5,57.5
parent: 2
- - uid: 33552
+ - uid: 38645
components:
- type: Transform
- pos: 83.5,67.5
+ pos: -104.5,47.5
parent: 2
-- proto: SignDirectionalBar
+- proto: SignBiohazardMed
entities:
- - uid: 6371
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.500387,-14.729669
- parent: 2
- - uid: 16474
- components:
- - type: Transform
- pos: 16.499256,-17.242163
- parent: 2
- - uid: 23855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5105877,-17.512625
- parent: 2
- - uid: 23858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.499825,-15.712059
- parent: 2
- - uid: 23860
+ - uid: 5353
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-16.5
+ pos: 55.5,47.5
parent: 2
- - uid: 33650
+ - uid: 8257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,63.5
+ pos: 71.5,84.5
parent: 2
-- proto: SignDirectionalBridge
+- proto: SignBridge
entities:
- - uid: 23887
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5065484,40.20192
- parent: 2
- - uid: 23888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5221734,-17.763191
- parent: 2
- - uid: 26855
+ - uid: 2599
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.48320675,25.24322
- parent: 2
-- proto: SignDirectionalBrig
- entities:
- - uid: 22618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,62.5
+ pos: 3.5,37.5
parent: 2
- - uid: 23806
+ - uid: 37723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,25.5
+ pos: -35.5,25.5
parent: 2
-- proto: SignDirectionalChapel
+- proto: SignCargo
entities:
- - uid: 9178
+ - uid: 2946
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,23.5
+ pos: -9.5,-17.5
parent: 2
- - uid: 23880
+ - uid: 22798
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.46012,6.2804375
+ pos: -12.5,-22.5
parent: 2
- - uid: 23881
+ - uid: 37721
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.52262,15.850657
+ pos: -39.5,25.5
parent: 2
-- proto: SignDirectionalChemistry
+- proto: SignCargoDock
entities:
- - uid: 1223
+ - uid: 9341
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-14.5
+ pos: -20.5,-47.5
parent: 2
- - uid: 23814
+ - uid: 10342
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-12.5
- parent: 2
- - uid: 23844
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-17.5
+ pos: -20.5,-40.5
parent: 2
-- proto: SignDirectionalCryo
+- proto: SignChapel
entities:
- - uid: 1024
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-12.5
- parent: 2
- - uid: 25173
- components:
- - type: Transform
- pos: -0.5,-3.5
- parent: 2
- - uid: 25282
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-12.5
- parent: 2
- - uid: 26213
+ - uid: 2204
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,-29.5
+ pos: 33.5,22.5
parent: 2
- - uid: 30962
+ - uid: 23882
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.550045,4.7897277
- parent: 2
- - uid: 30967
- components:
- - type: Transform
- pos: 29.573904,4.8227987
- parent: 2
- - uid: 30969
- components:
- - type: Transform
- pos: 29.5,-2.5
+ pos: 51.511288,19.44273
parent: 2
-- proto: SignDirectionalEng
+- proto: SignChem
entities:
- - uid: 22480
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.4988317,23.758844
- parent: 2
- - uid: 23849
+ - uid: 1177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.4359844,-17.244627
+ pos: 18.5,-12.5
parent: 2
- - uid: 23867
+ - uid: 1422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.436584,-12.501854
+ pos: 15.5,4.5
parent: 2
- - uid: 23873
+ - uid: 1423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -45.491207,18.289341
+ pos: 18.5,-6.5
parent: 2
-- proto: SignDirectionalEvac
+- proto: SignCloning
entities:
- - uid: 6374
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.49538875,-29.74709
- parent: 2
- - uid: 8402
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-8.5
- parent: 2
- - uid: 17012
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,45.5
- parent: 2
- - uid: 23813
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,25.5
- parent: 2
- - uid: 23846
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.4906719,-17.25244
- parent: 2
- - uid: 23886
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.47527122,62.785336
- parent: 2
- - uid: 23890
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.4462893,-11.719762
- parent: 2
- - uid: 23891
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.4619143,16.77201
- parent: 2
- - uid: 23892
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.48505,17.728174
- parent: 2
- - uid: 23893
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.512714,16.526192
- parent: 2
- - uid: 23894
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 45.5049,-19.23642
- parent: 2
- - uid: 23896
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.454502,6.744308
- parent: 2
- - uid: 23897
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.46659,23.506786
- parent: 2
- - uid: 23898
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -74.45819,10.307827
- parent: 2
- - uid: 23899
+ - uid: 2188
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.39373,10.266306
+ pos: 21.5,4.5
parent: 2
- - uid: 23905
+ - uid: 30327
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,8.5
+ pos: 29.5,0.5
parent: 2
-- proto: SignDirectionalFood
+- proto: SignConference
entities:
- - uid: 21466
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.4832067,23.235407
- parent: 2
- - uid: 23851
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.431856,-17.486814
- parent: 2
- - uid: 23901
- components:
- - type: Transform
- pos: -48.472904,-11.470109
- parent: 2
- - uid: 23902
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.496925,-17.22792
- parent: 2
- - uid: 23903
- components:
- - type: Transform
- pos: -46.455734,-13.7279215
- parent: 2
- - uid: 23904
+ - uid: 14164
components:
- type: Transform
- pos: -38.455734,-17.298233
+ pos: 16.5,46.5
parent: 2
-- proto: SignDirectionalHop
+- proto: SignConspiracyBoard
entities:
- - uid: 23852
+ - uid: 2888
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5021544,-17.25244
+ pos: 47.5,35.5
parent: 2
-- proto: SignDirectionalHydro
- entities:
- - uid: 23810
+ - uid: 14047
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.48382,-7.2507544
- parent: 2
- - uid: 23816
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,22.5
- parent: 2
- - uid: 23848
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.4828594,-17.75244
- parent: 2
- - uid: 23868
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.436584,-12.267479
+ pos: 13.5,51.5
parent: 2
- - uid: 23869
+ - uid: 20871
components:
- type: Transform
- pos: -47.504093,10.266583
+ pos: -20.5,-6.5
parent: 2
- - uid: 23870
+- proto: SignCourt
+ entities:
+ - uid: 4443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.503471,23.251003
+ pos: -1.5,50.5
parent: 2
-- proto: SignDirectionalJanitor
+- proto: SignCryogenicsMed
entities:
- - uid: 20991
+ - uid: 1008
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,23.5
+ pos: 32.5,-3.5
parent: 2
- - uid: 23872
+ - uid: 30968
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5209,-0.7626915
+ pos: 30.5,-12.5
parent: 2
-- proto: SignDirectionalLibrary
+- proto: SignDanger
entities:
- - uid: 23883
+ - uid: 2399
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.440975,6.549694
+ pos: 111.5,-23.5
parent: 2
- - uid: 23884
+ - uid: 2401
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.53832,15.57411
+ pos: 108.5,-26.5
parent: 2
- - uid: 23885
+ - uid: 5354
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.522694,25.27844
+ pos: 54.5,50.5
parent: 2
- - uid: 26856
+ - uid: 5355
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5323524,23.211216
+ pos: 51.5,50.5
parent: 2
-- proto: SignDirectionalLogistics
- entities:
- - uid: 23859
+ - uid: 19245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.4342637,-17.746038
+ pos: 108.5,-6.5
parent: 2
- - uid: 23861
+ - uid: 19246
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.484005,-11.197954
+ pos: 94.5,-26.5
parent: 2
- - uid: 23900
+ - uid: 19248
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.525036,-17.158611
+ pos: 111.5,-9.5
parent: 2
- - uid: 26190
+ - uid: 19249
components:
- type: Transform
- pos: -13.403669,-17.2851
+ pos: 90.5,-23.5
parent: 2
- - uid: 31888
+ - uid: 19254
components:
- type: Transform
- pos: -46.4965,10.269556
+ pos: 90.5,-9.5
parent: 2
-- proto: SignDirectionalMed
- entities:
- - uid: 23808
+ - uid: 19658
components:
- type: Transform
- pos: 48.5,-6.5
+ pos: 6.5,66.5
parent: 2
- - uid: 23817
+ - uid: 19667
components:
- type: Transform
- pos: -2.4978511,22.24327
+ pos: 3.5,66.5
parent: 2
- - uid: 23845
+ - uid: 28073
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5115795,-17.242666
- parent: 2
- - uid: 23862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.51649,-17.40539
- parent: 2
- - uid: 23864
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 47.540833,16.834927
+ pos: 55.5,43.5
parent: 2
- - uid: 23865
+ - uid: 28081
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -43.493057,7.8181133
- parent: 2
- - uid: 23866
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.45148,-12.744019
+ pos: 58.5,46.5
parent: 2
-- proto: SignDirectionalSalvage
- entities:
- - uid: 21012
+ - uid: 28083
components:
- type: Transform
- pos: -17.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,46.5
parent: 2
- - uid: 22264
+ - uid: 28084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,37.5
parent: 2
- - uid: 22266
+ - uid: 29321
components:
- type: Transform
- pos: -13.409092,-17.529654
+ pos: 94.5,-6.5
parent: 2
-- proto: SignDirectionalSci
- entities:
- - uid: 23850
+ - uid: 33548
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.4983835,-17.75244
+ pos: 56.5,58.5
parent: 2
- - uid: 23878
+ - uid: 33549
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.526928,-15.133438
+ pos: 61.5,58.5
parent: 2
- - uid: 23879
+ - uid: 36699
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 51.467934,6.0148125
+ pos: 79.5,84.5
parent: 2
- - uid: 26131
+ - uid: 36700
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.508915,23.773716
+ pos: 83.5,83.5
parent: 2
- - uid: 30340
+ - uid: 36916
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.519985,22.737196
+ pos: 75.5,83.5
parent: 2
-- proto: SignDirectionalSec
+- proto: SignDangerMed
entities:
- - uid: 23818
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5117471,22.766708
- parent: 2
- - uid: 23847
+ - uid: 28074
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.4906719,-17.510252
+ pos: 55.5,41.5
parent: 2
- - uid: 23874
+ - uid: 35986
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.477133,23.300415
- parent: 2
- - uid: 23875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.499043,10.51958
+ pos: 67.5,84.5
parent: 2
- - uid: 23876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.482662,-12.754795
- parent: 2
- - uid: 23877
+ - uid: 35987
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.519115,-15.414688
+ rot: 3.141592653589793 rad
+ pos: 75.5,85.5
parent: 2
-- proto: SignDirectionalSolar
+- proto: SignDirectionalBar
entities:
- - uid: 9563
+ - uid: 4621
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 65.5,-30.5
+ pos: -32.46979,-17.470783
parent: 2
- - uid: 23824
+ - uid: 6371
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-32.5
+ pos: 22.500387,-14.729669
parent: 2
- - uid: 23825
+ - uid: 17114
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -53.5,-37.5
- parent: 2
- - uid: 23826
- components:
- - type: Transform
- pos: 54.5,-32.5
- parent: 2
- - uid: 23827
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-28.5
+ pos: -2.4974592,-17.502033
parent: 2
- - uid: 23828
+ - uid: 21910
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -55.5,38.5
+ pos: -46.45212,-13.502033
parent: 2
- - uid: 23829
+ - uid: 23858
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,42.5
+ pos: 44.499825,-15.712059
parent: 2
-- proto: SignDirectionalSupply
- entities:
- - uid: 34972
+ - uid: 23860
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 32.5,7.5
- parent: 2
-- proto: SignDirectionalWash
- entities:
- - uid: 16475
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,65.5
+ pos: -23.5,-16.5
parent: 2
- - uid: 23820
+ - uid: 33650
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,-22.5
- parent: 2
- - uid: 23821
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-15.5
- parent: 2
-- proto: SignDisposalSpace
- entities:
- - uid: 16960
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,12.5
- parent: 2
- - uid: 18254
- components:
- - type: Transform
- pos: -18.5,52.5
- parent: 2
- - uid: 18256
- components:
- - type: Transform
- pos: -33.5,56.5
- parent: 2
-- proto: SignElectrical
- entities:
- - uid: 1263
- components:
- - type: Transform
- pos: -52.5,63.5
- parent: 2
- - uid: 6211
- components:
- - type: Transform
- pos: -52.5,56.5
- parent: 2
- - uid: 31278
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,74.5
- parent: 2
- - uid: 31279
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -48.5,74.5
- parent: 2
- - uid: 31280
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,71.5
- parent: 2
- - uid: 31281
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -52.5,68.5
- parent: 2
-- proto: SignEngine
- entities:
- - uid: 8856
- components:
- - type: Transform
- pos: -56.5,13.5
- parent: 2
-- proto: SignEngineering
- entities:
- - uid: 8820
- components:
- - type: Transform
- pos: -46.5,15.5
+ pos: -29.5,63.5
parent: 2
-- proto: SignEscapePods
+- proto: SignDirectionalBridge
entities:
- - uid: 8479
- components:
- - type: Transform
- pos: 46.5,-35.5
- parent: 2
- - uid: 13784
+ - uid: 23887
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 81.5,-3.5
- parent: 2
- - uid: 19927
- components:
- - type: Transform
- pos: -63.5,-19.5
- parent: 2
- - uid: 20019
- components:
- - type: Transform
- pos: -63.5,-13.5
- parent: 2
-- proto: SignEVA
- entities:
- - uid: 1992
- components:
- - type: Transform
- pos: 18.5,22.5
- parent: 2
-- proto: SignExamroom
- entities:
- - uid: 5926
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
- parent: 2
-- proto: SignExplosives
- entities:
- - uid: 19668
- components:
- - type: Transform
- pos: 6.5,64.5
- parent: 2
-- proto: SignGravity
- entities:
- - uid: 29563
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,15.5
- parent: 2
-- proto: SignHead
- entities:
- - uid: 1975
- components:
- - type: Transform
- pos: 13.5,22.5
- parent: 2
- - uid: 3553
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,22.5
+ pos: 3.5065484,40.20192
parent: 2
-- proto: SignHydro1
- entities:
- - uid: 18405
+ - uid: 23888
components:
- type: Transform
- pos: -48.5,4.5
+ rot: 3.141592653589793 rad
+ pos: 6.5221734,-17.763191
parent: 2
-- proto: SignInterrogation
- entities:
- - uid: 15537
+ - uid: 26855
components:
- type: Transform
- pos: -19.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -0.48320675,25.24322
parent: 2
-- proto: SignJanitor
+- proto: SignDirectionalBrig
entities:
- - uid: 26888
+ - uid: 22618
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -38.5,20.5
- parent: 2
-- proto: SignLastIdiot
- entities:
- - uid: 30683
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,71.5
+ pos: -0.5,62.5
parent: 2
-- proto: SignLibrary
- entities:
- - uid: 22680
+ - uid: 23806
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 52.5,25.5
+ pos: -0.5,25.5
parent: 2
-- proto: SignMail
+- proto: SignDirectionalChapel
entities:
- - uid: 2945
+ - uid: 9178
components:
- type: Transform
- pos: -5.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,23.5
parent: 2
- - uid: 6528
+ - uid: 23880
components:
- type: Transform
- pos: -10.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 51.46012,6.2804375
parent: 2
-- proto: SignMedical
- entities:
- - uid: 864
+ - uid: 23881
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 51.52262,15.850657
parent: 2
- - uid: 2116
+- proto: SignDirectionalChemistry
+ entities:
+ - uid: 1223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-14.5
parent: 2
- - uid: 19809
+ - uid: 23814
components:
- type: Transform
- pos: -40.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-12.5
parent: 2
-- proto: SignMorgue
- entities:
- - uid: 1379
+ - uid: 23844
components:
- type: Transform
- pos: 24.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-17.5
parent: 2
- - uid: 1381
+ - uid: 25101
components:
- type: Transform
- pos: 24.5,17.5
+ pos: 17.5,4.5
parent: 2
- - uid: 1382
+ - uid: 28572
components:
- type: Transform
- pos: 31.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
parent: 2
-- proto: SignPlaque
+- proto: SignDirectionalCryo
entities:
- - uid: 175
+ - uid: 1024
components:
- type: Transform
- pos: 25.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-12.5
parent: 2
- - uid: 14193
+ - uid: 25173
components:
- type: Transform
- pos: 20.5,60.5
+ pos: -0.5,-3.5
parent: 2
- - uid: 16624
+ - uid: 25282
components:
- type: Transform
- pos: -7.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-12.5
parent: 2
-- proto: SignPrison
- entities:
- - uid: 17879
+ - uid: 26213
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-29.5
parent: 2
-- proto: SignRadiation
- entities:
- - uid: 18885
+ - uid: 30967
components:
- type: Transform
- pos: -104.5,64.5
+ pos: 29.573904,4.8227987
parent: 2
- - uid: 18887
+ - uid: 30969
components:
- type: Transform
- pos: -111.5,65.5
+ pos: 29.5,-2.5
parent: 2
- - uid: 18888
+- proto: SignDirectionalEng
+ entities:
+ - uid: 22480
components:
- type: Transform
- pos: -125.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: -2.4988317,23.758844
parent: 2
- - uid: 18890
+ - uid: 23849
components:
- type: Transform
- pos: -92.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -3.4359844,-17.244627
parent: 2
- - uid: 18891
+ - uid: 23867
components:
- type: Transform
- pos: -92.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -38.436584,-12.501854
parent: 2
- - uid: 18893
+- proto: SignDirectionalEvac
+ entities:
+ - uid: 6374
components:
- type: Transform
- pos: -103.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -0.49538875,-29.74709
parent: 2
- - uid: 18895
+ - uid: 8402
components:
- type: Transform
- pos: -118.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-8.5
parent: 2
- - uid: 18896
+ - uid: 20213
components:
- type: Transform
- pos: -126.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,72.5
parent: 2
- - uid: 18897
+ - uid: 23813
components:
- type: Transform
- pos: -126.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,25.5
parent: 2
- - uid: 18913
+ - uid: 23846
components:
- type: Transform
- pos: -101.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -2.4906719,-17.25244
parent: 2
- - uid: 31300
+ - uid: 23886
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -98.5,43.5
+ pos: -0.47527122,62.785336
parent: 2
- - uid: 31308
+ - uid: 23890
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -93.5,46.5
+ pos: -1.4462893,-11.719762
parent: 2
- - uid: 31318
+ - uid: 23891
components:
- type: Transform
- pos: -122.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -1.4619143,16.77201
parent: 2
- - uid: 31325
+ - uid: 23892
components:
- type: Transform
- pos: -106.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 35.48505,17.728174
parent: 2
- - uid: 32259
+ - uid: 23893
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -119.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 47.512714,16.526192
parent: 2
- - uid: 32260
+ - uid: 23894
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -108.5,61.5
+ pos: 45.5049,-19.23642
parent: 2
- - uid: 32261
+ - uid: 23896
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -48.454502,6.744308
parent: 2
- - uid: 32262
+ - uid: 23897
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -31.46659,23.506786
parent: 2
- - uid: 32263
+ - uid: 23898
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -122.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: -74.45819,10.307827
parent: 2
- - uid: 32264
+ - uid: 23899
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -118.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -94.39373,10.266306
parent: 2
- - uid: 32265
+ - uid: 23905
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -109.5,41.5
+ pos: 3.5,8.5
parent: 2
- - uid: 32266
+ - uid: 24129
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -97.5,57.5
+ pos: 3.5,47.5
parent: 2
- - uid: 32267
+- proto: SignDirectionalExam
+ entities:
+ - uid: 36934
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -102.5,59.5
+ pos: 7.513509,0.87660193
parent: 2
- - uid: 32336
+ - uid: 36935
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5129132,-3.224791
parent: 2
-- proto: SignRadiationMed
+- proto: SignDirectionalFood
entities:
- - uid: 18909
+ - uid: 21466
components:
- type: Transform
- pos: -119.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -2.4832067,23.235407
parent: 2
- - uid: 18910
+ - uid: 23851
components:
- type: Transform
- pos: -125.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -3.431856,-17.486814
parent: 2
- - uid: 18911
+ - uid: 23901
components:
- type: Transform
- pos: -98.5,61.5
+ pos: -48.472904,-11.470109
parent: 2
- - uid: 18912
+ - uid: 23902
components:
- type: Transform
- pos: -106.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -32.496925,-17.22792
parent: 2
-- proto: SignRedFour
+ - uid: 23903
+ components:
+ - type: Transform
+ pos: -46.455734,-13.7279215
+ parent: 2
+- proto: SignDirectionalHop
entities:
- - uid: 15837
+ - uid: 23852
components:
- type: Transform
- pos: -24.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 6.5021544,-17.25244
parent: 2
-- proto: SignRedOne
+- proto: SignDirectionalHydro
entities:
- - uid: 7724
+ - uid: 23710
components:
- type: Transform
- pos: -24.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-9.5
parent: 2
- - uid: 13045
+ - uid: 23816
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
+ pos: -2.5,22.5
parent: 2
-- proto: SignRedThree
- entities:
- - uid: 7427
+ - uid: 23848
components:
- type: Transform
- pos: -30.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -2.4828594,-17.75244
parent: 2
- - uid: 22072
+ - uid: 23868
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-10.5
+ pos: -38.436584,-12.267479
parent: 2
-- proto: SignRedTwo
- entities:
- - uid: 13037
+ - uid: 23869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-7.5
+ pos: -47.504093,10.266583
parent: 2
- - uid: 15636
+ - uid: 23870
components:
- type: Transform
- pos: -30.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -31.503471,23.251003
parent: 2
-- proto: SignRobo
+- proto: SignDirectionalIcu
entities:
- - uid: 5303
+ - uid: 4170
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 41.5,42.5
+ pos: 7.5499625,4.164572
parent: 2
-- proto: SignSec
- entities:
- - uid: 2487
+ - uid: 30881
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,7.5
parent: 2
-- proto: SignSecurearea
- entities:
- - uid: 5359
+ - uid: 31738
components:
- type: Transform
- pos: 55.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,8.5
parent: 2
- - uid: 23819
+ - uid: 31739
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.499207,27.502502
+ rot: 3.141592653589793 rad
+ pos: 18.5,8.5
parent: 2
-- proto: SignShipDock
+- proto: SignDirectionalJanitor
entities:
- - uid: 2181
+ - uid: 20991
components:
- type: Transform
- pos: -0.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,23.5
parent: 2
- - uid: 20003
+ - uid: 23872
components:
- type: Transform
- pos: -2.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5209,-0.7626915
parent: 2
- - uid: 20004
+- proto: SignDirectionalLibrary
+ entities:
+ - uid: 23883
components:
- type: Transform
- pos: 5.5,79.5
+ rot: 3.141592653589793 rad
+ pos: 51.440975,6.549694
parent: 2
- - uid: 22735
+ - uid: 23884
components:
- type: Transform
- pos: -28.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 51.53832,15.57411
parent: 2
-- proto: SignSmoking
- entities:
- - uid: 30964
+ - uid: 23885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.522694,25.27844
+ parent: 2
+ - uid: 26856
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,-2.5
+ pos: 5.5323524,23.211216
parent: 2
-- proto: SignSpace
+- proto: SignDirectionalLogistics
entities:
- - uid: 2470
+ - uid: 15144
components:
- type: Transform
- pos: 3.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: 33.509586,-17.234446
parent: 2
- - uid: 20213
+ - uid: 23859
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-45.5
+ pos: -3.4342637,-17.746038
parent: 2
- - uid: 23830
+ - uid: 23861
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: -48.484005,-11.197954
parent: 2
- - uid: 23832
+ - uid: 26190
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,79.5
+ pos: -13.403669,-17.2851
parent: 2
- - uid: 23833
+ - uid: 31888
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,57.5
+ pos: -46.4965,10.269556
parent: 2
- - uid: 23834
+- proto: SignDirectionalMail
+ entities:
+ - uid: 6709
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 81.5,0.5
+ pos: -13.4115095,-17.754719
parent: 2
- - uid: 23835
+- proto: SignDirectionalMed
+ entities:
+ - uid: 22368
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 78.5,-14.5
+ pos: 33.5,-17.5
parent: 2
- - uid: 23836
+ - uid: 23808
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-32.5
+ pos: 48.5,-6.5
parent: 2
- - uid: 23837
+ - uid: 23817
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-35.5
+ pos: -2.4978511,22.24327
parent: 2
- - uid: 23838
+ - uid: 23845
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 5.5115795,-17.242666
parent: 2
- - uid: 23840
+ - uid: 23864
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -57.5,-34.5
+ pos: 47.540833,16.834927
parent: 2
- - uid: 23842
+ - uid: 23865
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -65.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -43.493057,7.8181133
parent: 2
- - uid: 31641
+ - uid: 23866
components:
- type: Transform
- pos: -24.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: -38.45148,-12.744019
parent: 2
-- proto: SignSurgery
+- proto: SignDirectionalSalvage
entities:
- - uid: 22026
+ - uid: 3263
components:
- type: Transform
- pos: -12.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-37.5
parent: 2
-- proto: SignTelecomms
- entities:
- - uid: 2769
+ - uid: 21012
components:
- type: Transform
- pos: 4.5,61.5
+ pos: -17.5,-27.5
parent: 2
-- proto: SignToolStorage
- entities:
- - uid: 1137
+ - uid: 22266
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,4.5
+ pos: -13.409092,-17.529654
parent: 2
-- proto: SignVirology
+- proto: SignDirectionalSci
entities:
- - uid: 22038
+ - uid: 23850
components:
- type: Transform
- pos: -13.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 5.4983835,-17.75244
parent: 2
-- proto: SignZomlab
- entities:
- - uid: 5350
+ - uid: 23878
components:
- type: Transform
- pos: 52.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 44.526928,-15.133438
parent: 2
-- proto: SingularityGenerator
- entities:
- - uid: 18685
+ - uid: 23879
components:
- type: Transform
- anchored: False
- pos: -113.5173,50.881065
+ rot: 3.141592653589793 rad
+ pos: 51.467934,6.0148125
parent: 2
- - type: Physics
- bodyType: Dynamic
-- proto: SinkStemlessWater
- entities:
- - uid: 1611
+ - uid: 26131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.508915,23.773716
+ parent: 2
+ - uid: 30340
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,9.5
+ pos: 30.519985,22.737196
parent: 2
- - uid: 1782
+- proto: SignDirectionalSec
+ entities:
+ - uid: 16615
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -13.5,9.5
+ pos: 6.5,-17.5
parent: 2
- - uid: 8350
+ - uid: 23818
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -67.5,0.5
+ pos: -2.5117471,22.766708
parent: 2
- - uid: 18070
+ - uid: 23874
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,57.5
+ pos: -17.477133,23.300415
parent: 2
- - uid: 22780
+ - uid: 23875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -47.499043,10.51958
+ parent: 2
+ - uid: 23876
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -13.5,6.5
+ pos: -36.482662,-12.754795
parent: 2
-- proto: SinkWide
+ - uid: 23877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.519115,-15.414688
+ parent: 2
+- proto: SignDirectionalSolar
entities:
- - uid: 1069
+ - uid: 9563
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 36.5,-2.5
+ pos: 65.5,-30.5
parent: 2
- - uid: 1771
+ - uid: 23824
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-32.5
parent: 2
- - uid: 2484
+ - uid: 23825
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-37.5
parent: 2
- - uid: 2602
+ - uid: 23826
components:
- type: Transform
- pos: 23.5,-1.5
+ pos: 54.5,-32.5
parent: 2
- - uid: 3043
+ - uid: 23828
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,-25.5
+ pos: -55.5,38.5
parent: 2
- - uid: 3324
+ - uid: 23829
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,42.5
parent: 2
- - uid: 7595
+- proto: SignDirectionalSupply
+ entities:
+ - uid: 34972
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -56.5,-24.5
+ pos: 32.5,7.5
parent: 2
- - uid: 7597
+- proto: SignDirectionalWash
+ entities:
+ - uid: 16475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,65.5
+ parent: 2
+ - uid: 23821
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -55.5,-17.5
+ pos: 70.5,-15.5
parent: 2
- - uid: 12007
+- proto: SignDisposalSpace
+ entities:
+ - uid: 29708
components:
- type: Transform
- pos: 72.5,-10.5
+ pos: -17.5,53.5
parent: 2
- - uid: 18447
+- proto: SignDojo
+ entities:
+ - uid: 5971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,24.5
+ pos: 36.5,-17.5
parent: 2
- - uid: 18510
+- proto: SignElectrical
+ entities:
+ - uid: 1263
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,23.5
+ pos: -52.5,63.5
parent: 2
- - uid: 26707
+ - uid: 6211
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-30.5
+ pos: -52.5,56.5
parent: 2
- - uid: 26712
+ - uid: 27970
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-30.5
+ pos: -46.5,52.5
parent: 2
-- proto: Skub
- entities:
- - uid: 32587
+ - uid: 31279
components:
- type: Transform
- pos: 74.53695,42.55083
+ rot: 1.5707963267948966 rad
+ pos: -48.5,74.5
parent: 2
-- proto: SmartFridge
- entities:
- - uid: 3998
+ - uid: 31280
components:
- type: Transform
- pos: 21.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,71.5
parent: 2
- - uid: 3999
+ - uid: 31281
components:
- type: Transform
- pos: 21.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,68.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
-- proto: SMESBasic
- entities:
- - uid: 215
+ - uid: 37302
components:
- - type: MetaData
- name: AME SMES 1
- type: Transform
- pos: -62.5,35.5
+ pos: -41.5,74.5
parent: 2
- - uid: 3666
+- proto: SignElectricalMed
+ entities:
+ - uid: 3354
components:
- - type: MetaData
- name: AME SMES 2
- type: Transform
- pos: -62.5,36.5
+ pos: 76.5,55.5
parent: 2
- - uid: 8798
+ - uid: 3789
components:
- - type: MetaData
- name: AME SMES 3
- type: Transform
- pos: -60.5,36.5
+ pos: -40.5,70.5
parent: 2
- - uid: 9975
+ - uid: 4673
components:
- - type: MetaData
- name: North Solars SMES 1
- type: Transform
- pos: -58.5,40.5
+ pos: 22.5,-27.5
parent: 2
- - uid: 9976
+ - uid: 11970
components:
- - type: MetaData
- name: North Solars SMES 2
- type: Transform
- pos: -57.5,40.5
+ pos: 18.5,-27.5
parent: 2
- - uid: 10407
+ - uid: 14197
components:
- - type: MetaData
- name: South West Solars SMES 1
- type: Transform
- pos: -61.5,-33.5
+ pos: 51.5,-30.5
parent: 2
- - uid: 10411
+ - uid: 20494
components:
- - type: MetaData
- name: South West Solars SMES 2
- type: Transform
- pos: -61.5,-35.5
+ pos: -69.5,37.5
parent: 2
- - uid: 13398
+ - uid: 20495
components:
- - type: MetaData
- name: South East Solars SMES 2
- type: Transform
- pos: 57.5,-34.5
+ pos: -27.5,-28.5
parent: 2
- - uid: 13399
+ - uid: 20496
components:
- - type: MetaData
- name: South East Solars SMES 1
- type: Transform
- pos: 55.5,-34.5
+ pos: -63.5,-20.5
parent: 2
- - uid: 19041
+ - uid: 20497
components:
- - type: MetaData
- name: Singularity SMES
- type: Transform
- pos: -93.5,54.5
+ pos: 45.5,-28.5
parent: 2
- - uid: 19288
+ - uid: 20516
components:
- - type: MetaData
- name: AME SMES 4
- type: Transform
- pos: -60.5,35.5
+ pos: 6.5,47.5
parent: 2
-- proto: SMESMachineCircuitboard
- entities:
- - uid: 2339
+ - uid: 27705
components:
- type: Transform
- pos: -47.29088,26.780298
+ pos: -64.5,33.5
parent: 2
- - uid: 6681
+ - uid: 27969
components:
- type: Transform
- pos: -47.60338,26.78811
+ pos: -34.5,69.5
parent: 2
-- proto: SmokingPipeFilledTobacco
- entities:
- - uid: 14213
+ - uid: 27973
components:
- type: Transform
- pos: 11.465008,47.60172
+ pos: -66.5,-2.5
parent: 2
-- proto: Soap
- entities:
- - uid: 18540
+ - uid: 28423
components:
- type: Transform
- pos: -40.512363,24.825838
+ pos: -70.5,30.5
parent: 2
- - uid: 18541
+ - uid: 30845
components:
- type: Transform
- pos: -40.293613,22.622713
+ rot: -1.5707963267948966 rad
+ pos: 33.5,37.5
parent: 2
-- proto: soda_dispenser
- entities:
- - uid: 4644
+ - uid: 32498
components:
- type: Transform
- pos: 9.5,54.5
+ pos: 98.5,78.5
parent: 2
- - uid: 5749
+ - uid: 33562
components:
- type: Transform
- pos: 19.5,-27.5
+ pos: 94.5,56.5
parent: 2
- - uid: 33656
+ - uid: 33563
components:
- type: Transform
- pos: -42.5,67.5
+ pos: 80.5,54.5
parent: 2
-- proto: SodaDispenserMachineCircuitboard
- entities:
- - uid: 35824
+ - uid: 37426
components:
- type: Transform
- pos: -51.07225,27.611994
+ pos: 33.5,52.5
parent: 2
-- proto: SolarAssembly
- entities:
- - uid: 9784
+ - uid: 38917
components:
- type: Transform
- pos: -93.5,-58.5
+ rot: 3.141592653589793 rad
+ pos: 11.5,-39.5
parent: 2
- - uid: 10439
+- proto: SignEngine
+ entities:
+ - uid: 8856
components:
- type: Transform
- pos: -96.5,-53.5
+ pos: -56.5,13.5
parent: 2
- - uid: 10441
+- proto: SignEngineering
+ entities:
+ - uid: 7351
components:
- type: Transform
- pos: -97.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,14.5
parent: 2
- - uid: 10466
+ - uid: 13662
components:
- type: Transform
- pos: -94.5,-33.5
+ pos: 18.5,-17.5
parent: 2
- - uid: 10467
+ - uid: 37715
components:
- type: Transform
- pos: -86.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,25.5
parent: 2
- - uid: 10469
+- proto: SignEscapePods
+ entities:
+ - uid: 2785
components:
- type: Transform
- pos: -84.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-2.5
parent: 2
- - uid: 10471
+ - uid: 2829
components:
- type: Transform
- pos: -83.5,-45.5
+ pos: 59.5,-28.5
parent: 2
- - uid: 10473
+ - uid: 2901
components:
- type: Transform
- pos: -96.5,-43.5
+ pos: 45.5,-27.5
parent: 2
- - uid: 10475
+ - uid: 2902
components:
- type: Transform
- pos: -92.5,-48.5
+ pos: 51.5,-31.5
parent: 2
- - uid: 10480
+ - uid: 13277
components:
- type: Transform
- pos: -84.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-27.5
parent: 2
- - uid: 13589
+ - uid: 13278
components:
- type: Transform
- pos: -85.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-32.5
parent: 2
- - uid: 13591
+ - uid: 13758
components:
- type: Transform
- pos: -85.5,-63.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,1.5
parent: 2
- - uid: 13610
+ - uid: 13759
components:
- type: Transform
- pos: -82.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-9.5
parent: 2
- - uid: 13633
+ - uid: 19898
components:
- type: Transform
- pos: 53.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-14.5
parent: 2
- - uid: 23580
+ - uid: 19927
components:
- type: Transform
- pos: 50.5,-51.5
+ pos: -63.5,-19.5
parent: 2
- - uid: 31287
+ - uid: 20019
components:
- type: Transform
- pos: 63.5,-69.5
+ pos: -63.5,-13.5
parent: 2
- - uid: 31288
+- proto: SignEVA
+ entities:
+ - uid: 1992
components:
- type: Transform
- pos: 63.5,-44.5
+ pos: 18.5,22.5
parent: 2
- - uid: 31299
+ - uid: 11217
components:
- type: Transform
- pos: 50.5,-61.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,43.5
parent: 2
- - uid: 31309
+ - uid: 11819
components:
- type: Transform
- pos: 69.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-38.5
parent: 2
- - uid: 31329
+- proto: SignExamroom
+ entities:
+ - uid: 5926
components:
- type: Transform
- pos: 51.5,-64.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-3.5
parent: 2
- - uid: 31330
+ - uid: 36937
components:
- type: Transform
- pos: 50.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-9.5
parent: 2
- - uid: 31905
+ - uid: 36938
components:
- type: Transform
- pos: 60.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-6.5
parent: 2
- - uid: 31906
+- proto: SignExplosives
+ entities:
+ - uid: 19668
components:
- type: Transform
- pos: 62.5,-54.5
+ pos: 6.5,64.5
parent: 2
- - uid: 31908
+- proto: SignGravity
+ entities:
+ - uid: 29563
components:
- type: Transform
- pos: 64.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,15.5
parent: 2
- - uid: 32277
+- proto: SignHead
+ entities:
+ - uid: 1975
components:
- type: Transform
- pos: 61.5,-64.5
+ pos: 13.5,22.5
parent: 2
- - uid: 32278
+ - uid: 3553
components:
- type: Transform
- pos: 68.5,-85.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,22.5
parent: 2
- - uid: 32279
+- proto: SignHydro1
+ entities:
+ - uid: 23873
components:
- type: Transform
- pos: 67.5,-86.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,5.5
parent: 2
- - uid: 35407
+- proto: SignInterrogation
+ entities:
+ - uid: 15537
components:
- type: Transform
- pos: -86.5,66.5
+ pos: -19.5,31.5
parent: 2
- - uid: 35408
+- proto: SignJanitor
+ entities:
+ - uid: 37688
components:
- type: Transform
- pos: -74.5,71.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,14.5
parent: 2
- - uid: 35409
+- proto: SignKiddiePlaque
+ entities:
+ - uid: 1116
components:
- type: Transform
- pos: -76.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,-43.5
parent: 2
- - uid: 35410
+- proto: SignLastIdiot
+ entities:
+ - uid: 2033
components:
- type: Transform
- pos: -83.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-40.5
parent: 2
- - uid: 35411
+ - uid: 30683
components:
- type: Transform
- pos: -76.5,84.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,71.5
parent: 2
- - uid: 35412
+- proto: SignLaundromat
+ entities:
+ - uid: 36929
components:
- type: Transform
- pos: -84.5,94.5
+ pos: -39.5,-20.5
parent: 2
- - uid: 35413
+- proto: SignLawyer
+ entities:
+ - uid: 820
components:
- type: Transform
- pos: -83.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,57.5
parent: 2
- - uid: 35414
+ - uid: 2642
components:
- type: Transform
- pos: -85.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,57.5
parent: 2
-- proto: SolarPanel
+- proto: SignLibrary
entities:
- - uid: 9791
+ - uid: 22680
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -84.5,-45.5
+ pos: 52.5,25.5
parent: 2
- - uid: 9793
+- proto: SignMail
+ entities:
+ - uid: 6528
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-35.5
+ pos: -10.5,-22.5
parent: 2
- - uid: 9795
+- proto: SignMedical
+ entities:
+ - uid: 864
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-40.5
+ pos: -2.5,17.5
parent: 2
- - uid: 9807
+ - uid: 2116
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 49.5,-69.5
+ pos: -2.5,-12.5
parent: 2
- - uid: 9808
+ - uid: 19809
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-54.5
+ pos: -40.5,60.5
parent: 2
- - uid: 9821
+ - uid: 22514
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-71.5
+ pos: -42.5,25.5
parent: 2
- - uid: 9832
+- proto: SignMinerDock
+ entities:
+ - uid: 3284
components:
+ - type: MetaData
+ desc: A sign indicating the salvage dock.
+ name: salvage dock sign
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-43.5
parent: 2
- - uid: 9833
+ - uid: 3542
components:
+ - type: MetaData
+ desc: A sign indicating the salvage dock.
+ name: salvage dock sign
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-43.5
parent: 2
- - uid: 9837
+- proto: SignMorgue
+ entities:
+ - uid: 26858
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-69.5
+ pos: 25.5,8.5
parent: 2
- - uid: 9847
+ - uid: 31002
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-69.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,17.5
parent: 2
- - uid: 10389
+- proto: SignNews
+ entities:
+ - uid: 49
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 52.5,-71.5
+ pos: -25.5,-12.5
parent: 2
- - uid: 10428
+- proto: SignNosmoking
+ entities:
+ - uid: 37633
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 64.5,-71.5
+ pos: 38.5,52.5
parent: 2
- - uid: 10430
+- proto: SignPlaque
+ entities:
+ - uid: 14193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-71.5
+ pos: 20.5,60.5
parent: 2
- - uid: 10446
+ - uid: 16624
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-35.5
+ pos: -7.5,62.5
parent: 2
- - uid: 10487
+ - uid: 37627
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-58.5
+ pos: 10.5,30.5
parent: 2
- - uid: 10491
+- proto: SignPrison
+ entities:
+ - uid: 17879
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,65.5
parent: 2
- - uid: 10492
+ - uid: 36792
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-63.5
+ pos: 74.5,67.5
parent: 2
- - uid: 10499
+ - uid: 36873
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-38.5
+ pos: 66.5,67.5
parent: 2
- - uid: 10500
+ - uid: 36874
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-38.5
+ pos: 66.5,64.5
parent: 2
- - uid: 10501
+ - uid: 36875
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-38.5
+ pos: 74.5,64.5
parent: 2
- - uid: 10502
+ - uid: 37717
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-38.5
+ pos: -36.5,25.5
parent: 2
- - uid: 10503
+- proto: SignPsychology
+ entities:
+ - uid: 37635
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-12.5
parent: 2
- - uid: 10506
+- proto: SignRadiation
+ entities:
+ - uid: 18574
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-40.5
+ pos: 78.5,-14.5
parent: 2
- - uid: 13466
+ - uid: 18577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-66.5
+ pos: 111.5,-6.5
parent: 2
- - uid: 13467
+ - uid: 18584
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-69.5
+ pos: 91.5,-26.5
parent: 2
- - uid: 13468
+ - uid: 18778
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-66.5
+ pos: 91.5,-6.5
parent: 2
- - uid: 13470
+ - uid: 22793
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-64.5
+ pos: 89.5,-10.5
parent: 2
- - uid: 13471
+ - uid: 23215
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-69.5
+ pos: 89.5,-22.5
parent: 2
- - uid: 13475
+ - uid: 29323
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-40.5
+ pos: 78.5,-18.5
+ parent: 2
+ - uid: 29756
+ components:
+ - type: Transform
+ pos: 111.5,-26.5
parent: 2
- - uid: 13482
+ - uid: 32336
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -95.5,-35.5
+ pos: -97.5,65.5
parent: 2
- - uid: 13490
+ - uid: 37969
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -96.5,-33.5
+ pos: 101.5,-6.5
parent: 2
- - uid: 13491
+ - uid: 37970
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -93.5,-33.5
+ pos: 101.5,-26.5
parent: 2
- - uid: 13492
+ - uid: 37971
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -92.5,-33.5
+ pos: 111.5,-16.5
parent: 2
- - uid: 13535
+- proto: SignReception
+ entities:
+ - uid: 24637
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 50.5,-64.5
+ pos: -0.5,-30.5
parent: 2
- - uid: 13580
+ - uid: 24871
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 53.5,-49.5
+ pos: 3.5,-30.5
parent: 2
- - uid: 13582
+- proto: SignRedFour
+ entities:
+ - uid: 15837
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-44.5
+ pos: -24.5,27.5
parent: 2
- - uid: 13584
+- proto: SignRedOne
+ entities:
+ - uid: 7724
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-35.5
+ pos: -24.5,31.5
parent: 2
- - uid: 13593
+ - uid: 13045
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-4.5
parent: 2
- - uid: 13594
+ - uid: 15651
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-53.5
+ pos: -22.5,31.5
parent: 2
- - uid: 13595
+- proto: SignRedThree
+ entities:
+ - uid: 7427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-53.5
+ pos: -30.5,27.5
parent: 2
- - uid: 13606
+ - uid: 22072
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-10.5
parent: 2
- - uid: 13607
+- proto: SignRedTwo
+ entities:
+ - uid: 8636
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-53.5
+ pos: -18.5,31.5
parent: 2
- - uid: 13608
+ - uid: 13037
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-58.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
parent: 2
- - uid: 13615
+ - uid: 15636
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-44.5
+ pos: -30.5,31.5
parent: 2
- - uid: 13623
+- proto: SignRND
+ entities:
+ - uid: 37722
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-46.5
+ pos: -40.5,25.5
parent: 2
- - uid: 13624
+- proto: SignRobo
+ entities:
+ - uid: 5303
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 41.5,42.5
parent: 2
- - uid: 13625
+- proto: SignSalvage
+ entities:
+ - uid: 24558
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-51.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-40.5
parent: 2
- - uid: 13628
+- proto: SignSec
+ entities:
+ - uid: 2487
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 50.5,-49.5
+ pos: -13.5,23.5
parent: 2
- - uid: 13630
+ - uid: 12110
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-51.5
+ pos: 3.5,-26.5
parent: 2
- - uid: 13634
+ - uid: 24773
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-56.5
+ pos: 3.5,-20.5
parent: 2
- - uid: 13660
+ - uid: 30452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-46.5
+ pos: 12.5,-20.5
parent: 2
- - uid: 13661
+ - uid: 34913
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,40.5
parent: 2
- - uid: 13680
+ - uid: 37718
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-77.5
+ pos: -38.5,25.5
parent: 2
- - uid: 13690
+- proto: SignSecure
+ entities:
+ - uid: 29392
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-48.5
+ pos: 90.5,66.5
parent: 2
- - uid: 13692
+ - uid: 32505
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-48.5
+ pos: 95.5,66.5
parent: 2
- - uid: 13693
+- proto: SignSecurearea
+ entities:
+ - uid: 5359
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-50.5
+ pos: 55.5,49.5
parent: 2
- - uid: 13694
+ - uid: 23819
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -17.499207,27.502502
parent: 2
- - uid: 13695
+- proto: SignSecureMed
+ entities:
+ - uid: 32506
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-45.5
+ pos: 93.5,67.5
parent: 2
- - uid: 13698
+- proto: SignSecureMedRed
+ entities:
+ - uid: 27
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,37.5
parent: 2
- - uid: 13701
+ - uid: 316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-49.5
+ pos: -0.5,-25.5
parent: 2
- - uid: 13705
+ - uid: 1865
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 48.5,-49.5
+ pos: -78.5,16.5
parent: 2
- - uid: 13708
+ - uid: 12094
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-51.5
+ pos: -0.5,-21.5
parent: 2
- - uid: 13709
+ - uid: 15566
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-51.5
+ pos: 3.5,46.5
parent: 2
- - uid: 13710
+ - uid: 15874
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 52.5,-56.5
+ pos: -76.5,15.5
parent: 2
- - uid: 13714
+ - uid: 18078
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-56.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,53.5
parent: 2
- - uid: 17006
+ - uid: 30895
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-46.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,43.5
parent: 2
- - uid: 18697
+ - uid: 30898
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-84.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,43.5
parent: 2
- - uid: 18787
+ - uid: 36943
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -97.5,-43.5
+ pos: -30.5,53.5
parent: 2
- - uid: 18788
+ - uid: 38859
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-43.5
+ pos: -0.5,46.5
parent: 2
- - uid: 18889
+- proto: SignSecureSmall
+ entities:
+ - uid: 32507
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-43.5
+ pos: 94.5,67.5
parent: 2
- - uid: 18892
+ - uid: 36924
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-45.5
+ pos: 8.5,-12.5
parent: 2
- - uid: 18894
+- proto: SignSecureSmallRed
+ entities:
+ - uid: 22252
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-40.5
+ pos: -101.5,49.5
parent: 2
- - uid: 19723
+ - uid: 23003
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-61.5
+ pos: -111.5,49.5
parent: 2
- - uid: 22255
+ - uid: 23004
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-59.5
+ pos: -103.5,47.5
parent: 2
- - uid: 23724
+ - uid: 23005
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-61.5
+ pos: -103.5,57.5
parent: 2
- - uid: 28749
+ - uid: 27335
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-59.5
+ pos: 34.5,17.5
parent: 2
- - uid: 31271
+ - uid: 27336
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-59.5
+ pos: 34.5,14.5
parent: 2
- - uid: 31284
+ - uid: 31003
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-61.5
+ pos: 31.5,17.5
parent: 2
- - uid: 31904
+ - uid: 32365
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-84.5
+ pos: -101.5,55.5
parent: 2
- - uid: 31909
+ - uid: 32366
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-44.5
+ pos: -109.5,47.5
parent: 2
- - uid: 31999
+ - uid: 32367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,-85.5
+ pos: -111.5,55.5
parent: 2
- - uid: 32000
+ - uid: 35966
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-80.5
+ pos: -104.5,41.5
parent: 2
- - uid: 32002
+ - uid: 38368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-77.5
+ pos: -120.5,54.5
parent: 2
- - uid: 32018
+ - uid: 38369
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-38.5
+ pos: -125.5,50.5
parent: 2
- - uid: 32274
+ - uid: 38387
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -97.5,-38.5
+ pos: -116.5,50.5
parent: 2
- - uid: 32285
+ - uid: 38388
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-44.5
+ pos: -109.5,57.5
parent: 2
- - uid: 32309
+ - uid: 38438
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 53.5,-44.5
+ pos: -125.5,54.5
parent: 2
- - uid: 32323
+- proto: SignShipDock
+ entities:
+ - uid: 18362
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-56.5
+ pos: 29.5,57.5
parent: 2
- - uid: 32324
+ - uid: 20003
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-59.5
+ pos: -2.5,79.5
parent: 2
- - uid: 35295
+ - uid: 20004
components:
- type: Transform
- pos: -77.5,56.5
+ pos: 5.5,79.5
parent: 2
- - uid: 35296
+- proto: SignShock
+ entities:
+ - uid: 9354
components:
- type: Transform
- pos: -76.5,56.5
+ pos: 89.5,-28.5
parent: 2
- - uid: 35297
+ - uid: 9739
components:
- type: Transform
- pos: -74.5,56.5
+ pos: 113.5,-28.5
parent: 2
- - uid: 35298
+ - uid: 9740
components:
- type: Transform
- pos: -72.5,56.5
+ pos: 113.5,-4.5
parent: 2
- - uid: 35299
+ - uid: 9769
components:
- type: Transform
- pos: -72.5,54.5
+ pos: 89.5,-4.5
parent: 2
- - uid: 35300
+ - uid: 16444
components:
- type: Transform
- pos: -74.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,55.5
parent: 2
- - uid: 35301
+ - uid: 18795
components:
- type: Transform
- pos: -76.5,54.5
+ pos: 88.5,-9.5
parent: 2
- - uid: 35302
+ - uid: 19251
components:
- type: Transform
- pos: -75.5,54.5
+ pos: 88.5,-23.5
parent: 2
- - uid: 35303
+ - uid: 24052
components:
- type: Transform
- pos: -84.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,55.5
parent: 2
- - uid: 35304
+ - uid: 24054
components:
- type: Transform
- pos: -86.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,52.5
parent: 2
- - uid: 35305
+ - uid: 24138
components:
- type: Transform
- pos: -87.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,55.5
parent: 2
- - uid: 35306
+ - uid: 37650
components:
- type: Transform
- pos: -88.5,54.5
+ pos: -53.5,54.5
parent: 2
- - uid: 35307
+ - uid: 37654
components:
- type: Transform
- pos: -87.5,54.5
+ pos: -20.5,68.5
parent: 2
- - uid: 35308
+ - uid: 37655
components:
- type: Transform
- pos: -86.5,54.5
+ pos: -30.5,68.5
parent: 2
- - uid: 35309
+ - uid: 37656
components:
- type: Transform
- pos: -75.5,59.5
+ pos: -40.5,74.5
parent: 2
- - uid: 35310
+ - uid: 37657
components:
- type: Transform
- pos: -74.5,59.5
+ pos: -41.5,71.5
parent: 2
- - uid: 35311
+ - uid: 37658
components:
- type: Transform
- pos: -72.5,61.5
+ pos: -49.5,69.5
parent: 2
- - uid: 35312
+ - uid: 37659
components:
- type: Transform
- pos: -75.5,61.5
+ pos: -47.5,61.5
parent: 2
- - uid: 35313
+- proto: SignSmoking
+ entities:
+ - uid: 23746
components:
- type: Transform
- pos: -77.5,61.5
+ pos: -34.5,21.5
parent: 2
- - uid: 35314
+ - uid: 30964
components:
- type: Transform
- pos: -83.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-2.5
parent: 2
- - uid: 35315
+ - uid: 36151
components:
- type: Transform
- pos: -84.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,82.5
parent: 2
- - uid: 35316
+ - uid: 37632
components:
- type: Transform
- pos: -86.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,39.5
parent: 2
- - uid: 35317
+- proto: SignSomethingOld
+ entities:
+ - uid: 4882
components:
- type: Transform
- pos: -86.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,47.5
parent: 2
- - uid: 35318
+ - uid: 18887
components:
- type: Transform
- pos: -88.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -114.5,54.5
parent: 2
- - uid: 35319
+ - uid: 32500
components:
- type: Transform
- pos: -84.5,59.5
+ pos: 92.5,71.5
parent: 2
- - uid: 35320
+ - uid: 32501
components:
- type: Transform
- pos: -76.5,64.5
+ pos: 100.5,76.5
parent: 2
- - uid: 35321
+ - uid: 35723
components:
- type: Transform
- pos: -73.5,66.5
+ pos: 80.5,46.5
parent: 2
- - uid: 35322
+ - uid: 35725
components:
- type: Transform
- pos: -74.5,66.5
+ pos: 102.5,52.5
parent: 2
- - uid: 35323
+ - uid: 36156
components:
- type: Transform
- pos: -87.5,66.5
+ pos: 55.5,79.5
parent: 2
- - uid: 35324
+ - uid: 36157
components:
- type: Transform
- pos: -88.5,64.5
+ pos: 59.5,67.5
parent: 2
- - uid: 35325
+- proto: SignSomethingOld2
+ entities:
+ - uid: 1649
components:
- type: Transform
- pos: -83.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -124.5,50.5
parent: 2
- - uid: 35326
+ - uid: 14288
components:
- type: Transform
- pos: -84.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -111.5,56.5
parent: 2
- - uid: 35327
+ - uid: 18699
components:
- type: Transform
- pos: -85.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: -108.5,40.5
parent: 2
- - uid: 35328
+ - uid: 32502
components:
- type: Transform
- pos: -87.5,69.5
+ pos: 91.5,80.5
parent: 2
- - uid: 35329
+ - uid: 35722
components:
- type: Transform
- pos: -85.5,71.5
+ pos: 85.5,50.5
parent: 2
- - uid: 35330
+ - uid: 36639
components:
- type: Transform
- pos: -83.5,69.5
+ pos: 98.5,60.5
parent: 2
- - uid: 35331
+- proto: SignSpace
+ entities:
+ - uid: 388
components:
- type: Transform
- pos: -75.5,69.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,8.5
parent: 2
- - uid: 35332
+ - uid: 15487
components:
- type: Transform
- pos: -73.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,56.5
parent: 2
- - uid: 35333
+ - uid: 21902
components:
- type: Transform
- pos: -74.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: -74.5,24.5
parent: 2
- - uid: 35334
+ - uid: 23830
components:
- type: Transform
- pos: -76.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,40.5
parent: 2
- - uid: 35335
+ - uid: 23832
components:
- type: Transform
- pos: -75.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,79.5
parent: 2
- - uid: 35336
+ - uid: 23836
components:
- type: Transform
- pos: -74.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-32.5
parent: 2
- - uid: 35337
+ - uid: 23838
components:
- type: Transform
- pos: -87.5,74.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-53.5
parent: 2
- - uid: 35338
+ - uid: 23840
components:
- type: Transform
- pos: -86.5,74.5
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-34.5
parent: 2
- - uid: 35339
+ - uid: 23842
components:
- type: Transform
- pos: -85.5,74.5
+ rot: -1.5707963267948966 rad
+ pos: -65.5,-13.5
parent: 2
- - uid: 35340
+ - uid: 29984
components:
- type: Transform
- pos: -84.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,16.5
parent: 2
- - uid: 35341
+ - uid: 30290
components:
- type: Transform
- pos: -85.5,76.5
+ rot: 1.5707963267948966 rad
+ pos: -95.5,2.5
parent: 2
- - uid: 35342
+ - uid: 30291
components:
- type: Transform
- pos: -86.5,76.5
+ rot: 3.141592653589793 rad
+ pos: -101.5,1.5
parent: 2
- - uid: 35343
+ - uid: 30707
components:
- type: Transform
- pos: -88.5,76.5
+ pos: 42.5,10.5
parent: 2
- - uid: 35344
+ - uid: 32171
components:
- type: Transform
- pos: -88.5,74.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,-19.5
parent: 2
- - uid: 35345
+ - uid: 35727
components:
- type: Transform
- pos: -83.5,76.5
+ pos: 101.5,75.5
parent: 2
- - uid: 35346
+ - uid: 37678
components:
- type: Transform
- pos: -83.5,81.5
+ pos: -40.5,7.5
parent: 2
- - uid: 35347
+ - uid: 37679
components:
- type: Transform
- pos: -84.5,81.5
+ pos: -40.5,-9.5
parent: 2
- - uid: 35348
+ - uid: 37894
components:
- type: Transform
- pos: -85.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,-13.5
parent: 2
- - uid: 35349
+ - uid: 38956
components:
- type: Transform
- pos: -88.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-33.5
parent: 2
- - uid: 35350
+- proto: SignSurgery
+ entities:
+ - uid: 22026
components:
- type: Transform
- pos: -76.5,81.5
+ pos: -12.5,0.5
parent: 2
- - uid: 35351
+- proto: SignToolStorage
+ entities:
+ - uid: 1137
components:
- type: Transform
- pos: -72.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,4.5
parent: 2
- - uid: 35352
+ - uid: 37719
components:
- type: Transform
- pos: -74.5,79.5
+ pos: -41.5,25.5
parent: 2
- - uid: 35353
+ - uid: 37720
components:
- type: Transform
- pos: -72.5,84.5
+ pos: 22.5,-17.5
parent: 2
- - uid: 35354
+ - uid: 37956
components:
- type: Transform
- pos: -76.5,86.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,-22.5
parent: 2
- - uid: 35355
+ - uid: 37957
components:
- type: Transform
- pos: -86.5,84.5
+ rot: 3.141592653589793 rad
+ pos: 85.5,-10.5
parent: 2
- - uid: 35356
+- proto: SignVirology
+ entities:
+ - uid: 7713
components:
- type: Transform
- pos: -83.5,89.5
+ pos: -5.5,4.5
parent: 2
- - uid: 35357
+- proto: SignXenolab
+ entities:
+ - uid: 36102
components:
- type: Transform
- pos: -72.5,91.5
+ pos: 71.5,82.5
parent: 2
- - uid: 35358
+- proto: SignZomlab
+ entities:
+ - uid: 5350
components:
- type: Transform
- pos: -76.5,96.5
+ pos: 52.5,48.5
parent: 2
- - uid: 35359
+- proto: SilverOre1
+ entities:
+ - uid: 35964
components:
- type: Transform
- pos: -73.5,94.5
+ pos: 64.47234,80.61853
parent: 2
- - uid: 35360
+- proto: SingularityGenerator
+ entities:
+ - uid: 29758
components:
- type: Transform
- pos: -85.5,94.5
+ pos: 101.5,-16.5
parent: 2
-- proto: SolarPanelBroken
+- proto: SinkStemlessWater
entities:
- - uid: 9788
+ - uid: 158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-53.5
+ pos: -6.5,7.5
parent: 2
- - uid: 9789
+ - uid: 1611
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -84.5,-65.5
+ pos: -6.5,9.5
parent: 2
- - uid: 9790
+ - uid: 1782
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-60.5
+ pos: -13.5,9.5
parent: 2
- - uid: 9792
+ - uid: 3133
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-48.5
+ pos: -25.5,24.5
parent: 2
- - uid: 10442
+ - uid: 4697
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-53.5
+ pos: -29.5,34.5
parent: 2
- - uid: 10443
+ - uid: 4794
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -92.5,-60.5
+ pos: -29.5,24.5
parent: 2
- - uid: 10444
+ - uid: 4894
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-65.5
+ pos: -25.5,34.5
parent: 2
- - uid: 10445
+ - uid: 8350
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: -67.5,0.5
parent: 2
- - uid: 10472
+ - uid: 12129
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-48.5
+ pos: 13.5,-21.5
parent: 2
- - uid: 10481
+ - uid: 18070
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -93.5,-55.5
+ pos: -30.5,57.5
parent: 2
- - uid: 10482
+ - uid: 21118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 85.5,77.5
parent: 2
- - uid: 10483
+ - uid: 31619
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-53.5
+ pos: 76.5,62.5
parent: 2
- - uid: 10484
+- proto: SinkWide
+ entities:
+ - uid: 1069
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-2.5
parent: 2
- - uid: 10485
+ - uid: 1771
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-58.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,1.5
parent: 2
- - uid: 10486
+ - uid: 2602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,-53.5
+ pos: 23.5,-1.5
parent: 2
- - uid: 10488
+ - uid: 13853
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -85.5,-55.5
+ pos: 69.5,-11.5
parent: 2
- - uid: 10489
+ - uid: 19110
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,9.5
parent: 2
- - uid: 10490
+ - uid: 19169
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,10.5
parent: 2
- - uid: 13474
+ - uid: 24941
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -82.5,-48.5
+ pos: -56.5,-18.5
parent: 2
- - uid: 13489
+ - uid: 30309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,9.5
+ parent: 2
+ - uid: 30404
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -86.5,-50.5
+ pos: 74.5,-11.5
parent: 2
- - uid: 13581
+ - uid: 30614
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-44.5
+ pos: -56.5,-20.5
parent: 2
- - uid: 13583
+- proto: Skub
+ entities:
+ - uid: 19810
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-48.5
+ pos: 6.5396366,-18.413843
parent: 2
- - uid: 13609
+- proto: SmartFridge
+ entities:
+ - uid: 3998
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-45.5
+ pos: 21.5,-7.5
parent: 2
- - uid: 13612
+ - uid: 3999
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -96.5,-45.5
+ pos: 21.5,-8.5
parent: 2
- - uid: 13626
+ - 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: SMESBasic
+ entities:
+ - uid: 215
components:
+ - type: MetaData
+ name: AME SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-49.5
+ pos: -62.5,35.5
parent: 2
- - uid: 13629
+ - uid: 3401
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-56.5
+ pos: -60.5,34.5
parent: 2
- - uid: 13631
+ - uid: 3666
components:
+ - type: MetaData
+ name: AME SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-54.5
+ pos: -62.5,36.5
parent: 2
- - uid: 13632
+ - uid: 8798
components:
+ - type: MetaData
+ name: AME SMES 2
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-46.5
+ pos: -60.5,36.5
parent: 2
- - uid: 13635
+ - uid: 9975
components:
+ - type: MetaData
+ name: North Solars SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-69.5
+ pos: -58.5,40.5
parent: 2
- - uid: 13636
+ - uid: 9976
components:
+ - type: MetaData
+ name: North Solars SMES 2
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-71.5
+ pos: -57.5,40.5
parent: 2
- - uid: 13637
+ - uid: 10407
components:
+ - type: MetaData
+ name: South West Solars SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-49.5
+ pos: -61.5,-33.5
parent: 2
- - uid: 13638
+ - uid: 10411
components:
+ - type: MetaData
+ name: South West Solars SMES 2
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-49.5
+ pos: -61.5,-35.5
parent: 2
- - uid: 13696
+ - uid: 12079
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-38.5
+ pos: -62.5,34.5
parent: 2
- - uid: 13697
+ - uid: 13398
components:
+ - type: MetaData
+ name: South East Solars SMES 2
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-45.5
+ pos: 57.5,-34.5
parent: 2
- - uid: 13712
+ - uid: 13399
components:
+ - type: MetaData
+ name: South East Solars SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-79.5
+ pos: 55.5,-34.5
parent: 2
- - uid: 13713
+ - uid: 18661
components:
+ - type: MetaData
+ name: PA SMES 1
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,-82.5
+ pos: 82.5,-13.5
parent: 2
- - uid: 18703
+ - uid: 18669
components:
+ - type: MetaData
+ name: PA SMES 4
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-43.5
+ pos: 82.5,-19.5
parent: 2
- - uid: 18704
+ - uid: 18743
components:
+ - type: MetaData
+ name: PA SMES 5
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-35.5
+ pos: 83.5,-19.5
parent: 2
- - uid: 18706
+ - uid: 18771
components:
+ - type: MetaData
+ name: PA SMES 6
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,-38.5
+ pos: 84.5,-19.5
parent: 2
- - uid: 18707
+ - uid: 18775
components:
+ - type: MetaData
+ name: PA SMES 3
- type: Transform
- rot: 3.141592653589793 rad
- pos: -81.5,-38.5
+ pos: 84.5,-13.5
parent: 2
- - uid: 18708
+ - uid: 18968
components:
+ - type: MetaData
+ name: PA SMES 2
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,-40.5
+ pos: 83.5,-13.5
parent: 2
- - uid: 18710
+ - uid: 19288
components:
+ - type: MetaData
+ name: AME SMES 4
- type: Transform
- rot: 3.141592653589793 rad
- pos: -86.5,-40.5
+ pos: -60.5,35.5
parent: 2
- - uid: 19722
+- proto: SMESMachineCircuitboard
+ entities:
+ - uid: 2339
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-61.5
+ pos: -47.29088,26.780298
parent: 2
- - uid: 20972
+ - uid: 6681
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-61.5
+ pos: -47.60338,26.78811
parent: 2
- - uid: 23002
+- proto: SmokingPipeFilledTobacco
+ entities:
+ - uid: 14213
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-49.5
+ pos: 11.465008,47.60172
parent: 2
- - uid: 23032
+- proto: Soap
+ entities:
+ - uid: 18541
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-51.5
+ pos: -40.60408,11.515232
parent: 2
- - uid: 23047
+- proto: soda_dispenser
+ entities:
+ - uid: 4644
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-61.5
+ pos: 9.5,54.5
parent: 2
- - uid: 23064
+ - uid: 7174
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 49.5,-59.5
+ pos: -39.5,-26.5
parent: 2
- - uid: 23467
+ - uid: 33656
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-61.5
+ pos: -42.5,67.5
parent: 2
- - uid: 23721
+- proto: SodaDispenserMachineCircuitboard
+ entities:
+ - uid: 35824
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-61.5
+ pos: -51.07225,27.611994
parent: 2
- - uid: 23723
+- proto: SolarAssembly
+ entities:
+ - uid: 9784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-56.5
+ pos: -93.5,-58.5
parent: 2
- - uid: 31286
+ - uid: 10439
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-54.5
+ pos: -96.5,-53.5
parent: 2
- - uid: 31895
+ - uid: 10441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-51.5
+ pos: -97.5,-33.5
parent: 2
- - uid: 31910
+ - uid: 10466
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 51.5,-71.5
+ pos: -94.5,-33.5
parent: 2
- - uid: 31911
+ - uid: 10467
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 48.5,-71.5
+ pos: -86.5,-45.5
parent: 2
- - uid: 31912
+ - uid: 10469
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-46.5
+ pos: -84.5,-40.5
parent: 2
- - uid: 31913
+ - uid: 10471
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-83.5
+ pos: -83.5,-45.5
parent: 2
- - uid: 32270
+ - uid: 10473
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,-40.5
+ pos: -96.5,-43.5
parent: 2
- - uid: 32271
+ - uid: 10475
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,-40.5
+ pos: -92.5,-48.5
parent: 2
- - uid: 32272
+ - uid: 10480
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -83.5,-38.5
+ pos: -84.5,-55.5
parent: 2
- - uid: 32273
+ - uid: 13589
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -82.5,-45.5
+ pos: -85.5,-58.5
parent: 2
- - uid: 32280
+ - uid: 13591
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-83.5
+ pos: -85.5,-63.5
parent: 2
- - uid: 32281
+ - uid: 13610
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-81.5
+ pos: -82.5,-58.5
parent: 2
- - uid: 32282
+ - uid: 13633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-75.5
+ pos: 53.5,-80.5
parent: 2
- - uid: 32283
+ - uid: 23580
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-75.5
+ pos: 50.5,-51.5
parent: 2
- - uid: 32284
+ - uid: 31287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-64.5
+ pos: 63.5,-69.5
parent: 2
- - uid: 32286
+ - uid: 31288
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-64.5
+ pos: 63.5,-44.5
parent: 2
- - uid: 32287
+ - uid: 31299
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-79.5
+ pos: 50.5,-61.5
parent: 2
- - uid: 32291
+ - uid: 31309
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-78.5
+ pos: 69.5,-81.5
parent: 2
- - uid: 32301
+ - uid: 31329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-64.5
+ pos: 51.5,-64.5
parent: 2
- - uid: 32305
+ - uid: 31330
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 49.5,-64.5
+ pos: 50.5,-46.5
parent: 2
- - uid: 32306
+ - uid: 31905
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-49.5
+ pos: 60.5,-56.5
parent: 2
- - uid: 32307
+ - uid: 31906
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-61.5
+ pos: 62.5,-54.5
parent: 2
- - uid: 32308
+ - uid: 31908
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-54.5
+ pos: 64.5,-51.5
parent: 2
- - uid: 32313
+ - uid: 32277
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -85.5,-45.5
+ pos: 61.5,-64.5
parent: 2
- - uid: 32325
+ - uid: 32278
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-54.5
+ pos: 68.5,-85.5
parent: 2
- - uid: 32326
+ - uid: 32279
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,-54.5
+ pos: 67.5,-86.5
parent: 2
- - uid: 35361
+ - uid: 35407
components:
- type: Transform
- pos: -86.5,94.5
+ pos: -86.5,66.5
parent: 2
- - uid: 35362
+ - uid: 35408
components:
- type: Transform
- pos: -87.5,94.5
+ pos: -74.5,71.5
parent: 2
- - uid: 35363
+ - uid: 35409
components:
- type: Transform
- pos: -83.5,96.5
+ pos: -76.5,74.5
parent: 2
- - uid: 35364
+ - uid: 35410
+ components:
+ - type: Transform
+ pos: -83.5,74.5
+ parent: 2
+ - uid: 35411
+ components:
+ - type: Transform
+ pos: -76.5,84.5
+ parent: 2
+ - uid: 35412
components:
- type: Transform
- pos: -75.5,96.5
+ pos: -84.5,94.5
parent: 2
- - uid: 35365
+ - uid: 35413
components:
- type: Transform
- pos: -74.5,94.5
+ pos: -83.5,59.5
parent: 2
- - uid: 35366
+ - uid: 35414
components:
- type: Transform
- pos: -83.5,91.5
+ pos: -85.5,59.5
parent: 2
- - uid: 35367
+ - uid: 36223
components:
- type: Transform
- pos: -84.5,89.5
+ pos: -88.5,57.5
parent: 2
- - uid: 35368
+ - uid: 36224
components:
- type: Transform
- pos: -76.5,91.5
+ pos: -89.5,61.5
parent: 2
- - uid: 35369
+- proto: SolarPanel
+ entities:
+ - uid: 9791
components:
- type: Transform
- pos: -75.5,86.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-45.5
parent: 2
- - uid: 35370
+ - uid: 9793
components:
- type: Transform
- pos: -72.5,86.5
+ rot: 3.141592653589793 rad
+ pos: -97.5,-35.5
parent: 2
- - uid: 35371
+ - uid: 9795
components:
- type: Transform
- pos: -75.5,84.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-40.5
parent: 2
- - uid: 35372
+ - uid: 9807
components:
- type: Transform
- pos: -77.5,84.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-69.5
parent: 2
- - uid: 35373
+ - uid: 9808
components:
- type: Transform
- pos: -85.5,86.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-54.5
parent: 2
- - uid: 35374
+ - uid: 9821
components:
- type: Transform
- pos: -88.5,84.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-71.5
parent: 2
- - uid: 35375
+ - uid: 9832
components:
- type: Transform
- pos: -84.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-71.5
parent: 2
- - uid: 35376
+ - uid: 9833
components:
- type: Transform
- pos: -87.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-71.5
parent: 2
- - uid: 35377
+ - uid: 9837
components:
- type: Transform
- pos: -88.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-69.5
parent: 2
- - uid: 35378
+ - uid: 9847
components:
- type: Transform
- pos: -76.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-69.5
parent: 2
- - uid: 35379
+ - uid: 10389
components:
- type: Transform
- pos: -72.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-71.5
parent: 2
- - uid: 35380
+ - uid: 10428
components:
- type: Transform
- pos: -73.5,81.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-71.5
parent: 2
- - uid: 35381
+ - uid: 10430
components:
- type: Transform
- pos: -72.5,76.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-71.5
parent: 2
- - uid: 35382
+ - uid: 10446
components:
- type: Transform
- pos: -75.5,74.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-35.5
parent: 2
- - uid: 35383
+ - uid: 10487
components:
- type: Transform
- pos: -87.5,76.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-58.5
parent: 2
- - uid: 35384
+ - uid: 10491
components:
- type: Transform
- pos: -73.5,69.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-58.5
parent: 2
- - uid: 35385
+ - uid: 10492
components:
- type: Transform
- pos: -72.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-63.5
parent: 2
- - uid: 35386
+ - uid: 10499
components:
- type: Transform
- pos: -77.5,69.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-38.5
parent: 2
- - uid: 35387
+ - uid: 10500
components:
- type: Transform
- pos: -76.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-38.5
parent: 2
- - uid: 35388
+ - uid: 10501
components:
- type: Transform
- pos: -77.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-38.5
parent: 2
- - uid: 35389
+ - uid: 10502
components:
- type: Transform
- pos: -83.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-38.5
parent: 2
- - uid: 35390
+ - uid: 10503
components:
- type: Transform
- pos: -84.5,71.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-38.5
parent: 2
- - uid: 35391
+ - uid: 10506
components:
- type: Transform
- pos: -86.5,69.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-40.5
parent: 2
- - uid: 35392
+ - uid: 13466
components:
- type: Transform
- pos: -85.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-66.5
parent: 2
- - uid: 35393
+ - uid: 13467
components:
- type: Transform
- pos: -85.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-69.5
parent: 2
- - uid: 35394
+ - uid: 13468
components:
- type: Transform
- pos: -86.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-66.5
parent: 2
- - uid: 35395
+ - uid: 13470
components:
- type: Transform
- pos: -87.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-64.5
parent: 2
- - uid: 35396
+ - uid: 13471
components:
- type: Transform
- pos: -83.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-69.5
parent: 2
- - uid: 35397
+ - uid: 13475
components:
- type: Transform
- pos: -76.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-40.5
parent: 2
- - uid: 35398
+ - uid: 13482
components:
- type: Transform
- pos: -77.5,66.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-35.5
parent: 2
- - uid: 35399
+ - uid: 13490
components:
- type: Transform
- pos: -73.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-33.5
parent: 2
- - uid: 35400
+ - uid: 13491
components:
- type: Transform
- pos: -87.5,61.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-33.5
parent: 2
- - uid: 35401
+ - uid: 13492
components:
- type: Transform
- pos: -75.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-33.5
parent: 2
- - uid: 35402
+ - uid: 13535
components:
- type: Transform
- pos: -73.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-64.5
parent: 2
- - uid: 35403
+ - uid: 13580
components:
- type: Transform
- pos: -85.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-49.5
parent: 2
- - uid: 35404
+ - uid: 13582
components:
- type: Transform
- pos: -84.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-44.5
parent: 2
- - uid: 35405
+ - uid: 13584
components:
- type: Transform
- pos: -88.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-35.5
parent: 2
- - uid: 35406
+ - uid: 13593
components:
- type: Transform
- pos: -74.5,61.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-58.5
parent: 2
-- proto: SolarTracker
- entities:
- - uid: 9794
+ - uid: 13594
components:
- type: Transform
- pos: -98.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-53.5
parent: 2
- - uid: 10447
+ - uid: 13595
components:
- type: Transform
- pos: -80.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-53.5
parent: 2
- - uid: 10497
+ - uid: 13606
components:
- type: Transform
- pos: -80.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-53.5
parent: 2
- - uid: 10498
+ - uid: 13607
components:
- type: Transform
- pos: -98.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-53.5
parent: 2
- - uid: 10505
+ - uid: 13608
components:
- type: Transform
- pos: -98.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-58.5
parent: 2
- - uid: 13679
+ - uid: 13615
components:
- type: Transform
- pos: 47.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-44.5
parent: 2
- - uid: 31917
+ - uid: 13623
components:
- type: Transform
- pos: 65.5,-55.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-46.5
parent: 2
- - uid: 31918
+ - uid: 13624
components:
- type: Transform
- pos: 71.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-46.5
parent: 2
- - uid: 31921
+ - uid: 13625
components:
- type: Transform
- pos: 47.5,-60.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-51.5
parent: 2
- - uid: 32003
+ - uid: 13628
components:
- type: Transform
- pos: 65.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-49.5
parent: 2
- - uid: 32019
+ - uid: 13630
components:
- type: Transform
- pos: -80.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-51.5
parent: 2
- - uid: 32310
+ - uid: 13634
components:
- type: Transform
- pos: 65.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-56.5
parent: 2
- - uid: 35466
+ - uid: 13660
components:
- type: Transform
- pos: -71.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-46.5
parent: 2
- - uid: 35467
+ - uid: 13661
components:
- type: Transform
- pos: -89.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-46.5
parent: 2
- - uid: 35469
+ - uid: 13680
components:
- type: Transform
- pos: -71.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-77.5
parent: 2
- - uid: 35470
+ - uid: 13690
components:
- type: Transform
- pos: -89.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-48.5
parent: 2
- - uid: 35471
+ - uid: 13692
components:
- type: Transform
- pos: -71.5,90.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-48.5
parent: 2
- - uid: 35472
+ - uid: 13693
components:
- type: Transform
- pos: -71.5,70.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-50.5
parent: 2
- - uid: 35473
+ - uid: 13694
components:
- type: Transform
- pos: -89.5,80.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-48.5
parent: 2
-- proto: SophicScribe
- entities:
- - uid: 654
+ - uid: 13695
components:
- type: Transform
- pos: 54.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-45.5
parent: 2
-- proto: SpaceCash
- entities:
- - uid: 759
+ - uid: 13698
components:
- type: Transform
- pos: -10.829511,-42.30696
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-49.5
parent: 2
- - uid: 2214
+ - uid: 13701
components:
- type: Transform
- pos: -11.052167,-42.11946
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-49.5
parent: 2
- - uid: 5943
+ - uid: 13705
components:
- type: Transform
- pos: 14.532675,-32.37702
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-49.5
parent: 2
- - uid: 5944
+ - uid: 13708
components:
- type: Transform
- pos: 14.872519,-32.365303
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-51.5
parent: 2
- - uid: 5945
+ - uid: 13709
components:
- type: Transform
- pos: 14.638144,-32.177803
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-51.5
parent: 2
- - uid: 5946
+ - uid: 13710
components:
- type: Transform
- pos: 15.692831,-33.021553
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-56.5
parent: 2
- - uid: 5947
+ - uid: 13714
components:
- type: Transform
- pos: 15.622519,-33.279366
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-56.5
parent: 2
- - uid: 5948
+ - uid: 14883
components:
- type: Transform
- pos: 15.282675,-33.091866
+ pos: -90.5,57.5
parent: 2
- - uid: 6312
+ - uid: 17006
components:
- type: Transform
- pos: 26.616358,-28.719067
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-46.5
parent: 2
- - uid: 6994
+ - uid: 18697
components:
- type: Transform
- pos: -31.721443,-31.601978
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-84.5
parent: 2
- - uid: 6995
+ - uid: 18787
components:
- type: Transform
- pos: -31.440191,-32.281666
+ rot: 3.141592653589793 rad
+ pos: -97.5,-43.5
parent: 2
- - uid: 6996
+ - uid: 18788
components:
- type: Transform
- pos: -31.369879,-31.988697
+ rot: 3.141592653589793 rad
+ pos: -93.5,-43.5
parent: 2
- - uid: 6997
+ - uid: 18889
components:
- type: Transform
- pos: -30.819098,-38.363697
+ rot: 3.141592653589793 rad
+ pos: -92.5,-43.5
parent: 2
- - uid: 9637
+ - uid: 18892
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -38.33659,60.69172
+ pos: -97.5,-45.5
parent: 2
- - uid: 9679
+ - uid: 18894
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -38.133465,60.519844
+ pos: -96.5,-40.5
parent: 2
- - uid: 20188
+ - uid: 19723
components:
- type: Transform
- pos: 26.756983,-28.922192
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-61.5
parent: 2
- - uid: 22757
+ - uid: 22255
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.383465,60.363594
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-59.5
parent: 2
- - uid: 23039
+ - uid: 23724
components:
- type: Transform
- pos: -37.289715,59.56672
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-61.5
parent: 2
- - uid: 26728
+ - uid: 28749
components:
- type: Transform
- pos: -46.268658,-28.028463
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-59.5
parent: 2
- - uid: 26730
+ - uid: 31271
components:
- type: Transform
- pos: -46.35069,-27.87612
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-59.5
parent: 2
-- proto: SpaceCash1000
- entities:
- - uid: 14126
+ - uid: 31284
components:
- type: Transform
- pos: 26.330275,39.009815
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-61.5
parent: 2
- - uid: 14127
+ - uid: 31904
components:
- type: Transform
- pos: 26.343767,38.259815
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-84.5
parent: 2
- - uid: 14128
+ - uid: 31909
components:
- type: Transform
- pos: 26.593767,38.384815
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-44.5
parent: 2
- - uid: 27932
+ - uid: 31999
components:
- type: Transform
- pos: 89.39034,37.435448
+ rot: -1.5707963267948966 rad
+ pos: 65.5,-85.5
parent: 2
- - uid: 28005
+ - uid: 32000
components:
- type: Transform
- pos: 89.45284,37.732323
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-80.5
parent: 2
-- proto: SpaceCash500
- entities:
- - uid: 32458
+ - uid: 32002
components:
- type: Transform
- pos: 74.79644,24.791433
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-77.5
parent: 2
- - uid: 32459
+ - uid: 32018
components:
- type: Transform
- pos: 74.95269,24.650808
+ rot: 3.141592653589793 rad
+ pos: -96.5,-38.5
parent: 2
- - uid: 32460
+ - uid: 32274
components:
- type: Transform
- pos: 74.749565,24.510183
+ rot: 3.141592653589793 rad
+ pos: -97.5,-38.5
parent: 2
-- proto: SpaceCashLuckyBill
- entities:
- - uid: 181
+ - uid: 32285
components:
- type: Transform
- pos: -26.472038,-23.207253
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-44.5
parent: 2
-- proto: SpaceMedipen
- entities:
- - uid: 33637
+ - uid: 32309
components:
- type: Transform
- pos: 87.70394,52.788086
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-44.5
parent: 2
- - uid: 33638
+ - uid: 32323
components:
- type: Transform
- pos: 71.75545,41.64746
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-56.5
parent: 2
-- proto: SpaceVillainArcade
- entities:
- - uid: 422
+ - uid: 32324
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-59.5
parent: 2
-- proto: SpareIdCabinetFilled
- entities:
- - uid: 28704
+ - uid: 35295
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,51.5
+ pos: -77.5,56.5
parent: 2
-- proto: SpawnMobAlexander
- entities:
- - uid: 27818
+ - uid: 35296
components:
- type: Transform
- pos: -55.5,-28.5
+ pos: -76.5,56.5
parent: 2
-- proto: SpawnMobArcticFoxSiobhan
- entities:
- - uid: 8599
+ - uid: 35297
components:
- type: Transform
- pos: 29.5,28.5
+ pos: -74.5,56.5
parent: 2
-- proto: SpawnMobBandito
- entities:
- - uid: 5737
+ - uid: 35298
components:
- type: Transform
- pos: 48.5,29.5
+ pos: -72.5,56.5
parent: 2
-- proto: SpawnMobBee
- entities:
- - uid: 7254
+ - uid: 35299
components:
- type: Transform
- pos: -100.5,3.5
+ pos: -72.5,54.5
parent: 2
- - uid: 8602
+ - uid: 35300
components:
- type: Transform
- pos: -102.5,9.5
+ pos: -74.5,54.5
parent: 2
- - uid: 23475
+ - uid: 35301
components:
- type: Transform
- pos: -101.5,7.5
+ pos: -76.5,54.5
parent: 2
-- proto: SpawnMobButterfly
- entities:
- - uid: 7217
+ - uid: 35302
components:
- type: Transform
- pos: -104.5,6.5
+ pos: -75.5,54.5
parent: 2
- - uid: 8604
+ - uid: 35303
components:
- type: Transform
- pos: -102.5,7.5
+ pos: -84.5,56.5
parent: 2
- - uid: 8605
+ - uid: 35304
components:
- type: Transform
- pos: -105.5,9.5
+ pos: -86.5,56.5
parent: 2
- - uid: 8606
+ - uid: 35305
components:
- type: Transform
- pos: -102.5,4.5
+ pos: -87.5,56.5
parent: 2
-- proto: SpawnMobCatBingus
- entities:
- - uid: 32568
+ - uid: 35307
components:
- type: Transform
- pos: 74.5,64.5
+ pos: -87.5,54.5
parent: 2
-- proto: SpawnMobCatException
- entities:
- - uid: 35717
+ - uid: 35308
components:
- type: Transform
- pos: 3.5,0.5
+ pos: -86.5,54.5
parent: 2
-- proto: SpawnMobCatFloppa
- entities:
- - uid: 4116
+ - uid: 35309
components:
- type: Transform
- pos: -84.5,-9.5
+ pos: -75.5,59.5
parent: 2
-- proto: SpawnMobCatGeneric
- entities:
- - uid: 31767
+ - uid: 35310
components:
- type: Transform
- pos: -68.5,1.5
+ pos: -74.5,59.5
parent: 2
-- proto: SpawnMobCatRuntime
- entities:
- - uid: 624
+ - uid: 35311
components:
- type: Transform
- pos: -4.5,-10.5
+ pos: -72.5,61.5
parent: 2
-- proto: SpawnMobCleanBot
- entities:
- - uid: 18357
+ - uid: 35312
components:
- type: Transform
- pos: -39.5,-28.5
+ pos: -75.5,61.5
parent: 2
-- proto: SpawnMobCorgi
- entities:
- - uid: 1962
+ - uid: 35313
components:
- type: Transform
- pos: 12.5,29.5
+ pos: -77.5,61.5
parent: 2
-- proto: SpawnMobCow
- entities:
- - uid: 21935
+ - uid: 35314
components:
- type: Transform
- pos: -56.5,-28.5
+ pos: -83.5,61.5
parent: 2
- - uid: 32433
+ - uid: 35315
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 87.5,39.5
+ pos: -84.5,61.5
parent: 2
-- proto: SpawnMobCrab
- entities:
- - uid: 8609
+ - uid: 35319
components:
- type: Transform
- pos: -103.5,11.5
+ pos: -84.5,59.5
parent: 2
- - uid: 8610
+ - uid: 35320
components:
- type: Transform
- pos: -100.5,10.5
+ pos: -76.5,64.5
parent: 2
-- proto: SpawnMobCrabAtmos
- entities:
- - uid: 36417
+ - uid: 35321
components:
- type: Transform
- pos: -36.5,34.5
+ pos: -73.5,66.5
parent: 2
-- proto: SpawnMobFerret
- entities:
- - uid: 21125
+ - uid: 35322
components:
- type: Transform
- pos: -86.5,-8.5
+ pos: -74.5,66.5
parent: 2
-- proto: SpawnMobFoxRenault
- entities:
- - uid: 15267
+ - uid: 35323
components:
- type: Transform
- pos: 25.5,50.5
+ pos: -87.5,66.5
parent: 2
-- proto: SpawnMobFrog
- entities:
- - uid: 8613
+ - uid: 35324
components:
- type: Transform
- pos: -105.5,8.5
+ pos: -88.5,64.5
parent: 2
- - uid: 11416
+ - uid: 35325
components:
- type: Transform
- pos: -106.5,7.5
+ pos: -83.5,66.5
parent: 2
-- proto: SpawnMobGoat
- entities:
- - uid: 21123
+ - uid: 35326
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,2.5
+ pos: -84.5,66.5
parent: 2
-- proto: SpawnMobKangarooWillow
- entities:
- - uid: 17829
+ - uid: 35327
components:
- type: Transform
- pos: 39.5,-22.5
+ pos: -85.5,69.5
parent: 2
-- proto: SpawnMobLizard
- entities:
- - uid: 11417
+ - uid: 35328
components:
- type: Transform
- pos: -101.5,8.5
+ pos: -87.5,69.5
parent: 2
-- proto: SpawnMobMcGriff
- entities:
- - uid: 15975
+ - uid: 35329
components:
- type: Transform
- pos: -22.5,41.5
+ pos: -85.5,71.5
parent: 2
-- proto: SpawnMobMonkeyPunpun
- entities:
- - uid: 5759
+ - uid: 35330
components:
- type: Transform
- pos: 19.5,-28.5
+ pos: -83.5,69.5
parent: 2
-- proto: SpawnMobMothroach
- entities:
- - uid: 21126
+ - uid: 35331
components:
- type: Transform
- pos: -103.5,-6.5
+ pos: -75.5,69.5
parent: 2
- - uid: 35718
+ - uid: 35332
components:
- type: Transform
- pos: 3.5,12.5
+ pos: -73.5,71.5
parent: 2
-- proto: SpawnMobOreCrab
- entities:
- - uid: 33593
+ - uid: 35333
components:
- type: Transform
- pos: 62.5,61.5
+ pos: -74.5,69.5
parent: 2
-- proto: SpawnMobParrot
- entities:
- - uid: 21127
+ - uid: 35334
components:
- type: Transform
- pos: -52.5,34.5
+ pos: -76.5,76.5
parent: 2
-- proto: SpawnMobPenguin
- entities:
- - uid: 21121
+ - uid: 35335
components:
- type: Transform
- pos: -88.5,-7.5
+ pos: -75.5,76.5
parent: 2
- - uid: 23468
+ - uid: 35336
components:
- type: Transform
- pos: -82.5,-10.5
+ pos: -74.5,76.5
parent: 2
-- proto: SpawnMobPossumMorty
- entities:
- - uid: 5732
+ - uid: 35337
components:
- type: Transform
- pos: 23.5,10.5
+ pos: -87.5,74.5
parent: 2
-- proto: SpawnMobRaccoonMorticia
- entities:
- - uid: 19374
+ - uid: 35338
components:
- type: Transform
- pos: -25.5,-20.5
+ pos: -86.5,74.5
parent: 2
-- proto: SpawnMobSecDogLaika
- entities:
- - uid: 34761
+ - uid: 35339
components:
- type: Transform
- pos: -8.5,41.5
+ pos: -85.5,74.5
parent: 2
-- proto: SpawnMobShiva
- entities:
- - uid: 15729
+ - uid: 35340
components:
- type: Transform
- pos: -9.5,25.5
+ pos: -84.5,76.5
parent: 2
-- proto: SpawnMobSlothPaperwork
- entities:
- - uid: 6112
+ - uid: 35341
components:
- type: Transform
- pos: 54.5,28.5
+ pos: -85.5,76.5
parent: 2
-- proto: SpawnMobSmile
- entities:
- - uid: 23548
+ - uid: 35342
components:
- type: Transform
- pos: 43.5,25.5
+ pos: -86.5,76.5
parent: 2
-- proto: SpawnMobWalter
- entities:
- - uid: 33580
+ - uid: 35343
components:
- type: Transform
- pos: 92.5,31.5
+ pos: -88.5,76.5
parent: 2
-- proto: SpawnPointAtmos
- entities:
- - uid: 3689
+ - uid: 35344
components:
- type: Transform
- pos: -48.5,34.5
+ pos: -88.5,74.5
parent: 2
- - uid: 3692
+ - uid: 35345
components:
- type: Transform
- pos: -47.5,34.5
+ pos: -83.5,76.5
parent: 2
- - uid: 3698
+ - uid: 35346
components:
- type: Transform
- pos: -49.5,34.5
+ pos: -83.5,81.5
parent: 2
-- proto: SpawnPointBartender
- entities:
- - uid: 33713
+ - uid: 35347
components:
- type: Transform
- pos: 21.5,-24.5
+ pos: -84.5,81.5
parent: 2
-- proto: SpawnPointBotanist
- entities:
- - uid: 18505
+ - uid: 35348
components:
- type: Transform
- pos: -49.5,2.5
+ pos: -85.5,79.5
parent: 2
- - uid: 18506
+ - uid: 35349
components:
- type: Transform
- pos: -53.5,-3.5
+ pos: -88.5,79.5
parent: 2
- - uid: 18507
+ - uid: 35350
components:
- type: Transform
- pos: -51.5,-3.5
+ pos: -76.5,81.5
parent: 2
- - uid: 18508
+ - uid: 35351
components:
- type: Transform
- pos: -59.5,-3.5
+ pos: -72.5,79.5
parent: 2
- - uid: 18509
+ - uid: 35352
components:
- type: Transform
- pos: -58.5,-3.5
+ pos: -74.5,79.5
parent: 2
-- proto: SpawnPointBoxer
- entities:
- - uid: 3467
+ - uid: 35353
components:
- type: Transform
- pos: 42.5,-23.5
+ pos: -72.5,84.5
parent: 2
-- proto: SpawnPointBrigmedic
- entities:
- - uid: 18360
+ - uid: 35354
components:
- type: Transform
- pos: -42.5,58.5
+ pos: -76.5,86.5
parent: 2
-- proto: SpawnPointCaptain
- entities:
- - uid: 14138
+ - uid: 35355
components:
- type: Transform
- pos: 13.5,49.5
+ pos: -86.5,84.5
parent: 2
-- proto: SpawnPointCargoTechnician
- entities:
- - uid: 232
+ - uid: 35356
components:
- type: Transform
- pos: -9.5,-30.5
+ pos: -83.5,89.5
parent: 2
- - uid: 3476
+ - uid: 35357
components:
- type: Transform
- pos: -9.5,-34.5
+ pos: -72.5,91.5
parent: 2
- - uid: 3493
+ - uid: 35358
components:
- type: Transform
- pos: -9.5,-35.5
+ pos: -76.5,96.5
parent: 2
- - uid: 3583
+ - uid: 35359
components:
- type: Transform
- pos: -9.5,-32.5
+ pos: -73.5,94.5
parent: 2
- - uid: 4224
+ - uid: 35360
components:
- type: Transform
- pos: -9.5,-33.5
+ pos: -85.5,94.5
parent: 2
- - uid: 4240
+- proto: SolarPanelBroken
+ entities:
+ - uid: 9788
components:
- type: Transform
- pos: -13.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-53.5
parent: 2
- - uid: 22267
+ - uid: 9789
components:
- type: Transform
- pos: -14.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-65.5
parent: 2
- - uid: 22886
+ - uid: 9790
components:
- type: Transform
- pos: -15.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-60.5
parent: 2
-- proto: SpawnPointChaplain
- entities:
- - uid: 4317
+ - uid: 9792
components:
- type: Transform
- pos: 66.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-48.5
parent: 2
-- proto: SpawnPointChef
- entities:
- - uid: 23566
+ - uid: 10442
components:
- type: Transform
- pos: -55.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-53.5
parent: 2
- - uid: 23568
+ - uid: 10443
components:
- type: Transform
- pos: -52.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-60.5
parent: 2
- - uid: 23710
+ - uid: 10444
components:
- type: Transform
- pos: -53.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-65.5
parent: 2
-- proto: SpawnPointChemist
- entities:
- - uid: 5643
+ - uid: 10445
components:
- type: Transform
- pos: 13.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-48.5
parent: 2
- - uid: 5644
+ - uid: 10472
components:
- type: Transform
- pos: 19.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-48.5
parent: 2
- - uid: 5646
+ - uid: 10481
components:
- type: Transform
- pos: 13.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-55.5
parent: 2
-- proto: SpawnPointChiefEngineer
- entities:
- - uid: 14139
+ - uid: 10482
components:
- type: Transform
- pos: 12.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-55.5
parent: 2
-- proto: SpawnPointChiefMedicalOfficer
- entities:
- - uid: 14143
+ - uid: 10483
components:
- type: Transform
- pos: 11.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-53.5
parent: 2
-- proto: SpawnPointClown
- entities:
- - uid: 4087
+ - uid: 10484
components:
- type: Transform
- pos: -75.5,1.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-53.5
parent: 2
-- proto: SpawnPointDetective
- entities:
- - uid: 16580
+ - uid: 10485
components:
- type: Transform
- pos: -33.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-58.5
parent: 2
-- proto: SpawnPointForensicMantis
- entities:
- - uid: 904
+ - uid: 10486
components:
- type: Transform
- pos: 48.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -84.5,-53.5
parent: 2
-- proto: SpawnPointHeadOfPersonnel
- entities:
- - uid: 15374
+ - uid: 10488
components:
- type: Transform
- pos: 10.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-55.5
parent: 2
-- proto: SpawnPointHeadOfSecurity
- entities:
- - uid: 14141
+ - uid: 10489
components:
- type: Transform
- pos: 13.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-60.5
parent: 2
-- proto: SpawnPointJanitor
- entities:
- - uid: 13274
+ - uid: 10490
components:
- type: Transform
- pos: 34.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-65.5
parent: 2
- - uid: 16602
+ - uid: 13474
components:
- type: Transform
- pos: -36.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-48.5
parent: 2
-- proto: SpawnPointLatejoin
- entities:
- - uid: 5098
+ - uid: 13489
components:
- type: Transform
- pos: -2.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-50.5
parent: 2
- - uid: 5099
+ - uid: 13581
components:
- type: Transform
- pos: 6.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-44.5
parent: 2
- - uid: 5653
+ - uid: 13583
components:
- type: Transform
- pos: 5.5,-43.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-48.5
parent: 2
- - uid: 5670
+ - uid: 13609
components:
- type: Transform
- pos: -2.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-45.5
parent: 2
- - uid: 6157
+ - uid: 13612
components:
- type: Transform
- pos: 5.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: -96.5,-45.5
parent: 2
- - uid: 6158
+ - uid: 13626
components:
- type: Transform
- pos: 6.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-49.5
parent: 2
- - uid: 6162
+ - uid: 13629
components:
- type: Transform
- pos: -3.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-56.5
parent: 2
- - uid: 6163
+ - uid: 13631
components:
- type: Transform
- pos: -3.5,-43.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-54.5
parent: 2
- - uid: 30223
+ - uid: 13632
components:
- type: Transform
- pos: -5.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-46.5
parent: 2
- - uid: 30224
+ - uid: 13635
components:
- type: Transform
- pos: -6.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-69.5
parent: 2
- - uid: 30225
+ - uid: 13636
components:
- type: Transform
- pos: 9.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-71.5
parent: 2
- - uid: 30226
+ - uid: 13637
components:
- type: Transform
- pos: 8.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-49.5
parent: 2
- - uid: 30227
+ - uid: 13638
components:
- type: Transform
- pos: 10.5,-51.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-49.5
parent: 2
- - uid: 30228
+ - uid: 13696
components:
- type: Transform
- pos: -7.5,-51.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-38.5
parent: 2
-- proto: SpawnPointLawyer
- entities:
- - uid: 15687
+ - uid: 13697
components:
- type: Transform
- pos: -6.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-45.5
parent: 2
-- proto: SpawnPointLibrarian
- entities:
- - uid: 6087
+ - uid: 13712
components:
- type: Transform
- pos: 51.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-79.5
parent: 2
-- proto: SpawnPointMailCarrier
- entities:
- - uid: 983
+ - uid: 13713
components:
- type: Transform
- pos: -9.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-82.5
parent: 2
- - uid: 9974
+ - uid: 14884
components:
- type: Transform
- pos: -8.5,-23.5
+ pos: -92.5,55.5
parent: 2
-- proto: SpawnPointMedicalBorg
- entities:
- - uid: 349
+ - uid: 14885
components:
- type: Transform
- pos: -6.5,6.5
+ pos: -89.5,52.5
parent: 2
- - uid: 5191
+ - uid: 18703
components:
- type: Transform
- pos: 29.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-43.5
parent: 2
- - uid: 5408
+ - uid: 18704
components:
- type: Transform
- pos: 5.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-35.5
parent: 2
-- proto: SpawnPointMedicalDoctor
- entities:
- - uid: 5632
+ - uid: 18706
components:
- type: Transform
- pos: -25.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,-38.5
parent: 2
- - uid: 5633
+ - uid: 18707
components:
- type: Transform
- pos: -22.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -81.5,-38.5
parent: 2
- - uid: 5634
+ - uid: 18708
components:
- type: Transform
- pos: -19.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,-40.5
parent: 2
- - uid: 5635
+ - uid: 18710
components:
- type: Transform
- pos: -16.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -86.5,-40.5
parent: 2
- - uid: 5636
+ - uid: 19722
components:
- type: Transform
- pos: -16.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-61.5
parent: 2
- - uid: 5637
+ - uid: 20972
components:
- type: Transform
- pos: -19.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-61.5
parent: 2
- - uid: 5638
+ - uid: 23002
components:
- type: Transform
- pos: -22.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-49.5
parent: 2
- - uid: 31475
+ - uid: 23032
components:
- type: Transform
- pos: -5.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-51.5
parent: 2
- - uid: 31476
+ - uid: 23047
components:
- type: Transform
- pos: -14.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-61.5
parent: 2
-- proto: SpawnPointMedicalIntern
- entities:
- - uid: 5639
+ - uid: 23064
components:
- type: Transform
- pos: -4.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-59.5
parent: 2
- - uid: 5640
+ - uid: 23467
components:
- type: Transform
- pos: -4.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-61.5
parent: 2
- - uid: 5641
+ - uid: 23721
components:
- type: Transform
- pos: -6.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-61.5
parent: 2
- - uid: 5642
+ - uid: 23723
components:
- type: Transform
- pos: -6.5,11.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-56.5
parent: 2
-- proto: SpawnPointMime
- entities:
- - uid: 3708
+ - uid: 31286
components:
- type: Transform
- pos: -79.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-54.5
parent: 2
-- proto: SpawnPointMusician
- entities:
- - uid: 11257
+ - uid: 31895
components:
- type: Transform
- pos: -71.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-51.5
parent: 2
- - uid: 36403
+ - uid: 31910
components:
- type: Transform
- pos: 9.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 51.5,-71.5
parent: 2
- - uid: 36404
+ - uid: 31911
components:
- type: Transform
- pos: 24.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-71.5
parent: 2
-- proto: SpawnPointObserver
- entities:
- - uid: 33591
+ - uid: 31912
components:
- type: Transform
- pos: 1.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-46.5
parent: 2
-- proto: SpawnPointParamedic
- entities:
- - uid: 5625
+ - uid: 31913
components:
- type: Transform
- pos: -25.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-83.5
parent: 2
- - uid: 5626
+ - uid: 32270
components:
- type: Transform
- pos: -28.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,-40.5
parent: 2
- - uid: 5627
+ - uid: 32271
components:
- type: Transform
- pos: -28.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,-40.5
parent: 2
-- proto: SpawnPointPassenger
- entities:
- - uid: 30239
+ - uid: 32272
components:
- type: Transform
- pos: -0.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -83.5,-38.5
parent: 2
- - uid: 30240
+ - uid: 32273
components:
- type: Transform
- pos: -0.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: -82.5,-45.5
parent: 2
- - uid: 30241
+ - uid: 32280
components:
- type: Transform
- pos: 3.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-83.5
parent: 2
- - uid: 30242
+ - uid: 32281
components:
- type: Transform
- pos: 3.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-81.5
parent: 2
- - uid: 30243
+ - uid: 32282
components:
- type: Transform
- pos: 3.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-75.5
parent: 2
- - uid: 30244
+ - uid: 32283
components:
- type: Transform
- pos: 3.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-75.5
parent: 2
- - uid: 30245
+ - uid: 32284
components:
- type: Transform
- pos: -0.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-64.5
parent: 2
- - uid: 30246
+ - uid: 32286
components:
- type: Transform
- pos: -0.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-64.5
parent: 2
-- proto: SpawnPointPrisoner
- entities:
- - uid: 18399
+ - uid: 32287
components:
- type: Transform
- pos: -25.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-79.5
parent: 2
- - uid: 18400
+ - uid: 32291
components:
- type: Transform
- pos: -21.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-78.5
parent: 2
- - uid: 18401
+ - uid: 32301
components:
- type: Transform
- pos: -17.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-64.5
parent: 2
- - uid: 18402
+ - uid: 32305
components:
- type: Transform
- pos: -13.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 49.5,-64.5
parent: 2
-- proto: SpawnPointPrisonGuard
- entities:
- - uid: 18152
+ - uid: 32306
components:
- type: Transform
- pos: -20.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-49.5
parent: 2
-- proto: SpawnPointPsychologist
- entities:
- - uid: 5630
+ - uid: 32307
components:
- type: Transform
- pos: -20.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-61.5
parent: 2
- - uid: 5631
+ - uid: 32308
components:
- type: Transform
- pos: -15.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-54.5
parent: 2
-- proto: SpawnPointQuartermaster
- entities:
- - uid: 14140
+ - uid: 32313
components:
- type: Transform
- pos: 11.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -85.5,-45.5
parent: 2
-- proto: SpawnPointReporter
- entities:
- - uid: 7368
+ - uid: 32325
components:
- type: Transform
- pos: -28.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,-54.5
parent: 2
-- proto: SpawnPointResearchAssistant
- entities:
- - uid: 23662
+ - uid: 32326
components:
- type: Transform
- pos: 39.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,-54.5
parent: 2
- - uid: 30247
+ - uid: 35361
components:
- type: Transform
- pos: 37.5,28.5
+ pos: -86.5,94.5
parent: 2
- - uid: 30248
+ - uid: 35362
components:
- type: Transform
- pos: 39.5,28.5
+ pos: -87.5,94.5
parent: 2
-- proto: SpawnPointResearchDirector
- entities:
- - uid: 5624
+ - uid: 35363
components:
- type: Transform
- pos: 44.5,29.5
+ pos: -83.5,96.5
parent: 2
- - uid: 14142
+ - uid: 35364
components:
- type: Transform
- pos: 12.5,46.5
+ pos: -75.5,96.5
parent: 2
-- proto: SpawnPointSalvageSpecialist
- entities:
- - uid: 6949
+ - uid: 35365
components:
- type: Transform
- pos: -11.5,-41.5
+ pos: -74.5,94.5
parent: 2
- - uid: 6950
+ - uid: 35366
components:
- type: Transform
- pos: -10.5,-41.5
+ pos: -83.5,91.5
parent: 2
- - uid: 6951
+ - uid: 35367
components:
- type: Transform
- pos: -9.5,-41.5
+ pos: -84.5,89.5
parent: 2
- - uid: 21089
+ - uid: 35368
components:
- type: Transform
- pos: -8.5,-41.5
+ pos: -76.5,91.5
parent: 2
-- proto: SpawnPointScientist
- entities:
- - uid: 4045
+ - uid: 35369
components:
- type: Transform
- pos: 37.5,25.5
+ pos: -75.5,86.5
parent: 2
- - uid: 4046
+ - uid: 35370
components:
- type: Transform
- pos: 38.5,25.5
+ pos: -72.5,86.5
parent: 2
- - uid: 4047
+ - uid: 35371
components:
- type: Transform
- pos: 39.5,25.5
+ pos: -75.5,84.5
parent: 2
- - uid: 4049
+ - uid: 35372
components:
- type: Transform
- pos: 38.5,24.5
+ pos: -77.5,84.5
parent: 2
- - uid: 4050
+ - uid: 35373
components:
- type: Transform
- pos: 37.5,24.5
+ pos: -85.5,86.5
parent: 2
-- proto: SpawnPointSecurityCadet
- entities:
- - uid: 33642
+ - uid: 35374
components:
- type: Transform
- pos: -20.5,24.5
+ pos: -88.5,84.5
parent: 2
- - uid: 33643
+ - uid: 35375
components:
- type: Transform
- pos: -21.5,24.5
+ pos: -84.5,79.5
parent: 2
- - uid: 33644
+ - uid: 35376
components:
- type: Transform
- pos: -19.5,24.5
+ pos: -87.5,79.5
parent: 2
- - uid: 33645
+ - uid: 35377
components:
- type: Transform
- pos: -10.5,30.5
+ pos: -88.5,81.5
parent: 2
- - uid: 33646
+ - uid: 35378
components:
- type: Transform
- pos: -10.5,29.5
+ pos: -76.5,79.5
parent: 2
-- proto: SpawnPointSecurityOfficer
- entities:
- - uid: 33630
+ - uid: 35379
components:
- type: Transform
- pos: -11.5,34.5
+ pos: -72.5,81.5
parent: 2
- - uid: 33631
+ - uid: 35380
components:
- type: Transform
- pos: -11.5,33.5
+ pos: -73.5,81.5
parent: 2
- - uid: 33632
+ - uid: 35381
components:
- type: Transform
- pos: -13.5,35.5
+ pos: -72.5,76.5
parent: 2
- - uid: 33633
+ - uid: 35382
components:
- type: Transform
- pos: -14.5,33.5
+ pos: -75.5,74.5
parent: 2
- - uid: 33634
+ - uid: 35383
components:
- type: Transform
- pos: -13.5,31.5
+ pos: -87.5,76.5
parent: 2
- - uid: 33635
+ - uid: 35384
components:
- type: Transform
- pos: -12.5,31.5
+ pos: -73.5,69.5
parent: 2
-- proto: SpawnPointServiceWorker
- entities:
- - uid: 18229
+ - uid: 35385
components:
- type: Transform
- pos: -52.5,-12.5
+ pos: -72.5,71.5
parent: 2
- - uid: 30656
+ - uid: 35386
components:
- type: Transform
- pos: -53.5,-12.5
+ pos: -77.5,69.5
parent: 2
- - uid: 30657
+ - uid: 35387
components:
- type: Transform
- pos: -54.5,-12.5
+ pos: -76.5,71.5
parent: 2
-- proto: SpawnPointStationEngineer
- entities:
- - uid: 8945
+ - uid: 35388
components:
- type: Transform
- pos: -56.5,35.5
+ pos: -77.5,71.5
parent: 2
- - uid: 13369
+ - uid: 35389
components:
- type: Transform
- pos: -52.5,35.5
+ pos: -83.5,71.5
parent: 2
- - uid: 23518
+ - uid: 35390
components:
- type: Transform
- pos: -52.5,36.5
+ pos: -84.5,71.5
parent: 2
- - uid: 23546
+ - uid: 35391
components:
- type: Transform
- pos: -56.5,36.5
+ pos: -86.5,69.5
parent: 2
- - uid: 30231
+ - uid: 35392
components:
- type: Transform
- pos: -56.5,34.5
+ pos: -85.5,66.5
parent: 2
- - uid: 31480
+ - uid: 35393
components:
- type: Transform
- pos: -48.5,17.5
+ pos: -85.5,64.5
parent: 2
-- proto: SpawnPointTechnicalAssistant
- entities:
- - uid: 30232
+ - uid: 35394
components:
- type: Transform
- pos: -50.5,21.5
+ pos: -86.5,64.5
parent: 2
- - uid: 30233
+ - uid: 35395
components:
- type: Transform
- pos: -49.5,21.5
+ pos: -87.5,64.5
parent: 2
- - uid: 30234
+ - uid: 35396
components:
- type: Transform
- pos: -48.5,21.5
+ pos: -83.5,64.5
parent: 2
-- proto: SpawnPointWarden
- entities:
- - uid: 15684
+ - uid: 35397
components:
- type: Transform
- pos: -25.5,41.5
+ pos: -76.5,66.5
parent: 2
-- proto: SpawnPointZookeeper
- entities:
- - uid: 22903
+ - uid: 35398
components:
- type: Transform
- pos: -68.5,13.5
+ pos: -77.5,66.5
parent: 2
-- proto: SpawnVendingMachineRestockFood
- entities:
- - uid: 31789
+ - uid: 35399
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-32.5
+ pos: -73.5,64.5
parent: 2
-- proto: Spear
- entities:
- - uid: 30087
+ - uid: 35401
components:
- type: Transform
- pos: 89.34257,43.82237
+ pos: -75.5,56.5
parent: 2
-- proto: SprayBottle
- entities:
- - uid: 323
+ - uid: 35402
components:
- type: Transform
- pos: -50.710064,-28.473776
+ pos: -73.5,56.5
parent: 2
- - uid: 22060
+ - uid: 35403
components:
- type: Transform
- pos: -46.6085,-27.325338
+ pos: -85.5,56.5
parent: 2
- - uid: 22061
+ - uid: 35404
components:
- type: Transform
- pos: -50.74522,-25.380026
+ pos: -84.5,54.5
parent: 2
- - uid: 26734
+ - uid: 35406
components:
- type: Transform
- pos: -50.487408,-28.544088
+ pos: -74.5,61.5
parent: 2
- - uid: 26735
+ - uid: 36218
components:
- type: Transform
- pos: -50.299908,-27.465963
+ pos: -90.5,55.5
parent: 2
- - uid: 26736
+- proto: SolarTracker
+ entities:
+ - uid: 9794
components:
- type: Transform
- pos: -46.456158,-27.477682
+ pos: -98.5,-34.5
parent: 2
-- proto: SprayBottleSpaceCleaner
- entities:
- - uid: 18538
+ - uid: 10447
components:
- type: Transform
- pos: -41.18424,24.778963
+ pos: -80.5,-39.5
parent: 2
- - uid: 18539
+ - uid: 10497
components:
- type: Transform
- pos: -41.199863,24.622713
+ pos: -80.5,-44.5
parent: 2
- - uid: 34122
+ - uid: 10498
components:
- type: Transform
- pos: -23.156303,58.605377
+ pos: -98.5,-49.5
parent: 2
-- proto: SS13Memorial
- entities:
- - uid: 30328
+ - uid: 10505
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,18.5
+ pos: -98.5,-39.5
parent: 2
-- proto: StairStage
- entities:
- - uid: 4499
+ - uid: 13679
components:
- type: Transform
- pos: 35.5,-33.5
+ pos: 47.5,-50.5
parent: 2
- - uid: 4500
+ - uid: 14886
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-32.5
+ pos: -91.5,59.5
parent: 2
- - uid: 4596
+ - uid: 31917
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-26.5
+ pos: 65.5,-55.5
parent: 2
- - uid: 4597
+ - uid: 31918
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-26.5
+ pos: 71.5,-80.5
parent: 2
- - uid: 4598
+ - uid: 31921
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-26.5
+ pos: 47.5,-60.5
parent: 2
- - uid: 4605
+ - uid: 32003
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 35.5,-26.5
+ pos: 65.5,-50.5
parent: 2
- - uid: 4606
+ - uid: 32019
components:
- type: Transform
- pos: 32.5,-33.5
+ pos: -80.5,-59.5
parent: 2
- - uid: 4607
+ - uid: 32310
components:
- type: Transform
- pos: 33.5,-33.5
+ pos: 65.5,-45.5
parent: 2
- - uid: 4608
+ - uid: 35466
components:
- type: Transform
- pos: 34.5,-33.5
+ pos: -71.5,55.5
parent: 2
- - uid: 8335
+ - uid: 35469
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,18.5
+ pos: -71.5,60.5
parent: 2
- - uid: 8339
+ - uid: 35470
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,17.5
+ pos: -89.5,65.5
parent: 2
- - uid: 8342
+ - uid: 35471
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,16.5
+ pos: -71.5,90.5
parent: 2
-- proto: StasisBed
- entities:
- - uid: 1274
+ - uid: 35472
components:
- type: Transform
- pos: 21.5,10.5
+ pos: -71.5,70.5
parent: 2
- - uid: 1510
+ - uid: 35473
components:
- type: Transform
- pos: 21.5,9.5
+ pos: -89.5,80.5
parent: 2
-- proto: StationMap
+- proto: SolidSecretDoor
entities:
- - uid: 2254
+ - uid: 149
components:
- type: Transform
- pos: -1.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-6.5
parent: 2
- - uid: 28917
+ - uid: 4261
components:
- type: Transform
- pos: 12.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -70.5,-5.5
parent: 2
- - uid: 28920
+ - uid: 14979
components:
- type: Transform
- pos: -33.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-35.5
parent: 2
- - uid: 28940
+ - uid: 22099
components:
- type: Transform
- pos: 4.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-4.5
parent: 2
- - uid: 29017
+ - uid: 23480
components:
- type: Transform
- pos: 48.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,41.5
parent: 2
- - uid: 29018
+ - uid: 27944
components:
- type: Transform
- pos: -42.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-30.5
parent: 2
- - uid: 29019
+ - uid: 36164
components:
- type: Transform
- pos: 5.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-21.5
parent: 2
- - uid: 29021
+ - uid: 37005
components:
- type: Transform
- pos: -0.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-31.5
parent: 2
- - uid: 30296
+ - uid: 37012
components:
- type: Transform
- pos: -70.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-10.5
parent: 2
-- proto: StationMapBroken
- entities:
- - uid: 5398
+ - uid: 37013
components:
- type: Transform
- pos: 56.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-32.5
parent: 2
- - uid: 7015
+ - uid: 37015
components:
- type: Transform
- pos: -26.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-21.5
parent: 2
-- proto: StatueVenusRed
+- proto: SophicScribe
entities:
- - uid: 30283
+ - uid: 2905
components:
- type: Transform
- pos: -70.5,8.5
+ pos: 55.5,13.5
parent: 2
-- proto: SteelBench
+- proto: SpaceCash
entities:
- - uid: 17923
+ - uid: 759
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,25.5
+ pos: -10.811336,-45.300716
parent: 2
-- proto: Stool
- entities:
- - uid: 5899
+ - uid: 2214
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-33.5
+ pos: -10.608211,-45.488216
parent: 2
- - uid: 15980
+ - uid: 6994
components:
- type: Transform
- pos: -33.5,44.5
+ pos: -31.721443,-31.601978
parent: 2
- - uid: 15983
+ - uid: 6995
components:
- type: Transform
- pos: -31.5,44.5
+ pos: -31.440191,-32.281666
parent: 2
- - uid: 16292
+ - uid: 6996
components:
- type: Transform
- pos: -32.5,44.5
+ pos: -31.369879,-31.988697
parent: 2
-- proto: StoolBar
- entities:
- - uid: 2647
+ - uid: 6997
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,53.5
+ pos: -30.819098,-38.363697
parent: 2
- - uid: 2678
+ - uid: 9637
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,53.5
+ pos: -38.33659,60.69172
parent: 2
- - uid: 2683
+ - uid: 9679
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 6.5,53.5
+ pos: -38.133465,60.519844
parent: 2
- - uid: 2684
+ - uid: 19184
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,53.5
+ pos: -6.413226,-45.47355
parent: 2
- - uid: 2696
+ - uid: 22757
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -36.383465,60.363594
parent: 2
- - uid: 3116
+ - uid: 23039
components:
- type: Transform
- pos: 21.5,-18.5
+ pos: -37.289715,59.56672
parent: 2
- - uid: 3119
+ - uid: 31209
components:
- type: Transform
- pos: 20.5,-18.5
+ pos: -46.817482,-33.237167
parent: 2
- - uid: 3120
+ - uid: 31212
components:
- type: Transform
- pos: 28.5,-18.5
+ pos: -47.567745,-34.2313
parent: 2
- - uid: 3122
+ - uid: 31213
components:
- type: Transform
- pos: 29.5,-18.5
+ pos: -47.45837,-34.403175
parent: 2
- - uid: 3178
+ - uid: 31214
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-30.5
+ pos: -46.40659,-34.176613
parent: 2
- - uid: 3180
+- proto: SpaceCash1000
+ entities:
+ - uid: 14126
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-30.5
+ pos: 26.330275,39.009815
parent: 2
- - uid: 3181
+ - uid: 14127
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-30.5
+ pos: 26.343767,38.259815
parent: 2
- - uid: 3182
+ - uid: 14128
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-30.5
+ pos: 26.593767,38.384815
parent: 2
- - uid: 3183
+- proto: SpaceCashLuckyBill
+ entities:
+ - uid: 181
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-30.5
+ pos: -26.472038,-23.207253
parent: 2
- - uid: 3184
+- proto: SpareIdCabinetFilled
+ entities:
+ - uid: 15525
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-30.5
+ pos: 26.5,40.5
parent: 2
- - uid: 3185
+- proto: SpawnMobAlexander
+ entities:
+ - uid: 25332
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-28.5
+ pos: -49.5,-5.5
parent: 2
- - uid: 3187
+- proto: SpawnMobArcticFoxSiobhan
+ entities:
+ - uid: 8599
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-29.5
+ pos: 29.5,28.5
parent: 2
- - uid: 3188
+- proto: SpawnMobBandito
+ entities:
+ - uid: 5487
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-27.5
+ pos: 43.5,29.5
parent: 2
- - uid: 3286
+- proto: SpawnMobBee
+ entities:
+ - uid: 7254
components:
- type: Transform
- pos: 19.5,-18.5
+ pos: -100.5,3.5
parent: 2
- - uid: 3288
+ - uid: 8602
components:
- type: Transform
- pos: 31.5,-18.5
+ pos: -102.5,9.5
parent: 2
- - uid: 3289
+ - uid: 23475
components:
- type: Transform
- pos: 18.5,-18.5
+ pos: -101.5,7.5
parent: 2
- - uid: 3291
+- proto: SpawnMobButterfly
+ entities:
+ - uid: 7217
components:
- type: Transform
- pos: 30.5,-18.5
+ pos: -104.5,6.5
parent: 2
- - uid: 3435
+ - uid: 8604
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-41.5
+ pos: -102.5,7.5
parent: 2
- - uid: 3812
+ - uid: 8605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-41.5
+ pos: -105.5,9.5
parent: 2
- - uid: 3854
+ - uid: 8606
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-41.5
+ pos: -102.5,4.5
parent: 2
- - uid: 5896
+- proto: SpawnMobCatBingus
+ entities:
+ - uid: 12450
components:
- type: Transform
- pos: 22.5,-29.5
+ pos: 20.5,-35.5
parent: 2
- - uid: 5897
+- proto: SpawnMobCatException
+ entities:
+ - uid: 35717
components:
- type: Transform
- pos: 22.5,-28.5
+ pos: 3.5,0.5
parent: 2
- - uid: 6660
+- proto: SpawnMobCatFloppa
+ entities:
+ - uid: 4116
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-41.5
+ pos: -84.5,-9.5
parent: 2
- - uid: 6990
+- proto: SpawnMobCatGeneric
+ entities:
+ - uid: 31767
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-37.5
+ pos: -68.5,1.5
parent: 2
- - uid: 6991
+- proto: SpawnMobCatRuntime
+ entities:
+ - uid: 624
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-37.5
+ pos: -4.5,-10.5
parent: 2
- - uid: 6992
+- proto: SpawnMobCleanBot
+ entities:
+ - uid: 4309
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-37.5
+ pos: -36.5,-19.5
parent: 2
- - uid: 6993
+- proto: SpawnMobCockroach
+ entities:
+ - uid: 32966
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-32.5
+ pos: 74.5,40.5
parent: 2
- - uid: 19678
+ - uid: 33109
components:
- type: Transform
- pos: -39.5,65.5
+ pos: 76.5,38.5
parent: 2
- - uid: 19713
+ - uid: 33111
components:
- type: Transform
- pos: -39.5,64.5
+ pos: 81.5,57.5
parent: 2
- - uid: 19714
+ - uid: 33112
components:
- type: Transform
- pos: -39.5,67.5
+ pos: 68.5,66.5
parent: 2
- - uid: 19715
+ - uid: 33113
components:
- type: Transform
- pos: -39.5,66.5
+ pos: 88.5,61.5
parent: 2
- - uid: 19730
+ - uid: 33114
components:
- type: Transform
- pos: -39.5,63.5
+ pos: 91.5,74.5
parent: 2
- - uid: 28857
+ - uid: 33115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,53.5
+ pos: 96.5,73.5
parent: 2
-- proto: StorageCanister
- entities:
- - uid: 2533
+ - uid: 33116
components:
- type: Transform
- pos: 43.5,46.5
+ pos: 95.5,72.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 3384
+- proto: SpawnMobCorgi
+ entities:
+ - uid: 1962
components:
- type: Transform
- pos: 41.5,46.5
+ pos: 12.5,29.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5091
+- proto: SpawnMobCow
+ entities:
+ - uid: 3043
components:
- type: Transform
- pos: -46.5,37.5
+ pos: -50.5,-5.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5111
+ - uid: 33108
components:
- type: Transform
- pos: -48.5,37.5
+ pos: 87.5,41.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5113
+- proto: SpawnMobCrab
+ entities:
+ - uid: 33106
components:
- type: Transform
- pos: -49.5,37.5
+ pos: 74.5,45.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5114
+ - uid: 33107
components:
- type: Transform
- pos: -47.5,37.5
+ pos: 98.5,17.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 5712
+ - uid: 33120
components:
- type: Transform
- pos: 60.5,55.5
+ pos: 59.5,62.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
- - uid: 9348
+ - uid: 33122
components:
- type: Transform
- pos: -41.5,48.5
+ pos: 91.5,62.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: StrangePill
- entities:
- - uid: 6861
+ - uid: 33409
components:
- - type: MetaData
- name: floor pill
- type: Transform
- pos: 22.100813,-21.931332
+ rot: 1.5707963267948966 rad
+ pos: 76.5,43.5
parent: 2
-- proto: Stunbaton
- entities:
- - uid: 14136
+ - uid: 33412
components:
- type: Transform
- pos: 13.122691,47.817783
+ rot: 1.5707963267948966 rad
+ pos: 72.5,43.5
parent: 2
- - uid: 14263
+ - uid: 33538
components:
- type: Transform
- pos: 11.48601,48.62845
+ pos: 96.5,16.5
parent: 2
-- proto: SubstationBasic
- entities:
- - uid: 3123
+ - uid: 36607
components:
- - type: MetaData
- name: Bar Substation
- type: Transform
- pos: 11.5,-18.5
+ pos: 99.5,45.5
parent: 2
- - uid: 4713
+ - uid: 36615
components:
- - type: MetaData
- name: Epistemics Substation
- type: Transform
- pos: 32.5,35.5
+ pos: 104.5,44.5
parent: 2
- - uid: 6009
+- proto: SpawnMobCrabAtmos
+ entities:
+ - uid: 680
components:
- - type: MetaData
- name: Logistics Substation
- type: Transform
- pos: -26.5,-28.5
+ pos: -21.5,-10.5
parent: 2
- - uid: 7171
+- proto: SpawnMobFerret
+ entities:
+ - uid: 21125
components:
- - type: MetaData
- name: Bridge Substation
- type: Transform
- pos: 6.5,44.5
+ pos: -86.5,-8.5
parent: 2
- - uid: 9504
+- proto: SpawnMobFoxRenault
+ entities:
+ - uid: 15074
components:
- - type: MetaData
- name: Eastern Hospital Substation
- type: Transform
- pos: 39.5,16.5
+ pos: 22.5,48.5
parent: 2
- - uid: 10064
+- proto: SpawnMobFrog
+ entities:
+ - uid: 8613
components:
- - type: MetaData
- name: Engineering Substation
- type: Transform
- pos: -65.5,36.5
+ pos: -105.5,8.5
parent: 2
- - uid: 11107
+ - uid: 11416
components:
- - type: MetaData
- name: Zoo Substation
- type: Transform
- pos: -68.5,-2.5
+ pos: -106.5,7.5
parent: 2
- - uid: 14197
+- proto: SpawnMobGoat
+ entities:
+ - uid: 21123
components:
- - type: MetaData
- name: Xenoarchaeology Substation
- type: Transform
- pos: 32.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,2.5
parent: 2
- - uid: 14362
+- proto: SpawnMobKangarooWillow
+ entities:
+ - uid: 17829
components:
- - type: MetaData
- name: Labyrinth substation
- type: Transform
- pos: 51.5,44.5
+ pos: 39.5,-22.5
parent: 2
- - uid: 16005
+- proto: SpawnMobLizard
+ entities:
+ - uid: 33117
components:
- - type: MetaData
- name: Security Substation
- type: Transform
- pos: -6.5,45.5
+ pos: 86.5,62.5
parent: 2
- - uid: 19026
+- proto: SpawnMobMcGriff
+ entities:
+ - uid: 21806
components:
- - type: MetaData
- name: Particle Accelerator substation
- type: Transform
- pos: -97.5,54.5
+ pos: -16.5,50.5
parent: 2
- - uid: 19852
+- proto: SpawnMobMonkeyPunpun
+ entities:
+ - uid: 3
components:
- - type: MetaData
- name: Psych Ward Substation
- type: Transform
- pos: -41.5,70.5
+ pos: -43.5,-26.5
parent: 2
- - uid: 20185
+- proto: SpawnMobMothroach
+ entities:
+ - uid: 21126
components:
- - type: MetaData
- name: Western Hospital Substation
- type: Transform
- pos: -27.5,-4.5
+ pos: -103.5,-6.5
parent: 2
- - uid: 20988
+ - uid: 35718
components:
- - type: MetaData
- name: Hallway Substation
- type: Transform
- pos: -39.5,35.5
+ pos: 3.5,12.5
parent: 2
- - uid: 21162
+- proto: SpawnMobOreCrab
+ entities:
+ - uid: 8262
components:
- - type: MetaData
- name: Food Court Substation
- type: Transform
- pos: -65.5,-21.5
+ pos: 68.5,84.5
parent: 2
-- proto: SubstationMachineCircuitboard
- entities:
- - uid: 2338
+ - uid: 35961
components:
- type: Transform
- pos: -47.720688,26.518244
+ pos: 69.5,85.5
parent: 2
- - uid: 7969
+ - uid: 35962
components:
- type: Transform
- pos: -47.25975,26.518244
+ pos: 70.5,84.5
parent: 2
-- proto: SuitStorageAtmos
+- proto: SpawnMobParrot
entities:
- - uid: 3694
+ - uid: 17697
components:
- type: Transform
- pos: -41.5,33.5
+ pos: -49.5,22.5
parent: 2
- - uid: 3696
+- proto: SpawnMobPenguin
+ entities:
+ - uid: 21121
components:
- type: Transform
- pos: -41.5,35.5
+ pos: -88.5,-7.5
parent: 2
- - uid: 3717
+ - uid: 23468
components:
- type: Transform
- pos: -42.5,33.5
+ pos: -82.5,-10.5
parent: 2
- - uid: 7971
+- proto: SpawnMobPossumMorty
+ entities:
+ - uid: 27337
components:
- type: Transform
- pos: -42.5,35.5
+ pos: 27.5,13.5
parent: 2
-- proto: SuitStorageCaptain
+- proto: SpawnMobRaccoonMorticia
entities:
- - uid: 2862
+ - uid: 19374
components:
- type: Transform
- pos: 21.5,50.5
+ pos: -25.5,-20.5
parent: 2
-- proto: SuitStorageCE
+- proto: SpawnMobShiva
entities:
- - uid: 8779
+ - uid: 15729
components:
- type: Transform
- pos: -61.5,13.5
+ pos: -9.5,25.5
parent: 2
-- proto: SuitStorageCMO
+- proto: SpawnMobSlothPaperwork
entities:
- - uid: 575
+ - uid: 6112
components:
- type: Transform
- pos: -11.5,-8.5
+ pos: 54.5,28.5
parent: 2
-- proto: SuitStorageEngi
+- proto: SpawnMobSlug
entities:
- - uid: 9023
+ - uid: 33118
components:
- type: Transform
- pos: -51.5,36.5
+ pos: 90.5,50.5
parent: 2
- - uid: 9028
+ - uid: 33119
components:
- type: Transform
- pos: -51.5,35.5
+ pos: 97.5,38.5
parent: 2
- - uid: 9029
+ - uid: 37579
components:
- type: Transform
- pos: -51.5,34.5
+ pos: -54.5,-6.5
parent: 2
- - uid: 9030
+- proto: SpawnMobSmile
+ entities:
+ - uid: 23548
components:
- type: Transform
- pos: -51.5,33.5
+ pos: 43.5,25.5
parent: 2
- - uid: 10408
+- proto: SpawnMobWalter
+ entities:
+ - uid: 16300
components:
- type: Transform
- pos: -59.5,-33.5
+ pos: 15.5,-35.5
parent: 2
- - uid: 27866
+- proto: SpawnPointAtmos
+ entities:
+ - uid: 3689
components:
- type: Transform
- pos: -53.5,37.5
+ pos: -48.5,34.5
parent: 2
-- proto: SuitStorageEVA
- entities:
- - uid: 14259
+ - uid: 3692
components:
- type: Transform
- pos: 25.5,55.5
+ pos: -47.5,34.5
parent: 2
-- proto: SuitStorageEVAAlternate
- entities:
- - uid: 813
+ - uid: 3698
components:
- type: Transform
- pos: 18.5,25.5
+ pos: -49.5,34.5
parent: 2
- - uid: 6022
+ - uid: 38836
components:
- type: Transform
- pos: 19.5,27.5
+ pos: -46.5,34.5
parent: 2
- - uid: 6023
+- proto: SpawnPointBartender
+ entities:
+ - uid: 2977
components:
- type: Transform
- pos: 18.5,28.5
+ pos: -42.5,-26.5
parent: 2
- - uid: 6024
+- proto: SpawnPointBotanist
+ entities:
+ - uid: 18505
components:
- type: Transform
- pos: 19.5,26.5
+ pos: -49.5,2.5
parent: 2
- - uid: 6025
+ - uid: 18506
components:
- type: Transform
- pos: 19.5,28.5
+ pos: -53.5,-3.5
parent: 2
- - uid: 6026
+ - uid: 18507
components:
- type: Transform
- pos: 18.5,27.5
+ pos: -51.5,-3.5
parent: 2
- - uid: 6027
+ - uid: 18508
components:
- type: Transform
- pos: 18.5,26.5
+ pos: -59.5,-3.5
parent: 2
- - uid: 6028
+ - uid: 18509
components:
- type: Transform
- pos: 19.5,25.5
+ pos: -58.5,-3.5
parent: 2
-- proto: SuitStorageEVAEmergency
+- proto: SpawnPointBoxer
entities:
- - uid: 2856
+ - uid: 3467
components:
- type: Transform
- pos: 49.5,51.5
+ pos: 42.5,-23.5
parent: 2
- - uid: 9539
+- proto: SpawnPointBrigmedic
+ entities:
+ - uid: 21076
components:
- type: Transform
- pos: 50.5,51.5
+ pos: -34.5,34.5
parent: 2
-- proto: SuitStorageEVAPrisoner
+- proto: SpawnPointCaptain
entities:
- - uid: 18132
+ - uid: 14138
components:
- type: Transform
- pos: -5.5,68.5
+ pos: 13.5,49.5
parent: 2
- - uid: 18133
+- proto: SpawnPointCargoTechnician
+ entities:
+ - uid: 232
components:
- type: Transform
- pos: -5.5,66.5
+ pos: -9.5,-30.5
parent: 2
- - uid: 18134
+ - uid: 4240
components:
- type: Transform
- pos: -1.5,68.5
+ pos: -13.5,-23.5
parent: 2
- - uid: 18135
+ - uid: 5875
components:
- type: Transform
- pos: -1.5,66.5
+ pos: -15.5,-34.5
parent: 2
- - uid: 18136
+ - uid: 6135
components:
- type: Transform
- pos: -1.5,67.5
+ pos: -16.5,-33.5
parent: 2
- - uid: 18137
+ - uid: 6146
components:
- type: Transform
- pos: -5.5,67.5
+ pos: -15.5,-33.5
parent: 2
-- proto: SuitStorageHOS
- entities:
- - uid: 15753
+ - uid: 6357
components:
- type: Transform
- pos: -7.5,35.5
+ pos: -16.5,-34.5
parent: 2
-- proto: SuitStorageParamedic
- entities:
- - uid: 22835
+ - uid: 22267
components:
- type: Transform
- pos: 33.5,1.5
+ pos: -14.5,-23.5
parent: 2
- - uid: 22838
+ - uid: 22886
components:
- type: Transform
- pos: 35.5,1.5
+ pos: -15.5,-23.5
parent: 2
- - uid: 34982
+- proto: SpawnPointChaplain
+ entities:
+ - uid: 4317
components:
- type: Transform
- pos: 34.5,1.5
+ pos: 66.5,30.5
parent: 2
-- proto: SuitStorageRD
+- proto: SpawnPointChef
entities:
- - uid: 28732
+ - uid: 21044
components:
- type: Transform
- pos: 49.5,28.5
+ pos: -52.5,-21.5
parent: 2
-- proto: SuitStorageSec
- entities:
- - uid: 179
+ - uid: 23568
components:
- type: Transform
- pos: -18.5,40.5
+ pos: -52.5,-15.5
parent: 2
- - uid: 405
+- proto: SpawnPointChemist
+ entities:
+ - uid: 5643
components:
- type: Transform
- pos: -18.5,41.5
+ pos: 13.5,-0.5
parent: 2
- - uid: 618
+ - uid: 5644
components:
- type: Transform
- pos: -16.5,40.5
+ pos: 19.5,-2.5
parent: 2
- - uid: 4452
+ - uid: 5646
components:
- type: Transform
- pos: -18.5,39.5
+ pos: 13.5,3.5
parent: 2
- - uid: 14160
+- proto: SpawnPointChiefEngineer
+ entities:
+ - uid: 14139
components:
- type: Transform
- pos: -16.5,41.5
+ pos: 12.5,49.5
parent: 2
- - uid: 14251
+- proto: SpawnPointChiefMedicalOfficer
+ entities:
+ - uid: 14143
components:
- type: Transform
- pos: -16.5,39.5
+ pos: 11.5,49.5
parent: 2
-- proto: SuitStorageWarden
+- proto: SpawnPointClown
entities:
- - uid: 15713
+ - uid: 4087
components:
- type: Transform
- pos: -29.5,39.5
+ pos: -75.5,1.5
parent: 2
-- proto: SurveillanceCameraCommand
+- proto: SpawnPointDetective
entities:
- - uid: 17971
+ - uid: 580
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,61.5
+ pos: -20.5,-8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Telecomms
- - uid: 31276
+- proto: SpawnPointForensicMantis
+ entities:
+ - uid: 904
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,52.5
+ pos: 48.5,33.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: The Golden Carp
- - uid: 31301
+- proto: SpawnPointHeadOfPersonnel
+ entities:
+ - uid: 15374
components:
- type: Transform
- pos: 18.5,52.5
+ pos: 10.5,47.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Bridge
- - uid: 31305
+- proto: SpawnPointHeadOfSecurity
+ entities:
+ - uid: 14141
components:
- type: Transform
- pos: 24.5,49.5
+ pos: 13.5,46.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Captain's Quarters
- - uid: 31307
+- proto: SpawnPointJanitor
+ entities:
+ - uid: 13274
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,39.5
+ pos: 34.5,-1.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Vault
- - uid: 31403
+ - uid: 19114
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,44.5
+ pos: -38.5,11.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Main Hall
- - uid: 31447
+ - uid: 19115
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,43.5
+ pos: -38.5,15.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Front Desk
- - uid: 32100
+ - uid: 29352
components:
- type: Transform
- pos: 26.5,45.5
+ pos: -37.5,11.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: East Hall
- - uid: 32101
+- proto: SpawnPointLatejoin
+ entities:
+ - uid: 5098
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,50.5
+ pos: -2.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: The Council
- - uid: 32106
+ - uid: 5099
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,30.5
+ pos: 6.5,-40.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: EVA Storage
-- proto: SurveillanceCameraEngineering
- entities:
- - uid: 28593
+ - uid: 5653
components:
- type: Transform
- pos: -41.5,37.5
+ pos: 5.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmospherics South
- - uid: 28921
+ - uid: 5670
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,15.5
+ pos: -2.5,-40.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Hall South
- - uid: 32415
+ - uid: 6157
components:
- type: Transform
- pos: -49.5,20.5
+ pos: 5.5,-40.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Engineering Lounge
- - uid: 32434
+ - uid: 6158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,27.5
+ pos: 6.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Tech Vault
- - uid: 32435
+ - uid: 6162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,18.5
+ pos: -3.5,-40.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Front Desk
- - uid: 32442
+ - uid: 6163
components:
- type: Transform
- pos: -49.5,11.5
+ pos: -3.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: CE's Office
- - uid: 32444
+ - uid: 30223
components:
- type: Transform
- pos: -60.5,12.5
+ pos: -5.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: CE's Room
- - uid: 32445
+ - uid: 30224
components:
- type: Transform
- pos: -60.5,15.5
+ pos: -6.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Gravity Generator
- - uid: 32451
+ - uid: 30225
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -59.5,31.5
+ pos: 9.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: AME
- - uid: 33690
+ - uid: 30226
components:
- type: Transform
- pos: -52.5,43.5
+ pos: 8.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmospherics North
- - uid: 34033
+ - uid: 30227
components:
- type: Transform
- pos: -98.5,48.5
+ pos: 10.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Particle Accelerator
- - uid: 34036
+ - uid: 30228
components:
- type: Transform
- pos: -52.5,29.5
+ pos: -7.5,-51.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Hall North
- - uid: 34037
+- proto: SpawnPointLawyer
+ entities:
+ - uid: 15687
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,35.5
+ pos: -6.5,58.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos Locker Room
- - uid: 34038
+- proto: SpawnPointLibrarian
+ entities:
+ - uid: 6087
components:
- type: Transform
- pos: -55.5,33.5
+ pos: 51.5,27.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Engineering Locker Room
-- proto: SurveillanceCameraGeneral
+- proto: SpawnPointLocationMidRoundAntag
entities:
- - uid: 29088
+ - uid: 2499
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-34.5
+ pos: -7.5,-37.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Arrivals North
- - uid: 29089
+ - uid: 6789
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-49.5
+ pos: 53.5,37.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Arrivals South
- - uid: 29245
+ - uid: 6825
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-17.5
+ pos: 94.5,58.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Dining Hall
- - uid: 29247
+ - uid: 9686
components:
- type: Transform
- pos: -53.5,7.5
+ pos: -70.5,21.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Engineering Front
- - uid: 29252
+ - uid: 12645
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,23.5
+ pos: 69.5,71.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Crossing North
- - uid: 29253
+ - uid: 15928
components:
- type: Transform
- pos: 3.5,-18.5
+ pos: -1.5,32.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: South Crossing
- - uid: 29287
+ - uid: 17701
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-24.5
+ pos: -29.5,-36.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: South Hall
- - uid: 29293
+ - uid: 23257
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,34.5
+ pos: 87.5,39.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: North Hall
- - uid: 29296
+ - uid: 30733
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,52.5
+ pos: 74.5,-10.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Court Entrance
- - uid: 30415
+ - uid: 30734
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,65.5
+ pos: 69.5,-10.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Northerner Hall
- - uid: 31063
+ - uid: 37753
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,78.5
+ pos: -67.5,-9.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Evac West
- - uid: 31111
+ - uid: 38097
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,78.5
+ pos: 10.5,71.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Evac East
- - uid: 32124
+ - uid: 38102
components:
- type: Transform
- pos: -15.5,19.5
+ pos: 89.5,17.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Security Front
- - uid: 32140
+ - uid: 38138
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,17.5
+ pos: -39.5,30.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Hall
- - uid: 32144
+ - uid: 38145
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -45.5,-1.5
+ pos: 35.5,39.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Hydro Front
- - uid: 32146
+ - uid: 38152
components:
- type: Transform
- pos: 17.5,-16.5
+ pos: 64.5,-27.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: East Hall
- - uid: 32147
+ - uid: 38153
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-16.5
+ pos: 9.5,-27.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Easterner Hall
- - uid: 32148
+- proto: SpawnPointMailCarrier
+ entities:
+ - uid: 983
components:
- type: Transform
- pos: -17.5,-15.5
+ pos: -9.5,-23.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: West Logistics Front
- - uid: 32412
+ - uid: 9974
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 51.5,-3.5
+ pos: -8.5,-23.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Park
-- proto: SurveillanceCameraMedical
+- proto: SpawnPointMartialArtist
entities:
- - uid: 2076
+ - uid: 13394
components:
- type: Transform
- pos: 22.5,-2.5
+ pos: 42.5,-22.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Chemistry 2
- - uid: 3761
+- proto: SpawnPointMedicalBorg
+ entities:
+ - uid: 11235
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,14.5
+ pos: -7.5,-0.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Medical lounge
- - uid: 3763
+ - uid: 11267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-9.5
+ pos: -6.5,-0.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: CMO's Office
- - uid: 8716
+- proto: SpawnPointMedicalDoctor
+ entities:
+ - uid: 5632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,13.5
+ pos: -25.5,15.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Morgue
- - uid: 8829
+ - uid: 5633
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,11.5
+ pos: -22.5,15.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Cryonics
- - uid: 9318
+ - uid: 5634
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,2.5
+ pos: -19.5,15.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Cloning
- - uid: 9487
+ - uid: 5635
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,0.5
+ pos: -16.5,15.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Chemistry 1
- - uid: 18518
+ - uid: 5636
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-8.5
+ pos: -16.5,10.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Group therapy Room
- - uid: 18519
+ - uid: 5637
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-8.5
+ pos: -19.5,10.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Therapy room
- - uid: 19376
+ - uid: 5638
components:
- type: Transform
- pos: -18.5,1.5
+ pos: -22.5,10.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Medical
- - uid: 22954
+ - uid: 31476
components:
- type: Transform
- pos: 11.5,9.5
+ pos: -14.5,9.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Medbay
- - uid: 28909
+- proto: SpawnPointMedicalIntern
+ entities:
+ - uid: 5639
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-10.5
+ pos: -4.5,12.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: CMO's Room
- - uid: 29174
+ - uid: 5640
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 10.5,-4.5
+ pos: -4.5,11.5
parent: 2
- - uid: 29291
+ - uid: 5641
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,7.5
+ pos: -6.5,12.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Waiting Room North
- - uid: 29292
+ - uid: 5642
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: -6.5,11.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Waiting Room South
-- proto: SurveillanceCameraRouterCircuitboard
+- proto: SpawnPointMime
entities:
- - uid: 35828
+ - uid: 3708
components:
- type: Transform
- pos: -47.236313,27.627619
+ pos: -79.5,1.5
parent: 2
-- proto: SurveillanceCameraRouterCommand
+- proto: SpawnPointMusician
entities:
- - uid: 15176
+ - uid: 7163
components:
- type: Transform
- pos: 15.5,42.5
+ pos: -41.5,-31.5
parent: 2
-- proto: SurveillanceCameraRouterEngineering
- entities:
- - uid: 2846
+ - uid: 11257
components:
- type: Transform
- pos: -59.5,11.5
+ pos: -71.5,3.5
parent: 2
-- proto: SurveillanceCameraRouterGeneral
+- proto: SpawnPointObserver
entities:
- - uid: 29196
+ - uid: 33591
components:
- type: Transform
- pos: 9.5,43.5
+ pos: 1.5,-40.5
parent: 2
-- proto: SurveillanceCameraRouterMedical
+- proto: SpawnPointParamedic
entities:
- - uid: 1515
+ - uid: 5625
components:
- type: Transform
- pos: -11.5,-7.5
+ pos: -25.5,10.5
parent: 2
-- proto: SurveillanceCameraRouterScience
- entities:
- - uid: 22596
+ - uid: 5626
components:
- type: Transform
- pos: 42.5,30.5
+ pos: -28.5,10.5
parent: 2
-- proto: SurveillanceCameraRouterSecurity
- entities:
- - uid: 4962
+ - uid: 5627
components:
- type: Transform
- pos: -18.5,42.5
+ pos: -28.5,15.5
parent: 2
-- proto: SurveillanceCameraRouterService
+- proto: SpawnPointPassenger
entities:
- - uid: 1519
+ - uid: 30239
components:
- type: Transform
- pos: -50.5,-3.5
+ pos: -0.5,-45.5
parent: 2
-- proto: SurveillanceCameraRouterSupply
- entities:
- - uid: 8814
+ - uid: 30240
components:
- type: Transform
- pos: -30.5,-25.5
+ pos: -0.5,-46.5
parent: 2
-- proto: SurveillanceCameraScience
- entities:
- - uid: 1707
+ - uid: 30241
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,30.5
+ pos: 3.5,-45.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Epimestics lounge
- - uid: 1709
+ - uid: 30242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,19.5
+ pos: 3.5,-46.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Chapel West
- - uid: 22956
+ - uid: 30243
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,25.5
+ pos: 3.5,-47.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Locker Room
- - uid: 28901
+ - uid: 30244
components:
- type: Transform
- pos: 44.5,28.5
+ pos: 3.5,-48.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Mystagogue's Room
- - uid: 28902
+ - uid: 30245
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,25.5
+ pos: -0.5,-47.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Mystagogue's Office
- - uid: 29062
+ - uid: 30246
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,30.5
+ pos: -0.5,-48.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Front Desk
- - uid: 29068
+- proto: SpawnPointPrisoner
+ entities:
+ - uid: 18399
components:
- type: Transform
- pos: 46.5,32.5
+ pos: -25.5,66.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Mantis' Room
- - uid: 29075
+ - uid: 18400
components:
- type: Transform
- pos: 46.5,36.5
+ pos: -21.5,66.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Anomaly Generator
- - uid: 29076
+ - uid: 18401
components:
- type: Transform
- pos: 46.5,42.5
+ pos: -17.5,66.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Robotics
- - uid: 29079
+ - uid: 18402
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,38.5
+ pos: -13.5,66.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Hall
- - uid: 29082
+- proto: SpawnPointPrisonGuard
+ entities:
+ - uid: 18148
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,51.5
+ pos: -21.5,56.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Xenoarchaeology
- - uid: 29084
+ - uid: 18152
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 65.5,26.5
+ pos: -20.5,61.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Chaplain's Room
-- proto: SurveillanceCameraSecurity
- entities:
- - uid: 6314
+ - uid: 38867
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,64.5
+ pos: -38.5,64.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Psych. Ward
- - uid: 7797
+ - uid: 38868
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,65.5
+ pos: -7.5,64.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Psych. Ward Bar
- - uid: 8714
+- proto: SpawnPointPsychologist
+ entities:
+ - uid: 5631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,44.5
+ pos: -15.5,-8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Shooting range
- - uid: 15792
+- proto: SpawnPointQuartermaster
+ entities:
+ - uid: 14140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,31.5
+ pos: 11.5,46.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Evidence room
- - uid: 15977
+- proto: SpawnPointReporter
+ entities:
+ - uid: 7368
components:
- type: Transform
- pos: -27.5,28.5
+ pos: -28.5,-8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Brig
- - uid: 15997
+- proto: SpawnPointResearchAssistant
+ entities:
+ - uid: 23662
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,42.5
+ pos: 39.5,24.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- - uid: 16282
+ - uid: 30247
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,34.5
+ pos: 37.5,28.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Detective's Office
- - uid: 19379
+ - uid: 30248
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,56.5
+ pos: 39.5,28.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Psych. Ward lounge
- - uid: 22953
+- proto: SpawnPointResearchDirector
+ entities:
+ - uid: 5624
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,30.5
+ pos: 44.5,29.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: South Hall
- - uid: 27750
+ - uid: 14142
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,34.5
+ pos: 12.5,46.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Interrogation Room 2
- - uid: 28878
+- proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 17713
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,48.5
+ pos: -11.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Armory
- - uid: 28887
+ - uid: 18976
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,38.5
+ pos: -10.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: North Hall
- - uid: 28927
+ - uid: 19044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,67.5
+ pos: -8.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Corpsman's Room
- - uid: 28929
+ - uid: 19173
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,26.5
+ pos: -9.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: HOS's Office
- - uid: 28930
+ - uid: 19192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,34.5
+ pos: -7.5,-43.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: HOS's Room
- - uid: 28961
+- proto: SpawnPointScientist
+ entities:
+ - uid: 4045
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,34.5
+ pos: 37.5,25.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Interrogation Room 1
- - uid: 28966
+ - uid: 4046
+ components:
+ - type: Transform
+ pos: 38.5,25.5
+ parent: 2
+ - uid: 4047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,38.5
+ pos: 39.5,25.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Changing room
- - uid: 28981
+ - uid: 4049
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,59.5
+ pos: 38.5,24.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Psych. Ward Hydroponics
- - uid: 29250
+ - uid: 4050
components:
- type: Transform
- pos: -18.5,24.5
+ pos: 37.5,24.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Front Desk
-- proto: SurveillanceCameraService
+- proto: SpawnPointSecurityCadet
entities:
- - uid: 168
+ - uid: 33642
components:
- type: Transform
- pos: -6.5,58.5
+ pos: -20.5,24.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Lawyer's Office
- - uid: 427
+ - uid: 33643
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-25.5
+ pos: -21.5,24.5
parent: 2
- - uid: 2075
+ - uid: 33644
components:
- type: Transform
- pos: 24.5,-21.5
+ pos: -19.5,24.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Kitchen West
- - uid: 7269
+ - uid: 33645
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -107.5,8.5
+ pos: -10.5,30.5
parent: 2
- - uid: 11287
+ - uid: 33646
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,24.5
+ pos: -10.5,29.5
parent: 2
- - uid: 11331
+- proto: SpawnPointSecurityOfficer
+ entities:
+ - uid: 3119
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -55.5,-6.5
+ pos: 4.5,-24.5
parent: 2
- - uid: 11466
+ - uid: 23678
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,-7.5
+ pos: -13.5,31.5
parent: 2
- - uid: 11495
+ - uid: 24794
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -84.5,31.5
+ pos: -19.5,29.5
parent: 2
- - uid: 15543
+ - uid: 25145
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,24.5
+ pos: -13.5,32.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Custodial Office
- - uid: 15609
+ - uid: 33631
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,11.5
+ pos: -8.5,41.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Disposals
- - uid: 17011
+ - uid: 33632
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-27.5
+ pos: -9.5,41.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Bar
- - uid: 17027
+ - uid: 35892
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-24.5
+ pos: -12.5,32.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Boxing Ring
- - uid: 19970
+ - uid: 36110
components:
- type: Transform
- pos: -47.5,-30.5
+ pos: -12.5,31.5
parent: 2
- - uid: 22951
+- proto: SpawnPointServiceWorker
+ entities:
+ - uid: 3316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -59.5,-19.5
+ pos: -47.5,-3.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Backrooms North
- - uid: 22952
+ - uid: 23695
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,10.5
+ pos: -47.5,-2.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo Entrance
- - uid: 22955
+ - uid: 29046
components:
- type: Transform
- pos: -56.5,-29.5
+ pos: -47.5,-1.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Backrooms West
- - uid: 22988
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 8966
components:
- type: Transform
- pos: -84.5,-14.5
+ pos: -53.5,30.5
parent: 2
- - uid: 23638
+ - uid: 8979
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -106.5,24.5
+ pos: -54.5,29.5
parent: 2
- - uid: 29083
+ - uid: 17700
components:
- type: Transform
- pos: 54.5,26.5
+ pos: -54.5,30.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Library
- - uid: 29134
+ - uid: 24108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -41.5,-28.5
+ pos: -53.5,29.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Kitchen 4
- - uid: 29147
+ - uid: 31480
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -50.5,-28.5
+ pos: -48.5,17.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Kitchen 3
- - uid: 29154
+- proto: SpawnPointTechnicalAssistant
+ entities:
+ - uid: 30232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,-22.5
+ pos: -50.5,21.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Kitchen 2
- - uid: 29155
+ - uid: 30233
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -54.5,-14.5
+ pos: -49.5,21.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Kitchen 1
- - uid: 29157
+ - uid: 30234
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-8.5
+ pos: -48.5,21.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Freezer
- - uid: 29186
+- proto: SpawnPointWarden
+ entities:
+ - uid: 17030
components:
- type: Transform
- pos: -52.5,-3.5
+ pos: -19.5,49.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Hydro Locker Room
- - uid: 29192
+- proto: SpawnPointZookeeper
+ entities:
+ - uid: 22903
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -57.5,-3.5
+ pos: -68.5,13.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Hydro Lounge
- - uid: 29193
+- proto: SpawnVendingMachineRestockFood
+ entities:
+ - uid: 27957
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,2.5
+ pos: -23.5,-44.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Hydro West
- - uid: 29194
+- proto: SprayBottle
+ entities:
+ - uid: 37373
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -49.5,4.5
+ pos: 36.789207,30.58383
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Hydro East
- - uid: 29201
+ - uid: 37374
components:
- type: Transform
- pos: -77.5,3.5
+ pos: 37.000145,30.474455
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Theatre
- - uid: 29202
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 18538
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,6.5
+ pos: -38.797207,13.78888
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo Center
- - uid: 29213
+ - uid: 18539
components:
- type: Transform
- pos: -82.5,19.5
+ pos: -38.65658,13.86149
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo N Hall
- - uid: 29217
+ - uid: 34122
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -96.5,11.5
+ pos: -20.19509,53.363613
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo W Hall
- - uid: 29235
+- proto: StairDark
+ entities:
+ - uid: 3276
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -94.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,-3.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo SW Hall
- - uid: 29240
+ - uid: 7151
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -87.5,-3.5
+ pos: 30.5,-3.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zoo S Hall
- - uid: 32107
+ - uid: 8716
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,30.5
+ pos: 13.5,8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: HOP's Room
- - uid: 32109
+ - uid: 25301
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,16.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: HOP's Office
- - uid: 32145
+ - uid: 25312
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-9.5
+ pos: 14.5,8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Reporter's Office
- - uid: 34034
+ - uid: 25357
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -69.5,15.5
+ pos: 64.5,17.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraService
- nameSet: True
- id: Zookeeper's office
-- proto: SurveillanceCameraSupply
- entities:
- - uid: 28926
+ - uid: 25359
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -13.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,18.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Front Desk
- - uid: 29090
+ - uid: 28977
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-39.5
+ pos: 0.5,-19.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Salvage
- - uid: 29091
+ - uid: 34057
components:
- type: Transform
- pos: -28.5,-44.5
+ pos: 15.5,8.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Docks 1
- - uid: 29094
+ - uid: 38120
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -47.5,-46.5
+ pos: 1.5,-19.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Docks 2
- - uid: 29095
+ - uid: 38121
components:
- type: Transform
- pos: -20.5,-35.5
+ pos: 2.5,-19.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: 'Belts Hell '
- - uid: 29100
+ - uid: 38123
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,-32.5
+ pos: 0.5,25.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Locker Room
- - uid: 29112
+ - uid: 38124
components:
- type: Transform
- pos: -13.5,-30.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,25.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Logistics Lounge
- - uid: 29117
+ - uid: 38126
components:
- type: Transform
- pos: -6.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,25.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Mailroom
- - uid: 29121
+ - uid: 38133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-22.5
+ pos: 0.5,-30.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: Unloading Bay
- - uid: 29122
+ - uid: 38135
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-23.5
+ pos: 1.5,-30.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: LO's Room
- - uid: 29130
+ - uid: 38146
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-20.5
+ pos: 2.5,-30.5
parent: 2
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
- id: LO's Office
-- proto: SurveillanceCameraWirelessRouterEntertainment
- entities:
- - uid: 22950
+ - uid: 38162
components:
- type: Transform
- pos: 26.5,-24.5
+ pos: -49.5,-30.5
parent: 2
-- proto: SurveillanceWirelessCameraMovableCircuitboard
- entities:
- - uid: 35820
+ - uid: 38163
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.053356,27.621468
+ pos: -48.5,-30.5
parent: 2
-- proto: SurveillanceWirelessCameraMovableEntertainment
- entities:
- - uid: 185
+ - uid: 39287
components:
- - type: MetaData
- name: Entertainment Camera
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-27.5
+ pos: 71.5,-14.5
parent: 2
- - uid: 17482
+ - uid: 39288
components:
- - type: MetaData
- name: News Camera
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-11.5
+ pos: 72.5,-14.5
parent: 2
-- proto: SurvivalKnife
+- proto: StairStage
entities:
- - uid: 32577
+ - uid: 4596
components:
- type: Transform
- pos: 92.46054,26.863625
+ rot: 3.141592653589793 rad
+ pos: 32.5,-26.5
parent: 2
-- proto: Syringe
- entities:
- - uid: 1575
+ - uid: 4597
components:
- type: Transform
- pos: 11.72247,16.475334
+ rot: 3.141592653589793 rad
+ pos: 33.5,-26.5
parent: 2
- - uid: 1580
+ - uid: 4598
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.624091,14.570803
+ rot: 3.141592653589793 rad
+ pos: 34.5,-26.5
parent: 2
- - uid: 5367
+ - uid: 4605
components:
- type: Transform
- pos: 61.33687,57.436474
+ rot: 3.141592653589793 rad
+ pos: 35.5,-26.5
parent: 2
- - uid: 5368
+- proto: StasisBed
+ entities:
+ - uid: 25789
components:
- type: Transform
- pos: 61.602493,57.2021
+ pos: 8.5,17.5
parent: 2
- - uid: 5369
+ - uid: 30995
components:
- type: Transform
- pos: 61.27437,57.17085
+ pos: 10.5,17.5
parent: 2
- - uid: 21940
+- proto: StationMap
+ entities:
+ - uid: 2254
components:
- type: Transform
- pos: -23.570475,-0.3324256
+ pos: -1.5,-34.5
parent: 2
- - uid: 21941
+ - uid: 22939
components:
- type: Transform
- pos: -23.371256,-0.48476934
+ rot: 3.141592653589793 rad
+ pos: -0.5,57.5
parent: 2
-- proto: TableCarpet
- entities:
- - uid: 747
+ - uid: 23640
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,57.5
parent: 2
- - uid: 3354
+ - uid: 23862
components:
- type: Transform
- pos: 15.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,24.5
parent: 2
- - uid: 3355
+ - uid: 28920
components:
- type: Transform
- pos: 14.5,-32.5
+ pos: -33.5,-12.5
parent: 2
- - uid: 3488
+ - uid: 28940
components:
- type: Transform
- pos: 20.5,-32.5
+ pos: 4.5,-11.5
parent: 2
- - uid: 3814
+ - uid: 29017
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-42.5
+ pos: 48.5,-0.5
parent: 2
- - uid: 3831
+ - uid: 29339
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-42.5
+ pos: -42.5,11.5
parent: 2
- - uid: 3858
+ - uid: 30296
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-42.5
+ pos: -70.5,12.5
parent: 2
- - uid: 3861
+ - uid: 37726
components:
- type: Transform
- pos: 19.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,22.5
parent: 2
- - uid: 5917
+- proto: StationMapBroken
+ entities:
+ - uid: 4726
components:
- type: Transform
- pos: 14.5,-33.5
+ pos: 92.5,76.5
parent: 2
- - uid: 5918
+ - uid: 5398
components:
- type: Transform
- pos: 15.5,-33.5
+ pos: 56.5,55.5
parent: 2
- - uid: 6305
+ - uid: 7015
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-29.5
+ pos: -26.5,-29.5
parent: 2
- - uid: 6306
+ - uid: 29934
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-28.5
+ pos: 102.5,19.5
parent: 2
- - uid: 7922
+ - uid: 32295
components:
- type: Transform
- pos: -12.5,-42.5
+ pos: -113.5,54.5
parent: 2
- - uid: 19316
+ - uid: 32354
components:
- type: Transform
- pos: -37.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -108.5,45.5
parent: 2
- - uid: 19686
+ - uid: 32355
components:
- type: Transform
- pos: -37.5,59.5
+ pos: -126.5,54.5
parent: 2
- - uid: 19687
+ - uid: 36719
components:
- type: Transform
- pos: -38.5,59.5
+ pos: 101.5,56.5
parent: 2
- - uid: 19693
+ - uid: 36720
components:
- type: Transform
- pos: -38.5,60.5
+ pos: 83.5,50.5
parent: 2
- - uid: 19775
+ - uid: 36721
components:
- type: Transform
- pos: -37.5,59.5
+ pos: 59.5,86.5
parent: 2
- - uid: 20192
+ - uid: 36722
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-30.5
+ pos: 75.5,81.5
parent: 2
- - uid: 30705
+ - uid: 36909
components:
- type: Transform
- pos: -36.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,8.5
parent: 2
- - uid: 30709
+- proto: SteelOre1
+ entities:
+ - uid: 35997
components:
- type: Transform
- pos: -36.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 65.97234,81.634155
parent: 2
-- proto: TableCounterMetal
- entities:
- - uid: 2343
+ - uid: 36016
components:
- type: Transform
- pos: -52.5,-24.5
+ pos: 66.08172,81.415405
parent: 2
- - uid: 3196
+ - uid: 36024
components:
- type: Transform
- pos: -54.5,-22.5
+ pos: 65.76922,81.509155
parent: 2
- - uid: 3272
+ - uid: 36043
components:
- type: Transform
- pos: -54.5,-21.5
+ pos: 69.88404,84.60887
parent: 2
- - uid: 3558
+- proto: Stool
+ entities:
+ - uid: 7122
components:
- type: Transform
- pos: -54.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-31.5
parent: 2
- - uid: 3601
+ - uid: 22314
components:
- type: Transform
- pos: -48.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,45.5
parent: 2
- - uid: 3602
+ - uid: 26503
components:
- type: Transform
- pos: -48.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,45.5
parent: 2
- - uid: 7082
+ - uid: 28469
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -51.5,-21.5
+ pos: -30.5,45.5
parent: 2
- - uid: 7083
+ - uid: 29544
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -51.5,-17.5
+ pos: -33.5,45.5
parent: 2
- - uid: 7084
+- proto: StoolBar
+ entities:
+ - uid: 42
components:
- type: Transform
- pos: -54.5,-14.5
+ pos: -43.5,-23.5
parent: 2
- - uid: 7085
+ - uid: 1324
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-27.5
parent: 2
- - uid: 7108
+ - uid: 1325
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -51.5,-16.5
+ pos: -42.5,-29.5
parent: 2
- - uid: 7122
+ - uid: 1885
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-28.5
parent: 2
- - uid: 7123
+ - uid: 1904
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -37.5,-18.5
+ pos: -41.5,-29.5
parent: 2
- - uid: 7124
+ - uid: 2020
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -47.5,-13.5
+ pos: -44.5,-29.5
parent: 2
- - uid: 7125
+ - uid: 2355
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -49.5,-13.5
+ pos: -45.5,-29.5
parent: 2
- - uid: 7126
+ - uid: 2357
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-13.5
+ pos: -43.5,-29.5
parent: 2
- - uid: 7128
+ - uid: 2647
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -50.5,-13.5
+ pos: 7.5,53.5
parent: 2
- - uid: 7133
+ - uid: 2678
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,-18.5
+ pos: 10.5,53.5
parent: 2
- - uid: 7455
+ - uid: 2683
components:
- type: Transform
- pos: -53.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,53.5
parent: 2
- - uid: 7458
+ - uid: 2684
components:
- type: Transform
- pos: -54.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: 9.5,53.5
parent: 2
- - uid: 7470
+ - uid: 2696
components:
- type: Transform
- pos: -54.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,53.5
parent: 2
- - uid: 7678
+ - uid: 6990
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -69.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-37.5
parent: 2
- - uid: 7679
+ - uid: 6991
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -68.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-37.5
parent: 2
- - uid: 23775
+ - uid: 6992
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-37.5
parent: 2
- - uid: 23776
+ - uid: 6993
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-32.5
parent: 2
- - uid: 23780
+ - uid: 9604
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-0.5
+ pos: -10.5,-44.5
parent: 2
- - uid: 23783
+ - uid: 10326
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-0.5
+ pos: -42.5,63.5
parent: 2
- - uid: 23823
+ - uid: 11204
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-26.5
parent: 2
- - uid: 23841
+ - uid: 12113
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-0.5
+ pos: -40.5,63.5
parent: 2
-- proto: TableCounterWood
- entities:
- - uid: 742
+ - uid: 12448
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-27.5
+ pos: -7.5,-44.5
parent: 2
- - uid: 771
+ - uid: 15937
components:
- type: Transform
- pos: 30.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,63.5
parent: 2
- - uid: 773
+ - uid: 17390
components:
- type: Transform
- pos: 28.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-44.5
parent: 2
- - uid: 780
+ - uid: 17704
components:
- type: Transform
- pos: 19.5,-17.5
+ pos: -41.5,-23.5
parent: 2
- - uid: 791
+ - uid: 19678
components:
- type: Transform
- pos: 18.5,-17.5
+ pos: -39.5,65.5
parent: 2
- - uid: 792
+ - uid: 19707
components:
- type: Transform
- pos: 21.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,63.5
parent: 2
- - uid: 793
+ - uid: 19713
components:
- type: Transform
- pos: 20.5,-17.5
+ pos: -39.5,64.5
parent: 2
- - uid: 860
+ - uid: 19714
components:
- type: Transform
- pos: 31.5,-17.5
+ pos: -39.5,67.5
parent: 2
- - uid: 1676
+ - uid: 19715
components:
- type: Transform
- pos: 29.5,-17.5
+ pos: -39.5,66.5
parent: 2
- - uid: 3107
+ - uid: 21170
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-29.5
+ pos: -44.5,-23.5
parent: 2
- - uid: 3115
+ - uid: 21171
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-29.5
+ pos: -42.5,-23.5
parent: 2
- - uid: 3166
+ - uid: 21932
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-25.5
parent: 2
- - uid: 3168
+ - uid: 28857
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,-29.5
+ pos: 11.5,53.5
parent: 2
- - uid: 3169
+ - uid: 38140
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-29.5
+ pos: -8.5,-44.5
parent: 2
- - uid: 3171
+ - uid: 38142
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-29.5
+ pos: -9.5,-44.5
parent: 2
- - uid: 3561
+- proto: StorageCanister
+ entities:
+ - uid: 2533
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-28.5
+ pos: 43.5,46.5
parent: 2
- - uid: 4311
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 3384
components:
- type: Transform
- pos: -56.5,-27.5
+ pos: 41.5,46.5
parent: 2
- - uid: 4530
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5712
components:
- type: Transform
- pos: 21.5,-28.5
+ pos: 60.5,55.5
parent: 2
- - uid: 5142
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 5996
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-15.5
+ pos: -46.5,39.5
parent: 2
- - uid: 5143
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 8732
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-14.5
+ pos: -45.5,39.5
parent: 2
- - uid: 5156
+ - type: AtmosDevice
+ joinedGrid: 2
+ - uid: 9079
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-18.5
+ pos: -48.5,39.5
parent: 2
- - uid: 5157
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: Stunbaton
+ entities:
+ - uid: 4676
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 72.5,-18.5
+ pos: 8.432165,-20.89608
parent: 2
- - uid: 5158
+ - uid: 12057
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 73.5,-18.5
+ pos: 8.619665,-21.05233
parent: 2
- - uid: 5161
+ - uid: 13368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-10.5
+ pos: -36.640255,34.578823
parent: 2
- - uid: 5162
+ - uid: 14263
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-9.5
+ pos: 11.48601,48.62845
parent: 2
- - uid: 5747
+- proto: SubstationBasic
+ entities:
+ - uid: 3762
components:
+ - type: MetaData
+ name: Center Hospital Substation
- type: Transform
- pos: 18.5,-27.5
+ pos: -5.5,-2.5
parent: 2
- - uid: 5748
+ - uid: 4713
components:
+ - type: MetaData
+ name: Epistemics Substation
- type: Transform
- pos: 19.5,-27.5
+ pos: 32.5,35.5
parent: 2
- - uid: 6975
+ - uid: 5320
components:
+ - type: MetaData
+ name: Black Market Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-38.5
+ pos: 99.5,77.5
parent: 2
- - uid: 6976
+ - uid: 6009
components:
+ - type: MetaData
+ name: Logistics Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-38.5
+ pos: -26.5,-28.5
parent: 2
- - uid: 6977
+ - uid: 7660
components:
+ - type: MetaData
+ name: North Hallway Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-38.5
+ pos: -41.5,20.5
parent: 2
- - uid: 6978
+ - uid: 10128
components:
+ - type: MetaData
+ name: Xenoarchaology Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-38.5
+ pos: 33.5,55.5
parent: 2
- - uid: 6979
+ - uid: 11107
components:
+ - type: MetaData
+ name: Zoo Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-38.5
+ pos: -68.5,-2.5
parent: 2
- - uid: 6980
+ - uid: 11660
components:
+ - type: MetaData
+ name: Security Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-38.5
+ pos: -2.5,26.5
parent: 2
- - uid: 6981
+ - uid: 17709
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-38.5
+ pos: 17.5,-30.5
parent: 2
- - uid: 6982
+ - uid: 19121
components:
+ - type: MetaData
+ name: PA Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-30.5
+ pos: 80.5,-22.5
parent: 2
- - uid: 6983
+ - uid: 20479
components:
+ - type: MetaData
+ name: Engineering Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-31.5
+ pos: -67.5,34.5
parent: 2
- - uid: 6984
+ - uid: 21162
components:
+ - type: MetaData
+ name: Food Court Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-32.5
+ pos: -65.5,-21.5
parent: 2
- - uid: 6985
+ - uid: 22837
components:
+ - type: MetaData
+ name: West Hospital Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-33.5
+ pos: -30.5,3.5
parent: 2
- - uid: 6986
+ - uid: 26327
components:
+ - type: MetaData
+ name: Eastern Hospital Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-34.5
+ pos: 43.5,13.5
parent: 2
- - uid: 6987
+ - uid: 32091
components:
+ - type: MetaData
+ name: Park Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-35.5
+ pos: 48.5,-29.5
parent: 2
- - uid: 6988
+ - uid: 33295
components:
+ - type: MetaData
+ name: Cave Substation
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-35.5
+ pos: 78.5,58.5
parent: 2
- - uid: 7117
+ - uid: 36949
components:
+ - type: MetaData
+ name: Bridge Substation
- type: Transform
- pos: 26.5,-25.5
+ pos: 5.5,46.5
parent: 2
- - uid: 7941
+ - uid: 37264
components:
+ - type: MetaData
+ name: Psych Ward Substation
- type: Transform
- pos: -52.5,-8.5
+ pos: -37.5,71.5
parent: 2
- - uid: 8375
+ - uid: 38045
components:
+ - type: MetaData
+ name: Comms Substation
- type: Transform
- pos: -57.5,-27.5
+ pos: -77.5,18.5
parent: 2
- - uid: 11474
+ - uid: 38897
components:
+ - type: MetaData
+ name: Arrivals Substation
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-27.5
+ pos: 10.5,-42.5
parent: 2
- - uid: 11475
+- proto: SubstationMachineCircuitboard
+ entities:
+ - uid: 2338
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-26.5
+ pos: -47.720688,26.518244
parent: 2
- - uid: 11481
+ - uid: 7969
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-25.5
+ pos: -47.25975,26.518244
parent: 2
- - uid: 12962
+- proto: SuitStorageAtmos
+ entities:
+ - uid: 605
components:
- type: Transform
- pos: 45.5,-11.5
+ pos: -45.5,37.5
parent: 2
- - uid: 22152
+ - uid: 22224
components:
- type: Transform
- pos: -46.5,-27.5
+ pos: -48.5,37.5
parent: 2
- - uid: 23708
+ - uid: 31305
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -50.5,-28.5
+ pos: -46.5,37.5
parent: 2
- - uid: 26729
+ - uid: 38794
components:
- type: Transform
- pos: -47.5,-27.5
+ pos: -47.5,37.5
parent: 2
- - uid: 28231
+- proto: SuitStorageCaptain
+ entities:
+ - uid: 18805
components:
- type: Transform
- pos: -46.5,-28.5
+ pos: 25.5,52.5
parent: 2
- - uid: 30552
+- proto: SuitStorageCE
+ entities:
+ - uid: 8779
components:
- type: Transform
- pos: -22.5,22.5
+ pos: -61.5,13.5
parent: 2
- - uid: 30553
+- proto: SuitStorageCMO
+ entities:
+ - uid: 575
components:
- type: Transform
- pos: -21.5,22.5
+ pos: -11.5,-8.5
parent: 2
- - uid: 30554
+- proto: SuitStorageCorpsman
+ entities:
+ - uid: 26490
components:
- type: Transform
- pos: -18.5,22.5
+ pos: -33.5,35.5
parent: 2
- - uid: 30555
+- proto: SuitStorageEngi
+ entities:
+ - uid: 9028
components:
- type: Transform
- pos: -20.5,22.5
+ pos: -51.5,35.5
parent: 2
- - uid: 30556
+ - uid: 9029
components:
- type: Transform
- pos: -19.5,22.5
+ pos: -51.5,34.5
parent: 2
-- proto: TableGlass
- entities:
- - uid: 640
+ - uid: 9030
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-9.5
+ pos: -51.5,33.5
parent: 2
- - uid: 650
+ - uid: 10408
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-9.5
+ pos: -59.5,-33.5
parent: 2
- - uid: 658
+ - uid: 20674
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-9.5
+ pos: 54.5,-33.5
parent: 2
- - uid: 707
+ - uid: 23000
components:
- type: Transform
- pos: -13.5,-10.5
+ pos: 58.5,-33.5
parent: 2
- - uid: 1104
+ - uid: 26229
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-21.5
+ pos: 80.5,-10.5
parent: 2
- - uid: 1106
+ - uid: 37873
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-21.5
+ pos: 79.5,-10.5
parent: 2
- - uid: 1108
+- proto: SuitStorageEVA
+ entities:
+ - uid: 6691
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-17.5
+ pos: -15.5,-37.5
parent: 2
- - uid: 1439
+ - uid: 6807
components:
- type: Transform
- pos: 11.5,16.5
+ pos: -16.5,-37.5
parent: 2
- - uid: 1440
+ - uid: 7426
components:
- type: Transform
- pos: 9.5,13.5
+ pos: 29.5,56.5
parent: 2
- - uid: 1453
+ - uid: 17976
components:
- type: Transform
- pos: 7.5,16.5
+ pos: 29.5,54.5
parent: 2
- - uid: 1497
+ - uid: 22285
components:
- type: Transform
- pos: 15.5,10.5
+ pos: 29.5,55.5
parent: 2
- - uid: 1564
+ - uid: 37680
components:
- type: Transform
- pos: 15.5,9.5
+ pos: -41.5,8.5
parent: 2
- - uid: 1577
+ - uid: 37681
components:
- type: Transform
- pos: 9.5,14.5
+ pos: -41.5,9.5
parent: 2
- - uid: 1594
+ - uid: 37682
components:
- type: Transform
- pos: -5.5,12.5
+ pos: -41.5,10.5
parent: 2
- - uid: 1627
+- proto: SuitStorageEVAAlternate
+ entities:
+ - uid: 813
components:
- type: Transform
- pos: -5.5,11.5
+ pos: 18.5,25.5
parent: 2
- - uid: 1632
+ - uid: 6022
components:
- type: Transform
- pos: -2.5,13.5
+ pos: 19.5,27.5
parent: 2
- - uid: 1633
+ - uid: 6023
components:
- type: Transform
- pos: -2.5,12.5
+ pos: 18.5,28.5
parent: 2
- - uid: 4400
+ - uid: 6024
components:
- type: Transform
- pos: 7.5,-11.5
+ pos: 19.5,26.5
parent: 2
- - uid: 4450
+ - uid: 6025
components:
- type: Transform
- pos: 7.5,-7.5
+ pos: 19.5,28.5
parent: 2
- - uid: 5195
+ - uid: 6026
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -46.5,-21.5
+ pos: 18.5,27.5
parent: 2
- - uid: 7145
+ - uid: 6027
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-17.5
+ pos: 18.5,26.5
parent: 2
- - uid: 8382
+ - uid: 6028
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-11.5
+ pos: 19.5,25.5
parent: 2
- - uid: 11169
+- proto: SuitStorageEVAEmergency
+ entities:
+ - uid: 2856
components:
- type: Transform
- pos: -23.5,7.5
+ pos: 49.5,51.5
parent: 2
- - uid: 17115
+ - uid: 9539
components:
- type: Transform
- pos: -29.5,7.5
+ pos: 50.5,51.5
parent: 2
- - uid: 17804
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 12116
components:
- type: Transform
- pos: -27.5,7.5
+ pos: 14.5,-24.5
parent: 2
- - uid: 17969
+ - uid: 12123
components:
- type: Transform
- pos: -19.5,7.5
+ pos: 15.5,-24.5
parent: 2
- - uid: 18037
+ - uid: 18132
components:
- type: Transform
- pos: -17.5,7.5
+ pos: -5.5,68.5
parent: 2
- - uid: 18524
+ - uid: 18133
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -37.5,24.5
+ pos: -5.5,66.5
parent: 2
- - uid: 18526
+ - uid: 18134
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,21.5
+ pos: -1.5,68.5
parent: 2
- - uid: 18527
+ - uid: 18135
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,22.5
+ pos: -1.5,66.5
parent: 2
- - uid: 21912
+ - uid: 18136
components:
- type: Transform
- pos: -21.5,7.5
+ pos: -1.5,67.5
parent: 2
- - uid: 21926
+ - uid: 18137
components:
- type: Transform
- pos: -25.5,7.5
+ pos: -5.5,67.5
parent: 2
- - uid: 22051
+ - uid: 21462
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-11.5
+ pos: 13.5,-24.5
parent: 2
- - uid: 29725
+- proto: SuitStorageHOS
+ entities:
+ - uid: 15753
components:
- type: Transform
- pos: -42.5,22.5
+ pos: -7.5,35.5
parent: 2
- - uid: 29836
+- proto: SuitStorageNTSRA
+ entities:
+ - uid: 30919
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,18.5
+ pos: -117.5,48.5
parent: 2
- - uid: 30027
+- proto: SuitStorageParamedic
+ entities:
+ - uid: 9094
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,17.5
+ pos: 36.5,3.5
parent: 2
- - uid: 30028
+ - uid: 9601
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 91.5,16.5
+ pos: 36.5,2.5
parent: 2
- - uid: 35796
+ - uid: 10238
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,14.5
+ pos: 36.5,1.5
parent: 2
-- proto: TablePlasmaGlass
+- proto: SuitStorageRD
entities:
- - uid: 53
+ - uid: 14027
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 48.5,46.5
+ pos: 48.5,30.5
parent: 2
- - uid: 2454
+- proto: SuitStorageSalv
+ entities:
+ - uid: 6796
components:
- type: Transform
- pos: 45.5,44.5
+ pos: -13.5,-45.5
parent: 2
- - uid: 2460
+ - uid: 6822
components:
- type: Transform
- pos: 44.5,44.5
+ pos: -13.5,-43.5
parent: 2
- - uid: 2836
+ - uid: 11011
components:
- type: Transform
- pos: 41.5,51.5
+ pos: -13.5,-42.5
parent: 2
- - uid: 4043
+ - uid: 13369
components:
- type: Transform
- pos: 35.5,23.5
+ pos: -13.5,-44.5
parent: 2
- - uid: 4044
+ - uid: 16975
components:
- type: Transform
- pos: 36.5,23.5
+ pos: -13.5,-41.5
parent: 2
- - uid: 4096
+- proto: SuitStorageSec
+ entities:
+ - uid: 179
components:
- type: Transform
- pos: 50.5,40.5
+ pos: -18.5,40.5
parent: 2
- - uid: 4097
+ - uid: 405
components:
- type: Transform
- pos: 50.5,39.5
+ pos: -18.5,41.5
parent: 2
- - uid: 4098
+ - uid: 618
components:
- type: Transform
- pos: 50.5,38.5
+ pos: -16.5,40.5
parent: 2
- - uid: 4104
+ - uid: 4452
components:
- type: Transform
- pos: 43.5,40.5
+ pos: -18.5,39.5
parent: 2
- - uid: 4105
+ - uid: 11824
components:
- type: Transform
- pos: 42.5,40.5
+ pos: 8.5,-25.5
parent: 2
- - uid: 4106
+ - uid: 14160
components:
- type: Transform
- pos: 42.5,39.5
+ pos: -16.5,41.5
parent: 2
- - uid: 4148
+ - uid: 14251
components:
- type: Transform
- pos: 42.5,51.5
+ pos: -16.5,39.5
parent: 2
- - uid: 5133
+ - uid: 22822
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,46.5
+ pos: 8.5,-24.5
parent: 2
- - uid: 5134
+- proto: SuitStorageWarden
+ entities:
+ - uid: 36942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 49.5,46.5
+ pos: -23.5,50.5
parent: 2
- - uid: 5332
+- proto: SurveillanceCameraCommand
+ entities:
+ - uid: 7855
components:
- type: Transform
- pos: 57.5,56.5
+ pos: -78.5,17.5
parent: 2
- - uid: 5333
+ - type: SurveillanceCamera
+ id: Telecomms Substation
+ - uid: 29199
components:
- type: Transform
- pos: 57.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,51.5
parent: 2
- - uid: 5334
+ - type: SurveillanceCamera
+ id: Captain's Room
+ - uid: 31276
components:
- type: Transform
- pos: 61.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,52.5
parent: 2
- - uid: 5335
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: The Golden Carp
+ - uid: 31301
components:
- type: Transform
- pos: 61.5,56.5
+ pos: 18.5,52.5
parent: 2
- - uid: 5336
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge
+ - uid: 31307
components:
- type: Transform
- pos: 61.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,39.5
parent: 2
- - uid: 5522
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Vault
+ - uid: 31403
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 50.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,44.5
parent: 2
- - uid: 5530
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Main Hall
+ - uid: 31447
components:
- type: Transform
- pos: 38.5,28.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,43.5
parent: 2
- - uid: 5533
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Front Desk
+ - uid: 32100
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,46.5
+ pos: 26.5,45.5
parent: 2
- - uid: 5553
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: East Hall
+ - uid: 32101
components:
- type: Transform
- pos: 43.5,51.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,50.5
parent: 2
- - uid: 5674
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: The Council
+ - uid: 32106
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 50.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,30.5
parent: 2
- - uid: 5744
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: EVA Storage
+ - uid: 37183
components:
- type: Transform
- pos: 46.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -78.5,14.5
parent: 2
- - uid: 5745
+ - type: SurveillanceCamera
+ id: Telecomms
+- proto: SurveillanceCameraEngineering
+ entities:
+ - uid: 8255
components:
- type: Transform
- pos: 48.5,44.5
+ pos: -44.5,33.5
parent: 2
- - uid: 9553
+ - type: SurveillanceCamera
+ id: Atmos Lockers
+ - uid: 28593
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,47.5
+ pos: -41.5,37.5
parent: 2
- - uid: 9554
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics South
+ - uid: 28921
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,46.5
+ pos: -55.5,15.5
parent: 2
- - uid: 13996
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Hall South
+ - uid: 32415
components:
- type: Transform
- pos: 26.5,37.5
+ pos: -49.5,20.5
parent: 2
- - uid: 14124
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering Lounge
+ - uid: 32434
components:
- type: Transform
- pos: 26.5,38.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,27.5
parent: 2
- - uid: 14125
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Tech Vault
+ - uid: 32435
components:
- type: Transform
- pos: 26.5,39.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,18.5
parent: 2
- - uid: 29163
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Front Desk
+ - uid: 32442
components:
- type: Transform
- pos: 49.5,40.5
+ pos: -49.5,11.5
parent: 2
-- proto: TableReinforced
- entities:
- - uid: 987
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering Counter
+ - uid: 32444
components:
- type: Transform
- pos: 21.5,-4.5
+ pos: -60.5,12.5
parent: 2
- - uid: 1009
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: CE's Room
+ - uid: 32445
components:
- type: Transform
- pos: 13.5,4.5
+ pos: -60.5,15.5
parent: 2
- - uid: 1042
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gravity Generator
+ - uid: 32451
components:
- type: Transform
- pos: 12.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -59.5,31.5
parent: 2
- - uid: 1125
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
+ - uid: 33690
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-3.5
+ pos: -52.5,43.5
parent: 2
- - uid: 1132
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics North
+ - uid: 34036
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-3.5
+ pos: -52.5,29.5
parent: 2
- - uid: 1161
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Hall North
+ - uid: 34038
components:
- type: Transform
- pos: 12.5,-1.5
+ pos: -55.5,33.5
parent: 2
- - uid: 1181
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering Locker Room
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 12052
components:
- type: Transform
- pos: 12.5,0.5
+ pos: 16.5,-16.5
parent: 2
- - uid: 1191
+ - uid: 22925
components:
- type: Transform
- pos: 21.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-17.5
parent: 2
- - uid: 1203
+ - uid: 29088
components:
- type: Transform
- pos: 18.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-34.5
parent: 2
- - uid: 1282
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Arrivals North
+ - uid: 29089
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-49.5
parent: 2
- - uid: 1298
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Arrivals South
+ - uid: 29247
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,2.5
+ pos: -53.5,7.5
parent: 2
- - uid: 1339
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: West Engineering Front
+ - uid: 29252
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,23.5
parent: 2
- - uid: 1340
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Crossing North
+ - uid: 29253
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,16.5
+ pos: 3.5,-18.5
parent: 2
- - uid: 1364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: South Crossing
+ - uid: 29293
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,34.5
parent: 2
- - uid: 1365
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: North Hall
+ - uid: 30415
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 34.5,9.5
+ pos: 0.5,65.5
parent: 2
- - uid: 1366
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Northerner Hall
+ - uid: 31063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,78.5
parent: 2
- - uid: 1367
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac West
+ - uid: 31111
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,78.5
parent: 2
- - uid: 1386
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac East
+ - uid: 32124
components:
- type: Transform
- pos: 35.5,5.5
+ pos: -15.5,19.5
parent: 2
- - uid: 1387
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: West Security Front
+ - uid: 32144
components:
- type: Transform
- pos: 36.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -45.5,-1.5
parent: 2
- - uid: 1392
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: West Hydro Front
+ - uid: 32147
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,1.5
+ pos: 44.5,-16.5
parent: 2
- - uid: 1396
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Easterner Hall
+ - uid: 32148
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,0.5
+ pos: -17.5,-15.5
parent: 2
- - uid: 1397
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: West Logistics Front
+ - uid: 32412
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,0.5
+ pos: 51.5,-3.5
parent: 2
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Park
+- proto: SurveillanceCameraMedical
+ entities:
- uid: 1398
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,0.5
+ pos: 26.5,0.5
parent: 2
- - uid: 1399
+ - type: SurveillanceCamera
+ id: Cloning
+ - uid: 2076
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,0.5
+ pos: 22.5,-2.5
parent: 2
- - uid: 1408
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry 2
+ - uid: 3761
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,3.5
+ pos: -5.5,14.5
parent: 2
- - uid: 1413
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical lounge
+ - uid: 3763
components:
- type: Transform
- pos: 17.5,3.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-9.5
parent: 2
- - uid: 1646
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: CMO's Office
+ - uid: 7222
components:
- type: Transform
- pos: 12.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 2.5,4.5
parent: 2
- - uid: 1654
+ - uid: 9487
components:
- type: Transform
- pos: 19.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,0.5
parent: 2
- - uid: 1667
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry 1
+ - uid: 18519
components:
- type: Transform
- pos: 20.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-8.5
parent: 2
- - uid: 1668
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Therapy room
+ - uid: 19376
components:
- type: Transform
- pos: 21.5,-1.5
+ pos: -18.5,1.5
parent: 2
- - uid: 2011
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical
+ - uid: 28909
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-10.5
parent: 2
- - uid: 2754
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: CMO's Room
+ - uid: 29174
components:
- type: Transform
- pos: -49.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,-4.5
parent: 2
- - uid: 2889
+ - uid: 29292
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,25.5
+ pos: -0.5,-2.5
parent: 2
- - uid: 3304
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Waiting Room South
+- proto: SurveillanceCameraRouterCircuitboard
+ entities:
+ - uid: 35828
components:
- type: Transform
- pos: -53.5,25.5
+ pos: -47.236313,27.627619
parent: 2
- - uid: 3456
+- proto: SurveillanceCameraRouterCommand
+ entities:
+ - uid: 38786
components:
- type: Transform
- pos: 42.5,-21.5
+ pos: 10.5,60.5
parent: 2
- - uid: 3457
+- proto: SurveillanceCameraRouterEngineering
+ entities:
+ - uid: 38787
components:
- type: Transform
- pos: 41.5,-21.5
+ pos: 10.5,61.5
parent: 2
- - uid: 3458
+- proto: SurveillanceCameraRouterGeneral
+ entities:
+ - uid: 16098
components:
- type: Transform
- pos: 44.5,-21.5
+ pos: 9.5,58.5
parent: 2
- - uid: 3459
+- proto: SurveillanceCameraRouterMedical
+ entities:
+ - uid: 38738
components:
- type: Transform
- pos: 43.5,-21.5
+ pos: 8.5,58.5
parent: 2
- - uid: 3460
+- proto: SurveillanceCameraRouterScience
+ entities:
+ - uid: 38791
components:
- type: Transform
- pos: 44.5,-23.5
+ pos: 10.5,59.5
parent: 2
- - uid: 3461
+- proto: SurveillanceCameraRouterSecurity
+ entities:
+ - uid: 38785
components:
- type: Transform
- pos: 44.5,-22.5
+ pos: 7.5,58.5
parent: 2
- - uid: 3463
+- proto: SurveillanceCameraRouterService
+ entities:
+ - uid: 7203
components:
- type: Transform
- pos: 44.5,-24.5
+ pos: 9.5,62.5
parent: 2
- - uid: 3857
+- proto: SurveillanceCameraRouterSupply
+ entities:
+ - uid: 38783
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,25.5
+ pos: 8.5,62.5
parent: 2
- - uid: 3981
+- proto: SurveillanceCameraScience
+ entities:
+ - uid: 1707
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,30.5
parent: 2
- - uid: 4052
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Epimestics lounge
+ - uid: 1709
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,19.5
parent: 2
- - uid: 5213
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Chapel West
+ - uid: 4836
components:
- type: Transform
- pos: 28.5,30.5
+ pos: 44.5,42.5
parent: 2
- - uid: 5241
+ - uid: 22956
components:
- type: Transform
- pos: -36.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,25.5
parent: 2
- - uid: 5262
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Locker Room
+ - uid: 28901
components:
- type: Transform
- pos: 27.5,30.5
+ pos: 44.5,28.5
parent: 2
- - uid: 5268
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Mystagogue's Room
+ - uid: 28902
components:
- type: Transform
- pos: 26.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,25.5
parent: 2
- - uid: 5269
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Mystagogue's Office
+ - uid: 29062
components:
- type: Transform
- pos: 26.5,29.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,30.5
parent: 2
- - uid: 5438
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Front Desk
+ - uid: 29068
components:
- type: Transform
- pos: 35.5,30.5
+ pos: 46.5,32.5
parent: 2
- - uid: 5439
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Mantis' Room
+ - uid: 29075
components:
- type: Transform
- pos: 36.5,30.5
+ pos: 46.5,36.5
parent: 2
- - uid: 5525
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Anomaly Generator
+ - uid: 29079
components:
- type: Transform
- pos: 37.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,38.5
parent: 2
- - uid: 6033
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Hall
+ - uid: 29082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 42.5,51.5
parent: 2
- - uid: 6034
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Xenoarchaeology
+ - uid: 29084
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,30.5
+ pos: 65.5,26.5
parent: 2
- - uid: 6035
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Chaplain's Room
+- proto: SurveillanceCameraSecurity
+ entities:
+ - uid: 1967
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,26.5
parent: 2
- - uid: 6036
+ - type: SurveillanceCamera
+ id: HOS's Office
+ - uid: 6314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,64.5
parent: 2
- - uid: 6037
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Psych. Ward
+ - uid: 7797
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -35.5,65.5
parent: 2
- - uid: 6038
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Psych. Ward Bar
+ - uid: 8714
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.5,25.5
+ pos: -33.5,44.5
parent: 2
- - uid: 6041
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Shooting range
+ - uid: 15792
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,31.5
parent: 2
- - uid: 6042
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evidence Room
+ - uid: 15977
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,27.5
+ pos: -27.5,28.5
parent: 2
- - uid: 6043
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig
+ - uid: 16282
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,26.5
+ pos: -36.5,34.5
parent: 2
- - uid: 6044
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Corpsman's Office
+ - uid: 19379
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,25.5
+ pos: -23.5,56.5
parent: 2
- - uid: 6947
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Psych. Ward lounge
+ - uid: 22953
components:
- type: Transform
- pos: -51.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,30.5
parent: 2
- - uid: 7294
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: South Hall
+ - uid: 27750
components:
- type: Transform
- pos: -50.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,34.5
parent: 2
- - uid: 7295
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Interrogation Room 2
+ - uid: 28887
components:
- type: Transform
- pos: -48.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,38.5
parent: 2
- - uid: 7422
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: North Hall
+ - uid: 28927
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,67.5
parent: 2
- - uid: 7588
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Corpsman's Room
+ - uid: 28930
components:
- type: Transform
- pos: -7.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,34.5
parent: 2
- - uid: 7594
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: HOS's Room
+ - uid: 28961
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -44.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,34.5
parent: 2
- - uid: 8407
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Interrogation Room 1
+ - uid: 28966
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -43.5,60.5
+ pos: -8.5,38.5
parent: 2
- - uid: 8715
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Locker Room
+ - uid: 28981
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,59.5
parent: 2
- - uid: 8765
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Psych. Ward Hydroponics
+ - uid: 29250
components:
- type: Transform
- pos: -50.5,14.5
+ pos: -18.5,24.5
parent: 2
- - uid: 8769
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Front Desk
+ - uid: 34406
components:
- type: Transform
- pos: -49.5,13.5
+ pos: 9.5,-23.5
parent: 2
- - uid: 8770
+ - type: SurveillanceCamera
+ id: Arrivals Checkpoint
+ - uid: 34410
components:
- type: Transform
- pos: -49.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,43.5
parent: 2
- - uid: 8772
+ - type: SurveillanceCamera
+ id: Evac Checkpoint
+ - uid: 37505
components:
- type: Transform
- pos: -49.5,12.5
+ pos: -9.5,66.5
parent: 2
- - uid: 8775
+ - type: SurveillanceCamera
+ id: Psych Ward Visitation
+ - uid: 37525
components:
- type: Transform
- pos: -57.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,39.5
parent: 2
- - uid: 8778
+ - type: SurveillanceCamera
+ id: Armory T1
+ - uid: 37526
components:
- type: Transform
- pos: -58.5,13.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,46.5
parent: 2
- - uid: 8934
+ - type: SurveillanceCamera
+ id: Armory Hall
+ - uid: 37527
components:
- type: Transform
- pos: -47.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,37.5
parent: 2
- - uid: 8986
+ - type: SurveillanceCamera
+ id: Armory T2
+ - uid: 37528
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -56.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,51.5
parent: 2
- - uid: 9001
+ - type: SurveillanceCamera
+ id: Warden's Office
+ - uid: 37529
components:
- type: Transform
- pos: -47.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,60.5
parent: 2
- - uid: 9002
+ - type: SurveillanceCamera
+ id: Psych Ward Medical Office
+ - uid: 37530
components:
- type: Transform
- pos: -48.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,52.5
parent: 2
- - uid: 9004
+ - type: SurveillanceCamera
+ id: Courtroom
+- proto: SurveillanceCameraService
+ entities:
+ - uid: 14
components:
- type: Transform
- pos: -50.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,-18.5
parent: 2
- - uid: 9040
+ - uid: 168
components:
- type: Transform
- pos: -47.5,27.5
+ pos: -6.5,58.5
parent: 2
- - uid: 9089
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Lawyer's Office
+ - uid: 7269
components:
- type: Transform
- pos: -55.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -107.5,8.5
parent: 2
- - uid: 9090
+ - uid: 11287
components:
- type: Transform
- pos: -54.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,24.5
parent: 2
- - uid: 9091
+ - uid: 11331
components:
- type: Transform
- pos: -53.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-6.5
parent: 2
- - uid: 9095
+ - uid: 11466
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -106.5,-7.5
parent: 2
- - uid: 9096
+ - uid: 11495
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,33.5
+ pos: -84.5,31.5
parent: 2
- - uid: 9097
+ - uid: 12081
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-22.5
parent: 2
- - uid: 9122
+ - uid: 15609
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,11.5
parent: 2
- - uid: 9123
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Disposals
+ - uid: 17027
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-24.5
parent: 2
- - uid: 9132
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Boxing Ring
+ - uid: 21133
components:
- type: Transform
- pos: -33.5,37.5
+ pos: -36.5,8.5
parent: 2
- - uid: 9133
+ - type: SurveillanceCamera
+ id: Janitor's Closet
+ - uid: 22075
components:
- type: Transform
- pos: -33.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-30.5
parent: 2
- - uid: 15450
+ - uid: 22750
components:
- type: Transform
- pos: -16.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,4.5
parent: 2
- - uid: 15527
+ - type: SurveillanceCamera
+ id: Disposals
+ - uid: 22951
components:
- type: Transform
- pos: -17.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -59.5,-19.5
parent: 2
- - uid: 15529
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Backrooms North
+ - uid: 22952
components:
- type: Transform
- pos: -20.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -73.5,10.5
parent: 2
- - uid: 15530
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo Entrance
+ - uid: 22955
components:
- type: Transform
- pos: -21.5,33.5
+ pos: -56.5,-29.5
parent: 2
- - uid: 15688
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Backrooms West
+ - uid: 22988
components:
- type: Transform
- pos: -9.5,68.5
+ pos: -84.5,-14.5
parent: 2
- - uid: 15810
+ - uid: 23638
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,47.5
- parent: 2
- - uid: 16278
- components:
- - type: Transform
- pos: -36.5,31.5
+ pos: -106.5,24.5
parent: 2
- - uid: 16279
+ - uid: 29083
components:
- type: Transform
- pos: -36.5,30.5
+ pos: 54.5,26.5
parent: 2
- - uid: 16336
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Library
+ - uid: 29155
components:
- type: Transform
- pos: -33.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -54.5,-14.5
parent: 2
- - uid: 16649
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Kitchen 1
+ - uid: 29157
components:
- type: Transform
- pos: -40.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-8.5
parent: 2
- - uid: 16650
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Freezer
+ - uid: 29186
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -40.5,12.5
+ pos: -52.5,-3.5
parent: 2
- - uid: 18339
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydro Locker Room
+ - uid: 29192
components:
- type: Transform
- pos: -11.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: -57.5,-3.5
parent: 2
- - uid: 18473
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydro Lounge
+ - uid: 29193
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -62.5,2.5
parent: 2
- - uid: 18474
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydro West
+ - uid: 29194
components:
- type: Transform
- pos: -62.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,4.5
parent: 2
- - uid: 18475
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydro East
+ - uid: 29201
components:
- type: Transform
- pos: -62.5,0.5
+ pos: -77.5,3.5
parent: 2
- - uid: 18476
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theatre
+ - uid: 29202
components:
- type: Transform
- pos: -61.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,6.5
parent: 2
- - uid: 18477
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo Center
+ - uid: 29213
components:
- type: Transform
- pos: -54.5,0.5
+ pos: -82.5,19.5
parent: 2
- - uid: 18478
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo N Hall
+ - uid: 29217
components:
- type: Transform
- pos: -53.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: -96.5,11.5
parent: 2
- - uid: 22790
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo W Hall
+ - uid: 29235
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -94.5,-7.5
parent: 2
- - uid: 22792
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo SW Hall
+ - uid: 29240
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-6.5
+ pos: -87.5,-3.5
parent: 2
- - uid: 26898
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zoo S Hall
+ - uid: 32107
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,16.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,30.5
parent: 2
- - uid: 27412
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: HOP's Room
+ - uid: 32109
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-6.5
+ pos: 7.5,30.5
parent: 2
- - uid: 28919
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: HOP's Office
+ - uid: 34034
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,46.5
- parent: 2
- - uid: 30692
- components:
- - type: Transform
- pos: 5.5,64.5
+ pos: -69.5,15.5
parent: 2
- - uid: 31054
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Zookeeper's office
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 28926
components:
- type: Transform
- pos: 4.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-18.5
parent: 2
- - uid: 32452
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Front Desk
+ - uid: 29090
components:
- type: Transform
- pos: 74.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-39.5
parent: 2
- - uid: 32453
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage
+ - uid: 29100
components:
- type: Transform
- pos: 75.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-32.5
parent: 2
- - uid: 32454
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Locker Room
+ - uid: 29112
components:
- type: Transform
- pos: 73.5,24.5
+ pos: -13.5,-30.5
parent: 2
- - uid: 32455
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Logistics Lounge
+ - uid: 29117
components:
- type: Transform
- pos: 71.5,25.5
+ pos: -6.5,-25.5
parent: 2
- - uid: 32456
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Mailroom
+ - uid: 29121
components:
- type: Transform
- pos: 71.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-22.5
parent: 2
- - uid: 35803
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Unloading Bay
+ - uid: 29122
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-23.5
parent: 2
- - uid: 35804
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: LO's Room
+ - uid: 29130
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-20.5
parent: 2
-- proto: TableReinforcedGlass
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: LO's Office
+- proto: SurveillanceCameraWirelessRouterEntertainment
entities:
- - uid: 8394
- components:
- - type: Transform
- pos: -25.5,37.5
- parent: 2
- - uid: 8395
- components:
- - type: Transform
- pos: -17.5,37.5
- parent: 2
- - uid: 8396
+ - uid: 6201
components:
- type: Transform
- pos: -21.5,37.5
+ pos: -37.5,-25.5
parent: 2
- - uid: 8431
+ - uid: 38782
components:
- type: Transform
- pos: -29.5,37.5
+ pos: 7.5,62.5
parent: 2
-- proto: TableWood
+- proto: SurveillanceWirelessCameraAnchoredEntertainment
entities:
- - uid: 6324
+ - uid: 17789
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-9.5
+ pos: -11.5,55.5
parent: 2
- - uid: 13116
+ - type: SurveillanceCamera
+ id: court camera
+- proto: SurveillanceWirelessCameraMovableCircuitboard
+ entities:
+ - uid: 35820
components:
- type: Transform
- pos: -70.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -50.053356,27.621468
parent: 2
-- proto: TableWoodReinforced
+- proto: SurveillanceWirelessCameraMovableEntertainment
entities:
- - uid: 9
+ - uid: 185
components:
+ - type: MetaData
+ name: Boxing Ring Camera
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-27.5
parent: 2
- - uid: 13
+ - type: SurveillanceCamera
+ id: Boxing Ring Camera
+ - uid: 17482
components:
+ - type: MetaData
+ name: News Camera
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,4.5
+ pos: -25.5,-11.5
parent: 2
- - uid: 17
+ - type: SurveillanceCamera
+ id: News Camera
+- proto: SyndieFlag
+ entities:
+ - uid: 37553
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,4.5
+ pos: 93.5,79.5
parent: 2
- - uid: 29
+ - uid: 37554
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,5.5
+ pos: 93.5,75.5
parent: 2
- - uid: 36
+- proto: SyndieHandyFlag
+ entities:
+ - uid: 37663
components:
- type: Transform
- pos: -11.5,-10.5
+ pos: 96.09343,79.544754
parent: 2
- - uid: 42
+- proto: Syringe
+ entities:
+ - uid: 5367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,6.5
+ pos: 61.33687,57.436474
parent: 2
- - uid: 43
+ - uid: 5368
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-7.5
+ pos: 61.602493,57.2021
parent: 2
- - uid: 67
+ - uid: 5369
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-6.5
+ pos: 61.27437,57.17085
parent: 2
- - uid: 104
+ - uid: 21940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,7.5
+ pos: -23.570475,-0.3324256
parent: 2
- - uid: 124
+ - uid: 21941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,48.5
+ pos: -23.371256,-0.48476934
parent: 2
- - uid: 195
+ - uid: 27322
components:
- type: Transform
- pos: -3.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 13.435377,12.091469
parent: 2
- - uid: 264
+ - uid: 27324
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,-1.5
+ pos: 13.47444,12.271156
parent: 2
- - uid: 265
+ - uid: 31736
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
+ pos: 15.396315,11.568031
parent: 2
- - uid: 266
+ - uid: 36806
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-0.5
+ pos: 73.90748,69.1593
parent: 2
- - uid: 267
+ - uid: 36807
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,0.5
+ pos: 68.024666,63.081173
parent: 2
- - uid: 268
+ - uid: 36808
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 75.930916,62.393673
parent: 2
- - uid: 278
+ - uid: 36825
components:
- type: Transform
- pos: 34.5,-10.5
+ pos: 66.53806,71.73265
parent: 2
- - uid: 287
+ - uid: 36826
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,0.5
+ pos: 66.670876,71.54515
parent: 2
- - uid: 307
+- proto: TableCarpet
+ entities:
+ - uid: 262
components:
- type: Transform
- pos: -12.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-34.5
parent: 2
- - uid: 521
+ - uid: 266
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-34.5
parent: 2
- - uid: 527
+ - uid: 809
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,16.5
+ pos: -7.5,-45.5
parent: 2
- - uid: 528
+ - uid: 1327
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-33.5
parent: 2
- - uid: 533
+ - uid: 1485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-33.5
parent: 2
- - uid: 534
+ - uid: 1730
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-34.5
parent: 2
- - uid: 565
+ - uid: 10020
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,-7.5
+ pos: -6.5,-45.5
parent: 2
- - uid: 579
+ - uid: 11670
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-7.5
+ pos: -44.5,-31.5
parent: 2
- - uid: 600
+ - uid: 17733
components:
- type: Transform
- pos: -3.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-34.5
parent: 2
- - uid: 607
+ - uid: 17761
components:
- type: Transform
- pos: -6.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-33.5
parent: 2
- - uid: 922
+ - uid: 19316
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-4.5
+ pos: -37.5,60.5
parent: 2
- - uid: 929
+ - uid: 19686
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,14.5
+ pos: -37.5,59.5
parent: 2
- - uid: 932
+ - uid: 19687
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,17.5
+ pos: -38.5,59.5
parent: 2
- - uid: 969
+ - uid: 19693
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,18.5
+ pos: -38.5,60.5
parent: 2
- - uid: 991
+ - uid: 19775
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,14.5
+ pos: -37.5,59.5
parent: 2
- - uid: 992
+ - uid: 22038
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -47.5,-33.5
parent: 2
- - uid: 1002
+ - uid: 23628
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -43.5,-31.5
parent: 2
- - uid: 1182
+ - uid: 30705
components:
- type: Transform
- pos: 23.5,-7.5
+ pos: -36.5,60.5
parent: 2
- - uid: 1189
+ - uid: 30709
components:
- type: Transform
- pos: 23.5,-4.5
+ pos: -36.5,59.5
parent: 2
- - uid: 1212
+ - uid: 38137
components:
- type: Transform
- pos: 23.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-45.5
parent: 2
- - uid: 1599
+ - uid: 38141
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,10.5
+ pos: -9.5,-45.5
parent: 2
- - uid: 1600
+ - uid: 38143
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,11.5
+ pos: -11.5,-45.5
parent: 2
- - uid: 1601
+ - uid: 38144
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,9.5
+ pos: -8.5,-45.5
parent: 2
- - uid: 1602
+- proto: TableCounterMetal
+ entities:
+ - uid: 182
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-18.5
parent: 2
- - uid: 1603
+ - uid: 682
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,9.5
+ pos: 19.5,-25.5
parent: 2
- - uid: 1604
+ - uid: 779
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,16.5
+ pos: -57.5,-18.5
parent: 2
- - uid: 1605
+ - uid: 3131
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,9.5
+ pos: 8.5,-21.5
parent: 2
- - uid: 1682
+ - uid: 3196
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-2.5
+ pos: -54.5,-22.5
parent: 2
- - uid: 1696
+ - uid: 3272
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,7.5
+ pos: -54.5,-21.5
parent: 2
- - uid: 1706
+ - uid: 3601
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-2.5
+ pos: -48.5,3.5
parent: 2
- - uid: 1798
+ - uid: 3602
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,9.5
+ pos: -48.5,2.5
parent: 2
- - uid: 1799
+ - uid: 4692
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-18.5
parent: 2
- - uid: 1808
+ - uid: 4827
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,9.5
+ pos: 8.5,-20.5
parent: 2
- - uid: 1809
+ - uid: 4829
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,16.5
+ pos: 6.5,-21.5
parent: 2
- - uid: 1810
+ - uid: 7082
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-21.5
parent: 2
- - uid: 1891
+ - uid: 7083
components:
- type: Transform
- pos: 7.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-17.5
parent: 2
- - uid: 1934
+ - uid: 7084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,30.5
+ pos: -54.5,-14.5
parent: 2
- - uid: 1935
+ - uid: 7085
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-20.5
parent: 2
- - uid: 1936
+ - uid: 7108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,28.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-16.5
parent: 2
- - uid: 1937
+ - uid: 7124
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,-13.5
parent: 2
- - uid: 1938
+ - uid: 7125
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,-13.5
parent: 2
- - uid: 1950
+ - uid: 7126
components:
- type: Transform
- pos: 14.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-13.5
parent: 2
- - uid: 1982
+ - uid: 7128
components:
- type: Transform
- pos: 7.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,-13.5
parent: 2
- - uid: 2275
+ - uid: 7223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-31.5
+ pos: -5.5,6.5
parent: 2
- - uid: 2617
+ - uid: 7276
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,54.5
+ pos: -5.5,7.5
parent: 2
- - uid: 2623
+ - uid: 7458
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,43.5
+ pos: -54.5,-15.5
parent: 2
- - uid: 2645
+ - uid: 7470
components:
- type: Transform
- pos: 12.5,41.5
+ pos: -54.5,-16.5
parent: 2
- - uid: 2673
+ - uid: 7678
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,54.5
+ pos: -69.5,12.5
parent: 2
- - uid: 2692
+ - uid: 7679
components:
- type: Transform
- pos: 13.5,41.5
+ rot: 3.141592653589793 rad
+ pos: -68.5,12.5
parent: 2
- - uid: 2698
+ - uid: 11233
components:
- type: Transform
- pos: 6.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-20.5
parent: 2
- - uid: 2701
+ - uid: 12330
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,55.5
+ pos: -57.5,-17.5
parent: 2
- - uid: 2737
+ - uid: 12432
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,54.5
+ pos: -57.5,-15.5
parent: 2
- - uid: 2739
+ - uid: 13931
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,54.5
+ pos: -110.5,56.5
parent: 2
- - uid: 2757
+ - uid: 14850
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,8.5
+ pos: 20.5,-25.5
parent: 2
- - uid: 2771
+ - uid: 16064
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,55.5
+ pos: -0.5,42.5
parent: 2
- - uid: 2850
+ - uid: 17748
components:
- type: Transform
- pos: 21.5,59.5
+ pos: -5.5,-1.5
parent: 2
- - uid: 2873
+ - uid: 19985
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,47.5
+ pos: -5.5,-0.5
parent: 2
- - uid: 2930
+ - uid: 22055
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-22.5
+ pos: -52.5,-22.5
parent: 2
- - uid: 2952
+ - uid: 23533
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-22.5
+ pos: -53.5,-25.5
parent: 2
- - uid: 2953
+ - uid: 23780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-0.5
parent: 2
- - uid: 2954
+ - uid: 23783
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-0.5
parent: 2
- - uid: 2955
+ - uid: 23823
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-0.5
parent: 2
- - uid: 3051
+ - uid: 23841
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,-0.5
parent: 2
- - uid: 3077
+ - uid: 25330
components:
- type: Transform
- pos: -28.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,-22.5
parent: 2
- - uid: 3078
+ - uid: 27039
components:
- type: Transform
- pos: -28.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,-16.5
parent: 2
- - uid: 3079
+ - uid: 27220
components:
- type: Transform
- pos: -28.5,-19.5
+ pos: -57.5,-20.5
parent: 2
- - uid: 3409
+ - uid: 28082
components:
- type: Transform
- pos: -7.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-25.5
parent: 2
- - uid: 3723
+ - uid: 28096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-22.5
+ parent: 2
+ - uid: 30600
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 10.5,54.5
+ pos: -57.5,-21.5
parent: 2
- - uid: 4065
+ - uid: 30612
components:
- type: Transform
- pos: 52.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-25.5
parent: 2
- - uid: 4070
+ - uid: 38399
components:
- type: Transform
- pos: 46.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -110.5,48.5
parent: 2
- - uid: 4071
+ - uid: 38417
components:
- type: Transform
- pos: 46.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -110.5,49.5
parent: 2
- - uid: 4072
+- proto: TableCounterWood
+ entities:
+ - uid: 2358
components:
- type: Transform
- pos: 46.5,24.5
+ pos: -39.5,-25.5
parent: 2
- - uid: 4073
+ - uid: 3324
components:
- type: Transform
- pos: 47.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-8.5
parent: 2
- - uid: 4079
+ - uid: 5142
components:
- type: Transform
- pos: 52.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-15.5
parent: 2
- - uid: 4099
+ - uid: 5143
components:
- type: Transform
- pos: 52.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-14.5
parent: 2
- - uid: 4100
+ - uid: 5156
components:
- type: Transform
- pos: 52.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-18.5
parent: 2
- - uid: 4129
+ - uid: 5157
components:
- type: Transform
- pos: 52.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-18.5
parent: 2
- - uid: 4131
+ - uid: 5158
components:
- type: Transform
- pos: 52.5,22.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-18.5
parent: 2
- - uid: 4132
+ - uid: 5161
components:
- type: Transform
- pos: 52.5,20.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-10.5
parent: 2
- - uid: 4337
+ - uid: 5162
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-9.5
parent: 2
- - uid: 4338
+ - uid: 6202
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-28.5
parent: 2
- - uid: 4339
+ - uid: 6975
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 57.5,24.5
+ pos: -30.5,-38.5
parent: 2
- - uid: 4340
+ - uid: 6976
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 58.5,24.5
+ pos: -31.5,-38.5
parent: 2
- - uid: 4341
+ - uid: 6977
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 59.5,24.5
+ pos: -28.5,-38.5
parent: 2
- - uid: 4343
+ - uid: 6978
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 61.5,24.5
+ pos: -29.5,-38.5
parent: 2
- - uid: 4344
+ - uid: 6979
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 62.5,24.5
+ pos: -27.5,-38.5
parent: 2
- - uid: 4345
+ - uid: 6980
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 63.5,24.5
+ pos: -32.5,-38.5
parent: 2
- - uid: 4346
+ - uid: 6981
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 64.5,24.5
+ pos: -26.5,-38.5
parent: 2
- - uid: 4356
+ - uid: 6982
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 63.5,10.5
+ pos: -31.5,-30.5
parent: 2
- - uid: 4357
+ - uid: 6983
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 62.5,10.5
+ pos: -31.5,-31.5
parent: 2
- - uid: 4358
+ - uid: 6984
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 61.5,10.5
+ pos: -31.5,-32.5
parent: 2
- - uid: 4360
+ - uid: 6985
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 59.5,10.5
+ pos: -31.5,-33.5
parent: 2
- - uid: 4361
+ - uid: 6986
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 58.5,10.5
+ pos: -31.5,-34.5
parent: 2
- - uid: 4362
+ - uid: 6987
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 57.5,10.5
+ pos: -31.5,-35.5
parent: 2
- - uid: 4363
+ - uid: 6988
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 56.5,10.5
+ pos: -32.5,-35.5
parent: 2
- - uid: 4364
+ - uid: 7113
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,10.5
+ pos: -39.5,-26.5
parent: 2
- - uid: 4446
+ - uid: 11291
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,58.5
+ pos: -45.5,-28.5
parent: 2
- - uid: 4491
+ - uid: 11654
components:
- type: Transform
- pos: 52.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -41.5,-24.5
parent: 2
- - uid: 4690
+ - uid: 11977
components:
- type: Transform
- pos: 89.5,37.5
+ pos: 20.5,-36.5
parent: 2
- - uid: 5237
+ - uid: 12086
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,59.5
+ pos: 21.5,-36.5
parent: 2
- - uid: 5422
+ - uid: 12962
components:
- type: Transform
- pos: 49.5,34.5
+ pos: 45.5,-11.5
parent: 2
- - uid: 5423
+ - uid: 13919
components:
- type: Transform
- pos: 49.5,33.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,13.5
parent: 2
- - uid: 5590
+ - uid: 16515
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 53.5,30.5
+ pos: -45.5,-27.5
parent: 2
- - uid: 5650
+ - uid: 17722
components:
- type: Transform
- pos: -2.5,-34.5
+ pos: 15.5,-36.5
parent: 2
- - uid: 5671
+ - uid: 20626
components:
- type: Transform
- pos: -4.5,-34.5
+ pos: -43.5,-28.5
parent: 2
- - uid: 5672
+ - uid: 20967
components:
- type: Transform
- pos: -1.5,-33.5
+ pos: -42.5,-28.5
parent: 2
- - uid: 5673
+ - uid: 21167
components:
- type: Transform
- pos: -1.5,-32.5
+ pos: -45.5,-26.5
parent: 2
- - uid: 5685
+ - uid: 21168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-31.5
+ pos: -45.5,-25.5
parent: 2
- - uid: 6501
+ - uid: 21172
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-30.5
+ pos: -44.5,-28.5
parent: 2
- - uid: 6502
+ - uid: 21924
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,-24.5
parent: 2
- - uid: 6503
+ - uid: 21925
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-24.5
parent: 2
- - uid: 6504
+ - uid: 21942
components:
- type: Transform
- pos: -11.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-24.5
parent: 2
- - uid: 6521
+ - uid: 22061
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-28.5
+ pos: -50.5,-26.5
parent: 2
- - uid: 6522
+ - uid: 23708
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-7.5
parent: 2
- - uid: 6529
+ - uid: 30406
components:
- type: Transform
- pos: -6.5,-25.5
+ pos: 19.5,-36.5
parent: 2
- - uid: 6531
+ - uid: 30411
components:
- type: Transform
- pos: -9.5,-25.5
+ pos: 16.5,-36.5
parent: 2
- - uid: 6532
+ - uid: 30552
components:
- type: Transform
- pos: -8.5,-25.5
+ pos: -22.5,22.5
parent: 2
- - uid: 6533
+ - uid: 30553
components:
- type: Transform
- pos: -7.5,-25.5
+ pos: -21.5,22.5
parent: 2
- - uid: 6536
+ - uid: 30554
components:
- type: Transform
- pos: -16.5,-27.5
+ pos: -18.5,22.5
parent: 2
- - uid: 6557
+ - uid: 30555
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: -20.5,22.5
parent: 2
- - uid: 6559
+ - uid: 30556
components:
- type: Transform
- pos: -28.5,-23.5
+ pos: -19.5,22.5
parent: 2
- - uid: 6560
+ - uid: 30601
components:
- type: Transform
- pos: -27.5,-23.5
+ pos: -53.5,-12.5
parent: 2
- - uid: 6561
+ - uid: 30604
components:
- type: Transform
- pos: -26.5,-23.5
+ pos: -52.5,-12.5
parent: 2
- - uid: 6641
+ - uid: 36731
components:
- type: Transform
- pos: -13.5,-32.5
+ pos: 14.5,-36.5
parent: 2
- - uid: 6846
+ - uid: 36786
components:
- type: Transform
- pos: -30.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,13.5
parent: 2
- - uid: 6847
+- proto: TableFancyBlack
+ entities:
+ - uid: 16617
components:
- type: Transform
- pos: -30.5,-24.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,10.5
parent: 2
- - uid: 6952
+ - uid: 28997
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,10.5
parent: 2
- - uid: 7370
+ - uid: 29001
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,20.5
parent: 2
- - uid: 7373
+ - uid: 29721
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,21.5
parent: 2
- - uid: 7375
+ - uid: 30283
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,22.5
parent: 2
- - uid: 7414
+ - uid: 30394
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -61.5,-1.5
+ pos: 62.5,10.5
parent: 2
- - uid: 7935
+ - uid: 30397
components:
- type: Transform
- pos: -14.5,-25.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,10.5
parent: 2
- - uid: 7968
+ - uid: 30400
components:
- type: Transform
- pos: -24.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,10.5
parent: 2
- - uid: 8340
+ - uid: 30403
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 67.5,20.5
+ pos: 58.5,10.5
parent: 2
- - uid: 8343
+ - uid: 30450
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 66.5,20.5
+ pos: 59.5,10.5
parent: 2
- - uid: 8353
+ - uid: 30454
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -72.5,5.5
+ pos: 61.5,10.5
parent: 2
- - uid: 8462
+ - uid: 30461
components:
- type: Transform
- pos: -12.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,14.5
parent: 2
- - uid: 8470
+ - uid: 30462
components:
- type: Transform
- pos: -14.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,13.5
parent: 2
- - uid: 8471
+ - uid: 30464
components:
- type: Transform
- pos: -13.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: 52.5,12.5
parent: 2
- - uid: 9219
+ - uid: 30466
components:
- type: Transform
- pos: -3.5,-34.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,10.5
parent: 2
- - uid: 9336
+ - uid: 30468
components:
- type: Transform
- pos: -73.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,24.5
parent: 2
- - uid: 9337
+ - uid: 30480
components:
- type: Transform
- pos: -73.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,24.5
parent: 2
- - uid: 9658
+ - uid: 31781
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,24.5
parent: 2
- - uid: 10346
+ - uid: 33718
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,24.5
parent: 2
- - uid: 11105
+ - uid: 33719
components:
- type: Transform
- pos: 89.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,24.5
parent: 2
- - uid: 11532
+ - uid: 33720
components:
- type: Transform
- pos: 13.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,24.5
parent: 2
- - uid: 13079
+ - uid: 33722
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-34.5
+ pos: 56.5,24.5
parent: 2
- - uid: 13080
+ - uid: 33723
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,-34.5
+ pos: 55.5,24.5
parent: 2
- - uid: 13081
+ - uid: 36767
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-34.5
+ pos: 64.5,24.5
parent: 2
- - uid: 13942
+- proto: TableFancyGreen
+ entities:
+ - uid: 36766
components:
- type: Transform
- pos: 29.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-13.5
parent: 2
- - uid: 13943
+ - uid: 36768
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,54.5
+ pos: 11.5,-13.5
parent: 2
- - uid: 13944
+ - uid: 37729
components:
- type: Transform
- pos: 20.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-13.5
parent: 2
- - uid: 14011
+- proto: TableFancyWhite
+ entities:
+ - uid: 16588
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,48.5
+ pos: -70.5,22.5
parent: 2
- - uid: 14012
+ - uid: 28999
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 11.5,48.5
parent: 2
- - uid: 14013
+ - uid: 33726
+ components:
+ - type: Transform
+ pos: 11.5,47.5
+ parent: 2
+ - uid: 33727
+ components:
+ - type: Transform
+ pos: 12.5,48.5
+ parent: 2
+ - uid: 34978
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 12.5,47.5
parent: 2
- - uid: 14014
+ - uid: 34979
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,47.5
+ pos: 13.5,47.5
parent: 2
- - uid: 14017
+ - uid: 35845
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 13.5,48.5
parent: 2
- - uid: 14051
+ - uid: 36470
components:
- type: Transform
- pos: 16.5,59.5
+ pos: 26.5,48.5
parent: 2
- - uid: 14052
+- proto: TableGlass
+ entities:
+ - uid: 104
components:
- type: Transform
- pos: 15.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,7.5
parent: 2
- - uid: 14058
+ - uid: 212
components:
- type: Transform
- pos: 13.5,56.5
+ pos: -16.5,-9.5
parent: 2
- - uid: 14059
+ - uid: 250
components:
- type: Transform
- pos: 13.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,9.5
parent: 2
- - uid: 14060
+ - uid: 783
components:
- type: Transform
- pos: 13.5,54.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,13.5
parent: 2
- - uid: 14171
+ - uid: 924
components:
- type: Transform
- pos: 5.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,11.5
parent: 2
- - uid: 14287
+ - uid: 1106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-21.5
+ parent: 2
+ - uid: 1108
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,43.5
+ pos: -42.5,-17.5
parent: 2
- - uid: 15113
+ - uid: 1354
components:
- type: Transform
- pos: 29.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,9.5
parent: 2
- - uid: 15115
+ - uid: 1594
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,52.5
+ pos: -5.5,12.5
parent: 2
- - uid: 15118
+ - uid: 1627
components:
- type: Transform
- pos: 28.5,52.5
+ pos: -5.5,11.5
parent: 2
- - uid: 15120
+ - uid: 1632
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,48.5
+ pos: -2.5,13.5
parent: 2
- - uid: 15202
+ - uid: 1633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,53.5
+ pos: -2.5,12.5
parent: 2
- - uid: 15213
+ - uid: 4450
components:
- type: Transform
- pos: -23.5,59.5
+ pos: 7.5,-7.5
parent: 2
- - uid: 15224
+ - uid: 5195
components:
- type: Transform
- pos: 14.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,-21.5
parent: 2
- - uid: 15229
+ - uid: 7145
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,56.5
+ pos: -46.5,-17.5
parent: 2
- - uid: 15231
+ - uid: 8382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-11.5
+ parent: 2
+ - uid: 11659
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -18.5,57.5
+ pos: -41.5,-35.5
parent: 2
- - uid: 15298
+ - uid: 12314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,27.5
+ pos: 6.5,-12.5
parent: 2
- - uid: 15299
+ - uid: 17767
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,27.5
+ pos: -16.5,7.5
parent: 2
- - uid: 15300
+ - uid: 17770
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,27.5
+ pos: -22.5,7.5
parent: 2
- - uid: 15403
+ - uid: 20075
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,28.5
+ pos: 15.5,11.5
parent: 2
- - uid: 15405
+ - uid: 21931
components:
- type: Transform
- pos: -12.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,-35.5
parent: 2
- - uid: 15496
+ - uid: 22051
components:
- type: Transform
- pos: -13.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-11.5
parent: 2
- - uid: 15509
+ - uid: 23378
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,59.5
+ pos: -20.5,7.5
parent: 2
- - uid: 15559
+ - uid: 23435
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,7.5
parent: 2
- - uid: 15562
+ - uid: 26081
components:
- type: Transform
- pos: -12.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,13.5
parent: 2
- - uid: 15589
+ - uid: 27315
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,28.5
+ pos: 5.5,15.5
parent: 2
- - uid: 15590
+ - uid: 27328
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,28.5
+ pos: 15.5,12.5
parent: 2
- - uid: 15591
+ - uid: 27329
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,28.5
+ pos: 13.5,11.5
parent: 2
- - uid: 15592
+ - uid: 27352
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,28.5
+ pos: 13.5,12.5
parent: 2
- - uid: 15595
+ - uid: 27355
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,30.5
+ pos: 16.5,7.5
parent: 2
- - uid: 15612
+ - uid: 27362
components:
- type: Transform
- pos: -12.5,34.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,11.5
parent: 2
- - uid: 15681
+ - uid: 27383
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,40.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,15.5
parent: 2
- - uid: 15695
+ - uid: 29836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,18.5
parent: 2
- - uid: 15696
+ - uid: 30027
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,17.5
parent: 2
- - uid: 15733
+ - uid: 30028
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,16.5
parent: 2
- - uid: 15734
+ - uid: 30315
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,25.5
+ pos: 14.5,12.5
parent: 2
- - uid: 15739
+ - uid: 30449
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,25.5
+ pos: 7.5,-12.5
parent: 2
- - uid: 15743
+ - uid: 30628
components:
- type: Transform
- pos: -4.5,26.5
+ pos: 16.5,8.5
parent: 2
- - uid: 15754
+ - uid: 30867
components:
- type: Transform
- pos: -8.5,32.5
+ pos: 12.5,7.5
parent: 2
- - uid: 15778
+ - uid: 30880
components:
- type: Transform
- pos: -8.5,33.5
+ pos: 12.5,8.5
parent: 2
- - uid: 15802
+ - uid: 31278
components:
- type: Transform
- pos: -10.5,54.5
+ pos: -17.5,-9.5
parent: 2
- - uid: 15805
+ - uid: 31756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,53.5
+ pos: 3.5,5.5
parent: 2
- - uid: 15816
+ - uid: 31757
components:
- type: Transform
- pos: -10.5,55.5
+ pos: 5.5,4.5
parent: 2
- - uid: 15874
+ - uid: 31758
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,56.5
+ pos: 4.5,4.5
parent: 2
- - uid: 15894
+ - uid: 31765
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,53.5
+ pos: 3.5,6.5
parent: 2
- - uid: 15896
+- proto: TablePlasmaGlass
+ entities:
+ - uid: 53
components:
- type: Transform
- pos: -10.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 48.5,46.5
parent: 2
- - uid: 15897
+ - uid: 2836
components:
- type: Transform
- pos: -10.5,48.5
+ pos: 41.5,51.5
parent: 2
- - uid: 15902
+ - uid: 4043
components:
- type: Transform
- pos: -8.5,47.5
+ pos: 35.5,23.5
parent: 2
- - uid: 15906
+ - uid: 4044
components:
- type: Transform
- pos: -8.5,56.5
+ pos: 36.5,23.5
parent: 2
- - uid: 15907
+ - uid: 4096
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,52.5
+ pos: 50.5,40.5
parent: 2
- - uid: 15908
+ - uid: 4097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,51.5
+ pos: 50.5,39.5
parent: 2
- - uid: 15909
+ - uid: 4098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,50.5
+ pos: 50.5,38.5
parent: 2
- - uid: 15911
+ - uid: 4104
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,56.5
+ pos: 43.5,40.5
parent: 2
- - uid: 15913
+ - uid: 4105
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,55.5
+ pos: 42.5,40.5
parent: 2
- - uid: 15914
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 2
+ - uid: 4148
+ components:
+ - type: Transform
+ pos: 42.5,51.5
+ parent: 2
+ - uid: 5133
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -14.5,56.5
+ pos: 35.5,46.5
parent: 2
- - uid: 15923
+ - uid: 5134
components:
- type: Transform
- pos: -2.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 49.5,46.5
parent: 2
- - uid: 15962
+ - uid: 5332
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,56.5
+ pos: 57.5,56.5
parent: 2
- - uid: 15963
+ - uid: 5333
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,47.5
+ pos: 57.5,55.5
parent: 2
- - uid: 15964
+ - uid: 5334
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,47.5
+ pos: 61.5,57.5
parent: 2
- - uid: 15965
+ - uid: 5335
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,53.5
+ pos: 61.5,56.5
parent: 2
- - uid: 15966
+ - uid: 5336
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,50.5
+ pos: 61.5,55.5
parent: 2
- - uid: 16391
+ - uid: 5522
components:
- type: Transform
- pos: -19.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 50.5,46.5
parent: 2
- - uid: 16496
+ - uid: 5530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,45.5
+ pos: 38.5,28.5
parent: 2
- - uid: 16546
+ - uid: 5533
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,46.5
parent: 2
- - uid: 16581
+ - uid: 5553
components:
- type: Transform
- pos: -32.5,35.5
+ pos: 43.5,51.5
parent: 2
- - uid: 16583
+ - uid: 5674
components:
- type: Transform
- pos: -32.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 50.5,47.5
parent: 2
- - uid: 16584
+ - uid: 8197
components:
- type: Transform
- pos: -33.5,33.5
+ pos: 46.5,45.5
parent: 2
- - uid: 16590
+ - uid: 9553
components:
- type: Transform
- pos: -32.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,47.5
parent: 2
- - uid: 18063
+ - uid: 9554
components:
- type: Transform
- pos: -23.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,46.5
parent: 2
- - uid: 18065
+ - uid: 13996
components:
- type: Transform
- pos: -27.5,66.5
+ pos: 26.5,37.5
parent: 2
- - uid: 18067
+ - uid: 14124
components:
- type: Transform
- pos: -19.5,66.5
+ pos: 26.5,38.5
parent: 2
- - uid: 18068
+ - uid: 14125
components:
- type: Transform
- pos: -15.5,66.5
+ pos: 26.5,39.5
parent: 2
- - uid: 18145
+ - uid: 27863
components:
- type: Transform
- pos: -19.5,62.5
+ pos: 45.5,45.5
parent: 2
- - uid: 18146
+ - uid: 27864
components:
- type: Transform
- pos: -20.5,62.5
+ pos: 47.5,45.5
parent: 2
- - uid: 18147
+ - uid: 29163
components:
- type: Transform
- pos: -21.5,62.5
+ pos: 49.5,40.5
parent: 2
- - uid: 18148
+- proto: TableReinforced
+ entities:
+ - uid: 987
components:
- type: Transform
- pos: -22.5,62.5
+ pos: 21.5,-4.5
parent: 2
- - uid: 18188
+ - uid: 1009
components:
- type: Transform
- pos: 4.5,71.5
+ pos: 13.5,4.5
parent: 2
- - uid: 18415
+ - uid: 1042
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-1.5
+ pos: 12.5,4.5
parent: 2
- - uid: 18428
+ - uid: 1125
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -62.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-3.5
parent: 2
- - uid: 18455
+ - uid: 1132
components:
- type: Transform
- pos: -59.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-3.5
parent: 2
- - uid: 18456
+ - uid: 1181
components:
- type: Transform
- pos: -58.5,-4.5
+ pos: 12.5,0.5
parent: 2
- - uid: 18501
+ - uid: 1191
components:
- type: Transform
- pos: -52.5,-3.5
+ pos: 21.5,-5.5
parent: 2
- - uid: 19391
+ - uid: 1203
components:
- type: Transform
- pos: -10.5,42.5
+ pos: 18.5,-5.5
parent: 2
- - uid: 19392
+ - uid: 1282
components:
- type: Transform
- pos: -9.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,2.5
parent: 2
- - uid: 19414
+ - uid: 1298
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -79.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,2.5
parent: 2
- - uid: 19415
+ - uid: 1387
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -78.5,3.5
+ pos: 36.5,5.5
parent: 2
- - uid: 19416
+ - uid: 1392
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,3.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,1.5
parent: 2
- - uid: 19417
+ - uid: 1396
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -81.5,-0.5
+ pos: 19.5,0.5
parent: 2
- - uid: 19418
+ - uid: 1408
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -77.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,3.5
parent: 2
- - uid: 19605
+ - uid: 1413
components:
- type: Transform
- pos: -40.5,65.5
+ pos: 17.5,3.5
parent: 2
- - uid: 19635
+ - uid: 1646
components:
- type: Transform
- pos: -40.5,67.5
+ pos: 12.5,-0.5
parent: 2
- - uid: 19636
+ - uid: 1654
components:
- type: Transform
- pos: -40.5,66.5
+ pos: 19.5,-1.5
parent: 2
- - uid: 19657
+ - uid: 1667
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -42.5,67.5
+ pos: 20.5,-1.5
parent: 2
- - uid: 19661
+ - uid: 1668
components:
- type: Transform
- pos: -40.5,63.5
+ pos: 21.5,-1.5
parent: 2
- - uid: 19732
+ - uid: 2011
components:
- type: Transform
- pos: -40.5,64.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,4.5
parent: 2
- - uid: 19823
+ - uid: 2754
components:
- type: Transform
- pos: -6.5,-41.5
+ pos: -49.5,27.5
parent: 2
- - uid: 19950
+ - uid: 2889
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,55.5
+ pos: 28.5,25.5
parent: 2
- - uid: 20276
+ - uid: 3304
components:
- type: Transform
- pos: -6.5,-42.5
+ pos: -53.5,25.5
parent: 2
- - uid: 20655
+ - uid: 3456
components:
- type: Transform
- pos: -6.5,-40.5
+ pos: 42.5,-21.5
parent: 2
- - uid: 22029
+ - uid: 3457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-7.5
+ pos: 41.5,-21.5
parent: 2
- - uid: 22040
+ - uid: 3458
components:
- type: Transform
- pos: -69.5,-0.5
+ pos: 44.5,-21.5
parent: 2
- - uid: 22360
+ - uid: 3459
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -43.5,67.5
+ pos: 43.5,-21.5
parent: 2
- - uid: 23536
+ - uid: 3460
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,19.5
+ pos: 44.5,-23.5
parent: 2
- - uid: 24018
+ - uid: 3461
components:
- type: Transform
- pos: -69.5,0.5
+ pos: 44.5,-22.5
parent: 2
- - uid: 24558
+ - uid: 3463
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 64.5,10.5
+ pos: 44.5,-24.5
parent: 2
- - uid: 24829
+ - uid: 3857
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,25.5
parent: 2
- - uid: 24925
+ - uid: 3981
components:
- type: Transform
- pos: -69.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,25.5
parent: 2
- - uid: 28934
+ - uid: 4052
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,-2.5
+ pos: 17.5,-6.5
parent: 2
- - uid: 29184
+ - uid: 4949
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,27.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,77.5
parent: 2
- - uid: 29704
+ - uid: 5213
components:
- type: Transform
- pos: 19.5,47.5
+ pos: 28.5,30.5
parent: 2
- - uid: 29714
+ - uid: 5262
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,33.5
+ pos: 27.5,30.5
parent: 2
- - uid: 29742
+ - uid: 5268
components:
- type: Transform
- pos: 83.5,57.5
+ pos: 26.5,30.5
parent: 2
- - uid: 29743
+ - uid: 5269
components:
- type: Transform
- pos: 82.5,57.5
+ pos: 26.5,29.5
parent: 2
- - uid: 29801
+ - uid: 5438
components:
- type: Transform
- pos: 86.5,54.5
+ pos: 35.5,30.5
parent: 2
- - uid: 29821
+ - uid: 5439
components:
- type: Transform
- pos: 90.5,55.5
+ pos: 36.5,30.5
parent: 2
- - uid: 29950
+ - uid: 5525
components:
- type: Transform
- pos: 85.5,44.5
+ pos: 37.5,30.5
parent: 2
- - uid: 30039
+ - uid: 6033
components:
- type: Transform
- pos: 86.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 17.5,30.5
parent: 2
- - uid: 30040
+ - uid: 6034
components:
- type: Transform
- pos: 88.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,30.5
parent: 2
- - uid: 30041
+ - uid: 6035
components:
- type: Transform
- pos: 89.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,28.5
parent: 2
- - uid: 30042
+ - uid: 6036
components:
- type: Transform
- pos: 90.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,27.5
parent: 2
- - uid: 30043
+ - uid: 6037
components:
- type: Transform
- pos: 90.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,26.5
parent: 2
- - uid: 30044
+ - uid: 6038
components:
- type: Transform
- pos: 84.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,25.5
parent: 2
- - uid: 30045
+ - uid: 6041
components:
- type: Transform
- pos: 84.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,28.5
parent: 2
- - uid: 30048
+ - uid: 6042
components:
- type: Transform
- pos: 85.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,27.5
parent: 2
- - uid: 30052
+ - uid: 6043
components:
- type: Transform
- pos: 84.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,26.5
parent: 2
- - uid: 30054
+ - uid: 6044
components:
- type: Transform
- pos: 85.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,25.5
parent: 2
- - uid: 30055
+ - uid: 6947
components:
- type: Transform
- pos: 85.5,36.5
+ pos: -51.5,27.5
parent: 2
- - uid: 30056
+ - uid: 7294
components:
- type: Transform
- pos: 86.5,36.5
+ pos: -50.5,27.5
parent: 2
- - uid: 30057
+ - uid: 7295
components:
- type: Transform
- pos: 88.5,36.5
+ pos: -48.5,27.5
parent: 2
- - uid: 30058
+ - uid: 7588
components:
- type: Transform
- pos: 89.5,36.5
+ pos: -7.5,68.5
parent: 2
- - uid: 30059
+ - uid: 7594
components:
- type: Transform
- pos: 84.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,60.5
parent: 2
- - uid: 30060
+ - uid: 8218
components:
- type: Transform
- pos: 90.5,37.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,78.5
parent: 2
- - uid: 30061
+ - uid: 8219
components:
- type: Transform
- pos: 90.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,77.5
parent: 2
- - uid: 30345
+ - uid: 8260
components:
- type: Transform
- pos: 46.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 64.5,81.5
parent: 2
- - uid: 30450
+ - uid: 8261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-13.5
+ pos: 64.5,80.5
parent: 2
- - uid: 30451
+ - uid: 8407
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,60.5
parent: 2
- - uid: 30501
+ - uid: 8775
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,66.5
+ pos: -57.5,13.5
parent: 2
- - uid: 30531
+ - uid: 8778
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,18.5
+ pos: -58.5,13.5
parent: 2
- - uid: 30532
+ - uid: 8934
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,18.5
+ pos: -47.5,23.5
parent: 2
- - uid: 30600
+ - uid: 8986
components:
- type: Transform
- pos: -45.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -56.5,30.5
parent: 2
- - uid: 30601
+ - uid: 9001
components:
- type: Transform
- pos: -45.5,-3.5
+ pos: -47.5,22.5
parent: 2
- - uid: 30604
+ - uid: 9002
components:
- type: Transform
- pos: -45.5,0.5
+ pos: -48.5,23.5
parent: 2
- - uid: 30605
+ - uid: 9004
components:
- type: Transform
- pos: -45.5,1.5
+ pos: -50.5,20.5
parent: 2
- - uid: 30919
+ - uid: 9040
components:
- type: Transform
- pos: 46.5,29.5
+ pos: -47.5,27.5
parent: 2
- - uid: 30920
+ - uid: 9095
components:
- type: Transform
- pos: 46.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,33.5
parent: 2
- - uid: 32583
+ - uid: 9096
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,64.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,33.5
parent: 2
- - uid: 32584
+ - uid: 9097
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 76.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,33.5
parent: 2
- - uid: 32592
+ - uid: 13967
components:
- type: Transform
- pos: 72.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,16.5
parent: 2
- - uid: 33674
+ - uid: 15450
components:
- type: Transform
- pos: -36.5,67.5
+ pos: -16.5,33.5
parent: 2
- - uid: 33684
+ - uid: 15527
components:
- type: Transform
- pos: -44.5,67.5
+ pos: -17.5,33.5
parent: 2
-- proto: TargetClown
- entities:
- - uid: 9486
+ - uid: 15529
components:
- type: Transform
- pos: -74.5,-6.5
+ pos: -20.5,33.5
parent: 2
- - uid: 10339
+ - uid: 15530
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,51.5
+ pos: -21.5,33.5
parent: 2
-- proto: TargetSyndicate
- entities:
- - uid: 9685
+ - uid: 15688
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,51.5
+ pos: -9.5,68.5
parent: 2
- - uid: 10340
+ - uid: 16519
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -32.5,51.5
+ pos: -20.5,43.5
parent: 2
-- proto: TelecomServer
- entities:
- - uid: 18387
+ - uid: 16649
components:
- type: Transform
- pos: 6.5,58.5
+ pos: -40.5,11.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 18389
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 19758
+ - uid: 16650
components:
- type: Transform
- pos: 7.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,12.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19801
- - 19802
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 19811
+ - uid: 17623
components:
- type: Transform
- pos: 8.5,62.5
+ pos: 31.5,13.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19816
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 19817
+ - uid: 17878
components:
- type: Transform
- pos: 9.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,45.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19820
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 19849
+ - uid: 17909
components:
- type: Transform
- pos: 7.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,43.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19850
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 19880
+ - uid: 18040
components:
- type: Transform
- pos: 8.5,58.5
+ pos: 72.5,72.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 19881
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 20193
+ - uid: 18339
components:
- type: Transform
- pos: 6.5,62.5
+ pos: -11.5,68.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 20200
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
- - uid: 22280
+ - uid: 18473
components:
- type: Transform
- pos: 9.5,58.5
+ pos: -62.5,2.5
parent: 2
- - type: ContainerContainer
- containers:
- key_slots: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 22281
- machine_board: !type:Container
- showEnts: False
- occludes: True
- ents: []
- machine_parts: !type:Container
- showEnts: False
- occludes: True
- ents: []
-- proto: TelecomServerCircuitboard
- entities:
- - uid: 35825
+ - uid: 18474
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.576794,27.769905
+ pos: -62.5,1.5
parent: 2
-- proto: TimerTrigger
- entities:
- - uid: 36049
+ - uid: 18475
components:
- type: Transform
- pos: 29.7011,15.473513
+ pos: -62.5,0.5
parent: 2
-- proto: TintedWindow
- entities:
- - uid: 11446
+ - uid: 18476
components:
- type: Transform
- pos: -21.5,35.5
+ pos: -61.5,0.5
parent: 2
- - uid: 11447
+ - uid: 18477
components:
- type: Transform
- pos: -17.5,35.5
+ pos: -54.5,0.5
parent: 2
- - uid: 15324
+ - uid: 18478
components:
- type: Transform
- pos: -16.5,35.5
+ pos: -53.5,0.5
parent: 2
- - uid: 23388
+ - uid: 19390
components:
- type: Transform
- pos: -18.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,45.5
parent: 2
- - uid: 23542
+ - uid: 20209
components:
- type: Transform
- pos: -22.5,35.5
+ pos: -34.5,35.5
parent: 2
- - uid: 23623
+ - uid: 22790
components:
- type: Transform
- pos: -20.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-6.5
parent: 2
-- proto: ToiletDirtyWater
- entities:
- - uid: 19706
+ - uid: 22792
components:
- type: Transform
- pos: -31.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-6.5
parent: 2
- - uid: 31047
+ - uid: 23290
components:
- type: Transform
- pos: -29.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -48.5,14.5
parent: 2
- - uid: 33651
+ - uid: 23623
components:
- type: Transform
- pos: -33.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,31.5
parent: 2
-- proto: ToiletEmpty
- entities:
- - uid: 1781
+ - uid: 23794
components:
- type: Transform
- pos: -13.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,31.5
parent: 2
- - uid: 3316
+ - uid: 24710
components:
- type: Transform
- pos: 11.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 2
- - uid: 3319
+ - uid: 25188
components:
- type: Transform
- pos: 9.5,-20.5
+ pos: -35.5,35.5
parent: 2
- - uid: 5144
+ - uid: 25974
components:
- type: Transform
- pos: 74.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,43.5
parent: 2
- - uid: 12003
+ - uid: 26003
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,43.5
parent: 2
-- proto: ToolboxElectricalFilled
- entities:
- - uid: 7924
+ - uid: 26290
components:
- type: Transform
- pos: -62.36076,-33.119625
+ pos: -10.5,37.5
parent: 2
-- proto: ToolboxEmergencyFilled
- entities:
- - uid: 1642
+ - uid: 26292
components:
- type: Transform
- pos: 33.611736,5.3079934
+ pos: -11.5,37.5
parent: 2
- - uid: 6079
+ - uid: 27412
components:
- type: Transform
- pos: -2.6094682,-31.392216
+ rot: 3.141592653589793 rad
+ pos: 19.5,-6.5
parent: 2
- - uid: 6080
+ - uid: 29786
components:
- type: Transform
- pos: -2.3047807,-31.286747
+ rot: 3.141592653589793 rad
+ pos: 65.5,81.5
parent: 2
- - uid: 6834
+ - uid: 30205
components:
- type: Transform
- pos: -6.489947,-41.08235
+ rot: 1.5707963267948966 rad
+ pos: -50.5,14.5
parent: 2
- - uid: 8428
+ - uid: 30280
components:
- type: Transform
- pos: -69.36533,17.712109
+ rot: 1.5707963267948966 rad
+ pos: -49.5,14.5
parent: 2
- - uid: 9604
+ - uid: 30312
components:
- type: Transform
- pos: -54.225883,35.856785
+ pos: 30.5,13.5
parent: 2
- - uid: 14220
+ - uid: 30692
components:
- type: Transform
- pos: 15.911845,59.645287
+ pos: 5.5,64.5
parent: 2
-- proto: ToolboxGoldFilled
- entities:
- - uid: 14057
+ - uid: 31054
components:
- type: Transform
- pos: 26.558758,38.086094
+ pos: 4.5,64.5
parent: 2
-- proto: ToolboxMechanicalFilled
- entities:
- - uid: 1643
+ - uid: 32079
components:
- type: Transform
- pos: 33.37736,5.7923684
+ pos: 96.5,76.5
parent: 2
- - uid: 2619
+ - uid: 32455
components:
- type: Transform
- pos: 27.706356,30.867682
+ pos: 96.5,78.5
parent: 2
- - uid: 5560
+ - uid: 32830
components:
- type: Transform
- pos: 34.47871,47.766407
+ pos: 66.5,71.5
parent: 2
- - uid: 6837
+ - uid: 32868
components:
- type: Transform
- pos: -6.505572,-40.76985
+ pos: 66.5,72.5
parent: 2
- - uid: 14219
+ - uid: 33942
components:
- type: Transform
- pos: 15.55247,59.84841
+ pos: 22.5,7.5
parent: 2
- - uid: 18240
+ - uid: 34974
components:
- type: Transform
- pos: 5.4501476,64.33037
+ rot: 3.141592653589793 rad
+ pos: 31.5,15.5
parent: 2
- - uid: 23007
+ - uid: 35990
components:
- type: Transform
- pos: -64.52811,30.593079
+ rot: 3.141592653589793 rad
+ pos: 66.5,81.5
parent: 2
-- proto: TorsoSkeleton
+ - uid: 36755
+ components:
+ - type: Transform
+ pos: 23.5,7.5
+ parent: 2
+ - uid: 36861
+ components:
+ - type: Transform
+ pos: 71.5,72.5
+ parent: 2
+- proto: TableReinforcedGlass
entities:
- - uid: 30078
+ - uid: 32358
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 91.64885,41.45121
+ pos: 95.5,55.5
parent: 2
- - uid: 33560
+ - uid: 33186
components:
- type: Transform
- pos: 91.76619,26.831522
+ rot: 3.141592653589793 rad
+ pos: 94.5,55.5
parent: 2
-- proto: ToyAmongPequeno
+- proto: TableWood
entities:
- - uid: 800
+ - uid: 6324
components:
- type: Transform
- pos: -71.47037,5.6271663
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-9.5
parent: 2
-- proto: ToyFigurineBartender
- entities:
- - uid: 6094
+ - uid: 23332
components:
- type: Transform
- pos: 19.729856,-29.037708
+ pos: -68.5,-9.5
parent: 2
-- proto: ToyFigurineBotanist
+- proto: TableWoodReinforced
entities:
- - uid: 30609
+ - uid: 36
components:
- type: Transform
- pos: -48.471058,3.5849948
+ pos: -11.5,-10.5
parent: 2
-- proto: ToyFigurineCaptain
- entities:
- - uid: 23282
+ - uid: 43
components:
- type: Transform
- pos: 8.326612,54.804092
+ rot: 3.141592653589793 rad
+ pos: -6.5,-7.5
parent: 2
-- proto: ToyFigurineCargoTech
- entities:
- - uid: 23336
+ - uid: 67
components:
- type: Transform
- pos: -14.393899,-22.362642
+ rot: 3.141592653589793 rad
+ pos: -6.5,-6.5
parent: 2
-- proto: ToyFigurineChaplain
- entities:
- - uid: 6090
+ - uid: 195
components:
- type: Transform
- pos: 66.37,17.864796
+ pos: -3.5,-6.5
parent: 2
-- proto: ToyFigurineChef
- entities:
- - uid: 1687
+ - uid: 278
components:
- type: Transform
- pos: -73.48599,5.6271663
+ pos: 34.5,-10.5
parent: 2
-- proto: ToyFigurineChemist
- entities:
- - uid: 22854
+ - uid: 307
components:
- type: Transform
- pos: 17.74036,-6.3158827
+ pos: -12.5,-27.5
parent: 2
-- proto: ToyFigurineChiefEngineer
- entities:
- - uid: 22683
+ - uid: 521
components:
- type: Transform
- pos: -50.38053,13.484335
+ rot: -1.5707963267948966 rad
+ pos: -16.5,16.5
parent: 2
-- proto: ToyFigurineChiefMedicalOfficer
- entities:
- - uid: 22781
+ - uid: 527
components:
- type: Transform
- pos: -3.4304256,-6.9409437
+ rot: -1.5707963267948966 rad
+ pos: -22.5,16.5
parent: 2
-- proto: ToyFigurineClown
- entities:
- - uid: 19437
+ - uid: 528
components:
- type: Transform
- pos: -81.52342,4.209467
+ rot: -1.5707963267948966 rad
+ pos: -28.5,16.5
parent: 2
-- proto: ToyFigurineDetective
- entities:
- - uid: 16586
+ - uid: 533
components:
- type: Transform
- pos: -32.38582,35.933018
+ rot: -1.5707963267948966 rad
+ pos: -28.5,9.5
parent: 2
- - uid: 30498
+ - uid: 534
components:
- type: Transform
- pos: 3.6877756,48.865395
+ rot: -1.5707963267948966 rad
+ pos: -19.5,9.5
parent: 2
-- proto: ToyFigurineEngineer
- entities:
- - uid: 22698
+ - uid: 565
components:
- type: Transform
- pos: -56.449577,30.854671
+ rot: 3.141592653589793 rad
+ pos: -3.5,-7.5
parent: 2
-- proto: ToyFigurineGreytider
- entities:
- - uid: 6095
+ - uid: 579
components:
- type: Transform
- pos: 17.491575,-35.529896
+ rot: 3.141592653589793 rad
+ pos: -5.5,-7.5
parent: 2
-- proto: ToyFigurineHamlet
- entities:
- - uid: 19455
+ - uid: 600
components:
- type: Transform
- pos: -72.73599,5.5802913
+ pos: -3.5,-11.5
parent: 2
-- proto: ToyFigurineHeadOfPersonnel
- entities:
- - uid: 6097
+ - uid: 607
components:
- type: Transform
- pos: 5.1333017,27.880987
+ pos: -6.5,-11.5
parent: 2
-- proto: ToyFigurineHeadOfSecurity
- entities:
- - uid: 22650
+ - uid: 922
components:
- type: Transform
- pos: -6.1290665,25.891968
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-4.5
parent: 2
-- proto: ToyFigurineHoloClown
- entities:
- - uid: 3916
+ - uid: 929
components:
- type: Transform
- pos: -81.53905,3.756342
+ rot: -1.5707963267948966 rad
+ pos: 67.5,14.5
parent: 2
-- proto: ToyFigurineJanitor
- entities:
- - uid: 6096
+ - uid: 932
components:
- type: Transform
- pos: 36.351513,-1.9763975
+ rot: -1.5707963267948966 rad
+ pos: 66.5,17.5
parent: 2
-- proto: ToyFigurineLawyer
- entities:
- - uid: 15690
+ - uid: 969
components:
- type: Transform
- pos: -5.4854984,58.729137
+ rot: -1.5707963267948966 rad
+ pos: 66.5,18.5
parent: 2
-- proto: ToyFigurineLibrarian
- entities:
- - uid: 6089
+ - uid: 991
components:
- type: Transform
- pos: 52.753094,28.395306
+ rot: -1.5707963267948966 rad
+ pos: 66.5,14.5
parent: 2
-- proto: ToyFigurineMedicalDoctor
- entities:
- - uid: 6091
+ - uid: 992
components:
- type: Transform
- pos: -7.3162193,4.7101116
+ rot: -1.5707963267948966 rad
+ pos: 66.5,15.5
parent: 2
- - uid: 6092
+ - uid: 1002
components:
- type: Transform
- pos: -7.2107506,0.6905802
+ rot: -1.5707963267948966 rad
+ pos: 66.5,16.5
parent: 2
-- proto: ToyFigurineMime
- entities:
- - uid: 3900
+ - uid: 1182
components:
- type: Transform
- pos: -81.53905,4.537592
+ pos: 23.5,-7.5
parent: 2
-- proto: ToyFigurineMusician
- entities:
- - uid: 6093
+ - uid: 1189
components:
- type: Transform
- pos: 25.554075,-33.397083
+ pos: 23.5,-4.5
parent: 2
- - uid: 11218
+ - uid: 1212
components:
- type: Transform
- pos: -71.734,1.0223624
+ pos: 23.5,-10.5
parent: 2
-- proto: ToyFigurineNukieCommander
- entities:
- - uid: 22872
+ - uid: 1454
components:
- type: Transform
- pos: 75.405815,24.807058
+ pos: -15.5,61.5
parent: 2
-- proto: ToyFigurineParamedic
- entities:
- - uid: 6099
+ - uid: 1599
components:
- type: Transform
- pos: -25.681107,9.8721485
+ rot: -1.5707963267948966 rad
+ pos: -8.5,10.5
parent: 2
- - uid: 30538
+ - uid: 1600
components:
- type: Transform
- pos: -6.4148717,21.612947
+ rot: -1.5707963267948966 rad
+ pos: -8.5,11.5
parent: 2
-- proto: ToyFigurinePassenger
- entities:
- - uid: 6160
+ - uid: 1601
components:
- type: Transform
- pos: -3.174158,-40.509228
+ rot: -1.5707963267948966 rad
+ pos: -8.5,9.5
parent: 2
-- proto: ToyFigurineQueen
- entities:
- - uid: 6110
+ - uid: 1602
components:
- type: Transform
- pos: 82.68927,62.512676
+ rot: -1.5707963267948966 rad
+ pos: -7.5,9.5
parent: 2
- - uid: 32549
+ - uid: 1603
components:
- type: Transform
- pos: 56.38974,42.589355
+ rot: -1.5707963267948966 rad
+ pos: -5.5,9.5
parent: 2
-- proto: ToyFigurineRatKing
- entities:
- - uid: 6101
+ - uid: 1604
components:
- type: Transform
- pos: 11.290376,-36.310852
+ rot: 3.141592653589793 rad
+ pos: -3.5,16.5
parent: 2
-- proto: ToyFigurineRatServant
- entities:
- - uid: 6102
+ - uid: 1605
components:
- type: Transform
- pos: 11.413118,-34.4777
+ rot: -1.5707963267948966 rad
+ pos: -4.5,9.5
parent: 2
- - uid: 6103
+ - uid: 1682
components:
- type: Transform
- pos: 11.66658,-35.402443
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-2.5
parent: 2
- - uid: 6104
+ - uid: 1696
components:
- type: Transform
- pos: 11.115799,-35.015724
+ rot: -1.5707963267948966 rad
+ pos: -0.5,7.5
parent: 2
- - uid: 6105
+ - uid: 1706
components:
- type: Transform
- pos: 5.1275177,-29.121193
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-2.5
parent: 2
-- proto: ToyFigurineResearchDirector
- entities:
- - uid: 6098
+ - uid: 1798
components:
- type: Transform
- pos: 46.441227,24.73673
+ rot: -1.5707963267948966 rad
+ pos: -22.5,9.5
parent: 2
-- proto: ToyFigurineSalvage
- entities:
- - uid: 2055
+ - uid: 1799
components:
- type: Transform
- pos: -11.689415,-42.400375
+ rot: -1.5707963267948966 rad
+ pos: -25.5,9.5
parent: 2
-- proto: ToyFigurineScientist
- entities:
- - uid: 30251
+ - uid: 1808
components:
- type: Transform
- pos: 29.627342,25.600868
+ rot: -1.5707963267948966 rad
+ pos: -16.5,9.5
parent: 2
-- proto: ToyFigurineSecurity
- entities:
- - uid: 22663
+ - uid: 1809
components:
- type: Transform
- pos: -19.721304,27.664555
+ rot: -1.5707963267948966 rad
+ pos: -25.5,16.5
parent: 2
-- proto: ToyFigurineSpaceDragon
- entities:
- - uid: 32548
+ - uid: 1810
components:
- type: Transform
- pos: 84.478745,27.35934
+ rot: -1.5707963267948966 rad
+ pos: -19.5,16.5
parent: 2
-- proto: ToyFigurineWarden
- entities:
- - uid: 30516
+ - uid: 1891
components:
- type: Transform
- pos: 0.62656116,68.4843
+ pos: 7.5,26.5
parent: 2
-- proto: ToyFigurineWizard
- entities:
- - uid: 6138
+ - uid: 1934
components:
- type: Transform
- pos: 47.665176,-30.498041
+ rot: -1.5707963267948966 rad
+ pos: 4.5,30.5
parent: 2
-- proto: ToyFireRipley
- entities:
- - uid: 30323
+ - uid: 1935
components:
- type: Transform
- pos: 45.55436,-12.637641
+ rot: -1.5707963267948966 rad
+ pos: 4.5,29.5
parent: 2
-- proto: ToyGygax
- entities:
- - uid: 30536
+ - uid: 1936
components:
- type: Transform
- pos: -4.393678,18.646486
+ rot: -1.5707963267948966 rad
+ pos: 4.5,28.5
parent: 2
-- proto: ToyHammer
- entities:
- - uid: 30559
+ - uid: 1937
components:
- type: Transform
- pos: -18.623516,22.47239
+ rot: -1.5707963267948966 rad
+ pos: 4.5,27.5
parent: 2
-- proto: ToyHonk
- entities:
- - uid: 13046
+ - uid: 1938
components:
- type: Transform
- pos: -74.48499,-5.026798
+ rot: 1.5707963267948966 rad
+ pos: 5.5,27.5
parent: 2
-- proto: ToyIan
- entities:
- - uid: 1985
+ - uid: 1950
components:
- type: Transform
- pos: 14.269932,30.761412
+ pos: 14.5,30.5
parent: 2
-- proto: ToyNuke
- entities:
- - uid: 14123
+ - uid: 1982
components:
- type: Transform
- pos: 26.531267,38.728565
+ pos: 7.5,30.5
parent: 2
-- proto: ToyRenault
- entities:
- - uid: 15268
+ - uid: 2275
components:
- type: Transform
- pos: 29.37053,51.78041
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-31.5
parent: 2
-- proto: ToyRubberDuck
- entities:
- - uid: 30537
+ - uid: 2361
components:
- type: Transform
- pos: -6.047684,21.519197
+ pos: -17.5,61.5
parent: 2
- - uid: 33614
+ - uid: 2617
components:
- type: Transform
- pos: 67.86161,52.50582
+ rot: 3.141592653589793 rad
+ pos: 9.5,54.5
parent: 2
-- proto: ToySeraph
- entities:
- - uid: 30539
+ - uid: 2623
components:
- type: Transform
- pos: 27.45737,21.675447
+ rot: 3.141592653589793 rad
+ pos: 11.5,43.5
parent: 2
-- proto: ToySiobhan
- entities:
- - uid: 30252
+ - uid: 2645
components:
- type: Transform
- pos: 46.229168,30.791666
+ pos: 12.5,41.5
parent: 2
-- proto: ToySkeleton
- entities:
- - uid: 6106
+ - uid: 2673
components:
- type: Transform
- pos: 61.739246,56.94301
+ rot: 3.141592653589793 rad
+ pos: 7.5,54.5
parent: 2
- - uid: 30074
+ - uid: 2692
components:
- type: Transform
- pos: 90.5551,42.873085
+ pos: 13.5,41.5
parent: 2
-- proto: ToySpawner
- entities:
- - uid: 15672
+ - uid: 2701
components:
- type: Transform
- pos: -68.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,55.5
parent: 2
- - uid: 15825
+ - uid: 2737
components:
- type: Transform
- pos: -67.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,54.5
parent: 2
-- proto: TrainingBomb
- entities:
- - uid: 4759
+ - uid: 2739
components:
- type: Transform
- pos: 14.5,66.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,54.5
parent: 2
- - uid: 4887
+ - uid: 2757
components:
- type: Transform
- pos: 9.5,66.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,8.5
parent: 2
- - uid: 15168
+ - uid: 2771
components:
- type: Transform
- pos: 14.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,55.5
parent: 2
- - uid: 15260
+ - uid: 2850
components:
- type: Transform
- pos: 13.5,64.5
+ pos: 21.5,59.5
parent: 2
- - uid: 18102
+ - uid: 2930
components:
- type: Transform
- pos: 13.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-22.5
parent: 2
- - uid: 18105
+ - uid: 2952
components:
- type: Transform
- pos: 13.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-22.5
parent: 2
-- proto: TrashBag
- entities:
- - uid: 16665
+ - uid: 2953
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -41.169395,10.014108
+ pos: -13.5,-22.5
parent: 2
- - uid: 16666
+ - uid: 2954
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -40.919395,9.842233
+ pos: -9.5,-22.5
parent: 2
- - uid: 34127
+ - uid: 2955
components:
- type: Transform
- pos: -23.635471,58.824127
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-22.5
parent: 2
-- proto: TrashBananaPeel
- entities:
- - uid: 943
+ - uid: 3051
components:
- type: Transform
- pos: -77.60196,-0.46468782
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-3.5
parent: 2
- - uid: 3320
+ - uid: 3077
components:
- type: Transform
- pos: -81.305084,-0.49593782
+ pos: -28.5,-21.5
parent: 2
- - uid: 7025
+ - uid: 3078
components:
- type: Transform
- pos: -29.823004,-35.23479
+ pos: -28.5,-20.5
parent: 2
- - uid: 7027
+ - uid: 3079
components:
- type: Transform
- pos: -31.35816,-35.082447
+ pos: -28.5,-19.5
parent: 2
- - uid: 9312
+ - uid: 3723
components:
- type: Transform
- pos: -77.19571,1.8478122
+ rot: 3.141592653589793 rad
+ pos: 10.5,54.5
parent: 2
- - uid: 9314
+ - uid: 4063
components:
- type: Transform
- pos: -77.211334,1.6603122
+ rot: -1.5707963267948966 rad
+ pos: -24.5,25.5
parent: 2
- - uid: 30082
+ - uid: 4065
components:
- type: Transform
- pos: 85.40305,42.278282
+ pos: 52.5,27.5
parent: 2
-- proto: TrashBananiumPeel
- entities:
- - uid: 16636
+ - uid: 4070
components:
- type: Transform
- pos: -40.106895,11.998483
+ pos: 46.5,26.5
parent: 2
- - uid: 16661
+ - uid: 4071
components:
- type: Transform
- pos: -40.263145,11.889108
+ pos: 46.5,25.5
parent: 2
- - uid: 16662
+ - uid: 4072
components:
- type: Transform
- pos: -36.356895,12.576608
+ pos: 46.5,24.5
parent: 2
-- proto: trayScanner
- entities:
- - uid: 4682
+ - uid: 4073
components:
- type: Transform
- pos: -66.555725,32.8392
+ pos: 47.5,24.5
parent: 2
-- proto: TwoWayLever
- entities:
- - uid: 6742
+ - uid: 4075
components:
- type: Transform
- pos: -51.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,25.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6818:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 20561:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 26800:
- - Left: Open
- - Right: Open
- - Middle: Close
- - uid: 8936
+ - uid: 4076
components:
- type: Transform
- pos: -49.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,33.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6832:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6692:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16671:
- - Left: Open
- - Right: Open
- - Middle: Close
- 16629:
- - Left: Open
- - Right: Open
- - Middle: Close
- 26695:
- - Left: Open
- - Right: Open
- - Middle: Close
- - uid: 9074
+ - uid: 4077
components:
- type: Transform
- pos: -31.5,-44.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,33.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6632:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6798:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16703:
- - Left: Open
- - Right: Open
- - Middle: Close
- 712:
- - Left: Open
- - Right: Open
- - Middle: Close
- - uid: 23365
+ - uid: 4446
components:
- type: Transform
- pos: -37.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,58.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 22732:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16555:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16638:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16645:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 16654:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 23519:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 36390:
- - Right: Reverse
- - Left: Forward
- - Middle: Off
- - uid: 23793
+ - uid: 4491
components:
- type: Transform
- pos: -19.5,-20.5
+ pos: 52.5,28.5
parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6717:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6713:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6708:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6623:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
- 6624:
- - Left: Forward
- - Right: Reverse
- - Middle: Off
-- proto: UniformPrinter
- entities:
- - uid: 1965
+ - uid: 4690
components:
- type: Transform
- pos: 6.5,30.5
+ pos: 89.5,37.5
parent: 2
-- proto: UniformPrinterMachineCircuitboard
- entities:
- - uid: 29701
+ - uid: 5237
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -47.920544,27.777718
+ rot: 1.5707963267948966 rad
+ pos: -6.5,59.5
parent: 2
-- proto: UniformScrubsColorBlue
- entities:
- - uid: 5975
+ - uid: 5422
components:
- type: Transform
- pos: -41.622158,60.58868
+ pos: 49.5,34.5
parent: 2
- - uid: 20647
+ - uid: 5423
components:
- type: Transform
- pos: -41.731533,60.698055
+ pos: 49.5,33.5
parent: 2
-- proto: UniformShortsRed
- entities:
- - uid: 3472
+ - uid: 5590
components:
- type: Transform
- pos: 44.488102,-23.494463
+ rot: 1.5707963267948966 rad
+ pos: 53.5,30.5
parent: 2
- - uid: 3473
+ - uid: 5650
components:
- type: Transform
- pos: 44.288883,-23.728838
+ pos: -2.5,-34.5
parent: 2
-- proto: UniformShortsRedWithTop
- entities:
- - uid: 3475
+ - uid: 5671
components:
- type: Transform
- pos: 44.69904,-23.599932
+ pos: -4.5,-34.5
parent: 2
-- proto: UprightPianoInstrument
- entities:
- - uid: 5898
+ - uid: 5672
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-33.5
+ pos: -1.5,-33.5
parent: 2
-- proto: Vaccinator
- entities:
- - uid: 11285
+ - uid: 5673
components:
- type: Transform
- pos: -13.5,7.5
+ pos: -1.5,-32.5
parent: 2
-- proto: VaccinatorMachineCircuitboard
- entities:
- - uid: 31783
+ - uid: 5685
components:
- type: Transform
- pos: -47.892563,27.494806
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-31.5
parent: 2
-- proto: VariantCubeBox
- entities:
- - uid: 5526
+ - uid: 6265
components:
- type: Transform
- pos: 41.78215,51.595562
+ rot: 1.5707963267948966 rad
+ pos: -13.5,50.5
parent: 2
- - uid: 5527
+ - uid: 6501
components:
- type: Transform
- pos: 27.22865,30.707218
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-30.5
parent: 2
- - uid: 18546
+ - uid: 6502
components:
- type: Transform
- pos: -61.616512,-7.3219314
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-29.5
parent: 2
- - uid: 18547
+ - uid: 6503
components:
- type: Transform
- pos: -61.366512,-7.493807
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-28.5
parent: 2
-- proto: VendingBarDrobe
- entities:
- - uid: 4408
+ - uid: 6504
components:
- type: Transform
- pos: 19.5,-23.5
+ pos: -11.5,-11.5
parent: 2
-- proto: VendingMachineAtmosDrobe
- entities:
- - uid: 9079
+ - uid: 6521
components:
- type: Transform
- pos: -44.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-28.5
parent: 2
-- proto: VendingMachineBooze
- entities:
- - uid: 4645
+ - uid: 6522
components:
- type: Transform
- pos: 11.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-29.5
parent: 2
- - uid: 5746
+ - uid: 6529
components:
- type: Transform
- pos: 17.5,-27.5
+ pos: -6.5,-25.5
parent: 2
- - uid: 6989
+ - uid: 6531
components:
- type: Transform
- pos: -33.5,-30.5
+ pos: -9.5,-25.5
parent: 2
- - uid: 30790
+ - uid: 6532
components:
- type: Transform
- pos: -44.5,64.5
+ pos: -8.5,-25.5
parent: 2
-- proto: VendingMachineBoxingDrobe
- entities:
- - uid: 3519
+ - uid: 6533
components:
- type: Transform
- pos: 39.5,-21.5
+ pos: -7.5,-25.5
parent: 2
-- proto: VendingMachineCargoDrobe
- entities:
- - uid: 22697
+ - uid: 6536
components:
- type: Transform
- pos: -10.5,-32.5
+ pos: -16.5,-27.5
parent: 2
-- proto: VendingMachineCart
- entities:
- - uid: 1946
+ - uid: 6557
components:
- type: Transform
- pos: 5.5,30.5
+ pos: -29.5,-19.5
parent: 2
-- proto: VendingMachineChang
- entities:
- - uid: 30029
+ - uid: 6559
components:
- type: Transform
- pos: 88.5,19.5
+ pos: -28.5,-23.5
parent: 2
- - uid: 30496
+ - uid: 6560
components:
- type: Transform
- pos: 3.5,56.5
+ pos: -27.5,-23.5
parent: 2
-- proto: VendingMachineChapel
- entities:
- - uid: 27814
+ - uid: 6561
components:
- type: Transform
- pos: 68.5,26.5
+ pos: -26.5,-23.5
parent: 2
-- proto: VendingMachineChefDrobe
- entities:
- - uid: 22058
+ - uid: 6641
components:
- type: Transform
- pos: -55.5,-5.5
+ pos: -13.5,-32.5
parent: 2
-- proto: VendingMachineChefvend
- entities:
- - uid: 15940
+ - uid: 6846
components:
- type: Transform
- pos: -55.5,-19.5
+ pos: -30.5,-23.5
parent: 2
- - uid: 28613
+ - uid: 6847
components:
- type: Transform
- pos: -55.5,-14.5
+ pos: -30.5,-24.5
parent: 2
-- proto: VendingMachineChemDrobe
- entities:
- - uid: 872
+ - uid: 6952
components:
- type: Transform
- pos: -14.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-31.5
parent: 2
-- proto: VendingMachineChemicals
- entities:
- - uid: 1046
+ - uid: 7373
components:
- type: Transform
- pos: 12.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-9.5
parent: 2
- - uid: 17884
+ - uid: 7375
components:
- type: Transform
- pos: 17.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-9.5
parent: 2
-- proto: VendingMachineCigs
- entities:
- - uid: 5169
+ - uid: 7414
components:
- type: Transform
- pos: 73.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -61.5,-1.5
parent: 2
- - uid: 19516
+ - uid: 7935
components:
- type: Transform
- pos: 32.5,-18.5
+ pos: -14.5,-25.5
parent: 2
- - uid: 19822
+ - uid: 7992
components:
- type: Transform
- pos: 17.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,36.5
parent: 2
- - uid: 23428
+ - uid: 8340
components:
- type: Transform
- pos: -4.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,20.5
parent: 2
- - uid: 24794
+ - uid: 8343
components:
- type: Transform
- pos: 0.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,20.5
parent: 2
- - uid: 26412
+ - uid: 8353
components:
- type: Transform
- pos: -67.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,5.5
parent: 2
- - uid: 29800
+ - uid: 8462
components:
- type: Transform
- pos: 80.5,56.5
+ pos: -12.5,59.5
parent: 2
- - uid: 35942
+ - uid: 8470
components:
- type: Transform
- pos: -38.5,67.5
+ pos: -14.5,59.5
parent: 2
-- proto: VendingMachineClothing
- entities:
- - uid: 13069
+ - uid: 8471
components:
- type: Transform
- pos: 6.5,-31.5
+ pos: -13.5,59.5
parent: 2
- - uid: 27817
+ - uid: 9219
components:
- type: Transform
- pos: -40.5,-30.5
+ pos: -3.5,-34.5
parent: 2
-- proto: VendingMachineCola
- entities:
- - uid: 29295
+ - uid: 9336
components:
- type: Transform
- pos: -32.5,55.5
+ pos: -73.5,16.5
parent: 2
-- proto: VendingMachineColaBlack
- entities:
- - uid: 30497
+ - uid: 9337
components:
- type: Transform
- pos: -0.5,56.5
+ pos: -73.5,15.5
parent: 2
-- proto: VendingMachineColaRed
- entities:
- - uid: 6375
+ - uid: 11105
components:
- type: Transform
- pos: 21.5,-9.5
+ pos: 89.5,43.5
parent: 2
-- proto: VendingMachineCondiments
- entities:
- - uid: 7134
+ - uid: 11446
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -48.5,-13.5
+ pos: 6.5,48.5
parent: 2
- - uid: 7136
+ - uid: 11532
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-18.5
+ pos: 13.5,-5.5
parent: 2
-- proto: VendingMachineCourierDrobe
- entities:
- - uid: 6866
+ - uid: 12096
components:
- type: Transform
- pos: -13.5,-35.5
+ pos: -19.5,60.5
parent: 2
-- proto: VendingMachineCuraDrobe
- entities:
- - uid: 7999
+ - uid: 13079
components:
- type: Transform
- pos: 55.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-34.5
parent: 2
-- proto: VendingMachineDetDrobe
- entities:
- - uid: 16850
+ - uid: 13080
components:
- type: Transform
- pos: -35.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-34.5
parent: 2
-- proto: VendingMachineDinnerware
- entities:
- - uid: 6520
+ - uid: 13081
components:
- type: Transform
- pos: -53.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-34.5
parent: 2
- - uid: 22089
+ - uid: 13942
components:
- type: Transform
- pos: -54.5,-5.5
+ pos: 29.5,51.5
parent: 2
-- proto: VendingMachineDiscount
- entities:
- - uid: 29294
+ - uid: 13943
components:
- type: Transform
- pos: -33.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,54.5
parent: 2
-- proto: VendingMachineDonut
- entities:
- - uid: 3736
+ - uid: 13944
components:
- type: Transform
- pos: -27.5,30.5
+ pos: 20.5,59.5
parent: 2
- - uid: 28227
+ - uid: 14058
components:
- type: Transform
- pos: -1.5,-12.5
+ pos: 13.5,56.5
parent: 2
-- proto: VendingMachineDrGibb
- entities:
- - uid: 27735
+ - uid: 14059
components:
- type: Transform
- pos: 4.5,-18.5
+ pos: 13.5,55.5
parent: 2
-- proto: VendingMachineEngiDrobe
- entities:
- - uid: 3687
+ - uid: 14060
components:
- type: Transform
- pos: -56.5,37.5
+ pos: 13.5,54.5
parent: 2
-- proto: VendingMachineEngivend
- entities:
- - uid: 6823
+ - uid: 14287
components:
- type: Transform
- pos: -52.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,43.5
parent: 2
- - uid: 26897
+ - uid: 15113
components:
- type: Transform
- pos: -44.5,33.5
+ pos: 29.5,52.5
parent: 2
-- proto: VendingMachineGames
- entities:
- - uid: 5287
+ - uid: 15118
components:
- type: Transform
- pos: 16.5,-23.5
+ pos: 28.5,52.5
parent: 2
-- proto: VendingMachineGeneDrobe
- entities:
- - uid: 225
+ - uid: 15202
components:
- type: Transform
- pos: -13.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,53.5
parent: 2
-- proto: VendingMachineHappyHonk
- entities:
- - uid: 19429
+ - uid: 15224
components:
- type: Transform
- pos: -79.5,5.5
+ pos: 14.5,71.5
parent: 2
-- proto: VendingMachineHydrobe
- entities:
- - uid: 18479
+ - uid: 15229
components:
- type: Transform
- pos: -56.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,56.5
parent: 2
-- proto: VendingMachineJaniDrobe
- entities:
- - uid: 18513
+ - uid: 15231
components:
- type: Transform
- pos: -42.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,57.5
parent: 2
-- proto: VendingMachineLawDrobe
- entities:
- - uid: 23255
+ - uid: 15298
components:
- type: Transform
- pos: -8.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,27.5
parent: 2
-- proto: VendingMachineMedical
- entities:
- - uid: 1442
+ - uid: 15299
components:
- type: Transform
- pos: 9.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,27.5
parent: 2
-- proto: VendingMachineMediDrobe
- entities:
- - uid: 873
+ - uid: 15300
components:
- type: Transform
- pos: -12.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,27.5
parent: 2
-- proto: VendingMachineMNKDrobe
- entities:
- - uid: 4347
+ - uid: 15403
components:
- type: Transform
- pos: 7.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -22.5,28.5
parent: 2
- - uid: 25059
+ - uid: 15509
components:
- type: Transform
- pos: -39.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,59.5
parent: 2
-- proto: VendingMachineNutri
- entities:
- - uid: 18497
+ - uid: 15590
components:
- type: Transform
- pos: -56.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,28.5
parent: 2
-- proto: VendingMachinePride
- entities:
- - uid: 2543
+ - uid: 15591
components:
- type: Transform
- pos: 4.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,28.5
parent: 2
- - uid: 6382
+ - uid: 15592
components:
- type: Transform
- pos: -8.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,28.5
parent: 2
- - uid: 13070
+ - uid: 15631
components:
- type: Transform
- pos: 5.5,-31.5
+ pos: -18.5,50.5
parent: 2
- - uid: 22258
+ - uid: 15733
components:
- type: Transform
- pos: -41.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,25.5
parent: 2
-- proto: VendingMachineRepDrobe
- entities:
- - uid: 9328
+ - uid: 15734
components:
- type: Transform
- pos: -25.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,25.5
parent: 2
-- proto: VendingMachineRestockBooze
- entities:
- - uid: 22579
+ - uid: 15739
components:
- type: Transform
- pos: 24.51501,-23.426043
+ rot: 3.141592653589793 rad
+ pos: -4.5,25.5
parent: 2
-- proto: VendingMachineRestockChemVend
- entities:
- - uid: 1303
+ - uid: 15743
components:
- type: Transform
- pos: 35.337753,7.70896
+ pos: -4.5,26.5
parent: 2
-- proto: VendingMachineRestockClothes
- entities:
- - uid: 31788
+ - uid: 15754
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.436382,-33.42224
+ pos: -8.5,32.5
parent: 2
-- proto: VendingMachineRoboDrobe
- entities:
- - uid: 3352
+ - uid: 15778
components:
- type: Transform
- pos: 42.5,44.5
+ pos: -8.5,33.5
parent: 2
-- proto: VendingMachineRobotics
- entities:
- - uid: 4086
+ - uid: 15802
components:
- type: Transform
- pos: 45.5,42.5
+ pos: -10.5,54.5
parent: 2
-- proto: VendingMachineSalvage
- entities:
- - uid: 21011
+ - uid: 15805
components:
- type: Transform
- pos: -13.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,53.5
parent: 2
-- proto: VendingMachineSciDrobe
- entities:
- - uid: 5300
+ - uid: 15809
components:
- type: Transform
- pos: 36.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,46.5
parent: 2
-- proto: VendingMachineSec
- entities:
- - uid: 15578
+ - uid: 15816
components:
- type: Transform
- pos: -7.5,43.5
+ pos: -10.5,55.5
parent: 2
- - uid: 28941
+ - uid: 15896
components:
- type: Transform
- pos: -27.5,48.5
+ pos: -10.5,49.5
parent: 2
-- proto: VendingMachineSecDrobe
- entities:
- - uid: 9657
+ - uid: 15897
components:
- type: Transform
- pos: -8.5,43.5
+ pos: -10.5,48.5
parent: 2
-- proto: VendingMachineSeeds
- entities:
- - uid: 18480
+ - uid: 15907
components:
- type: Transform
- pos: -56.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -13.5,52.5
parent: 2
-- proto: VendingMachineSnackBlue
- entities:
- - uid: 4858
+ - uid: 15923
components:
- type: Transform
- pos: 88.5,15.5
+ pos: -2.5,48.5
parent: 2
-- proto: VendingMachineSovietSoda
- entities:
- - uid: 16651
+ - uid: 15959
components:
- type: Transform
- pos: -39.5,13.5
+ pos: -14.5,58.5
parent: 2
- - uid: 22528
+ - uid: 15965
components:
- type: Transform
- pos: 47.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,53.5
parent: 2
- - uid: 29825
+ - uid: 15966
components:
- type: Transform
- pos: 87.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,50.5
parent: 2
-- proto: VendingMachineSpaceUp
- entities:
- - uid: 5301
+ - uid: 16180
components:
- type: Transform
- pos: 21.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,46.5
parent: 2
-- proto: VendingMachineSustenance
- entities:
- - uid: 95
+ - uid: 16347
components:
- type: Transform
- pos: -10.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,64.5
parent: 2
- - uid: 29799
+ - uid: 16391
components:
- type: Transform
- pos: 86.5,56.5
+ pos: -19.5,61.5
parent: 2
-- proto: VendingMachineTankDispenserEngineering
- entities:
- - uid: 28838
+ - uid: 16523
components:
- type: Transform
- pos: -96.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,64.5
parent: 2
- - uid: 32443
+ - uid: 16581
components:
- type: Transform
- pos: -94.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-8.5
parent: 2
-- proto: VendingMachineTankDispenserEVA
- entities:
- - uid: 6029
+ - uid: 16583
components:
- type: Transform
- pos: 16.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-9.5
parent: 2
- - uid: 6030
+ - uid: 17000
components:
- type: Transform
- pos: 21.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 46.5,29.5
parent: 2
- - uid: 9056
+ - uid: 17848
components:
- type: Transform
- pos: -53.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,7.5
parent: 2
- - uid: 10406
+ - uid: 18063
components:
- type: Transform
- pos: -60.5,-33.5
+ pos: -23.5,66.5
parent: 2
- - uid: 13646
+ - uid: 18065
components:
- type: Transform
- pos: 54.5,-37.5
+ pos: -27.5,66.5
parent: 2
- - uid: 14260
+ - uid: 18067
components:
- type: Transform
- pos: 29.5,55.5
+ pos: -19.5,66.5
parent: 2
- - uid: 18138
+ - uid: 18068
components:
- type: Transform
- pos: -3.5,68.5
+ pos: -15.5,66.5
parent: 2
- - uid: 23761
+ - uid: 18076
components:
- type: Transform
- pos: -35.5,37.5
+ pos: -16.5,61.5
parent: 2
-- proto: VendingMachineTheater
- entities:
- - uid: 1521
+ - uid: 18146
components:
- type: Transform
- pos: -80.5,5.5
+ pos: -20.5,62.5
parent: 2
-- proto: VendingMachineVendomat
- entities:
- - uid: 4542
+ - uid: 18147
components:
- type: Transform
- pos: 34.5,26.5
+ pos: -21.5,62.5
parent: 2
-- proto: VendingMachineViroDrobe
- entities:
- - uid: 1581
+ - uid: 18188
components:
- type: Transform
- pos: -11.5,16.5
+ pos: 4.5,71.5
parent: 2
-- proto: VendingMachineWallMedical
- entities:
- - uid: 2051
+ - uid: 18415
components:
- type: Transform
- pos: -5.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-1.5
parent: 2
- - uid: 2053
+ - uid: 18428
components:
- type: Transform
- pos: 28.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -62.5,-2.5
parent: 2
- - uid: 22077
+ - uid: 18455
components:
- type: Transform
- pos: 7.5,-8.5
+ pos: -59.5,-4.5
parent: 2
- - uid: 22805
+ - uid: 18456
components:
- type: Transform
- pos: 16.5,11.5
+ pos: -58.5,-4.5
parent: 2
-- proto: VendingMachineWinter
- entities:
- - uid: 5160
+ - uid: 18501
components:
- type: Transform
- pos: 54.5,-11.5
+ pos: -52.5,-3.5
parent: 2
-- proto: VendingMachineYouTool
- entities:
- - uid: 11196
+ - uid: 19391
components:
- type: Transform
- pos: -67.5,3.5
+ pos: -10.5,42.5
parent: 2
- - uid: 31479
+ - uid: 19392
components:
- type: Transform
- pos: -51.5,31.5
+ pos: -9.5,42.5
parent: 2
-- proto: ViolinInstrument
- entities:
- - uid: 13093
+ - uid: 19414
components:
- type: Transform
- pos: -69.972435,23.612196
+ rot: 1.5707963267948966 rad
+ pos: -79.5,3.5
parent: 2
-- proto: WallmountTelescreen
- entities:
- - uid: 15302
+ - uid: 19415
components:
- type: Transform
- pos: -6.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: -78.5,3.5
parent: 2
-- proto: WallmountTelevision
- entities:
- - uid: 2229
+ - uid: 19416
components:
- type: Transform
- pos: -2.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: -77.5,3.5
parent: 2
- - uid: 3385
+ - uid: 19417
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 12.5,-35.5
+ pos: -81.5,-0.5
parent: 2
- - uid: 3386
+ - uid: 19418
components:
- type: Transform
- pos: 18.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -77.5,-0.5
parent: 2
- - uid: 5719
+ - uid: 19605
components:
- type: Transform
- pos: 6.5,31.5
+ pos: -40.5,65.5
parent: 2
-- proto: WallmountTelevisionFrame
- entities:
- - uid: 7057
+ - uid: 19635
components:
- type: Transform
- pos: -32.5,-29.5
+ pos: -40.5,67.5
parent: 2
-- proto: WallNecropolis
- entities:
- - uid: 556
+ - uid: 19636
components:
- type: Transform
- pos: 69.5,35.5
+ pos: -40.5,66.5
parent: 2
- - uid: 1583
+ - uid: 19657
components:
- type: Transform
- pos: 67.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,67.5
parent: 2
- - uid: 2050
+ - uid: 19732
components:
- type: Transform
- pos: 67.5,64.5
+ pos: -40.5,64.5
parent: 2
- - uid: 2330
+ - uid: 19823
components:
- type: Transform
- pos: 74.5,27.5
+ pos: -6.5,-41.5
parent: 2
- - uid: 4014
+ - uid: 20276
components:
- type: Transform
- pos: 69.5,65.5
+ pos: -6.5,-42.5
parent: 2
- - uid: 4015
+ - uid: 20655
components:
- type: Transform
- pos: 53.5,34.5
+ pos: -6.5,-40.5
parent: 2
- - uid: 4017
+ - uid: 20723
components:
- type: Transform
- pos: 80.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,64.5
parent: 2
- - uid: 4142
+ - uid: 22029
components:
- type: Transform
- pos: 61.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-7.5
parent: 2
- - uid: 4155
+ - uid: 22040
components:
- type: Transform
- pos: 95.5,25.5
+ pos: -69.5,-0.5
parent: 2
- - uid: 4156
+ - uid: 22305
components:
- type: Transform
- pos: 97.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-8.5
parent: 2
- - uid: 4316
+ - uid: 22360
components:
- type: Transform
- pos: 94.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: -43.5,67.5
parent: 2
- - uid: 4385
+ - uid: 23200
components:
- type: Transform
- pos: 88.5,45.5
+ pos: -5.5,57.5
parent: 2
- - uid: 4404
+ - uid: 23536
components:
- type: Transform
- pos: 63.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,19.5
parent: 2
- - uid: 4405
+ - uid: 23694
components:
- type: Transform
- pos: 54.5,63.5
+ pos: 5.5,7.5
parent: 2
- - uid: 4406
+ - uid: 24018
components:
- type: Transform
- pos: 54.5,62.5
+ pos: -69.5,0.5
parent: 2
- - uid: 4459
+ - uid: 24829
components:
- type: Transform
- pos: 55.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,14.5
parent: 2
- - uid: 4464
+ - uid: 24925
components:
- type: Transform
- pos: 65.5,64.5
+ pos: -69.5,1.5
parent: 2
- - uid: 4465
+ - uid: 25951
components:
- type: Transform
- pos: 63.5,64.5
+ pos: -18.5,51.5
parent: 2
- - uid: 4466
+ - uid: 25966
components:
- type: Transform
- pos: 65.5,67.5
+ pos: -24.5,46.5
parent: 2
- - uid: 4467
+ - uid: 25977
components:
- type: Transform
- pos: 56.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,46.5
parent: 2
- - uid: 4468
+ - uid: 26495
components:
- type: Transform
- pos: 59.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,46.5
parent: 2
- - uid: 4469
+ - uid: 26496
components:
- type: Transform
- pos: 59.5,65.5
+ pos: -18.5,49.5
parent: 2
- - uid: 4470
+ - uid: 28934
components:
- type: Transform
- pos: 57.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-2.5
parent: 2
- - uid: 4471
+ - uid: 28967
components:
- type: Transform
- pos: 55.5,65.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,48.5
parent: 2
- - uid: 4472
+ - uid: 29184
components:
- type: Transform
- pos: 74.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,27.5
parent: 2
- - uid: 4473
+ - uid: 29704
components:
- type: Transform
- pos: 75.5,67.5
+ pos: 19.5,47.5
parent: 2
- - uid: 4474
+ - uid: 29714
components:
- type: Transform
- pos: 69.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,33.5
parent: 2
- - uid: 4475
+ - uid: 29950
components:
- type: Transform
- pos: 70.5,67.5
+ pos: 85.5,44.5
parent: 2
- - uid: 4476
+ - uid: 30039
components:
- type: Transform
- pos: 71.5,67.5
+ pos: 86.5,44.5
parent: 2
- - uid: 4477
+ - uid: 30040
components:
- type: Transform
- pos: 72.5,67.5
+ pos: 88.5,44.5
parent: 2
- - uid: 4478
+ - uid: 30041
components:
- type: Transform
- pos: 73.5,67.5
+ pos: 89.5,44.5
parent: 2
- - uid: 4480
+ - uid: 30042
components:
- type: Transform
- pos: 69.5,66.5
+ pos: 90.5,43.5
parent: 2
- - uid: 4481
+ - uid: 30043
components:
- type: Transform
- pos: 77.5,67.5
+ pos: 90.5,42.5
parent: 2
- - uid: 4482
+ - uid: 30044
components:
- type: Transform
- pos: 77.5,66.5
+ pos: 84.5,43.5
parent: 2
- - uid: 4494
+ - uid: 30045
components:
- type: Transform
- pos: 79.5,67.5
+ pos: 84.5,42.5
parent: 2
- - uid: 4498
+ - uid: 30048
components:
- type: Transform
- pos: 91.5,44.5
+ pos: 85.5,43.5
parent: 2
- - uid: 4501
+ - uid: 30052
components:
- type: Transform
- pos: 64.5,69.5
+ pos: 84.5,38.5
parent: 2
- - uid: 4505
+ - uid: 30054
components:
- type: Transform
- pos: 81.5,67.5
+ pos: 85.5,37.5
parent: 2
- - uid: 4506
+ - uid: 30055
components:
- type: Transform
- pos: 83.5,67.5
+ pos: 85.5,36.5
parent: 2
- - uid: 4507
+ - uid: 30056
components:
- type: Transform
- pos: 84.5,67.5
+ pos: 86.5,36.5
parent: 2
- - uid: 4508
+ - uid: 30057
components:
- type: Transform
- pos: 85.5,45.5
+ pos: 88.5,36.5
parent: 2
- - uid: 4509
+ - uid: 30058
components:
- type: Transform
- pos: 63.5,69.5
+ pos: 89.5,36.5
parent: 2
- - uid: 4510
+ - uid: 30059
components:
- type: Transform
- pos: 79.5,38.5
+ pos: 84.5,37.5
parent: 2
- - uid: 4511
+ - uid: 30060
components:
- type: Transform
- pos: 73.5,48.5
+ pos: 90.5,37.5
parent: 2
- - uid: 4512
+ - uid: 30061
components:
- type: Transform
- pos: 73.5,49.5
+ pos: 90.5,38.5
parent: 2
- - uid: 4513
+ - uid: 30345
components:
- type: Transform
- pos: 86.5,45.5
+ pos: 46.5,30.5
parent: 2
- - uid: 4514
+ - uid: 30389
components:
- type: Transform
- pos: 73.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,50.5
parent: 2
- - uid: 4515
+ - uid: 30492
components:
- type: Transform
- pos: 67.5,44.5
+ pos: -21.5,46.5
parent: 2
- - uid: 4517
+ - uid: 30501
components:
- type: Transform
- pos: 62.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,66.5
parent: 2
- - uid: 4518
+ - uid: 30531
components:
- type: Transform
- pos: 89.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,18.5
parent: 2
- - uid: 4523
+ - uid: 30532
components:
- type: Transform
- pos: 78.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,18.5
parent: 2
- - uid: 4524
+ - uid: 30920
components:
- type: Transform
- pos: 75.5,33.5
+ pos: 46.5,30.5
parent: 2
- - uid: 4526
+ - uid: 33674
components:
- type: Transform
- pos: 65.5,43.5
+ pos: -36.5,67.5
parent: 2
- - uid: 4527
+ - uid: 33829
components:
- type: Transform
- pos: 63.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-7.5
parent: 2
- - uid: 4534
+ - uid: 34833
components:
- type: Transform
- pos: 67.5,33.5
+ pos: -10.5,28.5
parent: 2
- - uid: 4537
+ - uid: 36397
components:
- type: Transform
- pos: 59.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,53.5
parent: 2
- - uid: 4543
+ - uid: 36398
components:
- type: Transform
- pos: 59.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -13.5,49.5
parent: 2
- - uid: 4544
+ - uid: 36417
components:
- type: Transform
- pos: 75.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-9.5
parent: 2
- - uid: 4545
+ - uid: 36457
components:
- type: Transform
- pos: 76.5,53.5
+ pos: 57.5,84.5
parent: 2
- - uid: 4546
+ - uid: 36468
components:
- type: Transform
- pos: 69.5,40.5
+ pos: 15.5,59.5
parent: 2
- - uid: 4547
+ - uid: 36469
components:
- type: Transform
- pos: 65.5,37.5
+ pos: 16.5,59.5
parent: 2
- - uid: 4548
+ - uid: 36591
components:
- type: Transform
- pos: 78.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 100.5,61.5
parent: 2
- - uid: 4549
+ - uid: 36595
components:
- type: Transform
- pos: 75.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,61.5
parent: 2
- - uid: 4550
+ - uid: 36596
components:
- type: Transform
- pos: 75.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 99.5,61.5
parent: 2
- - uid: 4553
+ - uid: 36597
components:
- type: Transform
- pos: 78.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 99.5,60.5
parent: 2
- - uid: 4555
+ - uid: 37538
components:
- type: Transform
- pos: 78.5,30.5
+ pos: 3.5,53.5
parent: 2
- - uid: 4557
+ - uid: 38434
components:
- type: Transform
- pos: 78.5,31.5
+ pos: 3.5,54.5
parent: 2
- - uid: 4558
+- proto: TargetClown
+ entities:
+ - uid: 9486
components:
- type: Transform
- pos: 75.5,36.5
+ pos: -74.5,-6.5
parent: 2
- - uid: 4559
+ - uid: 26524
components:
- type: Transform
- pos: 65.5,38.5
+ pos: -31.5,52.5
parent: 2
- - uid: 4562
+- proto: TargetDarts
+ entities:
+ - uid: 4249
components:
- type: Transform
- pos: 78.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -50.5,-31.5
parent: 2
- - uid: 4565
+- proto: TargetSyndicate
+ entities:
+ - uid: 26511
components:
- type: Transform
- pos: 77.5,33.5
+ pos: -30.5,52.5
parent: 2
- - uid: 4569
+ - uid: 26513
components:
- type: Transform
- pos: 76.5,33.5
+ pos: -32.5,52.5
parent: 2
- - uid: 4570
+ - uid: 26528
components:
- type: Transform
- pos: 79.5,36.5
+ pos: -33.5,52.5
parent: 2
- - uid: 4574
+ - uid: 26529
components:
- type: Transform
- pos: 58.5,69.5
+ pos: -29.5,52.5
parent: 2
- - uid: 4628
+- proto: tatamimat
+ entities:
+ - uid: 12348
components:
- type: Transform
- pos: 56.5,65.5
+ pos: -69.5,-10.5
parent: 2
- - uid: 4629
+ - uid: 12453
components:
- type: Transform
- pos: 63.5,65.5
+ pos: -68.5,-10.5
parent: 2
- - uid: 4630
+ - uid: 12730
components:
- type: Transform
- pos: 59.5,66.5
+ pos: -67.5,-10.5
parent: 2
- - uid: 4631
+ - uid: 13266
components:
- type: Transform
- pos: 57.5,67.5
+ pos: -69.5,-9.5
parent: 2
- - uid: 4633
+ - uid: 13289
components:
- type: Transform
- pos: 61.5,68.5
+ pos: -69.5,-8.5
parent: 2
- - uid: 4655
+ - uid: 14246
components:
- type: Transform
- pos: 79.5,48.5
+ pos: -67.5,-8.5
parent: 2
- - uid: 4656
+ - uid: 14256
components:
- type: Transform
- pos: 92.5,47.5
+ pos: -67.5,-9.5
parent: 2
- - uid: 4657
+ - uid: 14259
components:
- type: Transform
- pos: 77.5,51.5
+ pos: -68.5,-9.5
parent: 2
- - uid: 4658
+ - uid: 19650
components:
- type: Transform
- pos: 91.5,28.5
+ pos: -68.5,-8.5
parent: 2
- - uid: 4660
+ - uid: 23330
components:
- type: Transform
- pos: 94.5,28.5
+ pos: -66.5,-9.5
parent: 2
- - uid: 4662
+- proto: TelecomServer
+ entities:
+ - uid: 19516
components:
- type: Transform
- pos: 79.5,37.5
+ pos: -79.5,14.5
parent: 2
- - uid: 4664
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19626
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 19801
components:
- type: Transform
- pos: 77.5,52.5
+ pos: -75.5,11.5
parent: 2
- - uid: 4665
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19802
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 19881
components:
- type: Transform
- pos: 91.5,38.5
+ pos: -79.5,13.5
parent: 2
- - uid: 4671
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19917
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 20200
components:
- type: Transform
- pos: 83.5,52.5
+ pos: -75.5,14.5
parent: 2
- - uid: 4672
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20833
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 20835
components:
- type: Transform
- pos: 81.5,51.5
+ pos: -79.5,12.5
parent: 2
- - uid: 4673
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20836
+ - 20837
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 20951
components:
- type: Transform
- pos: 67.5,48.5
+ pos: -75.5,13.5
parent: 2
- - uid: 4674
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 21067
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 22341
components:
- type: Transform
- pos: 77.5,39.5
+ pos: -79.5,11.5
parent: 2
- - uid: 4676
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 22343
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ - uid: 30978
components:
- type: Transform
- pos: 77.5,38.5
+ pos: -75.5,12.5
parent: 2
- - uid: 4677
+ - type: WiresPanel
+ open: True
+ - type: ContainerContainer
+ containers:
+ key_slots: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 34354
+ machine_board: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+ machine_parts: !type:Container
+ showEnts: False
+ occludes: True
+ ents: []
+- proto: TelecomServerCircuitboard
+ entities:
+ - uid: 35825
components:
- type: Transform
- pos: 67.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -48.576794,27.769905
parent: 2
- - uid: 4678
+- proto: TimerTrigger
+ entities:
+ - uid: 36049
components:
- type: Transform
- pos: 75.5,39.5
+ pos: 31.629028,15.79834
parent: 2
- - uid: 4691
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 19706
components:
- type: Transform
- pos: 76.5,39.5
+ pos: -31.5,67.5
parent: 2
- - uid: 4692
+ - uid: 31047
components:
- type: Transform
- pos: 77.5,37.5
+ pos: -29.5,67.5
parent: 2
- - uid: 4693
+ - uid: 32066
components:
- type: Transform
- pos: 77.5,36.5
+ pos: 86.5,78.5
parent: 2
- - uid: 4697
+ - uid: 33651
components:
- type: Transform
- pos: 77.5,35.5
+ pos: -33.5,67.5
parent: 2
- - uid: 4698
+- proto: ToiletEmpty
+ entities:
+ - uid: 1781
components:
- type: Transform
- pos: 73.5,33.5
+ pos: -13.5,10.5
parent: 2
- - uid: 4699
+ - uid: 23520
components:
- type: Transform
- pos: 74.5,50.5
+ pos: 69.5,-10.5
parent: 2
- - uid: 4700
+ - uid: 31445
components:
- type: Transform
- pos: 73.5,51.5
+ pos: 74.5,-10.5
parent: 2
- - uid: 4701
+ - uid: 32806
components:
- type: Transform
- pos: 75.5,50.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,62.5
parent: 2
- - uid: 4702
+- proto: ToolboxElectricalFilled
+ entities:
+ - uid: 6406
components:
- type: Transform
- pos: 76.5,50.5
+ pos: 84.47589,24.671051
parent: 2
- - uid: 4703
+ - uid: 7924
components:
- type: Transform
- pos: 77.5,50.5
+ pos: -62.29197,-33.3296
parent: 2
- - uid: 4704
+ - uid: 29774
components:
- type: Transform
- pos: 79.5,52.5
+ pos: 47.039474,45.632
parent: 2
- - uid: 4705
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 1642
components:
- type: Transform
- pos: 83.5,51.5
+ pos: 36.356003,7.828862
parent: 2
- - uid: 4706
+ - uid: 6079
components:
- type: Transform
- pos: 79.5,51.5
+ pos: -2.6094682,-31.392216
parent: 2
- - uid: 4707
+ - uid: 6080
components:
- type: Transform
- pos: 79.5,50.5
+ pos: -2.3047807,-31.286747
parent: 2
- - uid: 4708
+ - uid: 8428
components:
- type: Transform
- pos: 82.5,51.5
+ pos: -69.36533,17.712109
parent: 2
- - uid: 4709
+ - uid: 14220
components:
- type: Transform
- pos: 79.5,49.5
+ pos: 15.911845,59.645287
parent: 2
- - uid: 4710
+- proto: ToolboxGoldFilled
+ entities:
+ - uid: 14057
components:
- type: Transform
- pos: 81.5,49.5
+ pos: 26.558758,38.086094
parent: 2
- - uid: 4711
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 1643
components:
- type: Transform
- pos: 82.5,49.5
+ pos: 36.574753,7.5241747
parent: 2
- - uid: 4716
+ - uid: 2619
components:
- type: Transform
- pos: 78.5,33.5
+ pos: 27.706356,30.867682
parent: 2
- - uid: 4717
+ - uid: 5560
components:
- type: Transform
- pos: 75.5,37.5
+ pos: 34.47871,47.766407
parent: 2
- - uid: 4718
+ - uid: 7246
components:
- type: Transform
- pos: 75.5,38.5
+ pos: 84.46808,23.671051
parent: 2
- - uid: 4719
+ - uid: 14219
components:
- type: Transform
- pos: 53.5,37.5
+ pos: 15.55247,59.84841
parent: 2
- - uid: 4720
+ - uid: 18240
components:
- type: Transform
- pos: 53.5,38.5
+ pos: 5.4501476,64.33037
parent: 2
- - uid: 4750
+ - uid: 23007
components:
- type: Transform
- pos: 55.5,36.5
+ pos: -64.52811,30.593079
parent: 2
- - uid: 4751
+ - uid: 29775
components:
- type: Transform
- pos: 53.5,33.5
+ pos: 47.4926,45.507
parent: 2
- - uid: 4752
+- proto: TorsoSkeleton
+ entities:
+ - uid: 30078
components:
- type: Transform
- pos: 71.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 91.64885,41.45121
parent: 2
- - uid: 4753
+- proto: ToyAi
+ entities:
+ - uid: 25057
components:
- type: Transform
- pos: 69.5,37.5
+ pos: 63.507427,42.606426
parent: 2
- - uid: 4754
+- proto: ToyAmongPequeno
+ entities:
+ - uid: 800
components:
- type: Transform
- pos: 69.5,39.5
+ pos: -71.47037,5.6271663
parent: 2
- - uid: 4755
+- proto: ToyFigurineBartender
+ entities:
+ - uid: 7234
components:
- type: Transform
- pos: 70.5,40.5
+ pos: -42.55031,-28.162348
parent: 2
- - uid: 4756
+- proto: ToyFigurineBotanist
+ entities:
+ - uid: 30609
components:
- type: Transform
- pos: 72.5,40.5
+ pos: -48.471058,3.5849948
parent: 2
- - uid: 4757
+- proto: ToyFigurineCaptain
+ entities:
+ - uid: 23282
components:
- type: Transform
- pos: 73.5,40.5
+ pos: 8.326612,54.804092
parent: 2
- - uid: 4760
+- proto: ToyFigurineCargoTech
+ entities:
+ - uid: 23336
components:
- type: Transform
- pos: 73.5,39.5
+ pos: -14.393899,-22.362642
parent: 2
- - uid: 4768
+- proto: ToyFigurineChaplain
+ entities:
+ - uid: 6090
components:
- type: Transform
- pos: 73.5,38.5
+ pos: 66.37,17.864796
parent: 2
- - uid: 4769
+- proto: ToyFigurineChef
+ entities:
+ - uid: 1687
components:
- type: Transform
- pos: 83.5,38.5
+ pos: -73.48599,5.6271663
parent: 2
- - uid: 4771
+- proto: ToyFigurineChemist
+ entities:
+ - uid: 22854
components:
- type: Transform
- pos: 91.5,36.5
+ pos: 17.74036,-6.3158827
parent: 2
- - uid: 4772
+- proto: ToyFigurineChiefEngineer
+ entities:
+ - uid: 22683
components:
- type: Transform
- pos: 89.5,35.5
+ pos: -48.494766,15.462388
parent: 2
- - uid: 4775
+- proto: ToyFigurineChiefMedicalOfficer
+ entities:
+ - uid: 22781
components:
- type: Transform
- pos: 73.5,37.5
+ pos: -3.4304256,-6.9409437
parent: 2
- - uid: 4776
+- proto: ToyFigurineClown
+ entities:
+ - uid: 19437
components:
- type: Transform
- pos: 73.5,35.5
+ pos: -81.52342,4.209467
parent: 2
- - uid: 4777
+- proto: ToyFigurineDetective
+ entities:
+ - uid: 16586
components:
- type: Transform
- pos: 73.5,34.5
+ pos: -19.208479,-7.715081
parent: 2
- - uid: 4778
+ - uid: 30498
components:
- type: Transform
- pos: 72.5,33.5
+ pos: 3.3693025,54.003727
parent: 2
- - uid: 4779
+- proto: ToyFigurineEngineer
+ entities:
+ - uid: 22698
components:
- type: Transform
- pos: 71.5,33.5
+ pos: -56.449577,30.854671
parent: 2
- - uid: 4781
+- proto: ToyFigurineHamlet
+ entities:
+ - uid: 19455
components:
- type: Transform
- pos: 70.5,33.5
+ pos: -72.73599,5.5802913
parent: 2
- - uid: 4782
+- proto: ToyFigurineHeadOfPersonnel
+ entities:
+ - uid: 6097
components:
- type: Transform
- pos: 68.5,33.5
+ pos: 5.1333017,27.880987
parent: 2
- - uid: 4783
+- proto: ToyFigurineHeadOfSecurity
+ entities:
+ - uid: 22650
components:
- type: Transform
- pos: 91.5,37.5
+ pos: -5.561159,26.47769
parent: 2
- - uid: 4789
+- proto: ToyFigurineHoloClown
+ entities:
+ - uid: 3916
components:
- type: Transform
- pos: 66.5,33.5
+ pos: -81.53905,3.756342
parent: 2
- - uid: 4794
+- proto: ToyFigurineJanitor
+ entities:
+ - uid: 6096
components:
- type: Transform
- pos: 67.5,35.5
+ pos: 36.351513,-1.9763975
parent: 2
- - uid: 4796
+- proto: ToyFigurineLawyer
+ entities:
+ - uid: 15690
components:
- type: Transform
- pos: 68.5,35.5
+ pos: -5.4854984,58.729137
parent: 2
- - uid: 4797
+- proto: ToyFigurineLibrarian
+ entities:
+ - uid: 6089
components:
- type: Transform
- pos: 90.5,36.5
+ pos: 52.753094,28.395306
parent: 2
- - uid: 4798
+- proto: ToyFigurineMedicalDoctor
+ entities:
+ - uid: 6092
components:
- type: Transform
- pos: 61.5,42.5
+ pos: 4.50861,6.466015
parent: 2
- - uid: 4799
+- proto: ToyFigurineMime
+ entities:
+ - uid: 3900
components:
- type: Transform
- pos: 61.5,40.5
+ pos: -81.53905,4.537592
parent: 2
- - uid: 4800
+- proto: ToyFigurineMusician
+ entities:
+ - uid: 4792
components:
- type: Transform
- pos: 61.5,35.5
+ pos: -40.468822,-31.374462
parent: 2
- - uid: 4801
+ - uid: 11218
components:
- type: Transform
- pos: 61.5,41.5
+ pos: -71.734,1.0223624
parent: 2
- - uid: 4802
+- proto: ToyFigurineParamedic
+ entities:
+ - uid: 6099
components:
- type: Transform
- pos: 64.5,49.5
+ pos: -25.681107,9.8721485
parent: 2
- - uid: 4803
+ - uid: 30538
components:
- type: Transform
- pos: 65.5,49.5
+ pos: -6.4148717,21.612947
parent: 2
- - uid: 4804
+- proto: ToyFigurinePassenger
+ entities:
+ - uid: 6160
components:
- type: Transform
- pos: 63.5,49.5
+ pos: -3.174158,-40.509228
parent: 2
- - uid: 4805
+- proto: ToyFigurineQueen
+ entities:
+ - uid: 4648
components:
- type: Transform
- pos: 63.5,48.5
+ pos: 95.45168,79.72069
parent: 2
- - uid: 4806
+- proto: ToyFigurineRatKing
+ entities:
+ - uid: 6101
components:
- type: Transform
- pos: 63.5,47.5
+ pos: 11.290376,-36.310852
parent: 2
- - uid: 4807
+- proto: ToyFigurineRatServant
+ entities:
+ - uid: 6102
components:
- type: Transform
- pos: 60.5,47.5
+ pos: 11.413118,-34.4777
parent: 2
- - uid: 4808
+ - uid: 6103
components:
- type: Transform
- pos: 61.5,47.5
+ pos: 11.66658,-35.402443
parent: 2
- - uid: 4809
+ - uid: 6104
components:
- type: Transform
- pos: 61.5,45.5
+ pos: 11.115799,-35.015724
parent: 2
- - uid: 4810
+ - uid: 6105
components:
- type: Transform
- pos: 61.5,44.5
+ pos: 5.1275177,-29.121193
parent: 2
- - uid: 4811
+- proto: ToyFigurineResearchDirector
+ entities:
+ - uid: 6098
components:
- type: Transform
- pos: 61.5,43.5
+ pos: 46.441227,24.73673
parent: 2
- - uid: 4812
+- proto: ToyFigurineSalvage
+ entities:
+ - uid: 2055
components:
- type: Transform
- pos: 62.5,37.5
+ pos: -6.756976,-45.16886
parent: 2
- - uid: 4813
+- proto: ToyFigurineScientist
+ entities:
+ - uid: 30251
components:
- type: Transform
- pos: 61.5,36.5
+ pos: 29.627342,25.600868
parent: 2
- - uid: 4814
+- proto: ToyFigurineSecurity
+ entities:
+ - uid: 22663
components:
- type: Transform
- pos: 61.5,39.5
+ pos: -19.721304,27.664555
parent: 2
- - uid: 4815
+- proto: ToyFigurineSpaceDragon
+ entities:
+ - uid: 4823
components:
- type: Transform
- pos: 61.5,37.5
+ pos: 96.521996,78.62694
parent: 2
- - uid: 4816
+- proto: ToyFigurineThief
+ entities:
+ - uid: 21024
components:
- type: Transform
- pos: 60.5,39.5
+ pos: 96.584496,78.32225
parent: 2
- - uid: 4817
+- proto: ToyFigurineWarden
+ entities:
+ - uid: 4448
components:
- type: Transform
- pos: 60.5,37.5
+ pos: -19.500881,50.56117
parent: 2
- - uid: 4818
+ - uid: 30516
components:
- type: Transform
- pos: 67.5,45.5
+ pos: 0.62656116,68.4843
parent: 2
- - uid: 4832
+- proto: ToyFigurineWizard
+ entities:
+ - uid: 6138
components:
- type: Transform
- pos: 67.5,46.5
+ pos: 50.869072,-34.37588
parent: 2
- - uid: 4833
+- proto: ToyFireRipley
+ entities:
+ - uid: 30323
components:
- type: Transform
- pos: 67.5,43.5
+ pos: 45.55436,-12.637641
parent: 2
- - uid: 4836
+- proto: ToyGygax
+ entities:
+ - uid: 30536
components:
- type: Transform
- pos: 66.5,43.5
+ pos: -4.393678,18.646486
parent: 2
- - uid: 4837
+- proto: ToyHammer
+ entities:
+ - uid: 9144
components:
- type: Transform
- pos: 68.5,51.5
+ pos: 20.175343,-25.417202
parent: 2
- - uid: 4838
+ - uid: 16452
components:
- type: Transform
- pos: 68.5,53.5
+ pos: -13.557635,52.854824
parent: 2
- - uid: 4839
+ - uid: 30559
components:
- type: Transform
- pos: 67.5,53.5
+ pos: -18.623516,22.47239
parent: 2
- - uid: 4840
+- proto: ToyHonk
+ entities:
+ - uid: 13046
components:
- type: Transform
- pos: 66.5,53.5
+ pos: -74.48499,-5.026798
parent: 2
- - uid: 4841
+- proto: ToyIan
+ entities:
+ - uid: 1985
components:
- type: Transform
- pos: 65.5,53.5
+ pos: 14.269932,30.761412
parent: 2
- - uid: 4842
+- proto: ToyNuke
+ entities:
+ - uid: 14123
components:
- type: Transform
- pos: 65.5,50.5
+ pos: 26.531267,38.728565
parent: 2
- - uid: 4843
+- proto: ToyRenault
+ entities:
+ - uid: 15268
components:
- type: Transform
- pos: 67.5,51.5
+ pos: 29.37053,51.78041
parent: 2
- - uid: 4844
+- proto: ToyRubberDuck
+ entities:
+ - uid: 30537
components:
- type: Transform
- pos: 71.5,36.5
+ pos: -6.047684,21.519197
parent: 2
- - uid: 4845
+ - uid: 37652
components:
- type: Transform
- pos: 65.5,52.5
+ pos: 99.99195,44.725395
parent: 2
- - uid: 4846
+ - uid: 37653
components:
- type: Transform
- pos: 65.5,51.5
+ pos: 100.30212,44.996784
parent: 2
- - uid: 4860
+- proto: ToySeraph
+ entities:
+ - uid: 30539
components:
- type: Transform
- pos: 92.5,38.5
+ pos: 27.45737,21.675447
parent: 2
- - uid: 4889
+- proto: ToySiobhan
+ entities:
+ - uid: 30252
components:
- type: Transform
- pos: 97.5,26.5
+ pos: 46.229168,30.791666
parent: 2
- - uid: 4890
+- proto: ToySkeleton
+ entities:
+ - uid: 6106
components:
- type: Transform
- pos: 94.5,27.5
+ pos: 61.739246,56.94301
parent: 2
- - uid: 4891
+ - uid: 30074
components:
- type: Transform
- pos: 70.5,45.5
+ pos: 90.5551,42.873085
parent: 2
- - uid: 4892
+- proto: ToySpawner
+ entities:
+ - uid: 15672
components:
- type: Transform
- pos: 71.5,45.5
+ pos: -68.5,17.5
parent: 2
- - uid: 4893
+ - uid: 15825
components:
- type: Transform
- pos: 71.5,43.5
+ pos: -67.5,17.5
parent: 2
- - uid: 4894
+- proto: TrackingImplanter
+ entities:
+ - uid: 37537
components:
- type: Transform
- pos: 94.5,26.5
+ pos: -21.241966,43.679638
parent: 2
- - uid: 4896
+- proto: TrainingBomb
+ entities:
+ - uid: 4759
components:
- type: Transform
- pos: 92.5,24.5
+ pos: 14.5,66.5
parent: 2
- - uid: 4898
+ - uid: 4887
components:
- type: Transform
- pos: 65.5,66.5
+ pos: 9.5,66.5
parent: 2
- - uid: 4900
+ - uid: 15168
components:
- type: Transform
- pos: 65.5,65.5
+ pos: 14.5,64.5
parent: 2
- - uid: 4902
+ - uid: 15260
components:
- type: Transform
- pos: 64.5,66.5
+ pos: 13.5,64.5
parent: 2
- - uid: 4903
+ - uid: 18102
components:
- type: Transform
- pos: 59.5,45.5
+ pos: 13.5,66.5
parent: 2
- - uid: 4905
+ - uid: 18105
components:
- type: Transform
- pos: 54.5,65.5
+ pos: 13.5,64.5
parent: 2
- - uid: 4906
+- proto: TrashBag
+ entities:
+ - uid: 29353
components:
- type: Transform
- pos: 61.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -35.018265,10.927069
parent: 2
- - uid: 4908
+ - uid: 34127
components:
- type: Transform
- pos: 58.5,67.5
+ pos: -20.366964,53.676113
parent: 2
- - uid: 4910
+ - uid: 37708
components:
- type: Transform
- pos: 75.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -34.744827,10.731756
parent: 2
- - uid: 4911
+- proto: TrashBananaPeel
+ entities:
+ - uid: 943
components:
- type: Transform
- pos: 59.5,43.5
+ pos: -77.60196,-0.46468782
parent: 2
- - uid: 4912
+ - uid: 3320
components:
- type: Transform
- pos: 73.5,31.5
+ pos: -81.305084,-0.49593782
parent: 2
- - uid: 4915
+ - uid: 7025
components:
- type: Transform
- pos: 83.5,49.5
+ pos: -29.823004,-35.23479
parent: 2
- - uid: 4916
+ - uid: 7027
components:
- type: Transform
- pos: 55.5,35.5
+ pos: -31.35816,-35.082447
parent: 2
- - uid: 4917
+ - uid: 9312
components:
- type: Transform
- pos: 69.5,41.5
+ pos: -77.19571,1.8478122
parent: 2
- - uid: 4918
+ - uid: 9314
components:
- type: Transform
- pos: 69.5,42.5
+ pos: -77.211334,1.6603122
parent: 2
- - uid: 4919
+ - uid: 30082
components:
- type: Transform
- pos: 80.5,67.5
+ pos: 85.40305,42.278282
parent: 2
- - uid: 4920
+- proto: TrashBananiumPeel
+ entities:
+ - uid: 16636
components:
- type: Transform
- pos: 85.5,49.5
+ pos: -40.106895,11.998483
parent: 2
- - uid: 4922
+ - uid: 16661
components:
- type: Transform
- pos: 57.5,69.5
+ pos: -40.263145,11.889108
parent: 2
- - uid: 4924
+ - uid: 16662
components:
- type: Transform
- pos: 74.5,53.5
+ pos: -36.356895,12.576608
parent: 2
- - uid: 4925
+- proto: TwoWayLever
+ entities:
+ - uid: 22857
components:
- type: Transform
- pos: 92.5,28.5
+ pos: -18.5,-20.5
parent: 2
- - uid: 4927
+- proto: UnfinishedMachineFrame
+ entities:
+ - uid: 36538
components:
- type: Transform
- pos: 88.5,34.5
+ pos: 78.5,81.5
parent: 2
- - uid: 5384
+ - uid: 36646
components:
- type: Transform
- pos: 75.5,65.5
+ pos: 71.5,37.5
parent: 2
- - uid: 5574
+ - uid: 36648
components:
- type: Transform
- pos: 83.5,42.5
+ pos: 69.5,43.5
parent: 2
- - uid: 6108
+ - uid: 36649
components:
- type: Transform
- pos: 86.5,65.5
+ pos: 69.5,77.5
parent: 2
- - uid: 6109
+ - uid: 36651
components:
- type: Transform
- pos: 74.5,65.5
+ pos: 81.5,53.5
parent: 2
- - uid: 6114
+ - uid: 36653
components:
- type: Transform
- pos: 85.5,67.5
+ pos: 82.5,53.5
parent: 2
- - uid: 6115
+ - uid: 36654
components:
- type: Transform
- pos: 73.5,65.5
+ pos: 101.5,58.5
parent: 2
- - uid: 6116
+ - uid: 36655
components:
- type: Transform
- pos: 72.5,65.5
+ pos: 105.5,14.5
parent: 2
- - uid: 6395
+- proto: UniformPrinter
+ entities:
+ - uid: 1965
components:
- type: Transform
- pos: 91.5,43.5
+ pos: 6.5,30.5
parent: 2
- - uid: 6401
+- proto: UniformPrinterMachineCircuitboard
+ entities:
+ - uid: 29701
components:
- type: Transform
- pos: 71.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -47.920544,27.777718
parent: 2
- - uid: 6412
+- proto: UniformShortsRed
+ entities:
+ - uid: 3472
components:
- type: Transform
- pos: 60.5,69.5
+ pos: 44.488102,-23.494463
parent: 2
- - uid: 6615
+ - uid: 3473
components:
- type: Transform
- pos: 80.5,47.5
+ pos: 44.288883,-23.728838
parent: 2
- - uid: 6934
+- proto: UniformShortsRedWithTop
+ entities:
+ - uid: 3475
components:
- type: Transform
- pos: 78.5,41.5
+ pos: 44.69904,-23.599932
parent: 2
- - uid: 6935
+- proto: UprightPianoInstrument
+ entities:
+ - uid: 5609
components:
- type: Transform
- pos: 84.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-31.5
parent: 2
- - uid: 6936
+- proto: Vaccinator
+ entities:
+ - uid: 7275
components:
- type: Transform
- pos: 94.5,35.5
+ pos: -8.5,7.5
parent: 2
- - uid: 6938
+- proto: VaccinatorMachineCircuitboard
+ entities:
+ - uid: 31783
components:
- type: Transform
- pos: 76.5,41.5
+ pos: -47.892563,27.494806
parent: 2
- - uid: 6939
+- proto: VariantCubeBox
+ entities:
+ - uid: 5526
components:
- type: Transform
- pos: 86.5,50.5
+ pos: 41.78215,51.595562
parent: 2
- - uid: 6940
+ - uid: 5527
components:
- type: Transform
- pos: 94.5,36.5
+ pos: 27.22865,30.707218
parent: 2
- - uid: 6942
+ - uid: 18546
components:
- type: Transform
- pos: 65.5,39.5
+ pos: -61.616512,-7.3219314
parent: 2
- - uid: 7762
+ - uid: 18547
components:
- type: Transform
- pos: 74.5,29.5
+ pos: -61.366512,-7.493807
parent: 2
- - uid: 7880
+- proto: VendingBarDrobe
+ entities:
+ - uid: 2029
components:
- type: Transform
- pos: 92.5,42.5
+ pos: -36.5,-25.5
parent: 2
- - uid: 7884
+- proto: VendingMachineAtmosDrobe
+ entities:
+ - uid: 29722
components:
- type: Transform
- pos: 90.5,44.5
+ pos: -44.5,33.5
parent: 2
- - uid: 8015
+- proto: VendingMachineBooze
+ entities:
+ - uid: 4645
components:
- type: Transform
- pos: 90.5,45.5
+ pos: 11.5,56.5
parent: 2
- - uid: 8445
+ - uid: 6989
components:
- type: Transform
- pos: 65.5,40.5
+ pos: -33.5,-30.5
parent: 2
- - uid: 9342
+ - uid: 17740
components:
- type: Transform
- pos: 65.5,41.5
+ pos: -39.5,-27.5
parent: 2
- - uid: 9626
+ - uid: 26016
components:
- type: Transform
- pos: 69.5,45.5
+ pos: -44.5,67.5
parent: 2
- - uid: 9627
+- proto: VendingMachineBoxingDrobe
+ entities:
+ - uid: 3519
components:
- type: Transform
- pos: 69.5,38.5
+ pos: 39.5,-21.5
parent: 2
- - uid: 9628
+- proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 1117
components:
- type: Transform
- pos: 69.5,53.5
+ pos: -9.5,-32.5
parent: 2
- - uid: 9629
+- proto: VendingMachineCart
+ entities:
+ - uid: 1946
components:
- type: Transform
- pos: 69.5,52.5
+ pos: 5.5,30.5
parent: 2
- - uid: 9630
+- proto: VendingMachineChang
+ entities:
+ - uid: 30029
components:
- type: Transform
- pos: 71.5,63.5
+ pos: 88.5,19.5
parent: 2
- - uid: 9631
+ - uid: 30496
components:
- type: Transform
- pos: 71.5,64.5
+ pos: 3.5,56.5
parent: 2
- - uid: 9638
+- proto: VendingMachineChapel
+ entities:
+ - uid: 27814
components:
- type: Transform
- pos: 77.5,64.5
+ pos: 68.5,26.5
parent: 2
- - uid: 9669
+- proto: VendingMachineChefDrobe
+ entities:
+ - uid: 2730
components:
- type: Transform
- pos: 77.5,63.5
+ pos: -57.5,-25.5
parent: 2
- - uid: 10348
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 3315
components:
- type: Transform
- pos: 62.5,69.5
+ pos: -58.5,-25.5
parent: 2
- - uid: 10349
+- proto: VendingMachineChemDrobe
+ entities:
+ - uid: 872
components:
- type: Transform
- pos: 79.5,47.5
+ pos: -14.5,16.5
parent: 2
- - uid: 10350
+- proto: VendingMachineChemicals
+ entities:
+ - uid: 1046
components:
- type: Transform
- pos: 75.5,42.5
+ pos: 12.5,-2.5
parent: 2
- - uid: 10351
+ - uid: 17884
components:
- type: Transform
- pos: 79.5,40.5
+ pos: 17.5,-0.5
parent: 2
- - uid: 10352
+- proto: VendingMachineCigs
+ entities:
+ - uid: 18745
components:
- type: Transform
- pos: 75.5,41.5
+ pos: 91.5,79.5
parent: 2
- - uid: 10353
+ - uid: 23428
components:
- type: Transform
- pos: 77.5,41.5
+ pos: -4.5,16.5
parent: 2
- - uid: 10354
+ - uid: 23689
components:
- type: Transform
- pos: 86.5,51.5
+ pos: 74.5,-13.5
parent: 2
- - uid: 10356
+ - uid: 26412
components:
- type: Transform
- pos: 86.5,48.5
+ pos: -67.5,5.5
parent: 2
- - uid: 10357
+ - uid: 28001
components:
- type: Transform
- pos: 71.5,50.5
+ pos: -42.5,62.5
parent: 2
- - uid: 10358
+ - uid: 28929
components:
- type: Transform
- pos: 71.5,52.5
+ pos: -0.5,48.5
parent: 2
- - uid: 10359
+ - uid: 29963
components:
- type: Transform
- pos: 71.5,51.5
+ pos: -53.5,-27.5
parent: 2
- - uid: 10360
+- proto: VendingMachineClothing
+ entities:
+ - uid: 6198
components:
- type: Transform
- pos: 70.5,47.5
+ pos: -37.5,-23.5
parent: 2
- - uid: 10361
+ - uid: 13069
components:
- type: Transform
- pos: 69.5,43.5
+ pos: 6.5,-31.5
parent: 2
- - uid: 10362
+- proto: VendingMachineColaBlack
+ entities:
+ - uid: 30497
components:
- type: Transform
- pos: 71.5,40.5
+ pos: -0.5,56.5
parent: 2
- - uid: 10363
+- proto: VendingMachineColaRed
+ entities:
+ - uid: 6375
components:
- type: Transform
- pos: 77.5,53.5
+ pos: 21.5,-9.5
parent: 2
- - uid: 10364
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 7134
components:
- type: Transform
- pos: 69.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-13.5
parent: 2
- - uid: 10365
+- proto: VendingMachineCourierDrobe
+ entities:
+ - uid: 27959
components:
- type: Transform
- pos: 59.5,39.5
+ pos: -10.5,-32.5
parent: 2
- - uid: 10366
+- proto: VendingMachineCuraDrobe
+ entities:
+ - uid: 7999
components:
- type: Transform
- pos: 71.5,53.5
+ pos: 55.5,30.5
parent: 2
- - uid: 10367
+- proto: VendingMachineDetDrobe
+ entities:
+ - uid: 15434
components:
- type: Transform
- pos: 79.5,62.5
+ pos: -19.5,-10.5
parent: 2
- - uid: 13783
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 26735
components:
- type: Transform
- pos: 72.5,53.5
+ pos: -59.5,-25.5
parent: 2
- - uid: 13790
+- proto: VendingMachineDonut
+ entities:
+ - uid: 28227
components:
- type: Transform
- pos: 58.5,41.5
+ pos: -1.5,-12.5
parent: 2
- - uid: 13791
+ - uid: 32041
components:
- type: Transform
- pos: 73.5,53.5
+ pos: -9.5,30.5
parent: 2
- - uid: 13792
+- proto: VendingMachineDrGibb
+ entities:
+ - uid: 27735
components:
- type: Transform
- pos: 71.5,35.5
+ pos: 4.5,-18.5
parent: 2
- - uid: 13793
+- proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 20805
components:
- type: Transform
- pos: 65.5,33.5
+ pos: -50.5,38.5
parent: 2
- - uid: 13794
+- proto: VendingMachineEngivend
+ entities:
+ - uid: 1456
components:
- type: Transform
- pos: 63.5,43.5
+ pos: -52.5,38.5
parent: 2
- - uid: 13795
+ - uid: 12437
components:
- type: Transform
- pos: 63.5,41.5
+ pos: 18.5,-23.5
parent: 2
- - uid: 13806
+- proto: VendingMachineGames
+ entities:
+ - uid: 24521
components:
- type: Transform
- pos: 63.5,42.5
+ pos: -52.5,-27.5
parent: 2
- - uid: 13808
+- proto: VendingMachineGeneDrobe
+ entities:
+ - uid: 20890
components:
- type: Transform
- pos: 63.5,39.5
+ pos: -10.5,15.5
parent: 2
- - uid: 13809
+- proto: VendingMachineHappyHonk
+ entities:
+ - uid: 19429
components:
- type: Transform
- pos: 63.5,40.5
+ pos: -79.5,5.5
parent: 2
- - uid: 13810
+- proto: VendingMachineHydrobe
+ entities:
+ - uid: 18479
components:
- type: Transform
- pos: 63.5,37.5
+ pos: -56.5,0.5
parent: 2
- - uid: 13811
+- proto: VendingMachineJaniDrobe
+ entities:
+ - uid: 18724
components:
- type: Transform
- pos: 87.5,48.5
+ pos: -36.5,8.5
parent: 2
- - uid: 13812
+- proto: VendingMachineLawDrobe
+ entities:
+ - uid: 23255
components:
- type: Transform
- pos: 82.5,47.5
+ pos: -8.5,60.5
parent: 2
- - uid: 13813
+- proto: VendingMachineMedical
+ entities:
+ - uid: 27354
components:
- type: Transform
- pos: 75.5,46.5
+ pos: 12.5,11.5
parent: 2
- - uid: 13814
+- proto: VendingMachineMediDrobe
+ entities:
+ - uid: 635
components:
- type: Transform
- pos: 93.5,46.5
+ pos: -14.5,15.5
parent: 2
- - uid: 13815
+- proto: VendingMachineMNKDrobe
+ entities:
+ - uid: 4347
components:
- type: Transform
- pos: 76.5,48.5
+ pos: 7.5,-31.5
parent: 2
- - uid: 13820
+ - uid: 6566
components:
- type: Transform
- pos: 89.5,26.5
+ pos: -38.5,-23.5
parent: 2
- - uid: 13821
+- proto: VendingMachineNutri
+ entities:
+ - uid: 18497
components:
- type: Transform
- pos: 82.5,38.5
+ pos: -56.5,2.5
parent: 2
- - uid: 13822
+- proto: VendingMachinePride
+ entities:
+ - uid: 2543
components:
- type: Transform
- pos: 89.5,25.5
+ pos: 4.5,23.5
parent: 2
- - uid: 13823
+ - uid: 6200
components:
- type: Transform
- pos: 65.5,69.5
+ pos: -36.5,-23.5
parent: 2
- - uid: 13824
+ - uid: 6382
components:
- type: Transform
- pos: 83.5,37.5
+ pos: -8.5,18.5
parent: 2
- - uid: 14949
+ - uid: 13070
components:
- type: Transform
- pos: 87.5,66.5
+ pos: 5.5,-31.5
parent: 2
- - uid: 14950
+- proto: VendingMachineRepDrobe
+ entities:
+ - uid: 9328
components:
- type: Transform
- pos: 83.5,65.5
+ pos: -25.5,-7.5
parent: 2
- - uid: 14951
+- proto: VendingMachineRestockClothes
+ entities:
+ - uid: 26632
components:
- type: Transform
- pos: 87.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -18.429386,-44.013767
parent: 2
- - uid: 14952
+- proto: VendingMachineRoboDrobe
+ entities:
+ - uid: 36748
components:
- type: Transform
- pos: 81.5,65.5
+ pos: 47.5,41.5
parent: 2
- - uid: 14953
+- proto: VendingMachineRobotics
+ entities:
+ - uid: 13587
components:
- type: Transform
- pos: 87.5,64.5
+ pos: 45.5,41.5
parent: 2
- - uid: 14954
+- proto: VendingMachineSalvage
+ entities:
+ - uid: 6726
components:
- type: Transform
- pos: 82.5,67.5
+ pos: -29.5,-46.5
parent: 2
- - uid: 14955
+- proto: VendingMachineSciDrobe
+ entities:
+ - uid: 5300
components:
- type: Transform
- pos: 85.5,68.5
+ pos: 36.5,26.5
parent: 2
- - uid: 14956
+- proto: VendingMachineSec
+ entities:
+ - uid: 36953
components:
- type: Transform
- pos: 87.5,67.5
+ pos: -10.5,33.5
parent: 2
- - uid: 14957
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 9657
components:
- type: Transform
- pos: 70.5,35.5
+ pos: -8.5,43.5
parent: 2
- - uid: 14959
+- proto: VendingMachineSeeds
+ entities:
+ - uid: 18480
components:
- type: Transform
- pos: 64.5,43.5
+ pos: -56.5,1.5
parent: 2
- - uid: 14960
+- proto: VendingMachineSnackBlue
+ entities:
+ - uid: 4858
components:
- type: Transform
- pos: 65.5,45.5
+ pos: 88.5,15.5
parent: 2
- - uid: 14961
+- proto: VendingMachineSovietSoda
+ entities:
+ - uid: 23725
components:
- type: Transform
- pos: 64.5,45.5
+ pos: 90.5,79.5
parent: 2
- - uid: 14962
+- proto: VendingMachineSpaceUp
+ entities:
+ - uid: 5301
components:
- type: Transform
- pos: 65.5,46.5
+ pos: 21.5,-11.5
parent: 2
- - uid: 14963
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 95
components:
- type: Transform
- pos: 65.5,47.5
+ pos: -10.5,62.5
parent: 2
- - uid: 14964
+ - uid: 16674
components:
- type: Transform
- pos: 67.5,50.5
+ pos: -24.5,30.5
parent: 2
- - uid: 14965
+ - uid: 32118
components:
- type: Transform
- pos: 83.5,47.5
+ pos: 92.5,79.5
parent: 2
- - uid: 14966
+- proto: VendingMachineTankDispenserEngineering
+ entities:
+ - uid: 1165
components:
- type: Transform
- pos: 81.5,47.5
+ pos: 79.5,-22.5
parent: 2
- - uid: 14967
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 981
components:
- type: Transform
- pos: 75.5,44.5
+ pos: 77.5,7.5
parent: 2
- - uid: 14968
+ - uid: 1576
components:
- type: Transform
- pos: 75.5,45.5
+ pos: 27.5,60.5
parent: 2
- - uid: 14969
+ - uid: 6029
components:
- type: Transform
- pos: 75.5,43.5
+ pos: 16.5,30.5
parent: 2
- - uid: 14970
+ - uid: 6030
components:
- type: Transform
- pos: 75.5,48.5
+ pos: 21.5,30.5
parent: 2
- - uid: 14971
+ - uid: 9056
components:
- type: Transform
- pos: 77.5,48.5
+ pos: -53.5,41.5
parent: 2
- - uid: 14973
+ - uid: 10406
components:
- type: Transform
- pos: 84.5,65.5
+ pos: -60.5,-33.5
parent: 2
- - uid: 14974
+ - uid: 11226
components:
- type: Transform
- pos: 82.5,65.5
+ pos: -17.5,37.5
parent: 2
- - uid: 14975
+ - uid: 11832
components:
- type: Transform
- pos: 79.5,65.5
+ pos: -27.5,-46.5
parent: 2
- - uid: 14976
+ - uid: 13646
components:
- type: Transform
- pos: 80.5,65.5
+ pos: 54.5,-37.5
parent: 2
- - uid: 14978
+ - uid: 18138
components:
- type: Transform
- pos: 77.5,65.5
+ pos: -3.5,68.5
parent: 2
- - uid: 14979
+ - uid: 23055
components:
- type: Transform
- pos: 72.5,47.5
+ pos: -36.5,37.5
parent: 2
- - uid: 14980
+ - uid: 32531
components:
- type: Transform
- pos: 70.5,49.5
+ pos: 105.5,55.5
parent: 2
- - uid: 14981
+ - uid: 38941
components:
- type: Transform
- pos: 55.5,33.5
+ pos: -72.5,27.5
parent: 2
- - uid: 14982
+- proto: VendingMachineTheater
+ entities:
+ - uid: 1521
components:
- type: Transform
- pos: 54.5,33.5
+ pos: -80.5,5.5
parent: 2
- - uid: 14984
+- proto: VendingMachineVendomat
+ entities:
+ - uid: 4542
components:
- type: Transform
- pos: 69.5,44.5
+ pos: 34.5,26.5
parent: 2
- - uid: 14985
+- proto: VendingMachineViroDrobe
+ entities:
+ - uid: 20889
components:
- type: Transform
- pos: 69.5,47.5
+ pos: -10.5,16.5
parent: 2
- - uid: 16101
+- proto: VendingMachineWallMedical
+ entities:
+ - uid: 2051
components:
- type: Transform
- pos: 69.5,49.5
+ pos: -5.5,15.5
parent: 2
- - uid: 16476
+ - uid: 2053
components:
- type: Transform
- pos: 71.5,49.5
+ pos: 28.5,-3.5
parent: 2
- - uid: 16485
+ - uid: 14198
components:
- type: Transform
- pos: 56.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-3.5
parent: 2
- - uid: 16577
+ - uid: 22077
components:
- type: Transform
- pos: 81.5,33.5
+ pos: 7.5,-8.5
parent: 2
- - uid: 17651
+- proto: VendingMachineWinter
+ entities:
+ - uid: 5160
components:
- type: Transform
- pos: 77.5,68.5
+ pos: 54.5,-11.5
parent: 2
- - uid: 18033
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 4832
components:
- type: Transform
- pos: 73.5,47.5
+ pos: 19.5,-23.5
parent: 2
- - uid: 18326
+ - uid: 11196
components:
- type: Transform
- pos: 71.5,47.5
+ pos: -67.5,3.5
parent: 2
- - uid: 19319
+ - uid: 17696
components:
- type: Transform
- pos: 79.5,41.5
+ pos: -51.5,38.5
parent: 2
- - uid: 19322
+- proto: ViolaInstrument
+ entities:
+ - uid: 37666
components:
- type: Transform
- pos: 64.5,37.5
+ pos: 93.82233,77.59163
parent: 2
- - uid: 19325
+- proto: ViolinInstrument
+ entities:
+ - uid: 13093
components:
- type: Transform
- pos: 79.5,39.5
+ pos: -69.972435,23.612196
parent: 2
- - uid: 19326
+- proto: WallMeat
+ entities:
+ - uid: 1465
components:
- type: Transform
- pos: 67.5,49.5
+ pos: -104.5,46.5
parent: 2
- - uid: 19336
+ - uid: 1467
components:
- type: Transform
- pos: 57.5,33.5
+ pos: -112.5,49.5
parent: 2
- - uid: 19716
+ - uid: 1515
components:
- type: Transform
- pos: 96.5,43.5
+ pos: -111.5,46.5
parent: 2
- - uid: 19725
+ - uid: 1540
components:
- type: Transform
- pos: 97.5,32.5
+ pos: -109.5,46.5
parent: 2
- - uid: 19726
+ - uid: 1578
components:
- type: Transform
- pos: 99.5,32.5
+ pos: -112.5,46.5
parent: 2
- - uid: 19727
+ - uid: 1579
components:
- type: Transform
- pos: 64.5,57.5
+ pos: -112.5,47.5
parent: 2
- - uid: 19728
+ - uid: 1580
components:
- type: Transform
- pos: 94.5,44.5
+ pos: -112.5,48.5
parent: 2
- - uid: 19729
+ - uid: 1593
components:
- type: Transform
- pos: 96.5,44.5
+ pos: -110.5,46.5
parent: 2
- - uid: 19894
+ - uid: 2685
components:
- type: Transform
- pos: 82.5,41.5
+ pos: -103.5,46.5
parent: 2
- - uid: 19899
+ - uid: 2721
components:
- type: Transform
- pos: 84.5,36.5
+ pos: -113.5,49.5
parent: 2
- - uid: 19940
+ - uid: 2732
components:
- type: Transform
- pos: -75.5,-7.5
+ pos: -113.5,50.5
parent: 2
- - uid: 20936
+ - uid: 3695
components:
- type: Transform
- pos: 96.5,36.5
+ pos: -117.5,49.5
parent: 2
- - uid: 20985
+ - uid: 4348
components:
- type: Transform
- pos: -77.5,-6.5
+ pos: -112.5,52.5
parent: 2
- - uid: 21034
+ - uid: 5046
components:
- type: Transform
- pos: 84.5,35.5
+ pos: -106.5,58.5
parent: 2
- - uid: 22371
+ - uid: 5091
components:
- type: Transform
- pos: 81.5,38.5
+ pos: -100.5,52.5
parent: 2
- - uid: 22378
+ - uid: 5410
components:
- type: Transform
- pos: 74.5,41.5
+ pos: -106.5,46.5
parent: 2
- - uid: 22398
+ - uid: 34037
components:
- type: Transform
- pos: -65.5,32.5
+ pos: -100.5,50.5
parent: 2
- - uid: 22399
+ - uid: 34809
components:
- type: Transform
- pos: -71.5,-1.5
+ pos: -107.5,58.5
parent: 2
- - uid: 22400
+ - uid: 34810
components:
- type: Transform
- pos: -77.5,-4.5
+ pos: -100.5,53.5
parent: 2
- - uid: 22401
+ - uid: 34812
components:
- type: Transform
- pos: -79.5,-2.5
+ pos: -100.5,51.5
parent: 2
- - uid: 22630
+ - uid: 35216
components:
- type: Transform
- pos: -75.5,-1.5
+ pos: -96.5,49.5
parent: 2
- - uid: 22633
+ - uid: 35592
components:
- type: Transform
- pos: -74.5,-1.5
+ pos: -94.5,46.5
parent: 2
- - uid: 22638
+ - uid: 35672
components:
- type: Transform
- pos: -72.5,-1.5
+ pos: -93.5,47.5
parent: 2
- - uid: 22639
+ - uid: 35912
components:
- type: Transform
- pos: -73.5,-1.5
+ pos: -112.5,53.5
parent: 2
- - uid: 22640
+ - uid: 36235
components:
- type: Transform
- pos: -74.5,-7.5
+ pos: -107.5,46.5
parent: 2
- - uid: 22641
+ - uid: 36242
components:
- type: Transform
- pos: -77.5,-5.5
+ pos: -95.5,51.5
parent: 2
- - uid: 22642
+ - uid: 36295
components:
- type: Transform
- pos: -78.5,-3.5
+ pos: -96.5,51.5
parent: 2
- - uid: 22643
+ - uid: 36296
components:
- type: Transform
- pos: -77.5,-3.5
+ pos: -105.5,58.5
parent: 2
- - uid: 22646
+ - uid: 36297
components:
- type: Transform
- pos: -77.5,-1.5
+ pos: -112.5,51.5
parent: 2
- - uid: 22647
+ - uid: 36414
components:
- type: Transform
- pos: -69.5,35.5
+ pos: -92.5,48.5
parent: 2
- - uid: 22652
+ - uid: 36670
components:
- type: Transform
- pos: -66.5,35.5
+ pos: -97.5,50.5
parent: 2
- - uid: 22653
+ - uid: 36671
components:
- type: Transform
- pos: -68.5,35.5
+ pos: -105.5,46.5
parent: 2
- - uid: 22655
+ - uid: 38208
components:
- type: Transform
- pos: -69.5,31.5
+ pos: -94.5,51.5
parent: 2
- - uid: 22752
+ - uid: 38209
components:
- type: Transform
- pos: 82.5,40.5
+ pos: -92.5,49.5
parent: 2
- - uid: 22753
+ - uid: 38213
components:
- type: Transform
- pos: 85.5,35.5
+ pos: -93.5,50.5
parent: 2
- - uid: 22770
+ - uid: 38216
components:
- type: Transform
- pos: -78.5,-1.5
+ pos: -95.5,47.5
parent: 2
- - uid: 23056
+ - uid: 38219
components:
- type: Transform
- pos: 53.5,63.5
+ pos: -96.5,48.5
parent: 2
- - uid: 23066
+ - uid: 38223
components:
- type: Transform
- pos: 69.5,63.5
+ pos: -101.5,42.5
parent: 2
- - uid: 23068
+ - uid: 38226
components:
- type: Transform
- pos: 67.5,63.5
+ pos: -100.5,41.5
parent: 2
- - uid: 23073
+ - uid: 38228
components:
- type: Transform
- pos: 82.5,42.5
+ pos: -102.5,42.5
parent: 2
- - uid: 23075
+ - uid: 38233
components:
- type: Transform
- pos: 59.5,47.5
+ pos: -100.5,40.5
parent: 2
- - uid: 23078
+ - uid: 38340
components:
- type: Transform
- pos: 59.5,42.5
+ pos: -103.5,41.5
parent: 2
- - uid: 23079
+ - uid: 38341
components:
- type: Transform
- pos: 53.5,35.5
+ pos: -103.5,39.5
parent: 2
- - uid: 23081
+ - uid: 38342
components:
- type: Transform
- pos: 71.5,27.5
+ pos: -104.5,40.5
parent: 2
- - uid: 23082
+ - uid: 38343
components:
- type: Transform
- pos: 67.5,66.5
+ pos: -101.5,39.5
parent: 2
- - uid: 23086
+ - uid: 38344
components:
- type: Transform
- pos: 76.5,27.5
+ pos: -102.5,38.5
parent: 2
- - uid: 23385
+ - uid: 38358
components:
- type: Transform
- pos: -76.5,-7.5
+ pos: -116.5,49.5
parent: 2
- - uid: 23424
+ - uid: 38360
components:
- type: Transform
- pos: 86.5,35.5
+ pos: -114.5,47.5
parent: 2
- - uid: 23448
+ - uid: 38361
components:
- type: Transform
- pos: 88.5,35.5
+ pos: -114.5,48.5
parent: 2
- - uid: 23480
+ - uid: 38379
components:
- type: Transform
- pos: -71.5,-5.5
+ pos: -115.5,49.5
parent: 2
- - uid: 23483
+ - uid: 38383
components:
- type: Transform
- pos: 59.5,44.5
+ pos: -114.5,46.5
parent: 2
- - uid: 23484
+ - uid: 38397
components:
- type: Transform
- pos: 76.5,29.5
+ pos: -118.5,48.5
parent: 2
- - uid: 23485
+ - uid: 38415
components:
- type: Transform
- pos: 82.5,39.5
+ pos: -115.5,45.5
parent: 2
- - uid: 23487
+ - uid: 38416
components:
- type: Transform
- pos: 69.5,33.5
+ pos: -116.5,44.5
parent: 2
- - uid: 23489
+ - uid: 38419
components:
- type: Transform
- pos: 53.5,36.5
+ pos: -118.5,46.5
parent: 2
- - uid: 23491
+ - uid: 38420
components:
- type: Transform
- pos: 91.5,42.5
+ pos: -118.5,47.5
parent: 2
- - uid: 23492
+ - uid: 38433
components:
- type: Transform
- pos: 90.5,35.5
+ pos: -117.5,45.5
parent: 2
- - uid: 23504
+- proto: WallmountTelevision
+ entities:
+ - uid: 5719
components:
- type: Transform
- pos: -71.5,-2.5
+ pos: 6.5,31.5
parent: 2
- - uid: 23505
+ - uid: 5757
components:
- type: Transform
- pos: -71.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-35.5
parent: 2
- - uid: 23506
+ - uid: 7123
components:
- type: Transform
- pos: -71.5,-3.5
+ pos: -35.5,-30.5
parent: 2
- - uid: 23507
+- proto: WallmountTelevisionFrame
+ entities:
+ - uid: 7057
components:
- type: Transform
- pos: -70.5,-5.5
+ pos: -32.5,-29.5
parent: 2
- - uid: 23508
+ - uid: 35004
components:
- type: Transform
- pos: -73.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,17.5
parent: 2
- - uid: 23509
+ - uid: 36599
components:
- type: Transform
- pos: -72.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 104.5,60.5
parent: 2
- - uid: 23516
+ - uid: 36616
components:
- type: Transform
- pos: -71.5,-7.5
+ pos: 102.5,62.5
parent: 2
- - uid: 23537
+ - uid: 36617
components:
- type: Transform
- pos: -66.5,29.5
+ pos: 100.5,62.5
parent: 2
- - uid: 23541
+- proto: WallNecropolis
+ entities:
+ - uid: 4385
components:
- type: Transform
- pos: -65.5,31.5
+ pos: 88.5,45.5
parent: 2
- - uid: 23543
+ - uid: 4412
components:
- type: Transform
- pos: -69.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,61.5
parent: 2
- - uid: 23589
+ - uid: 4442
components:
- type: Transform
- pos: -67.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,61.5
parent: 2
- - uid: 23590
+ - uid: 4458
components:
- type: Transform
- pos: -65.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,58.5
parent: 2
- - uid: 23591
+ - uid: 4459
components:
- type: Transform
- pos: -65.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,60.5
parent: 2
- - uid: 23703
+ - uid: 4466
components:
- type: Transform
- pos: 62.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,59.5
parent: 2
- - uid: 23704
+ - uid: 4498
components:
- type: Transform
- pos: 54.5,66.5
+ pos: 91.5,44.5
parent: 2
- - uid: 23706
+ - uid: 4508
components:
- type: Transform
- pos: 70.5,27.5
+ pos: 85.5,45.5
parent: 2
- - uid: 23716
+ - uid: 4513
components:
- type: Transform
- pos: 67.5,68.5
+ pos: 86.5,45.5
parent: 2
- - uid: 23729
+ - uid: 4518
components:
- type: Transform
- pos: 76.5,30.5
+ pos: 89.5,45.5
parent: 2
- - uid: 23730
+ - uid: 4636
components:
- type: Transform
- pos: 57.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,59.5
parent: 2
- - uid: 23733
+ - uid: 4637
components:
- type: Transform
- pos: 75.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,58.5
parent: 2
- - uid: 23734
+ - uid: 4665
components:
- type: Transform
- pos: 73.5,27.5
+ pos: 91.5,38.5
parent: 2
- - uid: 23736
+ - uid: 4769
components:
- type: Transform
- pos: 74.5,31.5
+ pos: 83.5,38.5
parent: 2
- - uid: 23737
+ - uid: 4771
components:
- type: Transform
- pos: 76.5,31.5
+ pos: 91.5,36.5
parent: 2
- - uid: 23738
+ - uid: 4772
components:
- type: Transform
- pos: 67.5,65.5
+ pos: 89.5,35.5
parent: 2
- - uid: 23739
+ - uid: 4783
components:
- type: Transform
- pos: 69.5,64.5
+ pos: 91.5,37.5
parent: 2
- - uid: 23753
+ - uid: 4797
components:
- type: Transform
- pos: 63.5,66.5
+ pos: 90.5,36.5
parent: 2
- - uid: 24081
+ - uid: 4806
components:
- type: Transform
- pos: -66.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,61.5
parent: 2
- - uid: 25067
+ - uid: 4845
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,34.5
+ pos: 69.5,60.5
parent: 2
- - uid: 25068
+ - uid: 4846
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,32.5
+ pos: 69.5,57.5
parent: 2
- - uid: 25172
+ - uid: 4860
components:
- type: Transform
- pos: 75.5,29.5
+ pos: 92.5,38.5
parent: 2
- - uid: 25203
+ - uid: 4907
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -70.5,33.5
+ pos: 69.5,59.5
parent: 2
- - uid: 26584
+ - uid: 4922
components:
- type: Transform
- pos: 70.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,61.5
parent: 2
- - uid: 26624
+ - uid: 4924
components:
- type: Transform
- pos: 70.5,25.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,61.5
parent: 2
- - uid: 27830
+ - uid: 5574
components:
- type: Transform
- pos: 87.5,26.5
+ pos: 83.5,42.5
parent: 2
- - uid: 27831
+ - uid: 6395
components:
- type: Transform
- pos: 89.5,27.5
+ pos: 91.5,43.5
parent: 2
- - uid: 27834
+ - uid: 6407
components:
- type: Transform
- pos: 52.5,41.5
+ pos: 82.5,38.5
parent: 2
- - uid: 27835
+ - uid: 6861
components:
- type: Transform
- pos: 73.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: 73.5,58.5
parent: 2
- - uid: 27836
+ - uid: 7880
components:
- type: Transform
- pos: 58.5,39.5
+ pos: 92.5,42.5
parent: 2
- - uid: 27837
+ - uid: 7884
components:
- type: Transform
- pos: 98.5,26.5
+ pos: 90.5,44.5
parent: 2
- - uid: 27838
+ - uid: 8015
components:
- type: Transform
- pos: 96.5,35.5
+ pos: 90.5,45.5
parent: 2
- - uid: 27839
+ - uid: 13824
components:
- type: Transform
- pos: 98.5,32.5
+ pos: 83.5,37.5
parent: 2
- - uid: 27840
+ - uid: 19894
components:
- type: Transform
- pos: 96.5,32.5
+ pos: 82.5,41.5
parent: 2
- - uid: 27841
+ - uid: 19899
components:
- type: Transform
- pos: 93.5,43.5
+ pos: 84.5,36.5
parent: 2
- - uid: 27842
+ - uid: 19940
components:
- type: Transform
- pos: 93.5,44.5
+ pos: -75.5,-7.5
parent: 2
- - uid: 27843
+ - uid: 19971
components:
- type: Transform
- pos: 95.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,54.5
parent: 2
- - uid: 27859
+ - uid: 20985
components:
- type: Transform
- pos: 53.5,40.5
+ pos: -77.5,-6.5
parent: 2
- - uid: 27867
+ - uid: 21025
components:
- type: Transform
- pos: 96.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 87.5,45.5
parent: 2
- - uid: 27873
+ - uid: 21034
components:
- type: Transform
- pos: 77.5,62.5
+ pos: 84.5,35.5
parent: 2
- - uid: 27874
+ - uid: 22399
components:
- type: Transform
- pos: 75.5,59.5
+ pos: -71.5,-1.5
parent: 2
- - uid: 27877
+ - uid: 22400
components:
- type: Transform
- pos: 77.5,58.5
+ pos: -77.5,-4.5
parent: 2
- - uid: 27878
+ - uid: 22401
components:
- type: Transform
- pos: 77.5,56.5
+ pos: -79.5,-2.5
parent: 2
- - uid: 27889
+ - uid: 22630
components:
- type: Transform
- pos: 75.5,58.5
+ pos: -75.5,-1.5
parent: 2
- - uid: 27890
+ - uid: 22633
components:
- type: Transform
- pos: 77.5,55.5
+ pos: -74.5,-1.5
parent: 2
- - uid: 27891
+ - uid: 22638
components:
- type: Transform
- pos: 77.5,54.5
+ pos: -72.5,-1.5
parent: 2
- - uid: 27892
+ - uid: 22639
components:
- type: Transform
- pos: 79.5,60.5
+ pos: -73.5,-1.5
parent: 2
- - uid: 27893
+ - uid: 22640
components:
- type: Transform
- pos: 75.5,57.5
+ pos: -74.5,-7.5
parent: 2
- - uid: 27894
+ - uid: 22641
components:
- type: Transform
- pos: 75.5,62.5
+ pos: -77.5,-5.5
parent: 2
- - uid: 27895
+ - uid: 22642
components:
- type: Transform
- pos: 75.5,56.5
+ pos: -78.5,-3.5
parent: 2
- - uid: 27896
+ - uid: 22643
components:
- type: Transform
- pos: 78.5,60.5
+ pos: -77.5,-3.5
parent: 2
- - uid: 27897
+ - uid: 22646
components:
- type: Transform
- pos: 76.5,62.5
+ pos: -77.5,-1.5
parent: 2
- - uid: 27898
+ - uid: 22752
components:
- type: Transform
- pos: 77.5,60.5
+ pos: 82.5,40.5
parent: 2
- - uid: 27899
+ - uid: 22753
components:
- type: Transform
- pos: 77.5,59.5
+ pos: 85.5,35.5
parent: 2
- - uid: 27900
+ - uid: 22770
components:
- type: Transform
- pos: 77.5,57.5
+ pos: -78.5,-1.5
parent: 2
- - uid: 27902
+ - uid: 23073
components:
- type: Transform
- pos: 54.5,60.5
+ pos: 82.5,42.5
parent: 2
- - uid: 27903
+ - uid: 23385
components:
- type: Transform
- pos: 65.5,61.5
+ pos: -76.5,-7.5
parent: 2
- - uid: 27904
+ - uid: 23424
components:
- type: Transform
- pos: 80.5,62.5
+ pos: 86.5,35.5
parent: 2
- - uid: 27907
+ - uid: 23448
components:
- type: Transform
- pos: 90.5,32.5
+ pos: 88.5,35.5
parent: 2
- - uid: 27909
+ - uid: 23485
components:
- type: Transform
- pos: 86.5,49.5
+ pos: 82.5,39.5
parent: 2
- - uid: 27910
+ - uid: 23491
components:
- type: Transform
- pos: 64.5,60.5
+ pos: 91.5,42.5
parent: 2
- - uid: 27912
+ - uid: 23492
components:
- type: Transform
- pos: 65.5,63.5
+ pos: 90.5,35.5
parent: 2
- - uid: 27913
+ - uid: 23504
components:
- type: Transform
- pos: 71.5,58.5
+ pos: -71.5,-2.5
parent: 2
- - uid: 27915
+ - uid: 23505
components:
- type: Transform
- pos: 94.5,38.5
+ pos: -71.5,-4.5
parent: 2
- - uid: 27918
+ - uid: 23506
components:
- type: Transform
- pos: 54.5,57.5
+ pos: -71.5,-3.5
parent: 2
- - uid: 27919
+ - uid: 23508
components:
- type: Transform
- pos: 90.5,48.5
+ pos: -73.5,-7.5
parent: 2
- - uid: 27920
+ - uid: 23509
components:
- type: Transform
- pos: 75.5,55.5
+ pos: -72.5,-7.5
parent: 2
- - uid: 27921
+ - uid: 23516
components:
- type: Transform
- pos: 62.5,60.5
+ pos: -71.5,-7.5
parent: 2
- - uid: 27924
+ - uid: 29853
components:
- type: Transform
- pos: 71.5,61.5
+ pos: 84.5,44.5
parent: 2
- - uid: 27928
+ - uid: 29857
components:
- type: Transform
- pos: 79.5,59.5
+ pos: 83.5,36.5
parent: 2
- - uid: 27930
+ - uid: 29859
components:
- type: Transform
- pos: 53.5,43.5
+ pos: 83.5,44.5
parent: 2
- - uid: 27935
+ - uid: 29860
components:
- type: Transform
- pos: 61.5,60.5
+ pos: 83.5,43.5
parent: 2
- - uid: 27936
+ - uid: 29861
components:
- type: Transform
- pos: 95.5,30.5
+ pos: 84.5,45.5
parent: 2
- - uid: 27937
+- proto: WallPaper
+ entities:
+ - uid: 13870
components:
- type: Transform
- pos: 55.5,60.5
+ pos: -68.5,-11.5
parent: 2
- - uid: 27938
+ - uid: 14248
components:
- type: Transform
- pos: 65.5,60.5
+ pos: -70.5,-11.5
parent: 2
- - uid: 27939
+ - uid: 14260
components:
- type: Transform
- pos: 65.5,59.5
+ pos: -67.5,-11.5
parent: 2
- - uid: 27940
+ - uid: 19849
components:
- type: Transform
- pos: 67.5,38.5
+ pos: -69.5,-11.5
parent: 2
- - uid: 27942
+ - uid: 22284
components:
- type: Transform
- pos: 99.5,29.5
+ pos: -70.5,-8.5
parent: 2
- - uid: 27945
+ - uid: 22286
components:
- type: Transform
- pos: 84.5,28.5
+ pos: -70.5,-9.5
parent: 2
- - uid: 27947
+ - uid: 22297
components:
- type: Transform
- pos: 90.5,28.5
+ pos: -66.5,-8.5
parent: 2
- - uid: 27976
+ - uid: 22321
components:
- type: Transform
- pos: 67.5,40.5
+ pos: -66.5,-10.5
parent: 2
- - uid: 27977
+ - uid: 22322
components:
- type: Transform
- pos: 72.5,62.5
+ pos: -66.5,-11.5
parent: 2
- - uid: 27978
+ - uid: 22323
components:
- type: Transform
- pos: 67.5,39.5
+ pos: -69.5,-7.5
parent: 2
- - uid: 27980
+ - uid: 22326
components:
- type: Transform
- pos: 93.5,42.5
+ pos: -66.5,-7.5
parent: 2
- - uid: 27981
+ - uid: 22327
components:
- type: Transform
- pos: 72.5,43.5
+ pos: -68.5,-7.5
parent: 2
- - uid: 27987
+ - uid: 22339
components:
- type: Transform
- pos: 96.5,30.5
+ pos: -70.5,-7.5
parent: 2
- - uid: 27988
+ - uid: 22340
components:
- type: Transform
- pos: 99.5,30.5
+ pos: -67.5,-7.5
parent: 2
- - uid: 27990
+ - uid: 23329
components:
- type: Transform
- pos: 89.5,48.5
+ pos: -70.5,-10.5
parent: 2
- - uid: 27991
+- proto: WallPlastitanium
+ entities:
+ - uid: 15978
components:
- type: Transform
- pos: 89.5,30.5
+ pos: 26.5,40.5
parent: 2
- - uid: 27992
+ - uid: 16148
components:
- type: Transform
- pos: 84.5,30.5
+ pos: 25.5,39.5
parent: 2
- - uid: 27993
+ - uid: 16149
components:
- type: Transform
- pos: 84.5,31.5
+ pos: 25.5,36.5
parent: 2
- - uid: 27994
+ - uid: 16150
components:
- type: Transform
- pos: 92.5,48.5
+ pos: 29.5,40.5
parent: 2
- - uid: 27995
+ - uid: 16245
components:
- type: Transform
- pos: 54.5,59.5
+ pos: 29.5,39.5
parent: 2
- - uid: 27996
+ - uid: 16246
components:
- type: Transform
- pos: 74.5,46.5
+ pos: 29.5,36.5
parent: 2
- - uid: 27997
+ - uid: 16275
components:
- type: Transform
- pos: 54.5,43.5
+ pos: 25.5,40.5
parent: 2
- - uid: 27999
+ - uid: 16276
components:
- type: Transform
- pos: 63.5,62.5
+ pos: 28.5,40.5
parent: 2
- - uid: 28006
+- proto: WallReinforced
+ entities:
+ - uid: 44
components:
- type: Transform
- pos: 96.5,39.5
+ pos: 20.5,47.5
parent: 2
- - uid: 28009
+ - uid: 47
components:
- type: Transform
- pos: 84.5,29.5
+ pos: -30.5,68.5
parent: 2
- - uid: 28010
+ - uid: 71
components:
- type: Transform
- pos: 56.5,69.5
+ pos: -9.5,-12.5
parent: 2
- - uid: 28011
+ - uid: 74
components:
- type: Transform
- pos: 92.5,30.5
+ pos: -12.5,-11.5
parent: 2
- - uid: 28012
+ - uid: 75
components:
- type: Transform
- pos: 93.5,34.5
+ pos: 20.5,44.5
parent: 2
- - uid: 28014
+ - uid: 76
components:
- type: Transform
- pos: 94.5,37.5
+ pos: -12.5,-12.5
parent: 2
- - uid: 28015
+ - uid: 83
components:
- type: Transform
- pos: 84.5,46.5
+ pos: -11.5,-12.5
parent: 2
- - uid: 28016
+ - uid: 98
components:
- type: Transform
- pos: 94.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-22.5
parent: 2
- - uid: 28017
+ - uid: 110
components:
- type: Transform
- pos: 73.5,46.5
+ pos: -10.5,-12.5
parent: 2
- - uid: 28019
+ - uid: 150
components:
- type: Transform
- pos: 98.5,34.5
+ pos: -54.5,52.5
parent: 2
- - uid: 28020
+ - uid: 164
components:
- type: Transform
- pos: 63.5,60.5
+ pos: -12.5,-8.5
parent: 2
- - uid: 28021
+ - uid: 165
components:
- type: Transform
- pos: 65.5,62.5
+ pos: 50.5,-32.5
parent: 2
- - uid: 28023
+ - uid: 172
components:
- type: Transform
- pos: 91.5,25.5
+ pos: -8.5,-12.5
parent: 2
- - uid: 28025
+ - uid: 180
components:
- type: Transform
- pos: 99.5,34.5
+ pos: -35.5,-4.5
parent: 2
- - uid: 28026
+ - uid: 197
components:
- type: Transform
- pos: 96.5,38.5
+ pos: -8.5,68.5
parent: 2
- - uid: 28029
+ - uid: 199
components:
- type: Transform
- pos: 92.5,34.5
+ pos: -12.5,-6.5
parent: 2
- - uid: 28030
+ - uid: 236
components:
- type: Transform
- pos: 84.5,47.5
+ pos: -12.5,-7.5
parent: 2
- - uid: 28031
+ - uid: 277
components:
- type: Transform
- pos: 86.5,31.5
+ pos: -47.5,-39.5
parent: 2
- - uid: 28032
+ - uid: 315
components:
- type: Transform
- pos: 96.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,17.5
parent: 2
- - uid: 28033
+ - uid: 318
components:
- type: Transform
- pos: 88.5,31.5
+ pos: -91.5,-3.5
parent: 2
- - uid: 28034
+ - uid: 321
components:
- type: Transform
- pos: 98.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: -89.5,6.5
parent: 2
- - uid: 28035
+ - uid: 340
components:
- type: Transform
- pos: 86.5,30.5
+ pos: -14.5,-47.5
parent: 2
- - uid: 28042
+ - uid: 342
components:
- type: Transform
- pos: 57.5,47.5
+ pos: 67.5,7.5
parent: 2
- - uid: 28045
+ - uid: 352
components:
- type: Transform
- pos: 92.5,46.5
+ pos: -33.5,37.5
parent: 2
- - uid: 28046
+ - uid: 364
components:
- type: Transform
- pos: 56.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,34.5
parent: 2
- - uid: 28048
+ - uid: 406
components:
- type: Transform
- pos: 56.5,41.5
+ pos: -35.5,-1.5
parent: 2
- - uid: 28049
+ - uid: 437
components:
- type: Transform
- pos: 58.5,35.5
+ pos: -35.5,-7.5
parent: 2
- - uid: 28050
+ - uid: 440
components:
- type: Transform
- pos: 55.5,41.5
+ pos: -63.5,-20.5
parent: 2
- - uid: 28249
+ - uid: 456
components:
- type: Transform
- pos: 56.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,34.5
parent: 2
- - uid: 28502
+ - uid: 553
components:
- type: Transform
- pos: 59.5,35.5
+ pos: -12.5,-10.5
parent: 2
- - uid: 28503
+ - uid: 555
components:
- type: Transform
- pos: 59.5,37.5
+ pos: -12.5,-9.5
parent: 2
- - uid: 28505
+ - uid: 576
components:
- type: Transform
- pos: 57.5,35.5
+ pos: -7.5,-10.5
parent: 2
- - uid: 28506
+ - uid: 588
components:
- type: Transform
- pos: 57.5,37.5
+ pos: -36.5,-10.5
parent: 2
- - uid: 28507
+ - uid: 593
components:
- type: Transform
- pos: 57.5,38.5
+ pos: -7.5,-9.5
parent: 2
- - uid: 28509
+ - uid: 594
components:
- type: Transform
- pos: 51.5,33.5
+ pos: -7.5,-12.5
parent: 2
- - uid: 28510
+ - uid: 595
components:
- type: Transform
- pos: 55.5,39.5
+ pos: -7.5,-11.5
parent: 2
- - uid: 28511
+ - uid: 596
components:
- type: Transform
- pos: 66.5,69.5
+ pos: -7.5,-6.5
parent: 2
- - uid: 29256
+ - uid: 597
components:
- type: Transform
- pos: 76.5,65.5
+ pos: -9.5,-6.5
parent: 2
- - uid: 29264
+ - uid: 601
components:
- type: Transform
- pos: 90.5,25.5
+ pos: 20.5,46.5
parent: 2
- - uid: 29267
+ - uid: 606
components:
- type: Transform
- pos: 79.5,64.5
+ pos: 28.5,41.5
parent: 2
- - uid: 29268
+ - uid: 622
components:
- type: Transform
- pos: 98.5,38.5
+ pos: 20.5,43.5
parent: 2
- - uid: 29270
+ - uid: 636
components:
- type: Transform
- pos: 67.5,69.5
+ pos: 83.5,9.5
parent: 2
- - uid: 29271
+ - uid: 710
components:
- type: Transform
- pos: 54.5,69.5
+ pos: -55.5,38.5
parent: 2
- - uid: 29274
+ - uid: 718
components:
- type: Transform
- pos: 59.5,69.5
+ pos: -35.5,-3.5
parent: 2
- - uid: 29275
+ - uid: 726
components:
- type: Transform
- pos: 82.5,45.5
+ pos: 69.5,8.5
parent: 2
- - uid: 29276
+ - uid: 734
components:
- type: Transform
- pos: 99.5,43.5
+ pos: -35.5,-2.5
parent: 2
- - uid: 29277
+ - uid: 736
components:
- type: Transform
- pos: 98.5,36.5
+ pos: -35.5,-8.5
parent: 2
- - uid: 29278
+ - uid: 737
components:
- type: Transform
- pos: 98.5,39.5
+ pos: -36.5,-9.5
parent: 2
- - uid: 29279
+ - uid: 741
components:
- type: Transform
- pos: 98.5,43.5
+ pos: -35.5,-6.5
parent: 2
- - uid: 29280
+ - uid: 744
components:
- type: Transform
- pos: 98.5,41.5
+ pos: -36.5,-39.5
parent: 2
- - uid: 29281
+ - uid: 752
components:
- type: Transform
- pos: 98.5,37.5
+ pos: 7.5,-19.5
parent: 2
- - uid: 29282
+ - uid: 758
components:
- type: Transform
- pos: 98.5,42.5
+ pos: -35.5,-5.5
parent: 2
- - uid: 29283
+ - uid: 764
components:
- type: Transform
- pos: 88.5,30.5
+ pos: -16.5,60.5
parent: 2
- - uid: 29284
+ - uid: 774
components:
- type: Transform
- pos: 88.5,32.5
+ pos: 19.5,-24.5
parent: 2
- - uid: 29285
+ - uid: 775
components:
- type: Transform
- pos: 99.5,28.5
+ pos: 24.5,-22.5
parent: 2
- - uid: 29302
+ - uid: 798
components:
- type: Transform
- pos: 90.5,30.5
+ pos: -43.5,57.5
parent: 2
- - uid: 29303
+ - uid: 804
components:
- type: Transform
- pos: 98.5,30.5
+ pos: 68.5,7.5
parent: 2
- - uid: 29308
+ - uid: 811
components:
- type: Transform
- pos: 81.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,69.5
parent: 2
- - uid: 29310
+ - uid: 822
components:
- type: Transform
- pos: 86.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,34.5
parent: 2
- - uid: 29311
+ - uid: 824
components:
- type: Transform
- pos: 88.5,28.5
+ pos: 30.5,47.5
parent: 2
- - uid: 29313
+ - uid: 836
components:
- type: Transform
- pos: 69.5,51.5
+ pos: 5.5,31.5
parent: 2
- - uid: 29317
+ - uid: 837
components:
- type: Transform
- pos: 71.5,37.5
+ pos: 15.5,23.5
parent: 2
- - uid: 29318
+ - uid: 838
components:
- type: Transform
- pos: 57.5,45.5
+ pos: 15.5,26.5
parent: 2
- - uid: 29319
+ - uid: 843
components:
- type: Transform
- pos: 54.5,58.5
+ pos: 22.5,23.5
parent: 2
- - uid: 29320
+ - uid: 845
components:
- type: Transform
- pos: 78.5,45.5
+ pos: 22.5,25.5
parent: 2
- - uid: 29323
+ - uid: 849
components:
- type: Transform
- pos: 65.5,58.5
+ pos: 16.5,22.5
parent: 2
- - uid: 29324
+ - uid: 984
components:
- type: Transform
- pos: 65.5,57.5
+ pos: -32.5,68.5
parent: 2
- - uid: 29325
+ - uid: 986
components:
- type: Transform
- pos: 75.5,47.5
+ pos: -7.5,65.5
parent: 2
- - uid: 29326
+ - uid: 1081
components:
- type: Transform
- pos: 80.5,43.5
+ pos: 4.5,31.5
parent: 2
- - uid: 29327
+ - uid: 1092
components:
- type: Transform
- pos: 77.5,45.5
+ pos: 66.5,7.5
parent: 2
- - uid: 29328
+ - uid: 1093
components:
- type: Transform
- pos: 79.5,45.5
+ pos: 65.5,8.5
parent: 2
- - uid: 29329
+ - uid: 1121
components:
- type: Transform
- pos: 79.5,43.5
+ pos: -53.5,-37.5
parent: 2
- - uid: 29330
+ - uid: 1238
components:
- type: Transform
- pos: 80.5,45.5
+ pos: -42.5,32.5
parent: 2
- - uid: 29331
+ - uid: 1262
components:
- type: Transform
- pos: 80.5,44.5
+ pos: -52.5,63.5
parent: 2
- - uid: 29332
+ - uid: 1346
components:
- type: Transform
- pos: 81.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,39.5
parent: 2
- - uid: 29333
+ - uid: 1463
components:
- type: Transform
- pos: 80.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,38.5
parent: 2
- - uid: 29334
+ - uid: 1464
components:
- type: Transform
- pos: 79.5,35.5
+ pos: -50.5,36.5
parent: 2
- - uid: 29335
+ - uid: 1466
components:
- type: Transform
- pos: 82.5,27.5
+ pos: -49.5,37.5
parent: 2
- - uid: 29336
+ - uid: 1574
components:
- type: Transform
- pos: 81.5,35.5
+ pos: 11.5,60.5
parent: 2
- - uid: 29337
+ - uid: 1583
components:
- type: Transform
- pos: 82.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-17.5
parent: 2
- - uid: 29338
+ - uid: 1660
components:
- type: Transform
- pos: 82.5,30.5
+ pos: 6.5,31.5
parent: 2
- - uid: 29339
+ - uid: 1675
components:
- type: Transform
- pos: 86.5,33.5
+ pos: -54.5,-37.5
parent: 2
- - uid: 29340
+ - uid: 1761
components:
- type: Transform
- pos: 79.5,63.5
+ pos: -65.5,-13.5
parent: 2
- - uid: 29341
+ - uid: 1768
components:
- type: Transform
- pos: 73.5,57.5
+ pos: 16.5,-23.5
parent: 2
- - uid: 29342
+ - uid: 1837
components:
- type: Transform
- pos: 55.5,69.5
+ pos: 15.5,24.5
parent: 2
- - uid: 29343
+ - uid: 1838
components:
- type: Transform
- pos: 73.5,62.5
+ pos: 15.5,25.5
parent: 2
- - uid: 29344
+ - uid: 1839
components:
- type: Transform
- pos: 73.5,60.5
+ pos: 5.5,26.5
parent: 2
- - uid: 29345
+ - uid: 1843
components:
- type: Transform
- pos: 73.5,61.5
+ pos: 7.5,31.5
parent: 2
- - uid: 29346
+ - uid: 1846
components:
- type: Transform
- pos: 73.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,28.5
parent: 2
- - uid: 29347
+ - uid: 1847
components:
- type: Transform
- pos: 75.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,44.5
parent: 2
- - uid: 29350
+ - uid: 1886
components:
- type: Transform
- pos: 55.5,38.5
+ pos: 3.5,31.5
parent: 2
- - uid: 29352
+ - uid: 1890
components:
- type: Transform
- pos: 73.5,58.5
+ pos: 4.5,26.5
parent: 2
- - uid: 29353
+ - uid: 1905
components:
- type: Transform
- pos: 67.5,60.5
+ pos: 14.5,26.5
parent: 2
- - uid: 29354
+ - uid: 1906
components:
- type: Transform
- pos: 67.5,61.5
+ pos: 15.5,27.5
parent: 2
- - uid: 29355
+ - uid: 1907
components:
- type: Transform
- pos: 67.5,59.5
+ pos: 10.5,26.5
parent: 2
- - uid: 29358
+ - uid: 1908
components:
- type: Transform
- pos: 55.5,40.5
+ pos: 13.5,26.5
parent: 2
- - uid: 29360
+ - uid: 1909
components:
- type: Transform
- pos: 70.5,56.5
+ pos: 15.5,30.5
parent: 2
- - uid: 29361
+ - uid: 1910
components:
- type: Transform
- pos: 67.5,62.5
+ pos: 22.5,24.5
parent: 2
- - uid: 29367
+ - uid: 1911
components:
- type: Transform
- pos: 72.5,56.5
+ pos: 15.5,28.5
parent: 2
- - uid: 29368
+ - uid: 1912
components:
- type: Transform
- pos: 71.5,56.5
+ pos: 15.5,31.5
parent: 2
- - uid: 29369
+ - uid: 1913
components:
- type: Transform
- pos: 87.5,28.5
+ pos: 13.5,31.5
parent: 2
- - uid: 29370
+ - uid: 1914
components:
- type: Transform
- pos: 57.5,43.5
+ pos: 14.5,31.5
parent: 2
- - uid: 29373
+ - uid: 1915
components:
- type: Transform
- pos: 97.5,28.5
+ pos: 11.5,31.5
parent: 2
- - uid: 29374
+ - uid: 1916
components:
- type: Transform
- pos: 96.5,28.5
+ pos: 12.5,31.5
parent: 2
- - uid: 29375
+ - uid: 1917
components:
- type: Transform
- pos: 98.5,28.5
+ pos: 9.5,31.5
parent: 2
- - uid: 29376
+ - uid: 1918
components:
- type: Transform
- pos: 82.5,26.5
+ pos: 10.5,31.5
parent: 2
- - uid: 29377
+ - uid: 1929
components:
- type: Transform
- pos: 82.5,32.5
+ pos: 3.5,26.5
parent: 2
- - uid: 29378
+ - uid: 1933
components:
- type: Transform
- pos: 82.5,31.5
+ pos: 6.5,26.5
parent: 2
- - uid: 29379
+ - uid: 1989
components:
- type: Transform
- pos: 82.5,33.5
+ pos: 21.5,22.5
parent: 2
- - uid: 29380
+ - uid: 1991
components:
- type: Transform
- pos: 71.5,60.5
+ pos: 22.5,22.5
parent: 2
- - uid: 29381
+ - uid: 1993
components:
- type: Transform
- pos: 71.5,59.5
+ pos: 22.5,26.5
parent: 2
- - uid: 29382
+ - uid: 1994
components:
- type: Transform
- pos: 83.5,26.5
+ pos: 22.5,27.5
parent: 2
- - uid: 29383
+ - uid: 1995
components:
- type: Transform
- pos: 88.5,33.5
+ pos: 22.5,28.5
parent: 2
- - uid: 29384
+ - uid: 1997
components:
- type: Transform
- pos: 87.5,33.5
+ pos: 22.5,30.5
parent: 2
- - uid: 29385
+ - uid: 1998
components:
- type: Transform
- pos: 94.5,33.5
+ pos: 22.5,31.5
parent: 2
- - uid: 29386
+ - uid: 1999
components:
- type: Transform
- pos: 82.5,28.5
+ pos: 21.5,31.5
parent: 2
- - uid: 29387
+ - uid: 2000
components:
- type: Transform
- pos: 80.5,29.5
+ pos: 20.5,31.5
parent: 2
- - uid: 29388
+ - uid: 2001
components:
- type: Transform
- pos: 80.5,28.5
+ pos: 19.5,31.5
parent: 2
- - uid: 29392
+ - uid: 2002
components:
- type: Transform
- pos: 81.5,28.5
+ pos: 18.5,31.5
parent: 2
- - uid: 29395
+ - uid: 2003
components:
- type: Transform
- pos: 94.5,30.5
+ pos: 17.5,31.5
parent: 2
- - uid: 29396
+ - uid: 2004
components:
- type: Transform
- pos: 91.5,30.5
+ pos: 16.5,31.5
parent: 2
- - uid: 29397
+ - uid: 2050
components:
- type: Transform
- pos: 93.5,30.5
+ pos: 84.5,22.5
parent: 2
- - uid: 29398
+ - uid: 2177
components:
- type: Transform
- pos: 97.5,30.5
+ pos: -42.5,-8.5
parent: 2
- - uid: 29399
+ - uid: 2185
components:
- type: Transform
- pos: 86.5,32.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,59.5
parent: 2
- - uid: 29406
+ - uid: 2219
components:
- type: Transform
- pos: 78.5,43.5
+ pos: -43.5,-7.5
parent: 2
- - uid: 29407
+ - uid: 2221
components:
- type: Transform
- pos: 80.5,34.5
+ pos: -1.5,-44.5
parent: 2
- - uid: 29408
+ - uid: 2235
components:
- type: Transform
- pos: 77.5,43.5
+ pos: 20.5,41.5
parent: 2
- - uid: 29409
+ - uid: 2240
components:
- type: Transform
- pos: 80.5,32.5
+ pos: 30.5,52.5
parent: 2
- - uid: 29410
+ - uid: 2242
components:
- type: Transform
- pos: 80.5,33.5
+ pos: 33.5,52.5
parent: 2
- - uid: 29411
+ - uid: 2243
components:
- type: Transform
- pos: 80.5,31.5
+ pos: 31.5,52.5
parent: 2
- - uid: 29412
+ - uid: 2273
components:
- type: Transform
- pos: 74.5,43.5
+ pos: 70.5,24.5
parent: 2
- - uid: 29413
+ - uid: 2294
components:
- type: Transform
- pos: 88.5,48.5
+ pos: -44.5,-6.5
parent: 2
- - uid: 29414
+ - uid: 2298
components:
- type: Transform
- pos: 73.5,43.5
+ pos: 48.5,1.5
parent: 2
- - uid: 29415
+ - uid: 2303
components:
- type: Transform
- pos: 83.5,33.5
+ pos: -38.5,-12.5
parent: 2
- - uid: 29416
+ - uid: 2304
components:
- type: Transform
- pos: 84.5,33.5
+ pos: -37.5,-12.5
parent: 2
- - uid: 29417
+ - uid: 2308
components:
- type: Transform
- pos: 85.5,33.5
+ pos: -44.5,-1.5
parent: 2
- - uid: 29418
+ - uid: 2313
components:
- type: Transform
- pos: 84.5,26.5
+ pos: -44.5,2.5
parent: 2
- - uid: 29419
+ - uid: 2316
components:
- type: Transform
- pos: 94.5,34.5
+ pos: -43.5,3.5
parent: 2
- - uid: 29420
+ - uid: 2320
components:
- type: Transform
- pos: 85.5,25.5
+ pos: -42.5,7.5
parent: 2
- - uid: 29421
+ - uid: 2322
components:
- type: Transform
- pos: 85.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-47.5
parent: 2
- - uid: 29422
+ - uid: 2325
components:
- type: Transform
- pos: 67.5,42.5
+ pos: -44.5,-5.5
parent: 2
- - uid: 29637
+ - uid: 2327
components:
- type: Transform
- pos: 67.5,41.5
+ pos: -43.5,-8.5
parent: 2
- - uid: 29840
+ - uid: 2330
components:
- type: Transform
- pos: 67.5,37.5
+ pos: 75.5,30.5
parent: 2
- - uid: 29849
+ - uid: 2362
components:
- type: Transform
- pos: 71.5,62.5
+ pos: -8.5,62.5
parent: 2
- - uid: 29850
+ - uid: 2366
components:
- type: Transform
- pos: 75.5,60.5
+ pos: -52.5,23.5
parent: 2
- - uid: 29851
+ - uid: 2379
components:
- type: Transform
- pos: 85.5,23.5
+ pos: 54.5,8.5
parent: 2
- - uid: 29853
+ - uid: 2406
components:
- type: Transform
- pos: 84.5,44.5
+ pos: 23.5,-37.5
parent: 2
- - uid: 29857
+ - uid: 2407
components:
- type: Transform
- pos: 83.5,36.5
+ pos: 12.5,-37.5
parent: 2
- - uid: 29859
+ - uid: 2408
components:
- type: Transform
- pos: 83.5,44.5
+ pos: 27.5,-35.5
parent: 2
- - uid: 29860
+ - uid: 2409
components:
- type: Transform
- pos: 83.5,43.5
+ pos: 28.5,-35.5
parent: 2
- - uid: 29861
+ - uid: 2411
components:
- type: Transform
- pos: 84.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,58.5
parent: 2
- - uid: 29862
+ - uid: 2420
components:
- type: Transform
- pos: 85.5,24.5
+ pos: -52.5,16.5
parent: 2
- - uid: 29863
+ - uid: 2432
components:
- type: Transform
- pos: 91.5,32.5
+ pos: 63.5,-32.5
parent: 2
- - uid: 29864
+ - uid: 2434
components:
- type: Transform
- pos: 92.5,25.5
+ pos: 62.5,-32.5
parent: 2
- - uid: 29865
+ - uid: 2437
components:
- type: Transform
- pos: 94.5,40.5
+ pos: -53.5,38.5
parent: 2
- - uid: 29866
+ - uid: 2441
components:
- type: Transform
- pos: 93.5,25.5
+ pos: 66.5,34.5
parent: 2
- - uid: 29867
+ - uid: 2450
components:
- type: Transform
- pos: 55.5,42.5
+ pos: -1.5,-49.5
parent: 2
- - uid: 29869
+ - uid: 2484
components:
- type: Transform
- pos: 96.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,34.5
parent: 2
- - uid: 29870
+ - uid: 2495
components:
- type: Transform
- pos: 96.5,40.5
+ pos: 4.5,-44.5
parent: 2
- - uid: 29872
+ - uid: 2502
components:
- type: Transform
- pos: 95.5,32.5
+ pos: -5.5,-44.5
parent: 2
- - uid: 29874
+ - uid: 2505
components:
- type: Transform
- pos: 92.5,32.5
+ pos: -28.5,65.5
parent: 2
- - uid: 29875
+ - uid: 2513
components:
- type: Transform
- pos: 96.5,37.5
+ pos: 38.5,52.5
parent: 2
- - uid: 29876
+ - uid: 2514
components:
- type: Transform
- pos: 96.5,41.5
+ pos: 51.5,46.5
parent: 2
- - uid: 29878
+ - uid: 2528
components:
- type: Transform
- pos: 85.5,28.5
+ pos: -28.5,56.5
parent: 2
- - uid: 29883
+ - uid: 2558
components:
- type: Transform
- pos: 85.5,27.5
+ pos: 8.5,-44.5
parent: 2
- - uid: 29900
+ - uid: 2579
components:
- type: Transform
- pos: 61.5,61.5
+ pos: 29.5,61.5
parent: 2
- - uid: 29901
+ - uid: 2591
components:
- type: Transform
- pos: 57.5,60.5
+ pos: 48.5,-6.5
parent: 2
- - uid: 29902
+ - uid: 2595
components:
- type: Transform
- pos: 60.5,61.5
+ pos: -29.5,63.5
parent: 2
- - uid: 29903
+ - uid: 2600
components:
- type: Transform
- pos: 57.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,60.5
parent: 2
- - uid: 29904
+ - uid: 2612
components:
- type: Transform
- pos: 59.5,61.5
+ pos: 30.5,44.5
parent: 2
- - uid: 29905
+ - uid: 2613
components:
- type: Transform
- pos: 58.5,61.5
+ pos: 16.5,44.5
parent: 2
- - uid: 29906
+ - uid: 2614
components:
- type: Transform
- pos: 67.5,56.5
+ pos: 14.5,41.5
parent: 2
- - uid: 29933
+ - uid: 2624
components:
- type: Transform
- pos: 67.5,57.5
+ pos: 8.5,42.5
parent: 2
- - uid: 29934
+ - uid: 2625
components:
- type: Transform
- pos: 67.5,58.5
+ pos: 12.5,57.5
parent: 2
- - uid: 29936
+ - uid: 2631
components:
- type: Transform
- pos: 69.5,61.5
+ pos: 20.5,42.5
parent: 2
- - uid: 29937
+ - uid: 2635
components:
- type: Transform
- pos: 69.5,62.5
+ pos: 15.5,41.5
parent: 2
- - uid: 29938
+ - uid: 2638
components:
- type: Transform
- pos: 69.5,59.5
+ pos: -36.5,54.5
parent: 2
- - uid: 29939
+ - uid: 2651
components:
- type: Transform
- pos: 69.5,60.5
+ pos: -28.5,66.5
parent: 2
- - uid: 29940
+ - uid: 2662
components:
- type: Transform
- pos: 56.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,44.5
parent: 2
- - uid: 29951
+ - uid: 2666
components:
- type: Transform
- pos: 83.5,45.5
+ pos: 24.5,57.5
parent: 2
- - uid: 30102
+ - uid: 2667
components:
- type: Transform
- pos: 93.5,32.5
+ pos: 4.5,48.5
parent: 2
- - uid: 30103
+ - uid: 2669
components:
- type: Transform
- pos: 94.5,32.5
+ pos: 26.5,41.5
parent: 2
- - uid: 30104
+ - uid: 2670
components:
- type: Transform
- pos: 89.5,28.5
+ pos: 25.5,47.5
parent: 2
- - uid: 30107
+ - uid: 2675
components:
- type: Transform
- pos: 69.5,55.5
+ pos: 8.5,46.5
parent: 2
- - uid: 30108
+ - uid: 2682
components:
- type: Transform
- pos: 64.5,55.5
+ pos: 24.5,48.5
parent: 2
- - uid: 30109
+ - uid: 2688
components:
- type: Transform
- pos: 69.5,56.5
+ pos: 15.5,40.5
parent: 2
- - uid: 30110
+ - uid: 2689
components:
- type: Transform
- pos: 66.5,55.5
+ pos: 15.5,37.5
parent: 2
- - uid: 30111
+ - uid: 2691
components:
- type: Transform
- pos: 65.5,55.5
+ pos: 8.5,41.5
parent: 2
- - uid: 30112
+ - uid: 2694
components:
- type: Transform
- pos: 67.5,55.5
+ pos: 16.5,41.5
parent: 2
- - uid: 30113
+ - uid: 2697
components:
- type: Transform
- pos: 69.5,57.5
+ pos: 21.5,47.5
parent: 2
- - uid: 30114
+ - uid: 2718
components:
- type: Transform
- pos: 69.5,58.5
+ pos: -0.5,37.5
parent: 2
- - uid: 30115
+ - uid: 2729
components:
- type: Transform
- pos: 56.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-0.5
parent: 2
- - uid: 30116
+ - uid: 2736
components:
- type: Transform
- pos: 60.5,63.5
+ pos: 30.5,53.5
parent: 2
- - uid: 30117
+ - uid: 2738
components:
- type: Transform
- pos: 57.5,63.5
+ pos: 27.5,47.5
parent: 2
- - uid: 30118
+ - uid: 2741
components:
- type: Transform
- pos: 58.5,63.5
+ pos: 25.5,57.5
parent: 2
- - uid: 30119
+ - uid: 2743
components:
- type: Transform
- pos: 61.5,63.5
+ pos: 26.5,47.5
parent: 2
- - uid: 30120
+ - uid: 2744
components:
- type: Transform
- pos: 59.5,63.5
+ pos: 20.5,48.5
parent: 2
- - uid: 30121
+ - uid: 2745
components:
- type: Transform
- pos: 54.5,68.5
+ pos: 16.5,49.5
parent: 2
- - uid: 30122
+ - uid: 2746
components:
- type: Transform
- pos: 62.5,63.5
+ pos: 16.5,45.5
parent: 2
- - uid: 30123
+ - uid: 2747
components:
- type: Transform
- pos: 54.5,67.5
+ pos: 16.5,46.5
parent: 2
- - uid: 30124
+ - uid: 2766
components:
- type: Transform
- pos: 87.5,25.5
+ pos: -9.5,-53.5
parent: 2
- - uid: 30125
+ - uid: 2768
components:
- type: Transform
- pos: 87.5,24.5
+ pos: 30.5,57.5
parent: 2
- - uid: 30175
+ - uid: 2769
components:
- type: Transform
- pos: 65.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,60.5
parent: 2
- - uid: 30176
+ - uid: 2773
components:
- type: Transform
- pos: 60.5,33.5
+ pos: 29.5,57.5
parent: 2
- - uid: 30177
+ - uid: 2777
components:
- type: Transform
- pos: 61.5,34.5
+ pos: 28.5,47.5
parent: 2
- - uid: 30655
+ - uid: 2778
components:
- type: Transform
- pos: 63.5,33.5
+ pos: 29.5,47.5
parent: 2
- - uid: 30690
+ - uid: 2795
components:
- type: Transform
- pos: 63.5,34.5
+ pos: -11.5,46.5
parent: 2
- - uid: 30693
+ - uid: 2806
components:
- type: Transform
- pos: 61.5,33.5
+ pos: 23.5,53.5
parent: 2
- - uid: 30701
+ - uid: 2807
components:
- type: Transform
- pos: 59.5,33.5
+ pos: 4.5,57.5
parent: 2
- - uid: 30702
+ - uid: 2808
components:
- type: Transform
- pos: 63.5,35.5
+ pos: 24.5,53.5
parent: 2
- - uid: 30706
+ - uid: 2809
components:
- type: Transform
- pos: 64.5,35.5
+ pos: 23.5,52.5
parent: 2
- - uid: 30751
+ - uid: 2810
components:
- type: Transform
- pos: 66.5,35.5
+ pos: -3.5,23.5
parent: 2
- - uid: 30752
+ - uid: 2811
components:
- type: Transform
- pos: 63.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,42.5
parent: 2
- - uid: 30976
+ - uid: 2812
components:
- type: Transform
- pos: 53.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,47.5
parent: 2
- - uid: 30977
+ - uid: 2813
components:
- type: Transform
- pos: 57.5,46.5
+ pos: -3.5,28.5
parent: 2
- - uid: 31303
+ - uid: 2814
components:
- type: Transform
- pos: 85.5,21.5
+ pos: -3.5,24.5
parent: 2
- - uid: 31606
+ - uid: 2819
components:
- type: Transform
- pos: 57.5,39.5
+ pos: -3.5,22.5
parent: 2
- - uid: 31607
+ - uid: 2821
components:
- type: Transform
- pos: 55.5,37.5
+ pos: -3.5,32.5
parent: 2
- - uid: 31608
+ - uid: 2823
components:
- type: Transform
- pos: 58.5,33.5
+ pos: 30.5,43.5
parent: 2
- - uid: 31609
+ - uid: 2824
components:
- type: Transform
- pos: 57.5,41.5
+ pos: 30.5,42.5
parent: 2
- - uid: 31610
+ - uid: 2827
components:
- type: Transform
- pos: 55.5,43.5
+ pos: 26.5,34.5
parent: 2
- - uid: 31629
+ - uid: 2831
components:
- type: Transform
- pos: 60.5,66.5
+ pos: 81.5,-7.5
parent: 2
- - uid: 31630
+ - uid: 2832
components:
- type: Transform
- pos: 72.5,27.5
+ pos: 72.5,-24.5
parent: 2
- - uid: 32546
+ - uid: 2841
components:
- type: Transform
- pos: 73.5,42.5
+ pos: 23.5,34.5
parent: 2
- - uid: 32585
+ - uid: 2842
components:
- type: Transform
- pos: 53.5,44.5
+ pos: 22.5,34.5
parent: 2
-- proto: WallPlastitanium
- entities:
- - uid: 15978
+ - uid: 2843
components:
- type: Transform
- pos: 26.5,40.5
+ pos: 24.5,34.5
parent: 2
- - uid: 16148
+ - uid: 2845
components:
- type: Transform
- pos: 25.5,39.5
+ pos: 25.5,34.5
parent: 2
- - uid: 16149
+ - uid: 2847
components:
- type: Transform
- pos: 25.5,36.5
+ pos: 12.5,54.5
parent: 2
- - uid: 16150
+ - uid: 2849
components:
- type: Transform
- pos: 29.5,40.5
+ pos: 32.5,42.5
parent: 2
- - uid: 16245
+ - uid: 2852
components:
- type: Transform
- pos: 29.5,39.5
+ pos: 3.5,45.5
parent: 2
- - uid: 16246
+ - uid: 2853
components:
- type: Transform
- pos: 29.5,36.5
+ pos: 3.5,46.5
parent: 2
- - uid: 16275
+ - uid: 2868
components:
- type: Transform
- pos: 25.5,40.5
+ pos: -3.5,45.5
parent: 2
- - uid: 16276
+ - uid: 2870
components:
- type: Transform
- pos: 28.5,40.5
+ pos: 16.5,42.5
parent: 2
-- proto: WallReinforced
- entities:
- - uid: 44
+ - uid: 2871
components:
- type: Transform
- pos: 20.5,47.5
+ pos: 20.5,50.5
parent: 2
- - uid: 47
+ - uid: 2872
components:
- type: Transform
- pos: -30.5,68.5
+ pos: 15.5,34.5
parent: 2
- - uid: 50
+ - uid: 2874
components:
- type: Transform
- pos: 71.5,24.5
+ pos: 17.5,34.5
parent: 2
- - uid: 71
+ - uid: 2883
components:
- type: Transform
- pos: -9.5,-12.5
+ pos: 33.5,34.5
parent: 2
- - uid: 74
+ - uid: 2887
components:
- type: Transform
- pos: -12.5,-11.5
+ pos: 70.5,-27.5
parent: 2
- - uid: 75
+ - uid: 2893
components:
- type: Transform
- pos: 20.5,44.5
+ pos: 68.5,-29.5
parent: 2
- - uid: 76
+ - uid: 2898
components:
- type: Transform
- pos: -12.5,-12.5
+ pos: 71.5,-26.5
parent: 2
- - uid: 83
+ - uid: 2899
components:
- type: Transform
- pos: -11.5,-12.5
+ pos: 80.5,-8.5
parent: 2
- - uid: 98
+ - uid: 2903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-3.5
parent: 2
- - uid: 110
+ - uid: 2912
components:
- type: Transform
- pos: -10.5,-12.5
+ pos: 69.5,-28.5
parent: 2
- - uid: 116
+ - uid: 2919
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 98.5,63.5
+ pos: 71.5,-25.5
parent: 2
- - uid: 134
+ - uid: 3003
components:
- type: Transform
- pos: -28.5,50.5
+ pos: 13.5,51.5
parent: 2
- - uid: 150
+ - uid: 3005
components:
- type: Transform
- pos: -54.5,52.5
+ pos: 28.5,34.5
parent: 2
- - uid: 164
+ - uid: 3006
components:
- type: Transform
- pos: -12.5,-8.5
+ pos: 27.5,34.5
parent: 2
- - uid: 172
+ - uid: 3007
components:
- type: Transform
- pos: -8.5,-12.5
+ pos: 30.5,34.5
parent: 2
- - uid: 180
+ - uid: 3008
components:
- type: Transform
- pos: -35.5,-4.5
+ pos: 29.5,34.5
parent: 2
- - uid: 182
+ - uid: 3009
components:
- type: Transform
- pos: -34.5,0.5
+ pos: 19.5,34.5
parent: 2
- - uid: 197
+ - uid: 3015
components:
- type: Transform
- pos: -8.5,68.5
+ pos: 8.5,34.5
parent: 2
- - uid: 199
+ - uid: 3017
components:
- type: Transform
- pos: -12.5,-6.5
+ pos: 14.5,34.5
parent: 2
- - uid: 203
+ - uid: 3020
components:
- type: Transform
- pos: -34.5,1.5
+ pos: 10.5,34.5
parent: 2
- - uid: 236
+ - uid: 3029
components:
- type: Transform
- pos: -12.5,-7.5
+ pos: 65.5,-30.5
parent: 2
- - uid: 277
+ - uid: 3031
components:
- type: Transform
- pos: -47.5,-39.5
+ pos: -63.5,-32.5
parent: 2
- - uid: 293
+ - uid: 3035
components:
- type: Transform
- pos: -20.5,52.5
+ pos: 11.5,34.5
parent: 2
- - uid: 315
+ - uid: 3044
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,17.5
+ pos: 12.5,34.5
parent: 2
- - uid: 318
+ - uid: 3045
components:
- type: Transform
- pos: -91.5,-3.5
+ pos: 21.5,34.5
parent: 2
- - uid: 321
+ - uid: 3046
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -89.5,6.5
+ pos: 3.5,43.5
parent: 2
- - uid: 336
+ - uid: 3047
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,31.5
+ pos: 6.5,43.5
parent: 2
- - uid: 342
+ - uid: 3064
components:
- type: Transform
- pos: 67.5,7.5
+ pos: -77.5,22.5
parent: 2
- - uid: 406
+ - uid: 3097
components:
- type: Transform
- pos: -35.5,-1.5
+ pos: -61.5,-32.5
parent: 2
- - uid: 437
+ - uid: 3099
components:
- type: Transform
- pos: -35.5,-7.5
+ pos: -62.5,-32.5
parent: 2
- - uid: 440
+ - uid: 3100
components:
- type: Transform
- pos: -63.5,-20.5
+ pos: -57.5,-32.5
parent: 2
- - uid: 553
+ - uid: 3102
components:
- type: Transform
- pos: -12.5,-10.5
+ pos: -59.5,-32.5
parent: 2
- - uid: 555
+ - uid: 3103
components:
- type: Transform
- pos: -12.5,-9.5
+ pos: 23.5,-33.5
parent: 2
- - uid: 569
+ - uid: 3116
components:
- type: Transform
- pos: -43.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-26.5
parent: 2
- - uid: 576
+ - uid: 3122
components:
- type: Transform
- pos: -7.5,-10.5
+ pos: 5.5,-20.5
parent: 2
- - uid: 588
+ - uid: 3123
components:
- type: Transform
- pos: -36.5,-10.5
+ pos: 9.5,-21.5
parent: 2
- - uid: 593
+ - uid: 3130
components:
- type: Transform
- pos: -7.5,-9.5
+ pos: 66.5,-30.5
parent: 2
- - uid: 594
+ - uid: 3136
components:
- type: Transform
- pos: -7.5,-12.5
+ pos: 23.5,-34.5
parent: 2
- - uid: 595
+ - uid: 3142
components:
- type: Transform
- pos: -7.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,10.5
parent: 2
- - uid: 596
+ - uid: 3147
components:
- type: Transform
- pos: -7.5,-6.5
+ pos: 55.5,44.5
parent: 2
- - uid: 597
+ - uid: 3157
components:
- type: Transform
- pos: -9.5,-6.5
+ pos: 8.5,-39.5
parent: 2
- - uid: 601
+ - uid: 3158
components:
- type: Transform
- pos: 20.5,46.5
+ pos: 11.5,-38.5
parent: 2
- - uid: 606
+ - uid: 3160
components:
- type: Transform
- pos: 28.5,41.5
+ pos: -57.5,-36.5
parent: 2
- - uid: 622
+ - uid: 3165
components:
- type: Transform
- pos: 20.5,43.5
+ pos: 22.5,-37.5
parent: 2
- - uid: 636
+ - uid: 3199
components:
- type: Transform
- pos: 83.5,9.5
+ pos: 83.5,10.5
parent: 2
- - uid: 710
+ - uid: 3200
components:
- type: Transform
- pos: -55.5,38.5
+ pos: -42.5,-9.5
parent: 2
- - uid: 718
+ - uid: 3203
components:
- type: Transform
- pos: -35.5,-3.5
+ pos: 8.5,43.5
parent: 2
- - uid: 725
+ - uid: 3204
components:
- type: Transform
- pos: -6.5,-43.5
+ pos: 7.5,43.5
parent: 2
- - uid: 726
+ - uid: 3215
components:
- type: Transform
- pos: 69.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,10.5
parent: 2
- - uid: 734
+ - uid: 3218
components:
- type: Transform
- pos: -35.5,-2.5
+ pos: 16.5,34.5
parent: 2
- - uid: 736
+ - uid: 3220
components:
- type: Transform
- pos: -35.5,-8.5
+ pos: 8.5,44.5
parent: 2
- - uid: 737
+ - uid: 3224
components:
- type: Transform
- pos: -36.5,-9.5
+ pos: 20.5,34.5
parent: 2
- - uid: 741
+ - uid: 3254
components:
- type: Transform
- pos: -35.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-43.5
parent: 2
- - uid: 757
+ - uid: 3266
components:
- type: Transform
- pos: -34.5,-0.5
+ pos: -31.5,-24.5
parent: 2
- - uid: 758
+ - uid: 3267
components:
- type: Transform
- pos: -35.5,-5.5
+ pos: -44.5,57.5
parent: 2
- - uid: 764
+ - uid: 3269
components:
- type: Transform
- pos: -16.5,60.5
+ pos: -31.5,-23.5
parent: 2
- - uid: 798
+ - uid: 3271
components:
- type: Transform
- pos: -43.5,57.5
+ pos: -31.5,-22.5
parent: 2
- - uid: 799
+ - uid: 3277
components:
- type: Transform
- pos: -29.5,-4.5
+ pos: -3.5,47.5
parent: 2
- - uid: 804
+ - uid: 3301
components:
- type: Transform
- pos: 68.5,7.5
+ pos: 23.5,-35.5
parent: 2
- - uid: 822
+ - uid: 3310
components:
- type: Transform
- pos: 30.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-25.5
parent: 2
- - uid: 824
+ - uid: 3334
components:
- type: Transform
- pos: 30.5,47.5
+ pos: 64.5,-30.5
parent: 2
- - uid: 836
+ - uid: 3336
components:
- type: Transform
- pos: 5.5,31.5
+ pos: 32.5,34.5
parent: 2
- - uid: 837
+ - uid: 3337
components:
- type: Transform
- pos: 15.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-41.5
parent: 2
- - uid: 838
+ - uid: 3341
components:
- type: Transform
- pos: 15.5,26.5
+ pos: 12.5,53.5
parent: 2
- - uid: 843
+ - uid: 3362
components:
- type: Transform
- pos: 22.5,23.5
+ pos: 16.5,-18.5
parent: 2
- - uid: 845
+ - uid: 3394
components:
- type: Transform
- pos: 22.5,25.5
+ pos: 15.5,22.5
parent: 2
- - uid: 849
+ - uid: 3395
components:
- type: Transform
- pos: 16.5,22.5
+ pos: 39.5,-35.5
parent: 2
- - uid: 981
+ - uid: 3397
components:
- type: Transform
- pos: -41.5,61.5
+ pos: -40.5,60.5
parent: 2
- - uid: 984
+ - uid: 3400
components:
- type: Transform
- pos: -32.5,68.5
+ pos: -40.5,58.5
parent: 2
- - uid: 986
+ - uid: 3407
components:
- type: Transform
- pos: -7.5,65.5
+ pos: 16.5,-19.5
parent: 2
- - uid: 1081
+ - uid: 3431
components:
- type: Transform
- pos: 4.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,59.5
parent: 2
- - uid: 1092
+ - uid: 3436
components:
- type: Transform
- pos: 66.5,7.5
+ pos: 73.5,-22.5
parent: 2
- - uid: 1093
+ - uid: 3437
components:
- type: Transform
- pos: 65.5,8.5
+ pos: 72.5,-22.5
parent: 2
- - uid: 1121
+ - uid: 3502
components:
- type: Transform
- pos: -53.5,-37.5
+ pos: 23.5,-36.5
parent: 2
- - uid: 1238
+ - uid: 3535
components:
- type: Transform
- pos: -42.5,32.5
+ pos: 40.5,-35.5
parent: 2
- - uid: 1262
+ - uid: 3552
components:
- type: Transform
- pos: -52.5,63.5
+ pos: -34.5,-38.5
parent: 2
- - uid: 1574
+ - uid: 3573
components:
- type: Transform
- pos: 11.5,60.5
+ pos: 40.5,-7.5
parent: 2
- - uid: 1576
+ - uid: 3574
components:
- type: Transform
- pos: 11.5,61.5
+ pos: 40.5,6.5
parent: 2
- - uid: 1660
+ - uid: 3575
components:
- type: Transform
- pos: 6.5,31.5
+ pos: 40.5,3.5
parent: 2
- - uid: 1669
+ - uid: 3576
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,35.5
+ pos: 40.5,7.5
parent: 2
- - uid: 1673
+ - uid: 3577
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,25.5
+ pos: 40.5,5.5
parent: 2
- - uid: 1675
+ - uid: 3578
components:
- type: Transform
- pos: -54.5,-37.5
+ pos: 40.5,4.5
parent: 2
- - uid: 1692
+ - uid: 3579
components:
- type: Transform
- pos: 4.5,51.5
+ pos: 40.5,-9.5
parent: 2
- - uid: 1761
+ - uid: 3580
components:
- type: Transform
- pos: -65.5,-13.5
+ pos: 40.5,2.5
parent: 2
- - uid: 1837
+ - uid: 3581
components:
- type: Transform
- pos: 15.5,24.5
+ pos: -60.5,-32.5
parent: 2
- - uid: 1838
+ - uid: 3586
components:
- type: Transform
- pos: 15.5,25.5
+ pos: 40.5,-11.5
parent: 2
- - uid: 1839
+ - uid: 3587
components:
- type: Transform
- pos: 5.5,26.5
+ pos: 40.5,-8.5
parent: 2
- - uid: 1843
+ - uid: 3588
components:
- type: Transform
- pos: 7.5,31.5
+ pos: 40.5,8.5
parent: 2
- - uid: 1886
+ - uid: 3589
components:
- type: Transform
- pos: 3.5,31.5
+ pos: 40.5,-10.5
parent: 2
- - uid: 1890
+ - uid: 3591
components:
- type: Transform
- pos: 4.5,26.5
+ pos: 40.5,9.5
parent: 2
- - uid: 1905
+ - uid: 3592
components:
- type: Transform
- pos: 14.5,26.5
+ pos: 40.5,11.5
parent: 2
- - uid: 1906
+ - uid: 3593
components:
- type: Transform
- pos: 15.5,27.5
+ pos: 40.5,-3.5
parent: 2
- - uid: 1907
+ - uid: 3594
components:
- type: Transform
- pos: 10.5,26.5
+ pos: 40.5,-5.5
parent: 2
- - uid: 1908
+ - uid: 3595
components:
- type: Transform
- pos: 13.5,26.5
+ pos: 40.5,-2.5
parent: 2
- - uid: 1909
+ - uid: 3596
components:
- type: Transform
- pos: 15.5,30.5
+ pos: 40.5,-6.5
parent: 2
- - uid: 1910
+ - uid: 3597
components:
- type: Transform
- pos: 22.5,24.5
+ pos: 40.5,-4.5
parent: 2
- - uid: 1911
+ - uid: 3598
components:
- type: Transform
- pos: 15.5,28.5
+ pos: 40.5,12.5
parent: 2
- - uid: 1912
+ - uid: 3604
components:
- type: Transform
- pos: 15.5,31.5
+ pos: -94.5,27.5
parent: 2
- - uid: 1913
+ - uid: 3606
components:
- type: Transform
- pos: 13.5,31.5
+ pos: -93.5,-7.5
parent: 2
- - uid: 1914
+ - uid: 3608
components:
- type: Transform
- pos: 14.5,31.5
+ pos: -93.5,-6.5
parent: 2
- - uid: 1915
+ - uid: 3609
components:
- type: Transform
- pos: 11.5,31.5
+ pos: -95.5,29.5
parent: 2
- - uid: 1916
+ - uid: 3611
components:
- type: Transform
- pos: 12.5,31.5
+ pos: 45.5,16.5
parent: 2
- - uid: 1917
+ - uid: 3612
components:
- type: Transform
- pos: 9.5,31.5
+ pos: 48.5,0.5
parent: 2
- - uid: 1918
+ - uid: 3615
components:
- type: Transform
- pos: 10.5,31.5
+ pos: 48.5,-10.5
parent: 2
- - uid: 1929
+ - uid: 3617
components:
- type: Transform
- pos: 3.5,26.5
+ pos: 48.5,-9.5
parent: 2
- - uid: 1933
+ - uid: 3620
components:
- type: Transform
- pos: 6.5,26.5
+ pos: 47.5,6.5
parent: 2
- - uid: 1989
+ - uid: 3622
components:
- type: Transform
- pos: 21.5,22.5
+ pos: 47.5,2.5
parent: 2
- - uid: 1991
+ - uid: 3623
components:
- type: Transform
- pos: 22.5,22.5
+ pos: 47.5,9.5
parent: 2
- - uid: 1993
+ - uid: 3624
components:
- type: Transform
- pos: 22.5,26.5
+ pos: 47.5,8.5
parent: 2
- - uid: 1994
+ - uid: 3625
components:
- type: Transform
- pos: 22.5,27.5
+ pos: 47.5,7.5
parent: 2
- - uid: 1995
+ - uid: 3634
components:
- type: Transform
- pos: 22.5,28.5
+ pos: 44.5,-14.5
parent: 2
- - uid: 1997
+ - uid: 3635
components:
- type: Transform
- pos: 22.5,30.5
+ pos: 39.5,-12.5
parent: 2
- - uid: 1998
+ - uid: 3637
components:
- type: Transform
- pos: 22.5,31.5
+ pos: 40.5,-14.5
parent: 2
- - uid: 1999
+ - uid: 3653
components:
- type: Transform
- pos: 21.5,31.5
+ pos: 83.5,23.5
parent: 2
- - uid: 2000
+ - uid: 3654
components:
- type: Transform
- pos: 20.5,31.5
+ pos: -25.5,-26.5
parent: 2
- - uid: 2001
+ - uid: 3655
components:
- type: Transform
- pos: 19.5,31.5
+ pos: -26.5,-26.5
parent: 2
- - uid: 2002
+ - uid: 3656
components:
- type: Transform
- pos: 18.5,31.5
+ pos: 40.5,-1.5
parent: 2
- - uid: 2003
+ - uid: 3657
components:
- type: Transform
- pos: 17.5,31.5
+ pos: 40.5,-0.5
parent: 2
- - uid: 2004
+ - uid: 3663
components:
- type: Transform
- pos: 16.5,31.5
+ pos: -66.5,21.5
parent: 2
- - uid: 2061
+ - uid: 3665
components:
- type: Transform
- pos: -14.5,-44.5
+ pos: -66.5,27.5
parent: 2
- - uid: 2177
+ - uid: 3667
components:
- type: Transform
- pos: -42.5,-8.5
+ pos: -65.5,21.5
parent: 2
- - uid: 2196
+ - uid: 3668
components:
- type: Transform
- pos: -34.5,3.5
+ pos: -66.5,22.5
parent: 2
- - uid: 2219
+ - uid: 3670
components:
- type: Transform
- pos: -43.5,-7.5
+ pos: -50.5,19.5
parent: 2
- - uid: 2221
+ - uid: 3671
components:
- type: Transform
- pos: -1.5,-44.5
+ pos: -57.5,21.5
parent: 2
- - uid: 2235
+ - uid: 3672
components:
- type: Transform
- pos: 20.5,41.5
+ pos: -49.5,19.5
parent: 2
- - uid: 2239
+ - uid: 3673
components:
- type: Transform
- pos: 32.5,52.5
+ pos: -51.5,19.5
parent: 2
- - uid: 2240
+ - uid: 3675
components:
- type: Transform
- pos: 30.5,52.5
+ pos: 83.5,22.5
parent: 2
- - uid: 2242
+ - uid: 3676
components:
- type: Transform
- pos: 33.5,52.5
+ pos: -63.5,21.5
parent: 2
- - uid: 2243
+ - uid: 3681
components:
- type: Transform
- pos: 31.5,52.5
+ pos: -64.5,21.5
parent: 2
- - uid: 2261
+ - uid: 3686
components:
- type: Transform
- pos: -37.5,-45.5
+ pos: -64.5,37.5
parent: 2
- - uid: 2266
+ - uid: 3700
components:
- type: Transform
- pos: -14.5,-42.5
+ pos: -35.5,-0.5
parent: 2
- - uid: 2273
+ - uid: 3701
components:
- type: Transform
- pos: 70.5,24.5
+ pos: 84.5,25.5
parent: 2
- - uid: 2286
+ - uid: 3702
components:
- type: Transform
- pos: 69.5,25.5
+ pos: 25.5,61.5
parent: 2
- - uid: 2294
+ - uid: 3711
components:
- type: Transform
- pos: -44.5,-6.5
+ pos: 83.5,25.5
parent: 2
- - uid: 2298
+ - uid: 3714
components:
- type: Transform
- pos: 48.5,1.5
+ pos: -58.5,-32.5
parent: 2
- - uid: 2303
+ - uid: 3716
components:
- type: Transform
- pos: -38.5,-12.5
+ pos: -57.5,-34.5
parent: 2
- - uid: 2304
+ - uid: 3719
components:
- type: Transform
- pos: -37.5,-12.5
+ pos: 21.5,51.5
parent: 2
- - uid: 2308
+ - uid: 3720
components:
- type: Transform
- pos: -44.5,-1.5
+ pos: 16.5,50.5
parent: 2
- - uid: 2313
+ - uid: 3721
components:
- type: Transform
- pos: -44.5,2.5
+ pos: 20.5,51.5
parent: 2
- - uid: 2316
+ - uid: 3722
components:
- type: Transform
- pos: -43.5,3.5
+ pos: 16.5,51.5
parent: 2
- - uid: 2320
+ - uid: 3725
components:
- type: Transform
- pos: -42.5,7.5
+ pos: -3.5,33.5
parent: 2
- - uid: 2325
+ - uid: 3726
components:
- type: Transform
- pos: -44.5,-5.5
+ pos: -3.5,35.5
parent: 2
- - uid: 2327
+ - uid: 3727
components:
- type: Transform
- pos: -43.5,-8.5
+ pos: -3.5,34.5
parent: 2
- - uid: 2362
+ - uid: 3728
components:
- type: Transform
- pos: -8.5,62.5
+ pos: -3.5,30.5
parent: 2
- - uid: 2366
+ - uid: 3729
components:
- type: Transform
- pos: -52.5,23.5
+ pos: -3.5,37.5
parent: 2
- - uid: 2379
+ - uid: 3730
components:
- type: Transform
- pos: 54.5,8.5
+ pos: -3.5,31.5
parent: 2
- - uid: 2392
+ - uid: 3731
components:
- type: Transform
- pos: -13.5,-43.5
+ pos: -3.5,36.5
parent: 2
- - uid: 2406
+ - uid: 3732
components:
- type: Transform
- pos: 23.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,28.5
parent: 2
- - uid: 2407
+ - uid: 3733
components:
- type: Transform
- pos: 12.5,-37.5
+ pos: -3.5,38.5
parent: 2
- - uid: 2408
+ - uid: 3739
components:
- type: Transform
- pos: 27.5,-35.5
+ pos: -3.5,44.5
parent: 2
- - uid: 2409
+ - uid: 3743
components:
- type: Transform
- pos: 28.5,-35.5
+ pos: -9.5,44.5
parent: 2
- - uid: 2420
+ - uid: 3754
components:
- type: Transform
- pos: -52.5,16.5
+ pos: -63.5,10.5
parent: 2
- - uid: 2432
+ - uid: 3755
components:
- type: Transform
- pos: 63.5,-32.5
+ pos: -52.5,24.5
parent: 2
- - uid: 2434
+ - uid: 3756
components:
- type: Transform
- pos: 62.5,-32.5
+ pos: -52.5,19.5
parent: 2
- - uid: 2437
+ - uid: 3758
components:
- type: Transform
- pos: -53.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -52.5,14.5
parent: 2
- - uid: 2450
+ - uid: 3760
components:
- type: Transform
- pos: -1.5,-49.5
+ pos: -61.5,10.5
parent: 2
- - uid: 2485
+ - uid: 3766
components:
- type: Transform
- pos: 9.5,-39.5
+ pos: -52.5,21.5
parent: 2
- - uid: 2495
+ - uid: 3768
components:
- type: Transform
- pos: 4.5,-44.5
+ pos: -15.5,37.5
parent: 2
- - uid: 2499
+ - uid: 3769
components:
- type: Transform
- pos: -5.5,-43.5
+ pos: -4.5,44.5
parent: 2
- - uid: 2502
+ - uid: 3770
components:
- type: Transform
- pos: -5.5,-44.5
+ pos: -31.5,36.5
parent: 2
- - uid: 2505
+ - uid: 3790
components:
- type: Transform
- pos: -28.5,65.5
+ pos: -30.5,-22.5
parent: 2
- - uid: 2513
+ - uid: 3791
components:
- type: Transform
- pos: 38.5,52.5
+ pos: -31.5,-25.5
parent: 2
- - uid: 2514
+ - uid: 3793
components:
- type: Transform
- pos: 51.5,46.5
+ pos: -28.5,-22.5
parent: 2
- - uid: 2527
+ - uid: 3795
components:
- type: Transform
- pos: -28.5,55.5
+ pos: 40.5,1.5
parent: 2
- - uid: 2528
+ - uid: 3798
components:
- type: Transform
- pos: -28.5,56.5
+ pos: 40.5,0.5
parent: 2
- - uid: 2558
+ - uid: 3802
components:
- type: Transform
- pos: 8.5,-44.5
+ pos: -24.5,-26.5
parent: 2
- - uid: 2591
+ - uid: 3803
components:
- type: Transform
- pos: 48.5,-6.5
+ pos: -24.5,-22.5
parent: 2
- - uid: 2595
+ - uid: 3804
components:
- type: Transform
- pos: -29.5,63.5
+ pos: -27.5,-22.5
parent: 2
- - uid: 2612
+ - uid: 3806
components:
- type: Transform
- pos: 30.5,44.5
+ pos: 51.5,-32.5
parent: 2
- - uid: 2613
+ - uid: 3808
components:
- type: Transform
- pos: 16.5,44.5
+ pos: 53.5,-32.5
parent: 2
- - uid: 2614
+ - uid: 3809
components:
- type: Transform
- pos: 14.5,41.5
+ pos: -23.5,-25.5
parent: 2
- - uid: 2624
+ - uid: 3810
components:
- type: Transform
- pos: 8.5,42.5
+ pos: -23.5,-22.5
parent: 2
- - uid: 2625
+ - uid: 3811
components:
- type: Transform
- pos: 12.5,57.5
+ pos: -23.5,-26.5
parent: 2
- - uid: 2631
+ - uid: 3813
components:
- type: Transform
- pos: 20.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,39.5
parent: 2
- - uid: 2635
+ - uid: 3818
components:
- type: Transform
- pos: 15.5,41.5
+ pos: 63.5,-31.5
parent: 2
- - uid: 2638
+ - uid: 3819
components:
- type: Transform
- pos: -36.5,54.5
+ pos: 57.5,1.5
parent: 2
- - uid: 2651
+ - uid: 3828
components:
- type: Transform
- pos: -28.5,66.5
+ pos: 47.5,-27.5
parent: 2
- - uid: 2662
+ - uid: 3840
components:
- type: Transform
- pos: -30.5,52.5
+ pos: 58.5,-32.5
parent: 2
- - uid: 2666
+ - uid: 3875
components:
- type: Transform
- pos: 24.5,57.5
+ pos: 74.5,1.5
parent: 2
- - uid: 2667
+ - uid: 3894
components:
- type: Transform
- pos: 4.5,48.5
+ pos: -36.5,-11.5
parent: 2
- - uid: 2669
+ - uid: 3902
components:
- type: Transform
- pos: 26.5,41.5
+ pos: 65.5,1.5
parent: 2
- - uid: 2670
+ - uid: 3903
components:
- type: Transform
- pos: 25.5,47.5
+ pos: -98.5,31.5
parent: 2
- - uid: 2671
+ - uid: 3917
components:
- type: Transform
- pos: 4.5,47.5
+ pos: -93.5,-9.5
parent: 2
- - uid: 2675
+ - uid: 3969
components:
- type: Transform
- pos: 8.5,46.5
+ pos: -36.5,-8.5
parent: 2
- - uid: 2682
+ - uid: 3970
components:
- type: Transform
- pos: 24.5,48.5
+ pos: 11.5,57.5
parent: 2
- - uid: 2688
+ - uid: 3983
components:
- type: Transform
- pos: 15.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-6.5
parent: 2
- - uid: 2689
+ - uid: 4001
components:
- type: Transform
- pos: 15.5,37.5
+ pos: 56.5,58.5
parent: 2
- - uid: 2691
+ - uid: 4022
components:
- type: Transform
- pos: 8.5,41.5
+ pos: 58.5,9.5
parent: 2
- - uid: 2694
+ - uid: 4038
components:
- type: Transform
- pos: 16.5,41.5
+ pos: -94.5,-10.5
parent: 2
- - uid: 2697
+ - uid: 4056
components:
- type: Transform
- pos: 21.5,47.5
+ pos: -93.5,-8.5
parent: 2
- - uid: 2713
+ - uid: 4074
components:
- type: Transform
- pos: -25.5,50.5
+ pos: 13.5,53.5
parent: 2
- - uid: 2736
+ - uid: 4101
components:
- type: Transform
- pos: 30.5,53.5
+ pos: -42.5,36.5
parent: 2
- - uid: 2738
+ - uid: 4117
components:
- type: Transform
- pos: 27.5,47.5
+ pos: 54.5,9.5
parent: 2
- - uid: 2741
+ - uid: 4142
components:
- type: Transform
- pos: 25.5,57.5
+ pos: 76.5,25.5
parent: 2
- - uid: 2743
+ - uid: 4143
components:
- type: Transform
- pos: 26.5,47.5
+ pos: 52.5,9.5
parent: 2
- - uid: 2744
+ - uid: 4151
components:
- type: Transform
- pos: 20.5,48.5
+ pos: 60.5,9.5
parent: 2
- - uid: 2745
+ - uid: 4152
components:
- type: Transform
- pos: 16.5,49.5
+ pos: 56.5,9.5
parent: 2
- - uid: 2746
+ - uid: 4180
components:
- type: Transform
- pos: 16.5,45.5
+ pos: 48.5,53.5
parent: 2
- - uid: 2747
+ - uid: 4181
components:
- type: Transform
- pos: 16.5,46.5
+ pos: 42.5,52.5
parent: 2
- - uid: 2753
+ - uid: 4184
components:
- type: Transform
- pos: -13.5,46.5
+ pos: 42.5,53.5
parent: 2
- - uid: 2766
+ - uid: 4185
components:
- type: Transform
- pos: -9.5,-53.5
+ pos: 42.5,57.5
parent: 2
- - uid: 2768
+ - uid: 4192
components:
- type: Transform
- pos: 30.5,57.5
+ pos: 58.5,-36.5
parent: 2
- - uid: 2773
+ - uid: 4195
components:
- type: Transform
- pos: 29.5,57.5
+ pos: 36.5,53.5
parent: 2
- - uid: 2777
+ - uid: 4197
components:
- type: Transform
- pos: 28.5,47.5
+ pos: 48.5,57.5
parent: 2
- - uid: 2778
+ - uid: 4199
components:
- type: Transform
- pos: 29.5,47.5
+ pos: 36.5,57.5
parent: 2
- - uid: 2780
+ - uid: 4203
components:
- type: Transform
- pos: -24.5,60.5
+ pos: -94.5,28.5
parent: 2
- - uid: 2795
+ - uid: 4205
components:
- type: Transform
- pos: -11.5,46.5
+ pos: 42.5,58.5
parent: 2
- - uid: 2803
+ - uid: 4215
components:
- type: Transform
- pos: -26.5,50.5
+ pos: 51.5,50.5
parent: 2
- - uid: 2806
+ - uid: 4219
components:
- type: Transform
- pos: 23.5,53.5
+ pos: 41.5,-35.5
parent: 2
- - uid: 2807
+ - uid: 4220
components:
- type: Transform
- pos: 4.5,57.5
+ pos: -96.5,30.5
parent: 2
- - uid: 2808
+ - uid: 4221
components:
- type: Transform
- pos: 24.5,53.5
+ pos: -97.5,30.5
parent: 2
- - uid: 2809
+ - uid: 4226
components:
- type: Transform
- pos: 23.5,52.5
+ pos: -93.5,24.5
parent: 2
- - uid: 2810
+ - uid: 4237
components:
- type: Transform
- pos: -3.5,23.5
+ pos: -93.5,26.5
parent: 2
- - uid: 2811
+ - uid: 4238
components:
- type: Transform
- pos: -3.5,25.5
+ pos: -93.5,23.5
parent: 2
- - uid: 2812
+ - uid: 4239
components:
- type: Transform
- pos: -3.5,26.5
+ pos: -93.5,25.5
parent: 2
- - uid: 2813
+ - uid: 4246
components:
- type: Transform
- pos: -3.5,28.5
+ pos: 51.5,45.5
parent: 2
- - uid: 2814
+ - uid: 4260
components:
- type: Transform
- pos: -3.5,24.5
+ pos: 69.5,9.5
parent: 2
- - uid: 2819
+ - uid: 4290
components:
- type: Transform
- pos: -3.5,22.5
+ pos: 64.5,9.5
parent: 2
- - uid: 2820
+ - uid: 4308
components:
- type: Transform
- pos: -3.5,27.5
+ pos: 62.5,9.5
parent: 2
- - uid: 2821
+ - uid: 4311
components:
- type: Transform
- pos: -3.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,5.5
parent: 2
- - uid: 2823
+ - uid: 4314
components:
- type: Transform
- pos: 30.5,43.5
+ pos: 70.5,10.5
parent: 2
- - uid: 2824
+ - uid: 4333
components:
- type: Transform
- pos: 30.5,42.5
+ pos: -52.5,56.5
parent: 2
- - uid: 2827
+ - uid: 4366
components:
- type: Transform
- pos: 26.5,34.5
+ pos: 54.5,7.5
parent: 2
- - uid: 2831
+ - uid: 4369
components:
- type: Transform
- pos: 81.5,-7.5
+ pos: -95.5,-12.5
parent: 2
- - uid: 2832
+ - uid: 4384
components:
- type: Transform
- pos: 72.5,-24.5
+ pos: 55.5,3.5
parent: 2
- - uid: 2841
+ - uid: 4389
components:
- type: Transform
- pos: 23.5,34.5
+ pos: 54.5,6.5
parent: 2
- - uid: 2842
+ - uid: 4390
components:
- type: Transform
- pos: 22.5,34.5
+ pos: 54.5,5.5
parent: 2
- - uid: 2843
+ - uid: 4419
components:
- type: Transform
- pos: 24.5,34.5
+ pos: 51.5,51.5
parent: 2
- - uid: 2845
+ - uid: 4461
components:
- type: Transform
- pos: 25.5,34.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,5.5
parent: 2
- - uid: 2847
+ - uid: 4481
components:
- type: Transform
- pos: 12.5,54.5
+ pos: 73.5,25.5
parent: 2
- - uid: 2849
+ - uid: 4490
components:
- type: Transform
- pos: 32.5,42.5
+ pos: 82.5,8.5
parent: 2
- - uid: 2852
+ - uid: 4502
components:
- type: Transform
- pos: 3.5,45.5
+ pos: -94.5,-11.5
parent: 2
- - uid: 2853
+ - uid: 4510
components:
- type: Transform
- pos: 3.5,46.5
+ pos: 72.5,25.5
parent: 2
- - uid: 2863
+ - uid: 4511
components:
- type: Transform
- pos: 6.5,46.5
+ pos: 71.5,25.5
parent: 2
- - uid: 2864
+ - uid: 4515
components:
- type: Transform
- pos: 4.5,46.5
+ pos: 70.5,25.5
parent: 2
- - uid: 2868
+ - uid: 4519
components:
- type: Transform
- pos: 5.5,46.5
+ pos: 13.5,52.5
parent: 2
- - uid: 2870
+ - uid: 4522
components:
- type: Transform
- pos: 16.5,42.5
+ pos: 48.5,52.5
parent: 2
- - uid: 2871
+ - uid: 4524
components:
- type: Transform
- pos: 20.5,50.5
+ pos: 85.5,28.5
parent: 2
- - uid: 2872
+ - uid: 4526
components:
- type: Transform
- pos: 15.5,34.5
+ pos: 86.5,28.5
parent: 2
- - uid: 2874
+ - uid: 4534
components:
- type: Transform
- pos: 17.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,34.5
parent: 2
- - uid: 2883
+ - uid: 4537
components:
- type: Transform
- pos: 33.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,34.5
parent: 2
- - uid: 2887
+ - uid: 4538
components:
- type: Transform
- pos: 70.5,-27.5
+ pos: 58.5,49.5
parent: 2
- - uid: 2893
+ - uid: 4554
components:
- type: Transform
- pos: 68.5,-29.5
+ pos: 41.5,31.5
parent: 2
- - uid: 2898
+ - uid: 4563
components:
- type: Transform
- pos: 71.5,-26.5
+ pos: 54.5,45.5
parent: 2
- - uid: 2899
+ - uid: 4564
components:
- type: Transform
- pos: 80.5,-8.5
+ pos: 53.5,45.5
parent: 2
- - uid: 2901
+ - uid: 4567
components:
- type: Transform
- pos: 81.5,0.5
+ pos: 55.5,47.5
parent: 2
- - uid: 2912
+ - uid: 4568
components:
- type: Transform
- pos: 69.5,-28.5
+ pos: 55.5,49.5
parent: 2
- - uid: 2919
+ - uid: 4571
components:
- type: Transform
- pos: 71.5,-25.5
+ pos: 50.5,27.5
parent: 2
- - uid: 2961
+ - uid: 4572
components:
- type: Transform
- pos: -35.5,-45.5
+ pos: 51.5,48.5
parent: 2
- - uid: 2962
+ - uid: 4573
components:
- type: Transform
- pos: -19.5,-47.5
+ pos: 50.5,28.5
parent: 2
- - uid: 3003
+ - uid: 4581
components:
- type: Transform
- pos: 13.5,51.5
+ pos: 50.5,30.5
parent: 2
- - uid: 3005
+ - uid: 4584
components:
- type: Transform
- pos: 28.5,34.5
+ pos: 51.5,52.5
parent: 2
- - uid: 3006
+ - uid: 4594
components:
- type: Transform
- pos: 27.5,34.5
+ pos: 53.5,52.5
parent: 2
- - uid: 3007
+ - uid: 4599
components:
- type: Transform
- pos: 30.5,34.5
+ pos: 54.5,52.5
parent: 2
- - uid: 3008
+ - uid: 4604
components:
- type: Transform
- pos: 29.5,34.5
+ pos: 50.5,29.5
parent: 2
- - uid: 3009
+ - uid: 4619
components:
- type: Transform
- pos: 19.5,34.5
+ pos: 45.5,35.5
parent: 2
- - uid: 3015
+ - uid: 4620
components:
- type: Transform
- pos: 8.5,34.5
+ pos: 16.5,-20.5
parent: 2
- - uid: 3017
+ - uid: 4625
components:
- type: Transform
- pos: 14.5,34.5
+ pos: 50.5,31.5
parent: 2
- - uid: 3020
+ - uid: 4659
components:
- type: Transform
- pos: 10.5,34.5
+ pos: 41.5,27.5
parent: 2
- - uid: 3029
+ - uid: 4661
components:
- type: Transform
- pos: 65.5,-30.5
+ pos: 14.5,51.5
parent: 2
- - uid: 3031
+ - uid: 4663
components:
- type: Transform
- pos: -63.5,-32.5
+ pos: 22.5,51.5
parent: 2
- - uid: 3035
+ - uid: 4664
components:
- type: Transform
- pos: 11.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-19.5
parent: 2
- - uid: 3044
+ - uid: 4672
components:
- type: Transform
- pos: 12.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-26.5
parent: 2
- - uid: 3045
+ - uid: 4687
components:
- type: Transform
- pos: 21.5,34.5
+ pos: 79.5,4.5
parent: 2
- - uid: 3046
+ - uid: 4712
components:
- type: Transform
- pos: 3.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-25.5
parent: 2
- - uid: 3047
+ - uid: 4737
components:
- type: Transform
- pos: 6.5,43.5
+ pos: 42.5,27.5
parent: 2
- - uid: 3049
+ - uid: 4738
components:
- type: Transform
- pos: -20.5,-39.5
+ pos: 43.5,27.5
parent: 2
- - uid: 3064
+ - uid: 4743
components:
- type: Transform
- pos: -77.5,22.5
+ pos: 44.5,27.5
parent: 2
- - uid: 3088
+ - uid: 4758
components:
- type: Transform
- pos: -14.5,-43.5
+ pos: 49.5,27.5
parent: 2
- - uid: 3097
+ - uid: 4773
components:
- type: Transform
- pos: -61.5,-32.5
+ pos: 87.5,20.5
parent: 2
- - uid: 3099
+ - uid: 4774
components:
- type: Transform
- pos: -62.5,-32.5
+ pos: 88.5,20.5
parent: 2
- - uid: 3100
+ - uid: 4787
components:
- type: Transform
- pos: -57.5,-32.5
+ pos: 77.5,4.5
parent: 2
- - uid: 3102
+ - uid: 4795
components:
- type: Transform
- pos: -59.5,-32.5
+ pos: 92.5,15.5
parent: 2
- - uid: 3108
+ - uid: 4819
components:
- type: Transform
- pos: 4.5,43.5
+ pos: 41.5,35.5
parent: 2
- - uid: 3130
+ - uid: 4820
components:
- type: Transform
- pos: 66.5,-30.5
+ pos: 42.5,35.5
parent: 2
- - uid: 3156
+ - uid: 4826
components:
- type: Transform
- pos: 10.5,-39.5
+ pos: 9.5,-20.5
parent: 2
- - uid: 3157
+ - uid: 4834
components:
- type: Transform
- pos: 8.5,-39.5
+ pos: 43.5,35.5
parent: 2
- - uid: 3158
+ - uid: 4835
components:
- type: Transform
- pos: 11.5,-38.5
+ pos: 44.5,35.5
parent: 2
- - uid: 3160
+ - uid: 4837
components:
- type: Transform
- pos: -57.5,-36.5
+ pos: 12.5,-20.5
parent: 2
- - uid: 3165
+ - uid: 4855
components:
- type: Transform
- pos: 22.5,-37.5
+ pos: -16.5,67.5
parent: 2
- - uid: 3177
+ - uid: 4856
components:
- type: Transform
- pos: 13.5,-37.5
+ pos: -6.5,67.5
parent: 2
- - uid: 3199
+ - uid: 4857
components:
- type: Transform
- pos: 83.5,10.5
+ pos: -12.5,67.5
parent: 2
- - uid: 3200
+ - uid: 4864
components:
- type: Transform
- pos: -42.5,-9.5
+ pos: 86.5,6.5
parent: 2
- - uid: 3203
+ - uid: 4881
components:
- type: Transform
- pos: 8.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,-1.5
parent: 2
- - uid: 3204
+ - uid: 4889
components:
- type: Transform
- pos: 7.5,43.5
+ pos: 74.5,25.5
parent: 2
- - uid: 3218
+ - uid: 4927
components:
- type: Transform
- pos: 16.5,34.5
+ pos: 75.5,25.5
parent: 2
- - uid: 3220
+ - uid: 4932
components:
- type: Transform
- pos: 8.5,44.5
+ pos: 15.5,51.5
parent: 2
- - uid: 3224
+ - uid: 4933
components:
- type: Transform
- pos: 20.5,34.5
+ pos: 22.5,52.5
parent: 2
- - uid: 3266
+ - uid: 4934
components:
- type: Transform
- pos: -31.5,-24.5
+ pos: 42.5,31.5
parent: 2
- - uid: 3267
+ - uid: 4935
components:
- type: Transform
- pos: -44.5,57.5
+ pos: 43.5,31.5
parent: 2
- - uid: 3269
+ - uid: 4936
components:
- type: Transform
- pos: -31.5,-23.5
+ pos: 44.5,31.5
parent: 2
- - uid: 3271
+ - uid: 4939
components:
- type: Transform
- pos: -31.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-39.5
parent: 2
- - uid: 3292
+ - uid: 4940
components:
- type: Transform
- pos: -42.5,61.5
+ pos: 52.5,45.5
parent: 2
- - uid: 3296
+ - uid: 4941
components:
- type: Transform
- pos: 24.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-26.5
parent: 2
- - uid: 3298
+ - uid: 4944
components:
- type: Transform
- pos: 26.5,-35.5
+ pos: 51.5,47.5
parent: 2
- - uid: 3301
+ - uid: 4963
components:
- type: Transform
- pos: 23.5,-35.5
+ pos: -77.5,-8.5
parent: 2
- - uid: 3303
+ - uid: 5018
components:
- type: Transform
- pos: 25.5,-35.5
+ pos: -92.5,10.5
parent: 2
- - uid: 3334
+ - uid: 5026
components:
- type: Transform
- pos: 64.5,-30.5
+ pos: 77.5,-22.5
parent: 2
- - uid: 3336
+ - uid: 5027
components:
- type: Transform
- pos: 32.5,34.5
+ pos: 78.5,-22.5
parent: 2
- - uid: 3341
+ - uid: 5031
components:
- type: Transform
- pos: 12.5,53.5
+ pos: 78.5,-18.5
parent: 2
- - uid: 3394
+ - uid: 5035
components:
- type: Transform
- pos: 15.5,22.5
+ pos: 78.5,-14.5
parent: 2
- - uid: 3395
+ - uid: 5036
components:
- type: Transform
- pos: 39.5,-35.5
+ pos: 78.5,-13.5
parent: 2
- - uid: 3397
+ - uid: 5040
components:
- type: Transform
- pos: -40.5,60.5
+ pos: 79.5,-9.5
parent: 2
- - uid: 3400
+ - uid: 5041
components:
- type: Transform
- pos: -40.5,58.5
+ pos: 79.5,-8.5
parent: 2
- - uid: 3436
+ - uid: 5059
components:
- type: Transform
- pos: 73.5,-22.5
+ pos: 73.5,1.5
parent: 2
- - uid: 3437
+ - uid: 5060
components:
- type: Transform
- pos: 72.5,-22.5
+ pos: 72.5,1.5
parent: 2
- - uid: 3502
+ - uid: 5061
components:
- type: Transform
- pos: 23.5,-36.5
+ pos: 64.5,1.5
parent: 2
- - uid: 3535
+ - uid: 5079
components:
- type: Transform
- pos: 40.5,-35.5
+ pos: 56.5,1.5
parent: 2
- - uid: 3551
+ - uid: 5083
components:
- type: Transform
- pos: -27.5,49.5
+ pos: 55.5,4.5
parent: 2
- - uid: 3552
+ - uid: 5084
components:
- type: Transform
- pos: -34.5,-38.5
+ pos: 55.5,2.5
parent: 2
- - uid: 3562
+ - uid: 5087
components:
- type: Transform
- pos: -35.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,41.5
parent: 2
- - uid: 3573
+ - uid: 5089
components:
- type: Transform
- pos: 40.5,-7.5
+ pos: -98.5,17.5
parent: 2
- - uid: 3574
+ - uid: 5090
components:
- type: Transform
- pos: 40.5,6.5
+ pos: 67.5,-29.5
parent: 2
- - uid: 3575
+ - uid: 5094
components:
- type: Transform
- pos: 40.5,3.5
+ pos: 72.5,-23.5
parent: 2
- - uid: 3576
+ - uid: 5096
components:
- type: Transform
- pos: 40.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,42.5
parent: 2
- - uid: 3577
+ - uid: 5106
components:
- type: Transform
- pos: 40.5,5.5
+ pos: 77.5,1.5
parent: 2
- - uid: 3578
+ - uid: 5108
components:
- type: Transform
- pos: 40.5,4.5
+ pos: 76.5,1.5
parent: 2
- - uid: 3579
+ - uid: 5159
components:
- type: Transform
- pos: 40.5,-9.5
+ pos: -28.5,54.5
parent: 2
- - uid: 3580
+ - uid: 5198
components:
- type: Transform
- pos: 40.5,2.5
+ pos: -60.5,10.5
parent: 2
- - uid: 3581
+ - uid: 5220
components:
- type: Transform
- pos: -60.5,-32.5
+ pos: 47.5,35.5
parent: 2
- - uid: 3586
+ - uid: 5221
components:
- type: Transform
- pos: 40.5,-11.5
+ pos: 46.5,35.5
parent: 2
- - uid: 3587
+ - uid: 5222
components:
- type: Transform
- pos: 40.5,-8.5
+ pos: 48.5,35.5
parent: 2
- - uid: 3588
+ - uid: 5223
components:
- type: Transform
- pos: 40.5,8.5
+ pos: 49.5,35.5
parent: 2
- - uid: 3589
+ - uid: 5224
components:
- type: Transform
- pos: 40.5,-10.5
+ pos: 48.5,31.5
parent: 2
- - uid: 3590
+ - uid: 5231
components:
- type: Transform
- pos: 40.5,10.5
+ pos: -36.5,32.5
parent: 2
- - uid: 3591
+ - uid: 5233
components:
- type: Transform
- pos: 40.5,9.5
+ pos: -15.5,42.5
parent: 2
- - uid: 3592
+ - uid: 5239
components:
- type: Transform
- pos: 40.5,11.5
+ pos: -15.5,39.5
parent: 2
- - uid: 3593
+ - uid: 5240
components:
- type: Transform
- pos: 40.5,-3.5
+ pos: -32.5,32.5
parent: 2
- - uid: 3594
+ - uid: 5249
components:
- type: Transform
- pos: 40.5,-5.5
+ pos: 47.5,31.5
parent: 2
- - uid: 3595
+ - uid: 5252
components:
- type: Transform
- pos: 40.5,-2.5
+ pos: 46.5,31.5
parent: 2
- - uid: 3596
+ - uid: 5253
components:
- type: Transform
- pos: 40.5,-6.5
+ pos: 45.5,31.5
parent: 2
- - uid: 3597
+ - uid: 5254
components:
- type: Transform
- pos: 40.5,-4.5
+ pos: -98.5,-14.5
parent: 2
- - uid: 3598
+ - uid: 5266
components:
- type: Transform
- pos: 40.5,12.5
+ pos: -96.5,-13.5
parent: 2
- - uid: 3604
+ - uid: 5280
components:
- type: Transform
- pos: -94.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,42.5
parent: 2
- - uid: 3606
+ - uid: 5299
components:
- type: Transform
- pos: -93.5,-7.5
+ pos: 30.5,50.5
parent: 2
- - uid: 3608
+ - uid: 5322
components:
- type: Transform
- pos: -93.5,-6.5
+ pos: 61.5,49.5
parent: 2
- - uid: 3609
+ - uid: 5418
components:
- type: Transform
- pos: -95.5,29.5
+ pos: -97.5,-13.5
parent: 2
- - uid: 3611
+ - uid: 5425
components:
- type: Transform
- pos: 45.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -92.5,20.5
parent: 2
- - uid: 3612
+ - uid: 5427
components:
- type: Transform
- pos: 48.5,0.5
+ pos: 49.5,31.5
parent: 2
- - uid: 3615
+ - uid: 5479
components:
- type: Transform
- pos: 48.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -91.5,20.5
parent: 2
- - uid: 3617
+ - uid: 5482
components:
- type: Transform
- pos: 48.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,18.5
parent: 2
- - uid: 3620
+ - uid: 5483
components:
- type: Transform
- pos: 47.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,20.5
parent: 2
- - uid: 3621
+ - uid: 5486
components:
- type: Transform
- pos: 47.5,13.5
+ pos: -28.5,53.5
parent: 2
- - uid: 3622
+ - uid: 5534
components:
- type: Transform
- pos: 47.5,2.5
+ pos: -18.5,23.5
parent: 2
- - uid: 3623
+ - uid: 5542
components:
- type: Transform
- pos: 47.5,9.5
+ pos: 46.5,52.5
parent: 2
- - uid: 3624
+ - uid: 5543
components:
- type: Transform
- pos: 47.5,8.5
+ pos: 38.5,51.5
parent: 2
- - uid: 3625
+ - uid: 5744
components:
- type: Transform
- pos: 47.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,34.5
parent: 2
- - uid: 3634
+ - uid: 5745
components:
- type: Transform
- pos: 44.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 62.5,34.5
parent: 2
- - uid: 3635
+ - uid: 5763
components:
- type: Transform
- pos: 39.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 56.5,34.5
parent: 2
- - uid: 3637
+ - uid: 5769
components:
- type: Transform
- pos: 40.5,-14.5
+ pos: -2.5,-49.5
parent: 2
- - uid: 3654
+ - uid: 5770
components:
- type: Transform
- pos: -25.5,-26.5
+ pos: -3.5,-49.5
parent: 2
- - uid: 3655
+ - uid: 5771
components:
- type: Transform
- pos: -26.5,-26.5
+ pos: -4.5,-49.5
parent: 2
- - uid: 3656
+ - uid: 5772
components:
- type: Transform
- pos: 40.5,-1.5
+ pos: -5.5,-49.5
parent: 2
- - uid: 3657
+ - uid: 5773
components:
- type: Transform
- pos: 40.5,-0.5
+ pos: -6.5,-49.5
parent: 2
- - uid: 3663
+ - uid: 5774
components:
- type: Transform
- pos: -66.5,21.5
+ pos: -7.5,-49.5
parent: 2
- - uid: 3665
+ - uid: 5775
components:
- type: Transform
- pos: -66.5,27.5
+ pos: -8.5,-49.5
parent: 2
- - uid: 3667
+ - uid: 5776
components:
- type: Transform
- pos: -65.5,21.5
+ pos: 4.5,-49.5
parent: 2
- - uid: 3668
+ - uid: 5777
components:
- type: Transform
- pos: -66.5,22.5
+ pos: 5.5,-49.5
parent: 2
- - uid: 3670
+ - uid: 5778
components:
- type: Transform
- pos: -50.5,19.5
+ pos: 6.5,-49.5
parent: 2
- - uid: 3671
+ - uid: 5779
components:
- type: Transform
- pos: -57.5,21.5
+ pos: 7.5,-49.5
parent: 2
- - uid: 3672
+ - uid: 5780
components:
- type: Transform
- pos: -49.5,19.5
+ pos: 8.5,-49.5
parent: 2
- - uid: 3673
+ - uid: 5781
components:
- type: Transform
- pos: -51.5,19.5
+ pos: 9.5,-49.5
parent: 2
- - uid: 3676
+ - uid: 5782
components:
- type: Transform
- pos: -63.5,21.5
+ pos: 10.5,-49.5
parent: 2
- - uid: 3681
+ - uid: 5783
components:
- type: Transform
- pos: -64.5,21.5
+ pos: 11.5,-49.5
parent: 2
- - uid: 3686
+ - uid: 5784
components:
- type: Transform
- pos: -64.5,37.5
+ pos: 12.5,-49.5
parent: 2
- - uid: 3700
+ - uid: 5787
components:
- type: Transform
- pos: -35.5,-0.5
+ pos: -1.5,-53.5
parent: 2
- - uid: 3714
+ - uid: 5788
components:
- type: Transform
- pos: -58.5,-32.5
+ pos: -2.5,-53.5
parent: 2
- - uid: 3716
+ - uid: 5789
components:
- type: Transform
- pos: -57.5,-34.5
+ pos: -3.5,-53.5
parent: 2
- - uid: 3719
+ - uid: 5795
components:
- type: Transform
- pos: 21.5,51.5
+ pos: 4.5,-53.5
parent: 2
- - uid: 3720
+ - uid: 5796
components:
- type: Transform
- pos: 16.5,50.5
+ pos: 5.5,-53.5
parent: 2
- - uid: 3721
+ - uid: 5797
components:
- type: Transform
- pos: 20.5,51.5
+ pos: 6.5,-53.5
parent: 2
- - uid: 3722
+ - uid: 5803
components:
- type: Transform
- pos: 16.5,51.5
+ pos: 12.5,-53.5
parent: 2
- - uid: 3725
+ - uid: 5871
components:
- type: Transform
- pos: -3.5,33.5
+ pos: -9.5,-49.5
parent: 2
- - uid: 3726
+ - uid: 5900
components:
- type: Transform
- pos: -3.5,35.5
+ rot: -1.5707963267948966 rad
+ pos: 61.5,34.5
parent: 2
- - uid: 3727
+ - uid: 5924
components:
- type: Transform
- pos: -3.5,34.5
+ pos: 23.5,51.5
parent: 2
- - uid: 3728
+ - uid: 5946
components:
- type: Transform
- pos: -3.5,30.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-0.5
parent: 2
- - uid: 3729
+ - uid: 5949
components:
- type: Transform
- pos: -3.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-0.5
parent: 2
- - uid: 3730
+ - uid: 5992
components:
- type: Transform
- pos: -3.5,31.5
+ pos: -44.5,36.5
parent: 2
- - uid: 3731
+ - uid: 5998
components:
- type: Transform
- pos: -3.5,36.5
+ pos: -44.5,39.5
parent: 2
- - uid: 3732
+ - uid: 6015
components:
- type: Transform
- pos: -3.5,39.5
+ pos: -27.5,-26.5
parent: 2
- - uid: 3733
+ - uid: 6017
components:
- type: Transform
- pos: -3.5,38.5
+ pos: -28.5,-26.5
parent: 2
- - uid: 3738
+ - uid: 6019
components:
- type: Transform
- pos: -6.5,44.5
+ pos: -31.5,-26.5
parent: 2
- - uid: 3739
+ - uid: 6021
components:
- type: Transform
- pos: -3.5,44.5
+ pos: -29.5,-26.5
parent: 2
- - uid: 3740
+ - uid: 6077
components:
- type: Transform
- pos: -8.5,44.5
+ pos: 48.5,50.5
parent: 2
- - uid: 3741
+ - uid: 6078
components:
- type: Transform
- pos: -7.5,44.5
+ pos: 48.5,51.5
parent: 2
- - uid: 3743
+ - uid: 6122
components:
- type: Transform
- pos: -9.5,44.5
+ pos: -17.5,23.5
parent: 2
- - uid: 3754
+ - uid: 6123
components:
- type: Transform
- pos: -63.5,10.5
+ pos: -22.5,23.5
parent: 2
- - uid: 3755
+ - uid: 6171
components:
- type: Transform
- pos: -52.5,24.5
+ pos: 83.5,24.5
parent: 2
- - uid: 3756
+ - uid: 6190
components:
- type: Transform
- pos: -52.5,19.5
+ pos: 11.5,-37.5
parent: 2
- - uid: 3760
+ - uid: 6193
components:
- type: Transform
- pos: -61.5,10.5
+ pos: -35.5,7.5
parent: 2
- - uid: 3764
+ - uid: 6213
components:
- type: Transform
- pos: -46.5,15.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-3.5
parent: 2
- - uid: 3766
+ - uid: 6214
components:
- type: Transform
- pos: -52.5,21.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-2.5
parent: 2
- - uid: 3768
+ - uid: 6275
components:
- type: Transform
- pos: -15.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,19.5
parent: 2
- - uid: 3769
+ - uid: 6277
components:
- type: Transform
- pos: -4.5,44.5
+ pos: -98.5,18.5
parent: 2
- - uid: 3770
+ - uid: 6313
components:
- type: Transform
- pos: -31.5,36.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,25.5
parent: 2
- - uid: 3771
+ - uid: 6334
components:
- type: Transform
- pos: -5.5,44.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,58.5
parent: 2
- - uid: 3790
+ - uid: 6414
components:
- type: Transform
- pos: -30.5,-22.5
+ pos: 45.5,-31.5
parent: 2
- - uid: 3791
+ - uid: 6465
components:
- type: Transform
- pos: -31.5,-25.5
+ pos: 59.5,-32.5
parent: 2
- - uid: 3793
+ - uid: 6466
components:
- type: Transform
- pos: -28.5,-22.5
+ pos: 54.5,-36.5
parent: 2
- - uid: 3795
+ - uid: 6467
components:
- type: Transform
- pos: 40.5,1.5
+ pos: 54.5,-32.5
parent: 2
- - uid: 3798
+ - uid: 6632
components:
- type: Transform
- pos: 40.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-47.5
parent: 2
- - uid: 3802
+ - uid: 6655
components:
- type: Transform
- pos: -24.5,-26.5
+ pos: -23.5,23.5
parent: 2
- - uid: 3803
+ - uid: 6664
components:
- type: Transform
- pos: -24.5,-22.5
+ pos: -20.5,-47.5
parent: 2
- - uid: 3804
+ - uid: 6670
components:
- type: Transform
- pos: -27.5,-22.5
+ pos: -52.5,-39.5
parent: 2
- - uid: 3806
+ - uid: 6671
components:
- type: Transform
- pos: 51.5,-32.5
+ pos: -50.5,-39.5
parent: 2
- - uid: 3807
+ - uid: 6672
components:
- type: Transform
- pos: 52.5,-32.5
+ pos: -37.5,-39.5
parent: 2
- - uid: 3808
+ - uid: 6696
components:
- type: Transform
- pos: 53.5,-32.5
+ pos: -55.5,-37.5
parent: 2
- - uid: 3809
+ - uid: 6703
components:
- type: Transform
- pos: -23.5,-25.5
+ pos: -35.5,-39.5
parent: 2
- - uid: 3810
+ - uid: 6704
components:
- type: Transform
- pos: -23.5,-22.5
+ pos: -49.5,-39.5
parent: 2
- - uid: 3811
+ - uid: 6711
components:
- type: Transform
- pos: -23.5,-26.5
+ pos: -30.5,-26.5
parent: 2
- - uid: 3818
+ - uid: 6713
components:
- type: Transform
- pos: 63.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-43.5
parent: 2
- - uid: 3819
+ - uid: 6725
components:
- type: Transform
- pos: 57.5,1.5
+ pos: -23.5,-48.5
parent: 2
- - uid: 3840
+ - uid: 6735
components:
- type: Transform
- pos: 58.5,-32.5
+ pos: -66.5,-21.5
parent: 2
- - uid: 3875
+ - uid: 6765
components:
- type: Transform
- pos: 74.5,1.5
+ pos: -66.5,-20.5
parent: 2
- - uid: 3894
+ - uid: 6775
components:
- type: Transform
- pos: -36.5,-11.5
+ pos: -51.5,-39.5
parent: 2
- - uid: 3902
+ - uid: 6776
components:
- type: Transform
- pos: 65.5,1.5
+ pos: -48.5,-39.5
parent: 2
- - uid: 3903
+ - uid: 6777
components:
- type: Transform
- pos: -98.5,31.5
+ pos: -46.5,-39.5
parent: 2
- - uid: 3917
+ - uid: 6790
components:
- type: Transform
- pos: -93.5,-9.5
+ pos: -77.5,20.5
parent: 2
- - uid: 3969
+ - uid: 6805
components:
- type: Transform
- pos: -36.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-49.5
parent: 2
- - uid: 3970
+ - uid: 6845
components:
- type: Transform
- pos: 11.5,57.5
+ pos: -17.5,-48.5
parent: 2
- - uid: 4001
+ - uid: 6848
components:
- type: Transform
- pos: 56.5,58.5
+ pos: -44.5,38.5
parent: 2
- - uid: 4009
+ - uid: 6892
components:
- type: Transform
- pos: 56.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,-0.5
parent: 2
- - uid: 4022
+ - uid: 6893
components:
- type: Transform
- pos: 58.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,6.5
parent: 2
- - uid: 4038
+ - uid: 6895
components:
- type: Transform
- pos: -94.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -90.5,6.5
parent: 2
- - uid: 4056
+ - uid: 6925
components:
- type: Transform
- pos: -93.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-47.5
parent: 2
- - uid: 4061
+ - uid: 6926
components:
- type: Transform
- pos: 53.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-47.5
parent: 2
- - uid: 4063
+ - uid: 6932
components:
- type: Transform
- pos: 52.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-47.5
parent: 2
- - uid: 4074
+ - uid: 6944
components:
- type: Transform
- pos: 13.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,6.5
parent: 2
- - uid: 4075
+ - uid: 7089
components:
- type: Transform
- pos: 63.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,6.5
parent: 2
- - uid: 4076
+ - uid: 7117
components:
- type: Transform
- pos: 51.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-20.5
parent: 2
- - uid: 4077
+ - uid: 7194
components:
- type: Transform
- pos: 54.5,31.5
+ pos: -64.5,-13.5
parent: 2
- - uid: 4080
+ - uid: 7239
components:
- type: Transform
- pos: 55.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-21.5
parent: 2
- - uid: 4082
+ - uid: 7296
components:
- type: Transform
- pos: 58.5,31.5
+ pos: -52.5,18.5
parent: 2
- - uid: 4101
+ - uid: 7297
components:
- type: Transform
- pos: -42.5,36.5
+ pos: -52.5,20.5
parent: 2
- - uid: 4102
+ - uid: 7320
components:
- type: Transform
- pos: 56.5,31.5
+ pos: -66.5,-12.5
parent: 2
- - uid: 4103
+ - uid: 7325
components:
- type: Transform
- pos: 57.5,31.5
+ pos: -63.5,-22.5
parent: 2
- - uid: 4117
+ - uid: 7330
components:
- type: Transform
- pos: 54.5,9.5
+ pos: -63.5,-23.5
parent: 2
- - uid: 4143
+ - uid: 7333
components:
- type: Transform
- pos: 52.5,9.5
+ pos: -63.5,-13.5
parent: 2
- - uid: 4151
+ - uid: 7335
components:
- type: Transform
- pos: 60.5,9.5
+ pos: -63.5,-30.5
parent: 2
- - uid: 4152
+ - uid: 7336
components:
- type: Transform
- pos: 56.5,9.5
+ pos: -63.5,-31.5
parent: 2
- - uid: 4159
+ - uid: 7337
components:
- type: Transform
- pos: 50.5,45.5
+ pos: -63.5,-28.5
parent: 2
- - uid: 4180
+ - uid: 7418
components:
- type: Transform
- pos: 48.5,53.5
+ pos: -28.5,63.5
parent: 2
- - uid: 4181
+ - uid: 7423
components:
- type: Transform
- pos: 42.5,52.5
+ pos: -66.5,-13.5
parent: 2
- - uid: 4184
+ - uid: 7424
components:
- type: Transform
- pos: 42.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-49.5
parent: 2
- - uid: 4185
+ - uid: 7431
components:
- type: Transform
- pos: 42.5,57.5
+ pos: -66.5,-2.5
parent: 2
- - uid: 4192
+ - uid: 7487
components:
- type: Transform
- pos: 58.5,-36.5
+ pos: -10.5,68.5
parent: 2
- - uid: 4195
+ - uid: 7493
components:
- type: Transform
- pos: 36.5,53.5
+ pos: -53.5,54.5
parent: 2
- - uid: 4197
+ - uid: 7505
components:
- type: Transform
- pos: 48.5,57.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,4.5
parent: 2
- - uid: 4199
+ - uid: 7563
components:
- type: Transform
- pos: 36.5,57.5
+ pos: -75.5,20.5
parent: 2
- - uid: 4203
+ - uid: 7584
components:
- type: Transform
- pos: -94.5,28.5
+ pos: 5.5,43.5
parent: 2
- - uid: 4205
+ - uid: 7598
components:
- type: Transform
- pos: 42.5,58.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,0.5
parent: 2
- - uid: 4211
+ - uid: 7599
components:
- type: Transform
- pos: 51.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-0.5
parent: 2
- - uid: 4213
+ - uid: 7604
components:
- type: Transform
- pos: 59.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,-0.5
parent: 2
- - uid: 4215
+ - uid: 7605
components:
- type: Transform
- pos: 51.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,-0.5
parent: 2
- - uid: 4219
+ - uid: 7637
components:
- type: Transform
- pos: 41.5,-35.5
+ pos: -62.5,10.5
parent: 2
- - uid: 4220
+ - uid: 7643
components:
- type: Transform
- pos: -96.5,30.5
+ pos: -63.5,13.5
parent: 2
- - uid: 4221
+ - uid: 7644
components:
- type: Transform
- pos: -97.5,30.5
+ pos: -63.5,14.5
parent: 2
- - uid: 4226
+ - uid: 7645
components:
- type: Transform
- pos: -93.5,24.5
+ pos: -62.5,14.5
parent: 2
- - uid: 4237
+ - uid: 7647
components:
- type: Transform
- pos: -93.5,26.5
+ pos: -61.5,14.5
parent: 2
- - uid: 4238
+ - uid: 7649
components:
- type: Transform
- pos: -93.5,23.5
+ pos: -56.5,10.5
parent: 2
- - uid: 4239
+ - uid: 7651
components:
- type: Transform
- pos: -93.5,25.5
+ pos: -63.5,11.5
parent: 2
- - uid: 4244
+ - uid: 7652
components:
- type: Transform
- pos: 73.5,23.5
+ pos: -63.5,12.5
parent: 2
- - uid: 4246
+ - uid: 7659
components:
- type: Transform
- pos: 51.5,45.5
+ pos: -99.5,2.5
parent: 2
- - uid: 4247
+ - uid: 7666
components:
- type: Transform
- pos: 85.5,69.5
+ pos: -99.5,14.5
parent: 2
- - uid: 4249
+ - uid: 7667
components:
- type: Transform
- pos: 56.5,25.5
+ pos: 4.5,49.5
parent: 2
- - uid: 4251
+ - uid: 7669
components:
- type: Transform
- pos: 58.5,25.5
+ pos: -79.5,20.5
parent: 2
- - uid: 4253
+ - uid: 7676
components:
- type: Transform
- pos: 60.5,25.5
+ pos: -99.5,1.5
parent: 2
- - uid: 4255
+ - uid: 7744
components:
- type: Transform
- pos: 62.5,25.5
+ pos: -74.5,18.5
parent: 2
- - uid: 4257
+ - uid: 7754
components:
- type: Transform
- pos: 64.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,61.5
parent: 2
- - uid: 4260
+ - uid: 7755
components:
- type: Transform
- pos: 69.5,9.5
+ pos: -94.5,10.5
parent: 2
- - uid: 4261
+ - uid: 7756
components:
- type: Transform
- pos: 68.5,25.5
+ pos: -81.5,19.5
parent: 2
- - uid: 4262
+ - uid: 7757
components:
- type: Transform
- pos: 54.5,25.5
+ pos: -82.5,17.5
parent: 2
- - uid: 4264
+ - uid: 7758
components:
- type: Transform
- pos: 72.5,23.5
+ pos: -82.5,18.5
parent: 2
- - uid: 4266
+ - uid: 7759
components:
- type: Transform
- pos: 52.5,25.5
+ pos: -93.5,10.5
parent: 2
- - uid: 4290
+ - uid: 7761
components:
- type: Transform
- pos: 64.5,9.5
+ pos: -78.5,23.5
parent: 2
- - uid: 4308
+ - uid: 7763
components:
- type: Transform
- pos: 62.5,9.5
+ pos: -91.5,23.5
parent: 2
- - uid: 4312
+ - uid: 7764
components:
- type: Transform
- pos: 91.5,63.5
+ pos: -77.5,23.5
parent: 2
- - uid: 4314
+ - uid: 7766
components:
- type: Transform
- pos: 70.5,10.5
+ pos: -90.5,23.5
parent: 2
- - uid: 4328
+ - uid: 7780
components:
- type: Transform
- pos: 90.5,65.5
+ pos: -74.5,13.5
parent: 2
- - uid: 4333
+ - uid: 7784
components:
- type: Transform
- pos: -52.5,56.5
+ pos: -74.5,11.5
parent: 2
- - uid: 4366
+ - uid: 7790
components:
- type: Transform
- pos: 54.5,7.5
+ pos: -74.5,10.5
parent: 2
- - uid: 4369
+ - uid: 7819
components:
- type: Transform
- pos: -95.5,-12.5
+ pos: -99.5,15.5
parent: 2
- - uid: 4371
+ - uid: 7820
components:
- type: Transform
- pos: 60.5,31.5
+ pos: -81.5,11.5
parent: 2
- - uid: 4384
+ - uid: 7825
components:
- type: Transform
- pos: 55.5,3.5
+ pos: -82.5,11.5
parent: 2
- - uid: 4389
+ - uid: 7853
components:
- type: Transform
- pos: 54.5,6.5
+ pos: -74.5,12.5
parent: 2
- - uid: 4390
+ - uid: 7854
components:
- type: Transform
- pos: 54.5,5.5
+ pos: 4.5,58.5
parent: 2
- - uid: 4402
+ - uid: 7879
components:
- type: Transform
- pos: 90.5,66.5
+ pos: -90.5,-6.5
parent: 2
- - uid: 4403
+ - uid: 7912
components:
- type: Transform
- pos: 92.5,63.5
+ pos: -99.5,17.5
parent: 2
- - uid: 4407
+ - uid: 7921
components:
- type: Transform
- pos: 95.5,61.5
+ pos: -98.5,-1.5
parent: 2
- - uid: 4409
+ - uid: 7928
components:
- type: Transform
- pos: 95.5,62.5
+ pos: 66.5,-29.5
parent: 2
- - uid: 4411
+ - uid: 7936
components:
- type: Transform
- pos: 96.5,59.5
+ pos: -95.5,11.5
parent: 2
- - uid: 4412
+ - uid: 7946
components:
- type: Transform
- pos: 96.5,58.5
+ pos: -54.5,54.5
parent: 2
- - uid: 4419
+ - uid: 7949
components:
- type: Transform
- pos: 51.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -88.5,19.5
parent: 2
- - uid: 4425
+ - uid: 7959
components:
- type: Transform
- pos: 56.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,12.5
parent: 2
- - uid: 4442
+ - uid: 7960
components:
- type: Transform
- pos: 96.5,61.5
+ pos: -74.5,17.5
parent: 2
- - uid: 4458
+ - uid: 7966
components:
- type: Transform
- pos: 96.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,14.5
parent: 2
- - uid: 4460
+ - uid: 7970
components:
- type: Transform
- pos: 90.5,64.5
+ pos: -95.5,12.5
parent: 2
- - uid: 4479
+ - uid: 7972
components:
- type: Transform
- pos: 52.5,70.5
+ pos: 33.5,35.5
parent: 2
- - uid: 4483
+ - uid: 8020
components:
- type: Transform
- pos: 61.5,31.5
+ pos: 47.5,-6.5
parent: 2
- - uid: 4490
+ - uid: 8021
components:
- type: Transform
- pos: 82.5,8.5
+ pos: -82.5,12.5
parent: 2
- - uid: 4496
+ - uid: 8030
components:
- type: Transform
- pos: 81.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -28.5,5.5
parent: 2
- - uid: 4502
+ - uid: 8034
components:
- type: Transform
- pos: -94.5,-11.5
+ pos: -81.5,10.5
parent: 2
- - uid: 4503
+ - uid: 8035
components:
- type: Transform
- pos: 69.5,31.5
+ pos: -80.5,10.5
parent: 2
- - uid: 4516
+ - uid: 8061
components:
- type: Transform
- pos: 78.5,26.5
+ pos: 31.5,36.5
parent: 2
- - uid: 4519
+ - uid: 8074
components:
- type: Transform
- pos: 13.5,52.5
+ pos: 31.5,37.5
parent: 2
- - uid: 4522
+ - uid: 8075
components:
- type: Transform
- pos: 48.5,52.5
+ pos: -78.5,-6.5
parent: 2
- - uid: 4525
+ - uid: 8085
components:
- type: Transform
- pos: 78.5,25.5
+ pos: 32.5,37.5
parent: 2
- - uid: 4529
+ - uid: 8096
components:
- type: Transform
- pos: 69.5,26.5
+ pos: 31.5,34.5
parent: 2
- - uid: 4535
+ - uid: 8148
components:
- type: Transform
- pos: 57.5,49.5
+ pos: -125.5,69.5
parent: 2
- - uid: 4536
+ - uid: 8203
components:
- type: Transform
- pos: 59.5,49.5
+ pos: 11.5,63.5
parent: 2
- - uid: 4538
+ - uid: 8233
components:
- type: Transform
- pos: 58.5,49.5
+ pos: -53.5,52.5
parent: 2
- - uid: 4539
+ - uid: 8234
components:
- type: Transform
- pos: 56.5,49.5
+ pos: 64.5,34.5
parent: 2
- - uid: 4540
+ - uid: 8235
components:
- type: Transform
- pos: 60.5,49.5
+ pos: 65.5,34.5
parent: 2
- - uid: 4541
+ - uid: 8269
components:
- type: Transform
- pos: 55.5,46.5
+ pos: -46.5,18.5
parent: 2
- - uid: 4551
+ - uid: 8313
components:
- type: Transform
- pos: 64.5,31.5
+ pos: -50.5,54.5
parent: 2
- - uid: 4554
+ - uid: 8370
components:
- type: Transform
- pos: 41.5,31.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,5.5
parent: 2
- - uid: 4563
+ - uid: 8371
components:
- type: Transform
- pos: 54.5,45.5
+ pos: 75.5,28.5
parent: 2
- - uid: 4564
+ - uid: 8445
components:
- type: Transform
- pos: 53.5,45.5
+ pos: 76.5,28.5
parent: 2
- - uid: 4566
+ - uid: 8622
components:
- type: Transform
- pos: 55.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,47.5
parent: 2
- - uid: 4567
+ - uid: 8638
components:
- type: Transform
- pos: 55.5,47.5
+ pos: -70.5,37.5
parent: 2
- - uid: 4568
+ - uid: 8657
components:
- type: Transform
- pos: 55.5,49.5
+ pos: -74.5,19.5
parent: 2
- - uid: 4571
+ - uid: 8658
components:
- type: Transform
- pos: 50.5,27.5
+ pos: -74.5,20.5
parent: 2
- - uid: 4572
+ - uid: 8660
components:
- type: Transform
- pos: 51.5,48.5
+ pos: -74.5,22.5
parent: 2
- - uid: 4573
+ - uid: 8661
components:
- type: Transform
- pos: 50.5,28.5
+ pos: -74.5,23.5
parent: 2
- - uid: 4581
+ - uid: 8662
components:
- type: Transform
- pos: 50.5,30.5
+ pos: -74.5,24.5
parent: 2
- - uid: 4584
+ - uid: 8663
components:
- type: Transform
- pos: 51.5,52.5
+ pos: -74.5,25.5
parent: 2
- - uid: 4589
+ - uid: 8691
components:
- type: Transform
- pos: 52.5,52.5
+ pos: -66.5,23.5
parent: 2
- - uid: 4594
+ - uid: 8692
components:
- type: Transform
- pos: 53.5,52.5
+ pos: -66.5,26.5
parent: 2
- - uid: 4599
+ - uid: 8693
components:
- type: Transform
- pos: 54.5,52.5
+ pos: -66.5,25.5
parent: 2
- - uid: 4604
+ - uid: 8695
components:
- type: Transform
- pos: 50.5,29.5
+ pos: -52.5,10.5
parent: 2
- - uid: 4609
+ - uid: 8698
components:
- type: Transform
- pos: 54.5,53.5
+ pos: -58.5,37.5
parent: 2
- - uid: 4614
+ - uid: 8706
components:
- type: Transform
- pos: 52.5,68.5
+ pos: -56.5,15.5
parent: 2
- - uid: 4619
+ - uid: 8707
components:
- type: Transform
- pos: 45.5,35.5
+ pos: -64.5,19.5
parent: 2
- - uid: 4625
+ - uid: 8708
components:
- type: Transform
- pos: 50.5,31.5
+ pos: -56.5,20.5
parent: 2
- - uid: 4626
+ - uid: 8709
components:
- type: Transform
- pos: 52.5,66.5
+ pos: -56.5,14.5
parent: 2
- - uid: 4627
+ - uid: 8720
components:
- type: Transform
- pos: 52.5,65.5
+ pos: -40.5,29.5
parent: 2
- - uid: 4636
+ - uid: 8721
components:
- type: Transform
- pos: 60.5,71.5
+ pos: -40.5,28.5
parent: 2
- - uid: 4637
+ - uid: 8722
components:
- type: Transform
- pos: 61.5,71.5
+ pos: -40.5,30.5
parent: 2
- - uid: 4638
+ - uid: 8723
components:
- type: Transform
- pos: 62.5,71.5
+ pos: -40.5,32.5
parent: 2
- - uid: 4639
+ - uid: 8724
components:
- type: Transform
- pos: 63.5,71.5
+ pos: -40.5,31.5
parent: 2
- - uid: 4643
+ - uid: 8726
components:
- type: Transform
- pos: 55.5,71.5
+ pos: -40.5,36.5
parent: 2
- - uid: 4650
+ - uid: 8727
components:
- type: Transform
- pos: 56.5,71.5
+ pos: -41.5,36.5
parent: 2
- - uid: 4651
+ - uid: 8729
components:
- type: Transform
- pos: 58.5,71.5
+ pos: -40.5,35.5
parent: 2
- - uid: 4652
+ - uid: 8731
components:
- type: Transform
- pos: 66.5,71.5
+ pos: -40.5,33.5
parent: 2
- - uid: 4653
+ - uid: 8736
components:
- type: Transform
- pos: 89.5,50.5
+ pos: -36.5,36.5
parent: 2
- - uid: 4654
+ - uid: 8741
components:
- type: Transform
- pos: 88.5,50.5
+ pos: -39.5,36.5
parent: 2
- - uid: 4659
+ - uid: 8756
components:
- type: Transform
- pos: 41.5,27.5
+ pos: -60.5,11.5
parent: 2
- - uid: 4661
+ - uid: 8780
components:
- type: Transform
- pos: 14.5,51.5
+ pos: -60.5,13.5
parent: 2
- - uid: 4663
+ - uid: 8781
components:
- type: Transform
- pos: 22.5,51.5
+ pos: -60.5,14.5
parent: 2
- - uid: 4668
+ - uid: 8782
components:
- type: Transform
- pos: 88.5,51.5
+ pos: -56.5,11.5
parent: 2
- - uid: 4669
+ - uid: 8784
components:
- type: Transform
- pos: 92.5,20.5
+ pos: -56.5,13.5
parent: 2
- - uid: 4670
+ - uid: 8785
components:
- type: Transform
- pos: 92.5,19.5
+ pos: -48.5,28.5
parent: 2
- - uid: 4687
+ - uid: 8787
components:
- type: Transform
- pos: 79.5,4.5
+ pos: -49.5,28.5
parent: 2
- - uid: 4688
+ - uid: 8790
components:
- type: Transform
- pos: 79.5,5.5
+ pos: -52.5,15.5
parent: 2
- - uid: 4695
+ - uid: 8791
components:
- type: Transform
- pos: 91.5,20.5
+ pos: -46.5,26.5
parent: 2
- - uid: 4696
+ - uid: 8797
components:
- type: Transform
- pos: 88.5,52.5
+ pos: -56.5,21.5
parent: 2
- - uid: 4712
+ - uid: 8802
components:
- type: Transform
- pos: 50.5,33.5
+ pos: -56.5,28.5
parent: 2
- - uid: 4714
+ - uid: 8841
components:
- type: Transform
- pos: 50.5,35.5
+ pos: -47.5,19.5
parent: 2
- - uid: 4715
+ - uid: 8842
components:
- type: Transform
- pos: 50.5,34.5
+ pos: -46.5,20.5
parent: 2
- - uid: 4737
+ - uid: 8843
components:
- type: Transform
- pos: 42.5,27.5
+ pos: -46.5,19.5
parent: 2
- - uid: 4738
+ - uid: 8844
components:
- type: Transform
- pos: 43.5,27.5
+ pos: -46.5,22.5
parent: 2
- - uid: 4743
+ - uid: 8846
components:
- type: Transform
- pos: 44.5,27.5
+ pos: -46.5,24.5
parent: 2
- - uid: 4758
+ - uid: 8847
components:
- type: Transform
- pos: 49.5,27.5
+ pos: -46.5,23.5
parent: 2
- - uid: 4767
+ - uid: 8848
components:
- type: Transform
- pos: 94.5,46.5
+ pos: -46.5,27.5
parent: 2
- - uid: 4773
+ - uid: 8849
components:
- type: Transform
- pos: 87.5,20.5
+ pos: -46.5,28.5
parent: 2
- - uid: 4774
+ - uid: 8850
components:
- type: Transform
- pos: 88.5,20.5
+ pos: -50.5,28.5
parent: 2
- - uid: 4780
+ - uid: 8851
components:
- type: Transform
- pos: 87.5,10.5
+ pos: -47.5,28.5
parent: 2
- - uid: 4784
+ - uid: 8864
components:
- type: Transform
- pos: 87.5,12.5
+ pos: -52.5,25.5
parent: 2
- - uid: 4785
+ - uid: 8865
components:
- type: Transform
- pos: 87.5,11.5
+ pos: -52.5,26.5
parent: 2
- - uid: 4786
+ - uid: 8866
components:
- type: Transform
- pos: 86.5,7.5
+ pos: -52.5,27.5
parent: 2
- - uid: 4787
+ - uid: 8867
components:
- type: Transform
- pos: 77.5,4.5
+ pos: -52.5,28.5
parent: 2
- - uid: 4795
+ - uid: 8877
components:
- type: Transform
- pos: 92.5,15.5
+ pos: -64.5,20.5
parent: 2
- - uid: 4819
+ - uid: 8878
components:
- type: Transform
- pos: 41.5,35.5
+ pos: -64.5,18.5
parent: 2
- - uid: 4820
+ - uid: 8879
components:
- type: Transform
- pos: 42.5,35.5
+ pos: -64.5,17.5
parent: 2
- - uid: 4821
+ - uid: 8880
components:
- type: Transform
- pos: 54.5,54.5
+ pos: -64.5,16.5
parent: 2
- - uid: 4822
+ - uid: 8882
components:
- type: Transform
- pos: 54.5,55.5
+ pos: -64.5,14.5
parent: 2
- - uid: 4823
+ - uid: 8897
components:
- type: Transform
- pos: 55.5,55.5
+ pos: -56.5,32.5
parent: 2
- - uid: 4824
+ - uid: 8923
components:
- type: Transform
- pos: 56.5,55.5
+ pos: -65.5,29.5
parent: 2
- - uid: 4825
+ - uid: 8924
components:
- type: Transform
- pos: 51.5,35.5
+ pos: -65.5,30.5
parent: 2
- - uid: 4826
+ - uid: 8926
components:
- type: Transform
- pos: 51.5,38.5
+ pos: -65.5,28.5
parent: 2
- - uid: 4827
+ - uid: 8930
components:
- type: Transform
- pos: 51.5,36.5
+ pos: -57.5,28.5
parent: 2
- - uid: 4829
+ - uid: 8933
components:
- type: Transform
- pos: 51.5,40.5
+ pos: -55.5,32.5
parent: 2
- - uid: 4830
+ - uid: 8953
components:
- type: Transform
- pos: 62.5,55.5
+ pos: -58.5,32.5
parent: 2
- - uid: 4831
+ - uid: 8957
components:
- type: Transform
- pos: 63.5,55.5
+ pos: -58.5,31.5
parent: 2
- - uid: 4834
+ - uid: 8967
components:
- type: Transform
- pos: 43.5,35.5
+ pos: -64.5,35.5
parent: 2
- - uid: 4835
+ - uid: 8972
components:
- type: Transform
- pos: 44.5,35.5
+ pos: -52.5,32.5
parent: 2
- - uid: 4854
+ - uid: 8975
components:
- type: Transform
- pos: -42.5,70.5
+ pos: -60.5,37.5
parent: 2
- - uid: 4855
+ - uid: 8976
components:
- type: Transform
- pos: -16.5,67.5
+ pos: -59.5,37.5
parent: 2
- - uid: 4856
+ - uid: 8985
components:
- type: Transform
- pos: -6.5,67.5
+ pos: -51.5,28.5
parent: 2
- - uid: 4857
+ - uid: 8987
components:
- type: Transform
- pos: -12.5,67.5
+ pos: -51.5,32.5
parent: 2
- - uid: 4861
+ - uid: 8992
components:
- type: Transform
- pos: 80.5,53.5
+ pos: -64.5,31.5
parent: 2
- - uid: 4862
+ - uid: 8993
components:
- type: Transform
- pos: 79.5,55.5
+ pos: -64.5,32.5
parent: 2
- - uid: 4864
+ - uid: 8996
components:
- type: Transform
- pos: 86.5,6.5
+ pos: -63.5,37.5
parent: 2
- - uid: 4867
+ - uid: 8997
components:
- type: Transform
- pos: 82.5,53.5
+ pos: -64.5,36.5
parent: 2
- - uid: 4872
+ - uid: 8998
components:
- type: Transform
- pos: 50.5,42.5
+ pos: -62.5,37.5
parent: 2
- - uid: 4881
+ - uid: 8999
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,-1.5
+ pos: -61.5,37.5
parent: 2
- - uid: 4895
+ - uid: 9018
components:
- type: Transform
- pos: 94.5,22.5
+ pos: -57.5,31.5
parent: 2
- - uid: 4897
+ - uid: 9020
components:
- type: Transform
- pos: 94.5,23.5
+ pos: -56.5,38.5
parent: 2
- - uid: 4899
+ - uid: 9025
components:
- type: Transform
- pos: 96.5,53.5
+ pos: -53.5,32.5
parent: 2
- - uid: 4901
+ - uid: 9026
components:
- type: Transform
- pos: 96.5,55.5
+ pos: -50.5,32.5
parent: 2
- - uid: 4907
+ - uid: 9032
components:
- type: Transform
- pos: 95.5,63.5
+ pos: -57.5,32.5
parent: 2
- - uid: 4914
+ - uid: 9034
components:
- type: Transform
- pos: 57.5,71.5
+ pos: -65.5,37.5
parent: 2
- - uid: 4921
+ - uid: 9055
components:
- type: Transform
- pos: 93.5,63.5
+ pos: -35.5,44.5
parent: 2
- - uid: 4931
+ - uid: 9058
components:
- type: Transform
- pos: 64.5,71.5
+ pos: -56.5,42.5
parent: 2
- - uid: 4932
+ - uid: 9060
components:
- type: Transform
- pos: 15.5,51.5
+ pos: -49.5,32.5
parent: 2
- - uid: 4933
+ - uid: 9064
components:
- type: Transform
- pos: 22.5,52.5
+ pos: -45.5,32.5
parent: 2
- - uid: 4934
+ - uid: 9065
components:
- type: Transform
- pos: 42.5,31.5
+ pos: -44.5,32.5
parent: 2
- - uid: 4935
+ - uid: 9066
components:
- type: Transform
- pos: 43.5,31.5
+ pos: -49.5,36.5
parent: 2
- - uid: 4936
+ - uid: 9068
components:
- type: Transform
- pos: 44.5,31.5
+ pos: -41.5,32.5
parent: 2
- - uid: 4937
+ - uid: 9069
components:
- type: Transform
- pos: 50.5,41.5
+ pos: -45.5,28.5
parent: 2
- - uid: 4938
+ - uid: 9070
components:
- type: Transform
- pos: 50.5,44.5
+ pos: -44.5,28.5
parent: 2
- - uid: 4940
+ - uid: 9072
components:
- type: Transform
- pos: 52.5,45.5
+ pos: -42.5,28.5
parent: 2
- - uid: 4941
+ - uid: 9073
components:
- type: Transform
- pos: 51.5,39.5
+ pos: -41.5,28.5
parent: 2
- - uid: 4942
+ - uid: 9075
components:
- type: Transform
- pos: 51.5,41.5
+ pos: -56.5,40.5
parent: 2
- - uid: 4944
+ - uid: 9076
components:
- type: Transform
- pos: 51.5,47.5
+ pos: -52.5,39.5
parent: 2
- - uid: 4946
+ - uid: 9077
components:
- type: Transform
- pos: 63.5,54.5
+ pos: -52.5,40.5
parent: 2
- - uid: 4947
+ - uid: 9078
components:
- type: Transform
- pos: 63.5,53.5
+ pos: -52.5,41.5
parent: 2
- - uid: 4948
+ - uid: 9099
components:
- type: Transform
- pos: 63.5,52.5
+ pos: 48.5,58.5
parent: 2
- - uid: 4949
+ - uid: 9120
components:
- type: Transform
- pos: 63.5,51.5
+ pos: -31.5,25.5
parent: 2
- - uid: 4950
+ - uid: 9124
components:
- type: Transform
- pos: 67.5,71.5
+ pos: 82.5,25.5
parent: 2
- - uid: 4963
+ - uid: 9127
components:
- type: Transform
- pos: -77.5,-8.5
+ pos: -37.5,36.5
parent: 2
- - uid: 5018
+ - uid: 9131
components:
- type: Transform
- pos: -92.5,10.5
+ pos: -52.5,42.5
parent: 2
- - uid: 5026
+ - uid: 9135
components:
- type: Transform
- pos: 77.5,-22.5
+ pos: 36.5,58.5
parent: 2
- - uid: 5027
+ - uid: 9175
components:
- type: Transform
- pos: 78.5,-22.5
+ pos: 11.5,59.5
parent: 2
- - uid: 5031
+ - uid: 9226
components:
- type: Transform
- pos: 78.5,-18.5
+ pos: 33.5,50.5
parent: 2
- - uid: 5035
+ - uid: 9232
components:
- type: Transform
- pos: 78.5,-14.5
+ pos: 33.5,51.5
parent: 2
- - uid: 5036
+ - uid: 9234
components:
- type: Transform
- pos: 78.5,-13.5
+ pos: 47.5,-0.5
parent: 2
- - uid: 5037
+ - uid: 9239
components:
- type: Transform
- pos: 78.5,-12.5
+ pos: 42.5,16.5
parent: 2
- - uid: 5038
+ - uid: 9241
components:
- type: Transform
- pos: 79.5,-11.5
+ pos: 43.5,16.5
parent: 2
- - uid: 5039
+ - uid: 9247
components:
- type: Transform
- pos: 79.5,-10.5
+ pos: 44.5,-11.5
parent: 2
- - uid: 5040
+ - uid: 9248
components:
- type: Transform
- pos: 79.5,-9.5
+ pos: 44.5,16.5
parent: 2
- - uid: 5041
+ - uid: 9249
components:
- type: Transform
- pos: 79.5,-8.5
+ pos: 44.5,-10.5
parent: 2
- - uid: 5059
+ - uid: 9250
components:
- type: Transform
- pos: 73.5,1.5
+ pos: 38.5,50.5
parent: 2
- - uid: 5060
+ - uid: 9251
components:
- type: Transform
- pos: 72.5,1.5
+ pos: 36.5,51.5
parent: 2
- - uid: 5061
+ - uid: 9269
components:
- type: Transform
- pos: 64.5,1.5
+ pos: 46.5,51.5
parent: 2
- - uid: 5079
+ - uid: 9278
components:
- type: Transform
- pos: 56.5,1.5
+ pos: 46.5,50.5
parent: 2
- - uid: 5083
+ - uid: 9279
components:
- type: Transform
- pos: 55.5,4.5
+ pos: 36.5,50.5
parent: 2
- - uid: 5084
+ - uid: 9335
components:
- type: Transform
- pos: 55.5,2.5
+ pos: 78.5,25.5
parent: 2
- - uid: 5089
+ - uid: 9342
components:
- type: Transform
- pos: -98.5,17.5
+ pos: 81.5,25.5
parent: 2
- - uid: 5090
+ - uid: 9414
components:
- type: Transform
- pos: 67.5,-29.5
+ pos: -50.5,47.5
parent: 2
- - uid: 5094
+ - uid: 9415
components:
- type: Transform
- pos: 72.5,-23.5
+ pos: -50.5,48.5
parent: 2
- - uid: 5106
+ - uid: 9416
components:
- type: Transform
- pos: 77.5,1.5
+ pos: -50.5,49.5
parent: 2
- - uid: 5108
+ - uid: 9417
components:
- type: Transform
- pos: 76.5,1.5
+ pos: -50.5,50.5
parent: 2
- - uid: 5159
+ - uid: 9418
components:
- type: Transform
- pos: -28.5,54.5
+ pos: -50.5,51.5
parent: 2
- - uid: 5198
+ - uid: 9419
components:
- type: Transform
- pos: -60.5,10.5
+ pos: -48.5,51.5
parent: 2
- - uid: 5220
+ - uid: 9420
components:
- type: Transform
- pos: 47.5,35.5
+ pos: -48.5,50.5
parent: 2
- - uid: 5221
+ - uid: 9421
components:
- type: Transform
- pos: 46.5,35.5
+ pos: -48.5,49.5
parent: 2
- - uid: 5222
+ - uid: 9422
components:
- type: Transform
- pos: 48.5,35.5
+ pos: -48.5,48.5
parent: 2
- - uid: 5223
+ - uid: 9423
components:
- type: Transform
- pos: 49.5,35.5
+ pos: -48.5,47.5
parent: 2
- - uid: 5224
+ - uid: 9424
components:
- type: Transform
- pos: 48.5,31.5
+ pos: -50.5,52.5
parent: 2
- - uid: 5231
+ - uid: 9425
components:
- type: Transform
- pos: -36.5,32.5
+ pos: -48.5,52.5
parent: 2
- - uid: 5233
+ - uid: 9426
components:
- type: Transform
- pos: -15.5,42.5
+ pos: -46.5,52.5
parent: 2
- - uid: 5239
+ - uid: 9427
components:
- type: Transform
- pos: -15.5,39.5
+ pos: -46.5,51.5
parent: 2
- - uid: 5240
+ - uid: 9428
components:
- type: Transform
- pos: -32.5,32.5
+ pos: -46.5,50.5
parent: 2
- - uid: 5249
+ - uid: 9429
components:
- type: Transform
- pos: 47.5,31.5
+ pos: -46.5,49.5
parent: 2
- - uid: 5252
+ - uid: 9430
components:
- type: Transform
- pos: 46.5,31.5
+ pos: -46.5,48.5
parent: 2
- - uid: 5253
+ - uid: 9431
components:
- type: Transform
- pos: 45.5,31.5
+ pos: -46.5,47.5
parent: 2
- - uid: 5254
+ - uid: 9432
components:
- type: Transform
- pos: -98.5,-14.5
+ pos: -44.5,47.5
parent: 2
- - uid: 5266
+ - uid: 9433
components:
- type: Transform
- pos: -96.5,-13.5
+ pos: -44.5,48.5
parent: 2
- - uid: 5295
+ - uid: 9434
components:
- type: Transform
- pos: 11.5,62.5
+ pos: -44.5,49.5
parent: 2
- - uid: 5296
+ - uid: 9435
components:
- type: Transform
- pos: 69.5,27.5
+ pos: -44.5,50.5
parent: 2
- - uid: 5299
+ - uid: 9436
components:
- type: Transform
- pos: 30.5,50.5
+ pos: -44.5,51.5
parent: 2
- - uid: 5306
+ - uid: 9437
components:
- type: Transform
- pos: 67.5,31.5
+ pos: -44.5,52.5
parent: 2
- - uid: 5314
+ - uid: 9438
components:
- type: Transform
- pos: 68.5,71.5
+ pos: -42.5,52.5
parent: 2
- - uid: 5318
+ - uid: 9439
components:
- type: Transform
- pos: 61.5,58.5
+ pos: -42.5,51.5
parent: 2
- - uid: 5319
+ - uid: 9440
components:
- type: Transform
- pos: 62.5,58.5
+ pos: -42.5,50.5
parent: 2
- - uid: 5320
+ - uid: 9441
components:
- type: Transform
- pos: 62.5,57.5
+ pos: -42.5,49.5
parent: 2
- - uid: 5321
+ - uid: 9442
components:
- type: Transform
- pos: 62.5,56.5
+ pos: -42.5,48.5
parent: 2
- - uid: 5322
+ - uid: 9443
components:
- type: Transform
- pos: 61.5,49.5
+ pos: -42.5,47.5
parent: 2
- - uid: 5323
+ - uid: 9444
components:
- type: Transform
- pos: 61.5,50.5
+ pos: -40.5,47.5
parent: 2
- - uid: 5324
+ - uid: 9445
components:
- type: Transform
- pos: 61.5,51.5
+ pos: -40.5,48.5
parent: 2
- - uid: 5325
+ - uid: 9446
components:
- type: Transform
- pos: 62.5,51.5
+ pos: -40.5,49.5
parent: 2
- - uid: 5331
+ - uid: 9447
components:
- type: Transform
- pos: 59.5,71.5
+ pos: -40.5,50.5
parent: 2
- - uid: 5373
+ - uid: 9448
components:
- type: Transform
- pos: 94.5,51.5
+ pos: -40.5,51.5
parent: 2
- - uid: 5378
+ - uid: 9449
components:
- type: Transform
- pos: 92.5,51.5
+ pos: -40.5,52.5
parent: 2
- - uid: 5379
+ - uid: 9450
components:
- type: Transform
- pos: 93.5,51.5
+ pos: -38.5,52.5
parent: 2
- - uid: 5381
+ - uid: 9451
components:
- type: Transform
- pos: 92.5,50.5
+ pos: -38.5,51.5
parent: 2
- - uid: 5383
+ - uid: 9452
components:
- type: Transform
- pos: 91.5,50.5
+ pos: -38.5,50.5
parent: 2
- - uid: 5418
+ - uid: 9453
components:
- type: Transform
- pos: -97.5,-13.5
+ pos: -38.5,49.5
parent: 2
- - uid: 5425
+ - uid: 9454
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -92.5,20.5
+ pos: -38.5,48.5
parent: 2
- - uid: 5427
+ - uid: 9455
components:
- type: Transform
- pos: 49.5,31.5
+ pos: -38.5,47.5
parent: 2
- - uid: 5479
+ - uid: 9456
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -91.5,20.5
+ pos: -36.5,47.5
parent: 2
- - uid: 5482
+ - uid: 9458
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,18.5
+ pos: -36.5,49.5
parent: 2
- - uid: 5483
+ - uid: 9459
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,20.5
+ pos: -36.5,50.5
parent: 2
- - uid: 5486
+ - uid: 9460
components:
- type: Transform
- pos: -28.5,53.5
+ pos: -36.5,51.5
parent: 2
- - uid: 5534
+ - uid: 9488
components:
- type: Transform
- pos: -18.5,23.5
+ pos: -63.5,-19.5
parent: 2
- - uid: 5542
+ - uid: 9506
components:
- type: Transform
- pos: 46.5,52.5
+ pos: 41.5,16.5
parent: 2
- - uid: 5543
+ - uid: 9528
components:
- type: Transform
- pos: 38.5,51.5
+ pos: -66.5,-19.5
parent: 2
- - uid: 5555
+ - uid: 9537
components:
- type: Transform
- pos: 66.5,31.5
+ pos: -8.5,23.5
parent: 2
- - uid: 5569
+ - uid: 9538
components:
- type: Transform
- pos: 65.5,31.5
+ pos: -9.5,23.5
parent: 2
- - uid: 5660
+ - uid: 9541
components:
- type: Transform
- pos: 68.5,31.5
+ pos: -12.5,23.5
parent: 2
- - uid: 5769
+ - uid: 9543
components:
- type: Transform
- pos: -2.5,-49.5
+ pos: -64.5,-19.5
parent: 2
- - uid: 5770
+ - uid: 9547
components:
- type: Transform
- pos: -3.5,-49.5
+ pos: -22.5,37.5
parent: 2
- - uid: 5771
+ - uid: 9549
components:
- type: Transform
- pos: -4.5,-49.5
+ pos: -11.5,23.5
parent: 2
- - uid: 5772
+ - uid: 9551
components:
- type: Transform
- pos: -5.5,-49.5
+ pos: -13.5,23.5
parent: 2
- - uid: 5773
+ - uid: 9556
components:
- type: Transform
- pos: -6.5,-49.5
+ pos: -34.5,-39.5
parent: 2
- - uid: 5774
+ - uid: 9557
components:
- type: Transform
- pos: -7.5,-49.5
+ pos: 11.5,-39.5
parent: 2
- - uid: 5775
+ - uid: 9558
components:
- type: Transform
- pos: -8.5,-49.5
+ pos: -65.5,-19.5
parent: 2
- - uid: 5776
+ - uid: 9567
components:
- type: Transform
- pos: 4.5,-49.5
+ pos: -35.5,45.5
parent: 2
- - uid: 5777
+ - uid: 9625
components:
- type: Transform
- pos: 5.5,-49.5
+ pos: -34.5,45.5
parent: 2
- - uid: 5778
+ - uid: 9626
components:
- type: Transform
- pos: 6.5,-49.5
+ pos: 77.5,25.5
parent: 2
- - uid: 5779
+ - uid: 9627
components:
- type: Transform
- pos: 7.5,-49.5
+ pos: 79.5,25.5
parent: 2
- - uid: 5780
+ - uid: 9628
components:
- type: Transform
- pos: 8.5,-49.5
+ pos: 80.5,25.5
parent: 2
- - uid: 5781
+ - uid: 9635
components:
- type: Transform
- pos: 9.5,-49.5
+ pos: -44.5,71.5
parent: 2
- - uid: 5782
+ - uid: 9639
components:
- type: Transform
- pos: 10.5,-49.5
+ pos: -41.5,55.5
parent: 2
- - uid: 5783
+ - uid: 9640
components:
- type: Transform
- pos: 11.5,-49.5
+ pos: -42.5,55.5
parent: 2
- - uid: 5784
+ - uid: 9641
components:
- type: Transform
- pos: 12.5,-49.5
+ pos: -43.5,55.5
parent: 2
- - uid: 5787
+ - uid: 9642
components:
- type: Transform
- pos: -1.5,-53.5
+ pos: -44.5,55.5
parent: 2
- - uid: 5788
+ - uid: 9643
components:
- type: Transform
- pos: -2.5,-53.5
+ pos: -46.5,55.5
parent: 2
- - uid: 5789
+ - uid: 9662
components:
- type: Transform
- pos: -3.5,-53.5
+ pos: -34.5,43.5
parent: 2
- - uid: 5795
+ - uid: 9666
components:
- type: Transform
- pos: 4.5,-53.5
+ pos: -34.5,41.5
parent: 2
- - uid: 5796
+ - uid: 9667
components:
- type: Transform
- pos: 5.5,-53.5
+ pos: -34.5,39.5
parent: 2
- - uid: 5797
+ - uid: 9668
components:
- type: Transform
- pos: 6.5,-53.5
+ pos: -34.5,37.5
parent: 2
- - uid: 5803
+ - uid: 9672
components:
- type: Transform
- pos: 12.5,-53.5
+ pos: -47.5,55.5
parent: 2
- - uid: 5871
+ - uid: 9676
components:
- type: Transform
- pos: -9.5,-49.5
+ pos: -3.5,43.5
parent: 2
- - uid: 5992
+ - uid: 9680
components:
- type: Transform
- pos: -44.5,36.5
+ pos: -9.5,43.5
parent: 2
- - uid: 6015
+ - uid: 9683
components:
- type: Transform
- pos: -27.5,-26.5
+ pos: -35.5,40.5
parent: 2
- - uid: 6017
+ - uid: 9684
components:
- type: Transform
- pos: -28.5,-26.5
+ pos: 24.5,51.5
parent: 2
- - uid: 6019
+ - uid: 9685
components:
- type: Transform
- pos: -31.5,-26.5
+ pos: -25.5,37.5
parent: 2
- - uid: 6021
+ - uid: 9688
components:
- type: Transform
- pos: -29.5,-26.5
+ pos: -27.5,37.5
parent: 2
- - uid: 6077
+ - uid: 9691
components:
- type: Transform
- pos: 48.5,50.5
+ pos: -66.5,37.5
parent: 2
- - uid: 6078
+ - uid: 9692
components:
- type: Transform
- pos: 48.5,51.5
+ pos: -67.5,37.5
parent: 2
- - uid: 6117
+ - uid: 9693
components:
- type: Transform
- pos: 69.5,71.5
+ pos: -68.5,37.5
parent: 2
- - uid: 6118
+ - uid: 9694
components:
- type: Transform
- pos: 89.5,61.5
+ pos: -69.5,37.5
parent: 2
- - uid: 6119
+ - uid: 9695
components:
- type: Transform
- pos: 88.5,61.5
+ pos: -57.5,38.5
parent: 2
- - uid: 6122
+ - uid: 9696
components:
- type: Transform
- pos: -17.5,23.5
+ pos: -58.5,38.5
parent: 2
- - uid: 6123
+ - uid: 9697
components:
- type: Transform
- pos: -22.5,23.5
+ pos: -59.5,42.5
parent: 2
- - uid: 6180
+ - uid: 9698
components:
- type: Transform
- pos: 46.5,-35.5
+ pos: -59.5,38.5
parent: 2
- - uid: 6181
+ - uid: 9701
components:
- type: Transform
- pos: 47.5,-35.5
+ pos: -59.5,40.5
parent: 2
- - uid: 6185
+ - uid: 9702
components:
- type: Transform
- pos: 51.5,-33.5
+ pos: -45.5,59.5
parent: 2
- - uid: 6190
+ - uid: 9796
components:
- type: Transform
- pos: 11.5,-37.5
+ pos: -32.5,38.5
parent: 2
- - uid: 6192
+ - uid: 9875
components:
- type: Transform
- pos: -34.5,2.5
+ pos: -35.5,39.5
parent: 2
- - uid: 6193
+ - uid: 9876
components:
- type: Transform
- pos: -35.5,7.5
+ pos: -35.5,41.5
parent: 2
- - uid: 6213
+ - uid: 9942
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-3.5
+ pos: -39.5,55.5
parent: 2
- - uid: 6214
+ - uid: 9943
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-2.5
+ pos: -40.5,55.5
parent: 2
- - uid: 6215
+ - uid: 9944
components:
- type: Transform
- pos: -129.5,67.5
+ pos: -47.5,58.5
parent: 2
- - uid: 6275
+ - uid: 10016
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,19.5
+ pos: -32.5,37.5
parent: 2
- - uid: 6277
+ - uid: 10028
components:
- type: Transform
- pos: -98.5,18.5
+ pos: -72.5,-8.5
parent: 2
- - uid: 6313
+ - uid: 10029
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,25.5
+ pos: -73.5,-8.5
parent: 2
- - uid: 6315
+ - uid: 10031
components:
- type: Transform
- pos: -26.5,49.5
+ pos: -71.5,-8.5
parent: 2
- - uid: 6394
+ - uid: 10056
components:
- type: Transform
- pos: 91.5,61.5
+ pos: -34.5,60.5
parent: 2
- - uid: 6397
+ - uid: 10211
components:
- type: Transform
- pos: 90.5,61.5
+ pos: -34.5,40.5
parent: 2
- - uid: 6398
+ - uid: 10212
components:
- type: Transform
- pos: 93.5,61.5
+ pos: -34.5,38.5
parent: 2
- - uid: 6399
+ - uid: 10213
components:
- type: Transform
- pos: 92.5,61.5
+ pos: -35.5,42.5
parent: 2
- - uid: 6402
+ - uid: 10216
components:
- type: Transform
- pos: 94.5,56.5
+ pos: -34.5,42.5
parent: 2
- - uid: 6403
+ - uid: 10217
components:
- type: Transform
- pos: 93.5,59.5
+ pos: -34.5,44.5
parent: 2
- - uid: 6404
+ - uid: 10218
components:
- type: Transform
- pos: 94.5,59.5
+ pos: -34.5,46.5
parent: 2
- - uid: 6405
+ - uid: 10220
components:
- type: Transform
- pos: 94.5,55.5
+ pos: -35.5,43.5
parent: 2
- - uid: 6406
+ - uid: 10232
components:
- type: Transform
- pos: 94.5,58.5
+ pos: 24.5,50.5
parent: 2
- - uid: 6407
+ - uid: 10345
components:
- type: Transform
- pos: 94.5,57.5
+ pos: -34.5,52.5
parent: 2
- - uid: 6408
+ - uid: 10354
components:
- type: Transform
- pos: 94.5,54.5
+ pos: 69.5,10.5
parent: 2
- - uid: 6410
+ - uid: 10356
components:
- type: Transform
- pos: 94.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-26.5
parent: 2
- - uid: 6411
+ - uid: 10357
components:
- type: Transform
- pos: 94.5,53.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-26.5
parent: 2
- - uid: 6425
+ - uid: 10373
components:
- type: Transform
- pos: 81.5,-3.5
+ pos: -35.5,37.5
parent: 2
- - uid: 6435
+ - uid: 10378
components:
- type: Transform
- pos: 81.5,-14.5
+ pos: -31.5,24.5
parent: 2
- - uid: 6438
+ - uid: 10379
components:
- type: Transform
- pos: 81.5,-18.5
+ pos: -31.5,23.5
parent: 2
- - uid: 6465
+ - uid: 10380
components:
- type: Transform
- pos: 59.5,-32.5
+ pos: -27.5,23.5
parent: 2
- - uid: 6466
+ - uid: 10384
components:
- type: Transform
- pos: 54.5,-36.5
+ pos: 4.5,56.5
parent: 2
- - uid: 6467
+ - uid: 10390
components:
- type: Transform
- pos: 54.5,-32.5
+ pos: -57.5,-37.5
parent: 2
- - uid: 6527
+ - uid: 10395
components:
- type: Transform
- pos: -27.5,50.5
+ pos: -58.5,-36.5
parent: 2
- - uid: 6651
+ - uid: 10396
components:
- type: Transform
- pos: -46.5,-46.5
+ pos: -62.5,-36.5
parent: 2
- - uid: 6652
+ - uid: 10397
components:
- type: Transform
- pos: -46.5,-50.5
+ pos: -63.5,-36.5
parent: 2
- - uid: 6655
+ - uid: 10625
components:
- type: Transform
- pos: -23.5,23.5
+ pos: -56.5,-37.5
parent: 2
- - uid: 6670
+ - uid: 10627
components:
- type: Transform
- pos: -52.5,-39.5
+ pos: -23.5,-47.5
parent: 2
- - uid: 6671
+ - uid: 11102
components:
- type: Transform
- pos: -50.5,-39.5
+ pos: -45.5,58.5
parent: 2
- - uid: 6672
+ - uid: 11106
components:
- type: Transform
- pos: -37.5,-39.5
+ pos: -52.5,-37.5
parent: 2
- - uid: 6674
+ - uid: 11147
components:
- type: Transform
- pos: -20.5,-45.5
+ pos: -52.5,-38.5
parent: 2
- - uid: 6695
+ - uid: 11207
components:
- type: Transform
- pos: -52.5,-44.5
+ pos: -28.5,37.5
parent: 2
- - uid: 6696
+ - uid: 11208
components:
- type: Transform
- pos: -55.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,54.5
parent: 2
- - uid: 6703
+ - uid: 11214
components:
- type: Transform
- pos: -35.5,-39.5
+ pos: -36.5,52.5
parent: 2
- - uid: 6704
+ - uid: 11227
components:
- type: Transform
- pos: -49.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -64.5,-24.5
parent: 2
- - uid: 6705
+ - uid: 11238
components:
- type: Transform
- pos: -52.5,-40.5
+ pos: -35.5,38.5
parent: 2
- - uid: 6711
+ - uid: 11239
components:
- type: Transform
- pos: -30.5,-26.5
+ pos: 13.5,60.5
parent: 2
- - uid: 6718
+ - uid: 11271
components:
- type: Transform
- pos: -28.5,-45.5
+ pos: 50.5,-35.5
parent: 2
- - uid: 6719
+ - uid: 11415
components:
- type: Transform
- pos: -34.5,-45.5
+ pos: 9.5,-19.5
parent: 2
- - uid: 6735
+ - uid: 11450
components:
- type: Transform
- pos: -66.5,-21.5
+ pos: -76.5,20.5
parent: 2
- - uid: 6740
+ - uid: 11496
components:
- type: Transform
- pos: -28.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -98.5,-0.5
parent: 2
- - uid: 6741
+ - uid: 11502
components:
- type: Transform
- pos: -29.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,-1.5
parent: 2
- - uid: 6751
+ - uid: 11507
components:
- type: Transform
- pos: -36.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -99.5,-0.5
parent: 2
- - uid: 6761
+ - uid: 11509
components:
- type: Transform
- pos: -46.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,28.5
parent: 2
- - uid: 6762
+ - uid: 11519
components:
- type: Transform
- pos: -52.5,-50.5
+ pos: -91.5,10.5
parent: 2
- - uid: 6763
+ - uid: 11534
components:
- type: Transform
- pos: -45.5,-45.5
+ pos: -98.5,68.5
parent: 2
- - uid: 6765
+ - uid: 11635
components:
- type: Transform
- pos: -66.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-19.5
parent: 2
- - uid: 6770
+ - uid: 11854
components:
- type: Transform
- pos: -46.5,-45.5
+ pos: -45.5,-39.5
parent: 2
- - uid: 6775
+ - uid: 12031
components:
- type: Transform
- pos: -51.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,-23.5
parent: 2
- - uid: 6776
+ - uid: 12064
components:
- type: Transform
- pos: -48.5,-39.5
+ pos: 18.5,-24.5
parent: 2
- - uid: 6777
+ - uid: 12065
components:
- type: Transform
- pos: -46.5,-39.5
+ pos: 23.5,-24.5
parent: 2
- - uid: 6790
+ - uid: 12121
components:
- type: Transform
- pos: -77.5,20.5
+ pos: 40.5,-32.5
parent: 2
- - uid: 6795
+ - uid: 12124
components:
- type: Transform
- pos: -19.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-25.5
parent: 2
- - uid: 6892
+ - uid: 12143
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,-0.5
+ pos: 40.5,-12.5
parent: 2
- - uid: 6893
+ - uid: 12217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,6.5
+ pos: 45.5,-10.5
parent: 2
- - uid: 6895
+ - uid: 12218
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -90.5,6.5
+ pos: 40.5,-13.5
parent: 2
- - uid: 6944
+ - uid: 12223
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,6.5
+ pos: 40.5,-33.5
parent: 2
- - uid: 6958
+ - uid: 12224
components:
- type: Transform
- pos: -15.5,-47.5
+ pos: 40.5,-34.5
parent: 2
- - uid: 7089
+ - uid: 12246
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -92.5,6.5
+ pos: -14.5,-46.5
parent: 2
- - uid: 7194
+ - uid: 12289
components:
- type: Transform
- pos: -64.5,-13.5
+ pos: 5.5,-21.5
parent: 2
- - uid: 7270
+ - uid: 12305
components:
- type: Transform
- pos: -37.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-25.5
parent: 2
- - uid: 7285
+ - uid: 12342
components:
- type: Transform
- pos: -45.5,-37.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-25.5
parent: 2
- - uid: 7286
+ - uid: 12345
components:
- type: Transform
- pos: -46.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-33.5
parent: 2
- - uid: 7287
+ - uid: 12346
components:
- type: Transform
- pos: -47.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-33.5
parent: 2
- - uid: 7288
+ - uid: 12399
components:
- type: Transform
- pos: -48.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-33.5
parent: 2
- - uid: 7289
+ - uid: 12412
components:
- type: Transform
- pos: -49.5,-37.5
+ pos: 20.5,-24.5
parent: 2
- - uid: 7290
+ - uid: 12418
components:
- type: Transform
- pos: -50.5,-37.5
+ pos: 16.5,-24.5
parent: 2
- - uid: 7291
+ - uid: 12420
components:
- type: Transform
- pos: -51.5,-37.5
+ pos: 22.5,-24.5
parent: 2
- - uid: 7292
+ - uid: 12421
components:
- type: Transform
- pos: -52.5,-37.5
+ pos: 24.5,-19.5
parent: 2
- - uid: 7296
+ - uid: 12438
components:
- type: Transform
- pos: -52.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-17.5
parent: 2
- - uid: 7297
+ - uid: 12443
components:
- type: Transform
- pos: -52.5,20.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-17.5
parent: 2
- - uid: 7320
+ - uid: 12478
components:
- type: Transform
- pos: -66.5,-12.5
+ pos: -65.5,31.5
parent: 2
- - uid: 7321
+ - uid: 12747
components:
- type: Transform
- pos: -66.5,-11.5
+ pos: 69.5,7.5
parent: 2
- - uid: 7322
+ - uid: 12748
components:
- type: Transform
- pos: -66.5,-10.5
+ pos: 46.5,-32.5
parent: 2
- - uid: 7325
+ - uid: 12922
components:
- type: Transform
- pos: -63.5,-22.5
+ pos: 33.5,40.5
parent: 2
- - uid: 7330
+ - uid: 12923
components:
- type: Transform
- pos: -63.5,-23.5
+ pos: 33.5,41.5
parent: 2
- - uid: 7333
+ - uid: 12926
components:
- type: Transform
- pos: -63.5,-13.5
+ pos: 36.5,52.5
parent: 2
- - uid: 7335
+ - uid: 12931
components:
- type: Transform
- pos: -63.5,-30.5
+ pos: 33.5,38.5
parent: 2
- - uid: 7336
+ - uid: 12932
components:
- type: Transform
- pos: -63.5,-31.5
+ pos: 33.5,39.5
parent: 2
- - uid: 7337
+ - uid: 12933
components:
- type: Transform
- pos: -63.5,-28.5
+ pos: 33.5,42.5
parent: 2
- - uid: 7418
+ - uid: 12936
components:
- type: Transform
- pos: -28.5,63.5
+ pos: 65.5,7.5
parent: 2
- - uid: 7423
+ - uid: 12937
components:
- type: Transform
- pos: -66.5,-13.5
+ pos: 64.5,-31.5
parent: 2
- - uid: 7424
+ - uid: 12939
components:
- type: Transform
- pos: -66.5,-9.5
+ pos: 81.5,-8.5
parent: 2
- - uid: 7425
+ - uid: 12941
components:
- type: Transform
- pos: -66.5,-8.5
+ pos: 69.5,-29.5
parent: 2
- - uid: 7426
+ - uid: 12942
components:
- type: Transform
- pos: -66.5,-7.5
+ pos: 70.5,-28.5
parent: 2
- - uid: 7430
+ - uid: 12943
components:
- type: Transform
- pos: -25.5,49.5
+ pos: 71.5,-27.5
parent: 2
- - uid: 7431
+ - uid: 12944
components:
- type: Transform
- pos: -66.5,-2.5
+ pos: 72.5,-25.5
parent: 2
- - uid: 7487
+ - uid: 12947
components:
- type: Transform
- pos: -10.5,68.5
+ pos: 51.5,-35.5
parent: 2
- - uid: 7493
+ - uid: 12950
components:
- type: Transform
- pos: -53.5,54.5
+ pos: 45.5,-32.5
parent: 2
- - uid: 7563
+ - uid: 12980
components:
- type: Transform
- pos: -75.5,20.5
+ pos: -80.5,11.5
parent: 2
- - uid: 7566
+ - uid: 13034
components:
- type: Transform
- pos: -95.5,15.5
+ pos: -92.5,72.5
parent: 2
- - uid: 7584
+ - uid: 13040
components:
- type: Transform
- pos: 5.5,43.5
+ pos: -79.5,19.5
parent: 2
- - uid: 7637
+ - uid: 13041
components:
- type: Transform
- pos: -62.5,10.5
+ pos: -78.5,20.5
parent: 2
- - uid: 7643
+ - uid: 13043
components:
- type: Transform
- pos: -63.5,13.5
+ pos: -95.5,13.5
parent: 2
- - uid: 7644
+ - uid: 13049
components:
- type: Transform
- pos: -63.5,14.5
+ pos: -81.5,18.5
parent: 2
- - uid: 7645
+ - uid: 13051
components:
- type: Transform
- pos: -62.5,14.5
+ pos: -94.5,11.5
parent: 2
- - uid: 7647
+ - uid: 13059
components:
- type: Transform
- pos: -61.5,14.5
+ pos: 4.5,52.5
parent: 2
- - uid: 7649
+ - uid: 13060
components:
- type: Transform
- pos: -56.5,10.5
+ pos: 11.5,58.5
parent: 2
- - uid: 7651
+ - uid: 13061
components:
- type: Transform
- pos: -63.5,11.5
+ pos: 21.5,44.5
parent: 2
- - uid: 7652
+ - uid: 13065
components:
- type: Transform
- pos: -63.5,12.5
+ pos: 70.5,9.5
parent: 2
- - uid: 7659
+ - uid: 13078
components:
- type: Transform
- pos: -99.5,2.5
+ pos: 24.5,-24.5
parent: 2
- - uid: 7666
+ - uid: 13205
components:
- type: Transform
- pos: -99.5,14.5
+ pos: 41.5,-32.5
parent: 2
- - uid: 7667
+ - uid: 13208
components:
- type: Transform
- pos: 4.5,49.5
+ pos: -93.5,27.5
parent: 2
- - uid: 7669
+ - uid: 13209
components:
- type: Transform
- pos: -79.5,20.5
+ pos: -94.5,29.5
parent: 2
- - uid: 7676
+ - uid: 13210
components:
- type: Transform
- pos: -99.5,1.5
+ pos: -95.5,30.5
parent: 2
- - uid: 7728
+ - uid: 13216
components:
- type: Transform
- pos: 72.5,30.5
+ pos: -93.5,-10.5
parent: 2
- - uid: 7729
+ - uid: 13217
components:
- type: Transform
- pos: 72.5,29.5
+ pos: -94.5,-12.5
parent: 2
- - uid: 7730
+ - uid: 13218
components:
- type: Transform
- pos: 71.5,31.5
+ pos: -95.5,-13.5
parent: 2
- - uid: 7744
+ - uid: 13219
components:
- type: Transform
- pos: -74.5,18.5
+ pos: -97.5,-14.5
parent: 2
- - uid: 7754
+ - uid: 13246
components:
- type: Transform
- pos: -80.5,19.5
+ pos: -44.5,3.5
parent: 2
- - uid: 7755
+ - uid: 13250
components:
- type: Transform
- pos: -94.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-24.5
parent: 2
- - uid: 7756
+ - uid: 13252
components:
- type: Transform
- pos: -81.5,19.5
+ pos: -8.5,22.5
parent: 2
- - uid: 7757
+ - uid: 13269
components:
- type: Transform
- pos: -82.5,17.5
+ pos: 44.5,-15.5
parent: 2
- - uid: 7758
+ - uid: 13314
components:
- type: Transform
- pos: -82.5,18.5
+ pos: 40.5,-15.5
parent: 2
- - uid: 7759
+ - uid: 13384
components:
- type: Transform
- pos: -93.5,10.5
+ pos: 31.5,35.5
parent: 2
- - uid: 7761
+ - uid: 13385
components:
- type: Transform
- pos: -78.5,23.5
+ pos: 33.5,37.5
parent: 2
- - uid: 7763
+ - uid: 13689
components:
- type: Transform
- pos: -91.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-27.5
parent: 2
- - uid: 7764
+ - uid: 13704
components:
- type: Transform
- pos: -77.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-27.5
parent: 2
- - uid: 7766
+ - uid: 13719
components:
- type: Transform
- pos: -90.5,23.5
+ pos: 42.5,-35.5
parent: 2
- - uid: 7767
+ - uid: 13916
components:
- type: Transform
- pos: 72.5,31.5
+ pos: 9.5,41.5
parent: 2
- - uid: 7768
+ - uid: 13933
components:
- type: Transform
- pos: 69.5,28.5
+ pos: 16.5,60.5
parent: 2
- - uid: 7770
+ - uid: 13935
components:
- type: Transform
- pos: 72.5,28.5
+ pos: 20.5,60.5
parent: 2
- - uid: 7771
+ - uid: 13941
components:
- type: Transform
- pos: 70.5,28.5
+ pos: 21.5,60.5
parent: 2
- - uid: 7780
+ - uid: 13948
components:
- type: Transform
- pos: -74.5,13.5
+ pos: 30.5,51.5
parent: 2
- - uid: 7784
+ - uid: 13953
components:
- type: Transform
- pos: -74.5,11.5
+ pos: 31.5,42.5
parent: 2
- - uid: 7790
+ - uid: 13954
components:
- type: Transform
- pos: -74.5,10.5
+ pos: -24.5,54.5
parent: 2
- - uid: 7819
+ - uid: 13956
components:
- type: Transform
- pos: -99.5,15.5
+ pos: 25.5,53.5
parent: 2
- - uid: 7820
+ - uid: 13957
components:
- type: Transform
- pos: -81.5,11.5
+ pos: 29.5,53.5
parent: 2
- - uid: 7823
+ - uid: 13962
components:
- type: Transform
- pos: -75.5,10.5
+ pos: 30.5,48.5
parent: 2
- - uid: 7825
+ - uid: 13963
components:
- type: Transform
- pos: -82.5,11.5
+ pos: 15.5,60.5
parent: 2
- - uid: 7853
+ - uid: 13964
components:
- type: Transform
- pos: -74.5,12.5
+ pos: 5.5,57.5
parent: 2
- - uid: 7879
+ - uid: 13965
components:
- type: Transform
- pos: -90.5,-6.5
+ pos: 9.5,34.5
parent: 2
- - uid: 7912
+ - uid: 13966
components:
- type: Transform
- pos: -99.5,17.5
+ pos: -2.5,65.5
parent: 2
- - uid: 7921
+ - uid: 13968
components:
- type: Transform
- pos: -98.5,-1.5
+ pos: 12.5,66.5
parent: 2
- - uid: 7925
+ - uid: 13979
components:
- type: Transform
- pos: 45.5,-35.5
+ pos: 13.5,44.5
parent: 2
- - uid: 7928
+ - uid: 13980
components:
- type: Transform
- pos: 66.5,-29.5
+ pos: 11.5,44.5
parent: 2
- - uid: 7936
+ - uid: 13981
components:
- type: Transform
- pos: -95.5,11.5
+ pos: 12.5,44.5
parent: 2
- - uid: 7946
+ - uid: 13982
components:
- type: Transform
- pos: -54.5,54.5
+ pos: 10.5,44.5
parent: 2
- - uid: 7949
+ - uid: 13983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,19.5
+ pos: 14.5,44.5
parent: 2
- - uid: 7959
+ - uid: 13984
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,12.5
+ pos: 15.5,44.5
parent: 2
- - uid: 7960
+ - uid: 13985
components:
- type: Transform
- pos: -74.5,17.5
+ pos: 21.5,41.5
parent: 2
- - uid: 7970
+ - uid: 13986
components:
- type: Transform
- pos: -95.5,12.5
+ pos: 21.5,40.5
parent: 2
- - uid: 7972
+ - uid: 13991
components:
- type: Transform
- pos: 33.5,35.5
+ pos: 21.5,35.5
parent: 2
- - uid: 8020
+ - uid: 13992
components:
- type: Transform
- pos: 47.5,-6.5
+ pos: 25.5,44.5
parent: 2
- - uid: 8021
+ - uid: 13993
components:
- type: Transform
- pos: -82.5,12.5
+ pos: 26.5,43.5
parent: 2
- - uid: 8034
+ - uid: 13994
components:
- type: Transform
- pos: -81.5,10.5
+ pos: 26.5,44.5
parent: 2
- - uid: 8035
+ - uid: 14016
components:
- type: Transform
- pos: -80.5,10.5
+ pos: 12.5,51.5
parent: 2
- - uid: 8061
+ - uid: 14021
components:
- type: Transform
- pos: 31.5,36.5
+ pos: 9.5,51.5
parent: 2
- - uid: 8074
+ - uid: 14022
components:
- type: Transform
- pos: 31.5,37.5
+ pos: 8.5,51.5
parent: 2
- - uid: 8075
+ - uid: 14023
components:
- type: Transform
- pos: -78.5,-6.5
+ pos: 8.5,50.5
parent: 2
- - uid: 8085
+ - uid: 14028
components:
- type: Transform
- pos: 32.5,37.5
+ pos: 9.5,44.5
parent: 2
- - uid: 8096
+ - uid: 14042
components:
- type: Transform
- pos: 31.5,34.5
+ pos: 14.5,52.5
parent: 2
- - uid: 8148
+ - uid: 14045
components:
- type: Transform
- pos: -125.5,69.5
+ pos: 13.5,59.5
parent: 2
- - uid: 8155
+ - uid: 14063
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,34.5
+ pos: 14.5,59.5
parent: 2
- - uid: 8156
+ - uid: 14090
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,33.5
+ pos: -33.5,32.5
parent: 2
- - uid: 8233
+ - uid: 14113
components:
- type: Transform
- pos: -53.5,52.5
+ pos: 28.5,43.5
parent: 2
- - uid: 8269
+ - uid: 14114
components:
- type: Transform
- pos: -46.5,18.5
+ pos: 28.5,44.5
parent: 2
- - uid: 8310
+ - uid: 14169
components:
- type: Transform
- pos: 33.5,45.5
+ pos: 18.5,51.5
parent: 2
- - uid: 8313
+ - uid: 14247
components:
- type: Transform
- pos: -50.5,54.5
+ pos: 15.5,63.5
parent: 2
- - uid: 8636
+ - uid: 14255
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -73.5,25.5
+ pos: -71.5,-10.5
parent: 2
- - uid: 8637
+ - uid: 14493
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,25.5
+ pos: 38.5,15.5
parent: 2
- - uid: 8638
+ - uid: 14955
components:
- type: Transform
- pos: -70.5,37.5
+ pos: 30.5,45.5
parent: 2
- - uid: 8657
+ - uid: 14957
components:
- type: Transform
- pos: -74.5,19.5
+ pos: 55.5,41.5
parent: 2
- - uid: 8658
+ - uid: 15064
components:
- type: Transform
- pos: -74.5,20.5
+ pos: -35.5,46.5
parent: 2
- - uid: 8660
+ - uid: 15098
components:
- type: Transform
- pos: -74.5,22.5
+ pos: 24.5,47.5
parent: 2
- - uid: 8661
+ - uid: 15117
components:
- type: Transform
- pos: -74.5,23.5
+ pos: 26.5,53.5
parent: 2
- - uid: 8662
+ - uid: 15142
components:
- type: Transform
- pos: -74.5,24.5
+ pos: -16.5,65.5
parent: 2
- - uid: 8663
+ - uid: 15175
components:
- type: Transform
- pos: -74.5,25.5
+ pos: -12.5,65.5
parent: 2
- - uid: 8691
+ - uid: 15188
components:
- type: Transform
- pos: -66.5,23.5
+ pos: -17.5,-47.5
parent: 2
- - uid: 8692
+ - uid: 15195
components:
- type: Transform
- pos: -66.5,26.5
+ pos: -6.5,65.5
parent: 2
- - uid: 8693
+ - uid: 15200
components:
- type: Transform
- pos: -66.5,25.5
+ pos: -9.5,65.5
parent: 2
- - uid: 8695
+ - uid: 15201
components:
- type: Transform
- pos: -52.5,10.5
+ pos: -24.5,53.5
parent: 2
- - uid: 8698
+ - uid: 15230
components:
- type: Transform
- pos: -58.5,37.5
+ pos: -1.5,65.5
parent: 2
- - uid: 8706
+ - uid: 15261
components:
- type: Transform
- pos: -56.5,15.5
+ pos: -5.5,65.5
parent: 2
- - uid: 8707
+ - uid: 15276
components:
- type: Transform
- pos: -64.5,19.5
+ pos: -12.5,26.5
parent: 2
- - uid: 8708
+ - uid: 15277
components:
- type: Transform
- pos: -56.5,20.5
+ pos: -9.5,27.5
parent: 2
- - uid: 8709
+ - uid: 15278
components:
- type: Transform
- pos: -56.5,14.5
+ pos: -10.5,27.5
parent: 2
- - uid: 8720
+ - uid: 15279
components:
- type: Transform
- pos: -40.5,29.5
+ pos: -11.5,27.5
parent: 2
- - uid: 8721
+ - uid: 15280
components:
- type: Transform
- pos: -40.5,28.5
+ pos: -8.5,27.5
parent: 2
- - uid: 8722
+ - uid: 15281
components:
- type: Transform
- pos: -40.5,30.5
+ pos: -7.5,27.5
parent: 2
- - uid: 8723
+ - uid: 15282
components:
- type: Transform
- pos: -40.5,32.5
+ pos: -19.5,31.5
parent: 2
- - uid: 8724
+ - uid: 15283
components:
- type: Transform
- pos: -40.5,31.5
+ pos: -6.5,31.5
parent: 2
- - uid: 8726
+ - uid: 15285
components:
- type: Transform
- pos: -40.5,36.5
+ pos: -23.5,27.5
parent: 2
- - uid: 8727
+ - uid: 15286
components:
- type: Transform
- pos: -41.5,36.5
+ pos: -23.5,25.5
parent: 2
- - uid: 8729
+ - uid: 15287
components:
- type: Transform
- pos: -40.5,35.5
+ pos: -23.5,26.5
parent: 2
- - uid: 8731
+ - uid: 15290
components:
- type: Transform
- pos: -40.5,33.5
+ pos: -12.5,27.5
parent: 2
- - uid: 8734
+ - uid: 15291
components:
- type: Transform
- pos: -45.5,36.5
+ pos: -22.5,27.5
parent: 2
- - uid: 8736
+ - uid: 15292
components:
- type: Transform
- pos: -36.5,36.5
+ pos: -13.5,27.5
parent: 2
- - uid: 8737
+ - uid: 15293
components:
- type: Transform
- pos: -38.5,36.5
+ pos: -17.5,27.5
parent: 2
- - uid: 8739
+ - uid: 15294
components:
- type: Transform
- pos: -30.5,43.5
+ pos: -23.5,24.5
parent: 2
- - uid: 8741
+ - uid: 15301
components:
- type: Transform
- pos: -39.5,36.5
+ pos: -18.5,27.5
parent: 2
- - uid: 8756
+ - uid: 15303
components:
- type: Transform
- pos: -60.5,11.5
+ pos: -4.5,31.5
parent: 2
- - uid: 8758
+ - uid: 15304
components:
- type: Transform
- pos: -52.5,11.5
+ pos: -7.5,28.5
parent: 2
- - uid: 8780
+ - uid: 15305
components:
- type: Transform
- pos: -60.5,13.5
+ pos: -7.5,30.5
parent: 2
- - uid: 8781
+ - uid: 15306
components:
- type: Transform
- pos: -60.5,14.5
+ pos: -7.5,31.5
parent: 2
- - uid: 8782
+ - uid: 15307
components:
- type: Transform
- pos: -56.5,11.5
+ pos: -8.5,31.5
parent: 2
- - uid: 8784
+ - uid: 15308
components:
- type: Transform
- pos: -56.5,13.5
+ pos: -9.5,31.5
parent: 2
- - uid: 8785
+ - uid: 15309
components:
- type: Transform
- pos: -48.5,28.5
+ pos: -9.5,32.5
parent: 2
- - uid: 8786
+ - uid: 15312
components:
- type: Transform
- pos: -69.5,-7.5
+ pos: -9.5,35.5
parent: 2
- - uid: 8787
+ - uid: 15313
components:
- type: Transform
- pos: -49.5,28.5
+ pos: -9.5,36.5
parent: 2
- - uid: 8789
+ - uid: 15314
components:
- type: Transform
- pos: -68.5,-7.5
+ pos: -8.5,36.5
parent: 2
- - uid: 8790
+ - uid: 15315
components:
- type: Transform
- pos: -52.5,15.5
+ pos: -7.5,36.5
parent: 2
- - uid: 8791
+ - uid: 15316
components:
- type: Transform
- pos: -46.5,26.5
+ pos: -6.5,36.5
parent: 2
- - uid: 8797
+ - uid: 15317
components:
- type: Transform
- pos: -56.5,21.5
+ pos: -5.5,36.5
parent: 2
- - uid: 8802
+ - uid: 15318
components:
- type: Transform
- pos: -56.5,28.5
+ pos: -4.5,36.5
parent: 2
- - uid: 8841
+ - uid: 15321
components:
- type: Transform
- pos: -47.5,19.5
+ pos: -9.5,38.5
parent: 2
- - uid: 8842
+ - uid: 15322
components:
- type: Transform
- pos: -46.5,20.5
+ pos: -15.5,31.5
parent: 2
- - uid: 8843
+ - uid: 15323
components:
- type: Transform
- pos: -46.5,19.5
+ pos: -16.5,31.5
parent: 2
- - uid: 8844
+ - uid: 15325
components:
- type: Transform
- pos: -46.5,22.5
+ pos: -18.5,31.5
parent: 2
- - uid: 8846
+ - uid: 15331
components:
- type: Transform
- pos: -46.5,24.5
+ pos: -20.5,31.5
parent: 2
- - uid: 8847
+ - uid: 15333
components:
- type: Transform
- pos: -46.5,23.5
+ pos: -22.5,31.5
parent: 2
- - uid: 8848
+ - uid: 15334
components:
- type: Transform
- pos: -46.5,27.5
+ pos: -23.5,31.5
parent: 2
- - uid: 8849
+ - uid: 15335
components:
- type: Transform
- pos: -46.5,28.5
+ pos: -23.5,32.5
parent: 2
- - uid: 8850
+ - uid: 15337
components:
- type: Transform
- pos: -50.5,28.5
+ pos: -27.5,33.5
parent: 2
- - uid: 8851
+ - uid: 15340
components:
- type: Transform
- pos: -47.5,28.5
+ pos: -27.5,24.5
parent: 2
- - uid: 8864
+ - uid: 15341
components:
- type: Transform
- pos: -52.5,25.5
+ pos: -27.5,25.5
parent: 2
- - uid: 8865
+ - uid: 15342
components:
- type: Transform
- pos: -52.5,26.5
+ pos: -27.5,26.5
parent: 2
- - uid: 8866
+ - uid: 15343
components:
- type: Transform
- pos: -52.5,27.5
+ pos: -27.5,27.5
parent: 2
- - uid: 8867
+ - uid: 15350
components:
- type: Transform
- pos: -52.5,28.5
+ pos: -31.5,26.5
parent: 2
- - uid: 8877
+ - uid: 15351
components:
- type: Transform
- pos: -64.5,20.5
+ pos: -31.5,27.5
parent: 2
- - uid: 8878
+ - uid: 15352
components:
- type: Transform
- pos: -64.5,18.5
+ pos: -31.5,28.5
parent: 2
- - uid: 8879
+ - uid: 15354
components:
- type: Transform
- pos: -64.5,17.5
+ pos: -27.5,35.5
parent: 2
- - uid: 8880
+ - uid: 15356
components:
- type: Transform
- pos: -64.5,16.5
+ pos: -27.5,34.5
parent: 2
- - uid: 8882
+ - uid: 15358
components:
- type: Transform
- pos: -64.5,14.5
+ pos: -31.5,32.5
parent: 2
- - uid: 8897
+ - uid: 15359
components:
- type: Transform
- pos: -56.5,32.5
+ pos: -31.5,31.5
parent: 2
- - uid: 8923
+ - uid: 15360
components:
- type: Transform
- pos: -65.5,29.5
+ pos: -31.5,30.5
parent: 2
- - uid: 8924
+ - uid: 15390
components:
- type: Transform
- pos: -65.5,30.5
+ pos: -19.5,33.5
parent: 2
- - uid: 8926
+ - uid: 15394
components:
- type: Transform
- pos: -65.5,28.5
+ pos: -18.5,28.5
parent: 2
- - uid: 8930
+ - uid: 15406
components:
- type: Transform
- pos: -57.5,28.5
+ pos: -27.5,32.5
parent: 2
- - uid: 8933
+ - uid: 15407
components:
- type: Transform
- pos: -55.5,32.5
+ pos: -19.5,34.5
parent: 2
- - uid: 8953
+ - uid: 15408
components:
- type: Transform
- pos: -58.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -47.5,14.5
parent: 2
- - uid: 8957
+ - uid: 15411
components:
- type: Transform
- pos: -58.5,31.5
+ pos: -27.5,31.5
parent: 2
- - uid: 8966
+ - uid: 15417
components:
- type: Transform
- pos: -58.5,35.5
+ pos: -19.5,35.5
parent: 2
- - uid: 8967
+ - uid: 15447
components:
- type: Transform
- pos: -64.5,35.5
+ pos: -19.5,32.5
parent: 2
- - uid: 8972
+ - uid: 15449
components:
- type: Transform
- pos: -52.5,32.5
+ pos: -15.5,35.5
parent: 2
- - uid: 8975
+ - uid: 15451
components:
- type: Transform
- pos: -60.5,37.5
+ pos: -15.5,43.5
parent: 2
- - uid: 8976
+ - uid: 15462
components:
- type: Transform
- pos: -59.5,37.5
+ pos: -31.5,35.5
parent: 2
- - uid: 8977
+ - uid: 15463
components:
- type: Transform
- pos: -64.5,33.5
+ pos: -31.5,34.5
parent: 2
- - uid: 8979
+ - uid: 15464
components:
- type: Transform
- pos: -51.5,37.5
+ pos: -31.5,33.5
parent: 2
- - uid: 8985
+ - uid: 15468
components:
- type: Transform
- pos: -51.5,28.5
+ pos: -23.5,35.5
parent: 2
- - uid: 8987
+ - uid: 15469
components:
- type: Transform
- pos: -51.5,32.5
+ pos: -23.5,34.5
parent: 2
- - uid: 8992
+ - uid: 15470
components:
- type: Transform
- pos: -64.5,31.5
+ pos: -23.5,33.5
parent: 2
- - uid: 8993
+ - uid: 15480
components:
- type: Transform
- pos: -64.5,32.5
+ pos: -24.5,40.5
parent: 2
- - uid: 8995
+ - uid: 15489
components:
- type: Transform
- pos: -58.5,36.5
+ pos: -35.5,36.5
parent: 2
- - uid: 8996
+ - uid: 15510
components:
- type: Transform
- pos: -63.5,37.5
+ pos: 7.5,63.5
parent: 2
- - uid: 8997
+ - uid: 15523
components:
- type: Transform
- pos: -64.5,36.5
+ pos: -50.5,55.5
parent: 2
- - uid: 8998
+ - uid: 15556
components:
- type: Transform
- pos: -62.5,37.5
+ pos: 8.5,48.5
parent: 2
- - uid: 8999
+ - uid: 15616
components:
- type: Transform
- pos: -61.5,37.5
+ pos: -15.5,38.5
parent: 2
- - uid: 9018
+ - uid: 15623
components:
- type: Transform
- pos: -57.5,31.5
+ pos: -19.5,38.5
parent: 2
- - uid: 9019
+ - uid: 15629
components:
- type: Transform
- pos: -57.5,37.5
+ pos: -19.5,42.5
parent: 2
- - uid: 9020
+ - uid: 15647
components:
- type: Transform
- pos: -56.5,38.5
+ pos: -19.5,43.5
parent: 2
- - uid: 9022
+ - uid: 15650
components:
- type: Transform
- pos: -52.5,38.5
+ pos: -32.5,40.5
parent: 2
- - uid: 9025
+ - uid: 15654
components:
- type: Transform
- pos: -53.5,32.5
+ pos: -32.5,39.5
parent: 2
- - uid: 9026
+ - uid: 15655
components:
- type: Transform
- pos: -50.5,32.5
+ pos: -19.5,39.5
parent: 2
- - uid: 9027
+ - uid: 15656
components:
- type: Transform
- pos: -50.5,36.5
+ pos: -19.5,40.5
parent: 2
- - uid: 9032
+ - uid: 15657
components:
- type: Transform
- pos: -57.5,32.5
+ pos: -19.5,41.5
parent: 2
- - uid: 9034
+ - uid: 15703
components:
- type: Transform
- pos: -65.5,37.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,42.5
parent: 2
- - uid: 9058
+ - uid: 15704
components:
- type: Transform
- pos: -56.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,41.5
parent: 2
- - uid: 9060
+ - uid: 15730
components:
- type: Transform
- pos: -49.5,32.5
+ pos: -33.5,39.5
parent: 2
- - uid: 9064
+ - uid: 15791
components:
- type: Transform
- pos: -45.5,32.5
+ pos: -11.5,45.5
parent: 2
- - uid: 9065
+ - uid: 15818
components:
- type: Transform
- pos: -44.5,32.5
+ pos: -24.5,65.5
parent: 2
- - uid: 9066
+ - uid: 15822
components:
- type: Transform
- pos: -49.5,36.5
+ pos: -20.5,65.5
parent: 2
- - uid: 9068
+ - uid: 15831
components:
- type: Transform
- pos: -41.5,32.5
+ pos: -28.5,43.5
parent: 2
- - uid: 9069
+ - uid: 15832
components:
- type: Transform
- pos: -45.5,28.5
+ pos: -24.5,43.5
parent: 2
- - uid: 9070
+ - uid: 15838
components:
- type: Transform
- pos: -44.5,28.5
+ pos: -90.5,10.5
parent: 2
- - uid: 9072
+ - uid: 15839
components:
- type: Transform
- pos: -42.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,0.5
parent: 2
- - uid: 9073
+ - uid: 15843
components:
- type: Transform
- pos: -41.5,28.5
+ pos: -8.5,65.5
parent: 2
- - uid: 9075
+ - uid: 15847
components:
- type: Transform
- pos: -56.5,40.5
+ pos: 12.5,64.5
parent: 2
- - uid: 9076
+ - uid: 15854
components:
- type: Transform
- pos: -52.5,39.5
+ pos: -34.5,56.5
parent: 2
- - uid: 9077
+ - uid: 15859
components:
- type: Transform
- pos: -52.5,40.5
+ pos: -23.5,43.5
parent: 2
- - uid: 9078
+ - uid: 15865
components:
- type: Transform
- pos: -52.5,41.5
+ pos: -36.5,7.5
parent: 2
- - uid: 9099
+ - uid: 15866
components:
- type: Transform
- pos: 48.5,58.5
+ pos: -40.5,7.5
parent: 2
- - uid: 9120
+ - uid: 15882
components:
- type: Transform
- pos: -31.5,25.5
+ pos: -34.5,36.5
parent: 2
- - uid: 9127
+ - uid: 15887
components:
- type: Transform
- pos: -37.5,36.5
+ pos: 14.5,60.5
parent: 2
- - uid: 9130
+ - uid: 15889
components:
- type: Transform
- pos: -32.5,36.5
+ pos: 13.5,58.5
parent: 2
- - uid: 9131
+ - uid: 15899
components:
- type: Transform
- pos: -52.5,42.5
+ pos: -3.5,62.5
parent: 2
- - uid: 9135
+ - uid: 15917
components:
- type: Transform
- pos: 36.5,58.5
+ pos: -15.5,36.5
parent: 2
- - uid: 9175
+ - uid: 15922
components:
- type: Transform
- pos: 11.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,45.5
parent: 2
- - uid: 9226
+ - uid: 15943
components:
- type: Transform
- pos: 33.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,18.5
parent: 2
- - uid: 9227
+ - uid: 15963
components:
- type: Transform
- pos: 33.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,-0.5
parent: 2
- - uid: 9229
+ - uid: 16001
components:
- type: Transform
- pos: 33.5,46.5
+ pos: -28.5,52.5
parent: 2
- - uid: 9232
+ - uid: 16013
components:
- type: Transform
- pos: 33.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,1.5
parent: 2
- - uid: 9233
+ - uid: 16080
components:
- type: Transform
- pos: 33.5,48.5
+ pos: 47.5,16.5
parent: 2
- - uid: 9239
+ - uid: 16082
components:
- type: Transform
- pos: 42.5,16.5
+ pos: -10.5,38.5
parent: 2
- - uid: 9241
+ - uid: 16086
components:
- type: Transform
- pos: 43.5,16.5
+ pos: -11.5,39.5
parent: 2
- - uid: 9247
+ - uid: 16096
components:
- type: Transform
- pos: 44.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,58.5
parent: 2
- - uid: 9248
+ - uid: 16097
components:
- type: Transform
- pos: 44.5,16.5
+ pos: -10.5,43.5
parent: 2
- - uid: 9249
+ - uid: 16143
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,42.5
parent: 2
- - uid: 9250
+ - uid: 16152
components:
- type: Transform
- pos: 38.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,1.5
parent: 2
- - uid: 9251
+ - uid: 16165
components:
- type: Transform
- pos: 36.5,51.5
+ pos: -11.5,38.5
parent: 2
- - uid: 9269
+ - uid: 16284
components:
- type: Transform
- pos: 46.5,51.5
+ pos: -37.5,30.5
parent: 2
- - uid: 9278
+ - uid: 16285
components:
- type: Transform
- pos: 46.5,50.5
+ pos: -37.5,28.5
parent: 2
- - uid: 9279
+ - uid: 16286
components:
- type: Transform
- pos: 36.5,50.5
+ pos: -95.5,14.5
parent: 2
- - uid: 9305
+ - uid: 16287
components:
- type: Transform
- pos: -29.5,49.5
+ pos: -11.5,43.5
parent: 2
- - uid: 9335
+ - uid: 16292
components:
- type: Transform
- pos: 94.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -29.5,41.5
parent: 2
- - uid: 9347
+ - uid: 16293
components:
- type: Transform
- pos: -37.5,3.5
+ pos: -33.5,40.5
parent: 2
- - uid: 9354
+ - uid: 16294
components:
- type: Transform
- pos: -36.5,3.5
+ pos: -18.5,52.5
parent: 2
- - uid: 9414
+ - uid: 16303
components:
- type: Transform
- pos: -50.5,47.5
+ pos: -30.5,63.5
parent: 2
- - uid: 9415
+ - uid: 16310
components:
- type: Transform
- pos: -50.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -14.5,62.5
parent: 2
- - uid: 9416
+ - uid: 16321
components:
- type: Transform
- pos: -50.5,49.5
+ pos: -10.5,60.5
parent: 2
- - uid: 9417
+ - uid: 16322
components:
- type: Transform
- pos: -50.5,50.5
+ pos: -9.5,60.5
parent: 2
- - uid: 9418
+ - uid: 16323
components:
- type: Transform
- pos: -50.5,51.5
+ pos: -15.5,60.5
parent: 2
- - uid: 9419
+ - uid: 16324
components:
- type: Transform
- pos: -48.5,51.5
+ pos: -14.5,60.5
parent: 2
- - uid: 9420
+ - uid: 16325
components:
- type: Transform
- pos: -48.5,50.5
+ pos: -12.5,60.5
parent: 2
- - uid: 9421
+ - uid: 16326
components:
- type: Transform
- pos: -48.5,49.5
+ pos: -11.5,60.5
parent: 2
- - uid: 9422
+ - uid: 16327
components:
- type: Transform
- pos: -48.5,48.5
+ pos: -13.5,60.5
parent: 2
- - uid: 9423
+ - uid: 16329
components:
- type: Transform
- pos: -48.5,47.5
+ pos: -17.5,60.5
parent: 2
- - uid: 9424
+ - uid: 16330
components:
- type: Transform
- pos: -50.5,52.5
+ pos: -37.5,29.5
parent: 2
- - uid: 9425
+ - uid: 16340
components:
- type: Transform
- pos: -48.5,52.5
+ pos: -17.5,59.5
parent: 2
- - uid: 9426
+ - uid: 16348
components:
- type: Transform
- pos: -46.5,52.5
+ pos: -17.5,53.5
parent: 2
- - uid: 9427
+ - uid: 16349
components:
- type: Transform
- pos: -46.5,51.5
+ pos: -17.5,52.5
parent: 2
- - uid: 9428
+ - uid: 16353
components:
- type: Transform
- pos: -46.5,50.5
+ pos: -9.5,62.5
parent: 2
- - uid: 9429
+ - uid: 16354
components:
- type: Transform
- pos: -46.5,49.5
+ pos: -9.5,61.5
parent: 2
- - uid: 9430
+ - uid: 16362
components:
- type: Transform
- pos: -46.5,48.5
+ pos: -12.5,66.5
parent: 2
- - uid: 9431
+ - uid: 16397
components:
- type: Transform
- pos: -46.5,47.5
+ pos: 47.5,15.5
parent: 2
- - uid: 9432
+ - uid: 16400
components:
- type: Transform
- pos: -44.5,47.5
+ pos: 48.5,2.5
parent: 2
- - uid: 9433
+ - uid: 16401
components:
- type: Transform
- pos: -44.5,48.5
+ pos: 46.5,16.5
parent: 2
- - uid: 9434
+ - uid: 16402
components:
- type: Transform
- pos: -44.5,49.5
+ pos: -28.5,68.5
parent: 2
- - uid: 9435
+ - uid: 16406
components:
- type: Transform
- pos: -44.5,50.5
+ pos: -24.5,68.5
parent: 2
- - uid: 9436
+ - uid: 16410
components:
- type: Transform
- pos: -44.5,51.5
+ pos: -37.5,33.5
parent: 2
- - uid: 9437
+ - uid: 16414
components:
- type: Transform
- pos: -44.5,52.5
+ pos: -37.5,32.5
parent: 2
- - uid: 9438
+ - uid: 16415
components:
- type: Transform
- pos: -42.5,52.5
+ pos: -37.5,34.5
parent: 2
- - uid: 9439
+ - uid: 16417
components:
- type: Transform
- pos: -42.5,51.5
+ pos: -37.5,35.5
parent: 2
- - uid: 9440
+ - uid: 16425
components:
- type: Transform
- pos: -42.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,41.5
parent: 2
- - uid: 9441
+ - uid: 16453
components:
- type: Transform
- pos: -42.5,49.5
+ pos: -24.5,52.5
parent: 2
- - uid: 9442
+ - uid: 16455
components:
- type: Transform
- pos: -42.5,48.5
+ pos: -23.5,52.5
parent: 2
- - uid: 9443
+ - uid: 16456
components:
- type: Transform
- pos: -42.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,16.5
parent: 2
- - uid: 9444
+ - uid: 16478
components:
- type: Transform
- pos: -40.5,47.5
+ pos: -60.5,42.5
parent: 2
- - uid: 9445
+ - uid: 16479
components:
- type: Transform
- pos: -40.5,48.5
+ pos: -61.5,42.5
parent: 2
- - uid: 9446
+ - uid: 16487
components:
- type: Transform
- pos: -40.5,49.5
+ pos: -36.5,28.5
parent: 2
- - uid: 9447
+ - uid: 16492
components:
- type: Transform
- pos: -40.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,2.5
parent: 2
- - uid: 9448
+ - uid: 16508
components:
- type: Transform
- pos: -40.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,47.5
parent: 2
- - uid: 9449
+ - uid: 16520
components:
- type: Transform
- pos: -40.5,52.5
+ pos: -35.5,28.5
parent: 2
- - uid: 9450
+ - uid: 16521
components:
- type: Transform
- pos: -38.5,52.5
+ pos: -32.5,28.5
parent: 2
- - uid: 9451
+ - uid: 16522
components:
- type: Transform
- pos: -38.5,51.5
+ pos: -34.5,28.5
parent: 2
- - uid: 9452
+ - uid: 16578
components:
- type: Transform
- pos: -38.5,50.5
+ pos: -34.5,32.5
parent: 2
- - uid: 9453
+ - uid: 16656
components:
- type: Transform
- pos: -38.5,49.5
+ pos: -43.5,7.5
parent: 2
- - uid: 9454
+ - uid: 16697
components:
- type: Transform
- pos: -38.5,48.5
+ pos: 42.5,-32.5
parent: 2
- - uid: 9455
+ - uid: 16829
components:
- type: Transform
- pos: -38.5,47.5
+ pos: 16.5,-21.5
parent: 2
- - uid: 9456
+ - uid: 16852
components:
- type: Transform
- pos: -36.5,47.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-33.5
parent: 2
- - uid: 9458
+ - uid: 16856
components:
- type: Transform
- pos: -36.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-27.5
parent: 2
- - uid: 9459
+ - uid: 16963
components:
- type: Transform
- pos: -36.5,50.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,14.5
parent: 2
- - uid: 9460
+ - uid: 17028
components:
- type: Transform
- pos: -36.5,51.5
+ pos: -34.5,47.5
parent: 2
- - uid: 9461
+ - uid: 17047
components:
- type: Transform
- pos: -36.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-33.5
parent: 2
- - uid: 9488
+ - uid: 17115
components:
- type: Transform
- pos: -63.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-22.5
parent: 2
- - uid: 9506
+ - uid: 17117
components:
- type: Transform
- pos: 41.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,36.5
parent: 2
- - uid: 9517
+ - uid: 17118
components:
- type: Transform
- pos: -20.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,35.5
parent: 2
- - uid: 9528
+ - uid: 17119
components:
- type: Transform
- pos: -66.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,35.5
parent: 2
- - uid: 9537
+ - uid: 17122
components:
- type: Transform
- pos: -8.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,35.5
parent: 2
- - uid: 9538
+ - uid: 17176
components:
- type: Transform
- pos: -9.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,35.5
parent: 2
- - uid: 9541
+ - uid: 17362
components:
- type: Transform
- pos: -12.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,35.5
parent: 2
- - uid: 9543
+ - uid: 17377
components:
- type: Transform
- pos: -64.5,-19.5
+ pos: 24.5,-18.5
parent: 2
- - uid: 9545
+ - uid: 17378
components:
- type: Transform
- pos: -30.5,45.5
+ pos: 5.5,-25.5
parent: 2
- - uid: 9546
+ - uid: 17384
components:
- type: Transform
- pos: -30.5,46.5
+ pos: 16.5,-17.5
parent: 2
- - uid: 9547
+ - uid: 17393
components:
- type: Transform
- pos: -30.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-25.5
parent: 2
- - uid: 9549
+ - uid: 17396
components:
- type: Transform
- pos: -11.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-27.5
parent: 2
- - uid: 9551
+ - uid: 17651
components:
- type: Transform
- pos: -13.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-27.5
parent: 2
- - uid: 9556
+ - uid: 17720
components:
- type: Transform
- pos: -34.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-27.5
parent: 2
- - uid: 9557
+ - uid: 17747
components:
- type: Transform
- pos: 11.5,-39.5
+ pos: -24.5,47.5
parent: 2
- - uid: 9558
+ - uid: 17796
components:
- type: Transform
- pos: -65.5,-19.5
+ pos: -98.5,-13.5
parent: 2
- - uid: 9625
+ - uid: 17797
components:
- type: Transform
- pos: -34.5,45.5
+ pos: -98.5,30.5
parent: 2
- - uid: 9635
+ - uid: 17806
components:
- type: Transform
- pos: -44.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-26.5
parent: 2
- - uid: 9639
+ - uid: 17910
components:
- type: Transform
- pos: -41.5,55.5
+ pos: -20.5,68.5
parent: 2
- - uid: 9640
+ - uid: 17929
components:
- type: Transform
- pos: -42.5,55.5
+ pos: -16.5,68.5
parent: 2
- - uid: 9641
+ - uid: 17966
components:
- type: Transform
- pos: -43.5,55.5
+ pos: -12.5,68.5
parent: 2
- - uid: 9642
+ - uid: 17972
components:
- type: Transform
- pos: -44.5,55.5
+ pos: -6.5,68.5
parent: 2
- - uid: 9643
+ - uid: 17973
components:
- type: Transform
- pos: -46.5,55.5
+ pos: -28.5,46.5
parent: 2
- - uid: 9662
+ - uid: 17980
components:
- type: Transform
- pos: -34.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,36.5
parent: 2
- - uid: 9666
+ - uid: 17981
components:
- type: Transform
- pos: -34.5,41.5
+ pos: -29.5,56.5
parent: 2
- - uid: 9667
+ - uid: 17982
components:
- type: Transform
- pos: -34.5,39.5
+ pos: -30.5,56.5
parent: 2
- - uid: 9668
+ - uid: 17983
components:
- type: Transform
- pos: -34.5,37.5
+ pos: -31.5,56.5
parent: 2
- - uid: 9670
+ - uid: 17984
components:
- type: Transform
- pos: 54.5,71.5
+ pos: -32.5,56.5
parent: 2
- - uid: 9672
+ - uid: 18001
components:
- type: Transform
- pos: -47.5,55.5
+ pos: -31.5,68.5
parent: 2
- - uid: 9673
+ - uid: 18003
components:
- type: Transform
- pos: -130.5,38.5
+ pos: -29.5,68.5
parent: 2
- - uid: 9676
+ - uid: 18005
components:
- type: Transform
- pos: -3.5,43.5
+ pos: -31.5,63.5
parent: 2
- - uid: 9677
+ - uid: 18008
components:
- type: Transform
- pos: -129.5,37.5
+ pos: -0.5,62.5
parent: 2
- - uid: 9680
+ - uid: 18009
components:
- type: Transform
- pos: -9.5,43.5
+ pos: -5.5,62.5
parent: 2
- - uid: 9686
+ - uid: 18010
components:
- type: Transform
- pos: -50.5,37.5
+ pos: -4.5,62.5
parent: 2
- - uid: 9691
+ - uid: 18011
components:
- type: Transform
- pos: -66.5,37.5
+ pos: -6.5,62.5
parent: 2
- - uid: 9692
+ - uid: 18012
components:
- type: Transform
- pos: -67.5,37.5
+ pos: -2.5,62.5
parent: 2
- - uid: 9693
+ - uid: 18013
components:
- type: Transform
- pos: -68.5,37.5
+ pos: -7.5,62.5
parent: 2
- - uid: 9694
+ - uid: 18015
components:
- type: Transform
- pos: -69.5,37.5
+ pos: -68.5,-12.5
parent: 2
- - uid: 9695
+ - uid: 18016
components:
- type: Transform
- pos: -57.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -80.5,13.5
parent: 2
- - uid: 9696
+ - uid: 18028
components:
- type: Transform
- pos: -58.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,14.5
parent: 2
- - uid: 9697
+ - uid: 18034
components:
- type: Transform
- pos: -59.5,42.5
+ pos: -1.5,62.5
parent: 2
- - uid: 9698
+ - uid: 18035
components:
- type: Transform
- pos: -59.5,38.5
+ pos: -0.5,65.5
parent: 2
- - uid: 9699
+ - uid: 18038
components:
- type: Transform
- pos: 53.5,71.5
+ pos: -24.5,66.5
parent: 2
- - uid: 9701
+ - uid: 18039
components:
- type: Transform
- pos: -59.5,40.5
+ pos: -20.5,66.5
parent: 2
- - uid: 9702
+ - uid: 18042
components:
- type: Transform
- pos: -45.5,59.5
+ pos: -40.5,70.5
parent: 2
- - uid: 9942
+ - uid: 18081
components:
- type: Transform
- pos: -39.5,55.5
+ pos: -6.5,69.5
parent: 2
- - uid: 9943
+ - uid: 18087
components:
- type: Transform
- pos: -40.5,55.5
+ pos: -6.5,66.5
parent: 2
- - uid: 9944
+ - uid: 18092
components:
- type: Transform
- pos: -47.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,36.5
parent: 2
- - uid: 10016
+ - uid: 18098
components:
- type: Transform
- pos: -29.5,44.5
+ pos: 6.5,66.5
parent: 2
- - uid: 10028
+ - uid: 18099
components:
- type: Transform
- pos: -72.5,-8.5
+ pos: 15.5,67.5
parent: 2
- - uid: 10029
+ - uid: 18109
components:
- type: Transform
- pos: -73.5,-8.5
+ pos: 14.5,67.5
parent: 2
- - uid: 10030
+ - uid: 18114
components:
- type: Transform
- pos: -70.5,-8.5
+ pos: -5.5,69.5
parent: 2
- - uid: 10031
+ - uid: 18117
components:
- type: Transform
- pos: -71.5,-8.5
+ pos: 12.5,58.5
parent: 2
- - uid: 10056
+ - uid: 18120
components:
- type: Transform
- pos: -34.5,60.5
+ pos: -3.5,69.5
parent: 2
- - uid: 10188
+ - uid: 18126
components:
- type: Transform
- pos: -51.5,15.5
+ pos: -2.5,69.5
parent: 2
- - uid: 10189
+ - uid: 18127
components:
- type: Transform
- pos: -47.5,15.5
+ pos: -1.5,69.5
parent: 2
- - uid: 10211
+ - uid: 18128
components:
- type: Transform
- pos: -34.5,40.5
+ pos: -0.5,69.5
parent: 2
- - uid: 10212
+ - uid: 18129
components:
- type: Transform
- pos: -34.5,38.5
+ pos: -0.5,68.5
parent: 2
- - uid: 10216
+ - uid: 18130
components:
- type: Transform
- pos: -34.5,42.5
+ pos: -0.5,67.5
parent: 2
- - uid: 10217
+ - uid: 18131
components:
- type: Transform
- pos: -34.5,44.5
+ pos: -0.5,66.5
parent: 2
- - uid: 10218
+ - uid: 18203
components:
- type: Transform
- pos: -34.5,46.5
+ pos: -12.5,72.5
parent: 2
- - uid: 10345
+ - uid: 18204
components:
- type: Transform
- pos: -34.5,52.5
+ pos: -11.5,72.5
parent: 2
- - uid: 10377
+ - uid: 18205
components:
- type: Transform
- pos: -3.5,42.5
+ pos: -10.5,72.5
parent: 2
- - uid: 10378
+ - uid: 18206
components:
- type: Transform
- pos: -31.5,24.5
+ pos: -9.5,72.5
parent: 2
- - uid: 10379
+ - uid: 18207
components:
- type: Transform
- pos: -31.5,23.5
+ pos: -8.5,72.5
parent: 2
- - uid: 10380
+ - uid: 18208
components:
- type: Transform
- pos: -27.5,23.5
+ pos: -7.5,72.5
parent: 2
- - uid: 10384
+ - uid: 18209
components:
- type: Transform
- pos: 4.5,56.5
+ pos: -6.5,72.5
parent: 2
- - uid: 10390
+ - uid: 18210
components:
- type: Transform
- pos: -57.5,-37.5
+ pos: -5.5,72.5
parent: 2
- - uid: 10395
+ - uid: 18211
components:
- type: Transform
- pos: -58.5,-36.5
+ pos: -4.5,72.5
parent: 2
- - uid: 10396
+ - uid: 18212
components:
- type: Transform
- pos: -62.5,-36.5
+ pos: -3.5,72.5
parent: 2
- - uid: 10397
+ - uid: 18213
components:
- type: Transform
- pos: -63.5,-36.5
+ pos: -2.5,72.5
parent: 2
- - uid: 10625
+ - uid: 18214
components:
- type: Transform
- pos: -56.5,-37.5
+ pos: -1.5,72.5
parent: 2
- - uid: 11102
+ - uid: 18215
components:
- type: Transform
- pos: -45.5,58.5
+ pos: -0.5,72.5
parent: 2
- - uid: 11227
+ - uid: 18225
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -64.5,-24.5
+ pos: -45.5,55.5
parent: 2
- - uid: 11450
+ - uid: 18226
components:
- type: Transform
- pos: -76.5,20.5
+ pos: -38.5,55.5
parent: 2
- - uid: 11496
+ - uid: 18230
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -98.5,-0.5
+ pos: -45.5,71.5
parent: 2
- - uid: 11502
+ - uid: 18236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,16.5
parent: 2
- - uid: 11507
+ - uid: 18255
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -99.5,-0.5
+ pos: -33.5,56.5
parent: 2
- - uid: 11519
+ - uid: 18272
components:
- type: Transform
- pos: -91.5,10.5
+ pos: -24.5,67.5
parent: 2
- - uid: 11534
+ - uid: 18273
components:
- type: Transform
- pos: -98.5,68.5
+ pos: -28.5,67.5
parent: 2
- - uid: 11851
+ - uid: 18274
components:
- type: Transform
- pos: -19.5,-46.5
+ pos: -30.5,67.5
parent: 2
- - uid: 11854
+ - uid: 18343
components:
- type: Transform
- pos: -45.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,56.5
parent: 2
- - uid: 11857
+ - uid: 18352
components:
- type: Transform
- pos: -35.5,52.5
+ pos: 10.5,57.5
parent: 2
- - uid: 12121
+ - uid: 18354
components:
- type: Transform
- pos: 40.5,-32.5
+ pos: -71.5,-12.5
parent: 2
- - uid: 12143
+ - uid: 18361
components:
- type: Transform
- pos: 40.5,-12.5
+ pos: 76.5,4.5
parent: 2
- - uid: 12217
+ - uid: 18363
components:
- type: Transform
- pos: 45.5,-10.5
+ pos: 3.5,63.5
parent: 2
- - uid: 12218
+ - uid: 18364
components:
- type: Transform
- pos: 40.5,-13.5
+ pos: 3.5,64.5
parent: 2
- - uid: 12223
+ - uid: 18366
components:
- type: Transform
- pos: 40.5,-33.5
+ pos: 3.5,66.5
parent: 2
- - uid: 12224
+ - uid: 18379
components:
- type: Transform
- pos: 40.5,-34.5
+ pos: -36.5,48.5
parent: 2
- - uid: 12318
+ - uid: 18392
components:
- type: Transform
- pos: 48.5,-32.5
+ pos: -33.5,68.5
parent: 2
- - uid: 12323
+ - uid: 18517
components:
- type: Transform
- pos: 47.5,-32.5
+ pos: -51.5,36.5
parent: 2
- - uid: 12511
+ - uid: 18688
components:
- type: Transform
- pos: -24.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,21.5
parent: 2
- - uid: 12747
+ - uid: 18814
components:
- type: Transform
- pos: 69.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,47.5
parent: 2
- - uid: 12748
+ - uid: 18904
components:
- type: Transform
- pos: 46.5,-32.5
+ pos: -119.5,64.5
parent: 2
- - uid: 12922
+ - uid: 18905
components:
- type: Transform
- pos: 33.5,40.5
+ pos: -111.5,65.5
parent: 2
- - uid: 12923
+ - uid: 18906
components:
- type: Transform
- pos: 33.5,41.5
+ pos: -104.5,64.5
parent: 2
- - uid: 12926
+ - uid: 18907
components:
- type: Transform
- pos: 36.5,52.5
+ pos: -101.5,64.5
parent: 2
- - uid: 12931
+ - uid: 18946
components:
- type: Transform
- pos: 33.5,38.5
+ pos: -110.5,68.5
parent: 2
- - uid: 12932
+ - uid: 18956
components:
- type: Transform
- pos: 33.5,39.5
+ pos: -122.5,70.5
parent: 2
- - uid: 12933
+ - uid: 18958
components:
- type: Transform
- pos: 33.5,42.5
+ pos: -106.5,68.5
parent: 2
- - uid: 12936
+ - uid: 18984
components:
- type: Transform
- pos: 65.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,7.5
parent: 2
- - uid: 12937
+ - uid: 19084
components:
- type: Transform
- pos: 64.5,-31.5
+ pos: -35.5,6.5
parent: 2
- - uid: 12938
+ - uid: 19086
components:
- type: Transform
- pos: 81.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,5.5
parent: 2
- - uid: 12939
+ - uid: 19119
components:
- type: Transform
- pos: 81.5,-8.5
+ pos: 78.5,-9.5
parent: 2
- - uid: 12940
+ - uid: 19160
components:
- type: Transform
- pos: 79.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-11.5
parent: 2
- - uid: 12941
+ - uid: 19170
components:
- type: Transform
- pos: 69.5,-29.5
+ rot: 3.141592653589793 rad
+ pos: 90.5,-19.5
parent: 2
- - uid: 12942
+ - uid: 19193
components:
- type: Transform
- pos: 70.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-5.5
parent: 2
- - uid: 12943
+ - uid: 19206
components:
- type: Transform
- pos: 71.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-8.5
parent: 2
- - uid: 12944
+ - uid: 19214
components:
- type: Transform
- pos: 72.5,-25.5
+ pos: -40.5,-8.5
parent: 2
- - uid: 12946
+ - uid: 19227
components:
- type: Transform
- pos: 51.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-4.5
parent: 2
- - uid: 12947
+ - uid: 19230
components:
- type: Transform
- pos: 51.5,-35.5
+ rot: 3.141592653589793 rad
+ pos: 107.5,-6.5
parent: 2
- - uid: 12950
+ - uid: 19231
components:
- type: Transform
- pos: 45.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 101.5,-7.5
parent: 2
- - uid: 12980
+ - uid: 19239
components:
- type: Transform
- pos: -80.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-10.5
parent: 2
- - uid: 13034
+ - uid: 19241
components:
- type: Transform
- pos: -92.5,72.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,-9.5
parent: 2
- - uid: 13040
+ - uid: 19284
components:
- type: Transform
- pos: -79.5,19.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,53.5
parent: 2
- - uid: 13041
+ - uid: 19312
components:
- type: Transform
- pos: -78.5,20.5
+ pos: -47.5,61.5
parent: 2
- - uid: 13043
+ - uid: 19313
components:
- type: Transform
- pos: -95.5,13.5
+ pos: -47.5,60.5
parent: 2
- - uid: 13049
+ - uid: 19314
components:
- type: Transform
- pos: -81.5,18.5
+ pos: -47.5,59.5
parent: 2
- - uid: 13051
+ - uid: 19320
components:
- type: Transform
- pos: -94.5,11.5
+ pos: -49.5,61.5
parent: 2
- - uid: 13059
+ - uid: 19329
components:
- type: Transform
- pos: 4.5,52.5
+ pos: -61.5,47.5
parent: 2
- - uid: 13060
+ - uid: 19333
components:
- type: Transform
- pos: 11.5,58.5
+ pos: -61.5,43.5
parent: 2
- - uid: 13061
+ - uid: 19335
components:
- type: Transform
- pos: 21.5,44.5
+ pos: -61.5,44.5
parent: 2
- - uid: 13063
+ - uid: 19434
components:
- type: Transform
- pos: 72.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,26.5
parent: 2
- - uid: 13064
+ - uid: 19466
components:
- type: Transform
- pos: 74.5,23.5
+ pos: -1.5,79.5
parent: 2
- - uid: 13065
+ - uid: 19467
components:
- type: Transform
- pos: 70.5,9.5
+ pos: -2.5,79.5
parent: 2
- - uid: 13205
+ - uid: 19468
components:
- type: Transform
- pos: 41.5,-32.5
+ pos: -3.5,79.5
parent: 2
- - uid: 13208
+ - uid: 19469
components:
- type: Transform
- pos: -93.5,27.5
+ pos: 4.5,79.5
parent: 2
- - uid: 13209
+ - uid: 19470
components:
- type: Transform
- pos: -94.5,29.5
+ pos: 6.5,79.5
parent: 2
- - uid: 13210
+ - uid: 19471
components:
- type: Transform
- pos: -95.5,30.5
+ pos: 5.5,79.5
parent: 2
- - uid: 13216
+ - uid: 19520
components:
- type: Transform
- pos: -93.5,-10.5
+ pos: 15.5,72.5
parent: 2
- - uid: 13217
+ - uid: 19521
components:
- type: Transform
- pos: -94.5,-12.5
+ pos: 15.5,73.5
parent: 2
- - uid: 13218
+ - uid: 19522
components:
- type: Transform
- pos: -95.5,-13.5
+ pos: 12.5,79.5
parent: 2
- - uid: 13219
+ - uid: 19523
components:
- type: Transform
- pos: -97.5,-14.5
+ pos: 13.5,79.5
parent: 2
- - uid: 13239
+ - uid: 19524
components:
- type: Transform
- pos: -70.5,36.5
+ pos: 14.5,79.5
parent: 2
- - uid: 13240
+ - uid: 19525
components:
- type: Transform
- pos: -70.5,35.5
+ pos: 15.5,79.5
parent: 2
- - uid: 13246
+ - uid: 19526
components:
- type: Transform
- pos: -44.5,3.5
+ pos: 15.5,78.5
parent: 2
- - uid: 13252
+ - uid: 19527
components:
- type: Transform
- pos: -8.5,22.5
+ pos: -9.5,79.5
parent: 2
- - uid: 13269
+ - uid: 19528
components:
- type: Transform
- pos: 44.5,-15.5
+ pos: -10.5,79.5
parent: 2
- - uid: 13314
+ - uid: 19529
components:
- type: Transform
- pos: 40.5,-15.5
+ pos: -11.5,79.5
parent: 2
- - uid: 13384
+ - uid: 19530
components:
- type: Transform
- pos: 31.5,35.5
+ pos: -12.5,79.5
parent: 2
- - uid: 13385
+ - uid: 19531
components:
- type: Transform
- pos: 33.5,37.5
+ pos: -12.5,78.5
parent: 2
- - uid: 13807
+ - uid: 19532
components:
- type: Transform
- pos: 92.5,14.5
+ pos: -12.5,73.5
parent: 2
- - uid: 13916
+ - uid: 19603
components:
- type: Transform
- pos: 9.5,41.5
+ pos: -16.5,52.5
parent: 2
- - uid: 13933
+ - uid: 19627
components:
- type: Transform
- pos: 16.5,60.5
+ pos: -47.5,56.5
parent: 2
- - uid: 13935
+ - uid: 19628
components:
- type: Transform
- pos: 20.5,60.5
+ pos: 13.5,63.5
parent: 2
- - uid: 13941
+ - uid: 19629
components:
- type: Transform
- pos: 21.5,60.5
+ pos: 12.5,63.5
parent: 2
- - uid: 13948
+ - uid: 19632
components:
- type: Transform
- pos: 30.5,51.5
+ pos: -47.5,57.5
parent: 2
- - uid: 13953
+ - uid: 19664
components:
- type: Transform
- pos: 31.5,42.5
+ pos: 5.5,63.5
parent: 2
- - uid: 13954
+ - uid: 19670
components:
- type: Transform
- pos: -24.5,54.5
+ pos: -40.5,68.5
parent: 2
- - uid: 13956
+ - uid: 19671
components:
- type: Transform
- pos: 25.5,53.5
+ pos: 6.5,64.5
parent: 2
- - uid: 13957
+ - uid: 19674
components:
- type: Transform
- pos: 29.5,53.5
+ pos: 6.5,63.5
parent: 2
- - uid: 13962
+ - uid: 19676
components:
- type: Transform
- pos: 30.5,48.5
+ pos: 14.5,63.5
parent: 2
- - uid: 13963
+ - uid: 19690
components:
- type: Transform
- pos: 15.5,60.5
+ pos: -39.5,57.5
parent: 2
- - uid: 13964
+ - uid: 19705
components:
- type: Transform
- pos: 5.5,57.5
+ pos: -35.5,57.5
parent: 2
- - uid: 13965
+ - uid: 19708
components:
- type: Transform
- pos: 9.5,34.5
+ pos: -34.5,67.5
parent: 2
- - uid: 13966
+ - uid: 19709
components:
- type: Transform
- pos: -2.5,65.5
+ pos: -45.5,68.5
parent: 2
- - uid: 13967
+ - uid: 19710
components:
- type: Transform
- pos: -4.5,65.5
+ pos: -38.5,57.5
parent: 2
- - uid: 13968
+ - uid: 19711
components:
- type: Transform
- pos: 12.5,66.5
+ pos: -40.5,57.5
parent: 2
- - uid: 13979
+ - uid: 19717
components:
- type: Transform
- pos: 13.5,44.5
+ pos: -37.5,57.5
parent: 2
- - uid: 13980
+ - uid: 19719
components:
- type: Transform
- pos: 11.5,44.5
+ pos: -36.5,57.5
parent: 2
- - uid: 13981
+ - uid: 19733
components:
- type: Transform
- pos: 12.5,44.5
+ pos: 4.5,63.5
parent: 2
- - uid: 13982
+ - uid: 19758
components:
- type: Transform
- pos: 10.5,44.5
+ pos: -71.5,-9.5
parent: 2
- - uid: 13983
+ - uid: 19806
components:
- type: Transform
- pos: 14.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,36.5
parent: 2
- - uid: 13984
+ - uid: 19812
components:
- type: Transform
- pos: 15.5,44.5
+ pos: 12.5,59.5
parent: 2
- - uid: 13985
+ - uid: 19816
components:
- type: Transform
- pos: 21.5,41.5
+ pos: -70.5,-12.5
parent: 2
- - uid: 13986
+ - uid: 19820
components:
- type: Transform
- pos: 21.5,40.5
+ pos: -67.5,-12.5
parent: 2
- - uid: 13991
+ - uid: 19825
components:
- type: Transform
- pos: 21.5,35.5
+ pos: -45.5,61.5
parent: 2
- - uid: 13992
+ - uid: 19826
components:
- type: Transform
- pos: 25.5,44.5
+ pos: -45.5,57.5
parent: 2
- - uid: 13993
+ - uid: 19827
components:
- type: Transform
- pos: 26.5,43.5
+ pos: -42.5,57.5
parent: 2
- - uid: 13994
+ - uid: 19829
components:
- type: Transform
- pos: 26.5,44.5
+ pos: -45.5,60.5
parent: 2
- - uid: 14016
+ - uid: 19850
components:
- type: Transform
- pos: 12.5,51.5
+ pos: -69.5,-12.5
parent: 2
- - uid: 14021
+ - uid: 19853
components:
- type: Transform
- pos: 9.5,51.5
+ pos: -45.5,62.5
parent: 2
- - uid: 14022
+ - uid: 19855
components:
- type: Transform
- pos: 8.5,51.5
+ rot: 1.5707963267948966 rad
+ pos: -74.5,15.5
parent: 2
- - uid: 14023
+ - uid: 19857
components:
- type: Transform
- pos: 8.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -80.5,12.5
parent: 2
- - uid: 14028
+ - uid: 19880
components:
- type: Transform
- pos: 9.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -80.5,14.5
parent: 2
- - uid: 14042
+ - uid: 19944
components:
- type: Transform
- pos: 14.5,52.5
+ pos: -76.5,-8.5
parent: 2
- - uid: 14090
+ - uid: 19945
components:
- type: Transform
- pos: -33.5,32.5
+ pos: -66.5,28.5
parent: 2
- - uid: 14113
+ - uid: 19946
components:
- type: Transform
- pos: 28.5,43.5
+ pos: -75.5,-8.5
parent: 2
- - uid: 14114
+ - uid: 19947
components:
- type: Transform
- pos: 28.5,44.5
+ pos: -74.5,-8.5
parent: 2
- - uid: 14116
+ - uid: 19950
components:
- type: Transform
- pos: 28.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,36.5
parent: 2
- - uid: 14169
+ - uid: 19967
components:
- type: Transform
- pos: 18.5,51.5
+ pos: -96.5,69.5
parent: 2
- - uid: 14199
+ - uid: 19995
components:
- type: Transform
- pos: 32.5,50.5
+ pos: 9.5,-24.5
parent: 2
- - uid: 14246
+ - uid: 20184
components:
- type: Transform
- pos: 11.5,63.5
+ pos: -41.5,57.5
parent: 2
- - uid: 14247
+ - uid: 20210
components:
- type: Transform
- pos: 15.5,63.5
+ pos: 53.5,-33.5
parent: 2
- - uid: 14248
+ - uid: 20268
components:
- type: Transform
- pos: 7.5,63.5
+ pos: -34.5,48.5
parent: 2
- - uid: 14274
+ - uid: 20277
components:
- type: Transform
- pos: -15.5,32.5
+ pos: -34.5,49.5
parent: 2
- - uid: 14370
+ - uid: 20278
components:
- type: Transform
- pos: -39.5,32.5
+ pos: -34.5,50.5
parent: 2
- - uid: 14493
+ - uid: 20298
components:
- type: Transform
- pos: 38.5,15.5
+ pos: -34.5,51.5
parent: 2
- - uid: 14972
+ - uid: 20318
components:
- type: Transform
- pos: 52.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: -16.5,36.5
parent: 2
- - uid: 14977
+ - uid: 20392
components:
- type: Transform
- pos: 52.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: -64.5,33.5
parent: 2
- - uid: 15098
+ - uid: 20487
components:
- type: Transform
- pos: 24.5,47.5
+ pos: 42.5,9.5
parent: 2
- - uid: 15117
+ - uid: 20502
components:
- type: Transform
- pos: 26.5,53.5
+ pos: 45.5,-28.5
parent: 2
- - uid: 15142
+ - uid: 20511
components:
- type: Transform
- pos: -16.5,65.5
+ pos: 51.5,-30.5
parent: 2
- - uid: 15165
+ - uid: 20560
components:
- type: Transform
- pos: 8.5,63.5
+ pos: -29.5,53.5
parent: 2
- - uid: 15175
+ - uid: 20597
components:
- type: Transform
- pos: -12.5,65.5
+ pos: -55.5,54.5
parent: 2
- - uid: 15195
+ - uid: 20607
components:
- type: Transform
- pos: -6.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: -91.5,-6.5
parent: 2
- - uid: 15200
+ - uid: 20610
components:
- type: Transform
- pos: -9.5,65.5
+ pos: -77.5,25.5
parent: 2
- - uid: 15201
+ - uid: 20612
components:
- type: Transform
- pos: -24.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,17.5
parent: 2
- - uid: 15230
+ - uid: 20644
components:
- type: Transform
- pos: -1.5,65.5
+ pos: -24.5,-11.5
parent: 2
- - uid: 15238
+ - uid: 20673
components:
- type: Transform
- pos: -20.5,50.5
+ pos: 59.5,-34.5
parent: 2
- - uid: 15256
+ - uid: 20682
components:
- type: Transform
- pos: -18.5,60.5
+ pos: -40.5,72.5
parent: 2
- - uid: 15261
+ - uid: 20684
components:
- type: Transform
- pos: -5.5,65.5
+ pos: 58.5,-34.5
parent: 2
- - uid: 15269
+ - uid: 20716
components:
- type: Transform
- pos: -3.5,41.5
+ pos: -45.5,67.5
parent: 2
- - uid: 15276
+ - uid: 20719
components:
- type: Transform
- pos: -12.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-39.5
parent: 2
- - uid: 15277
+ - uid: 20777
components:
- type: Transform
- pos: -9.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-15.5
parent: 2
- - uid: 15278
+ - uid: 20838
components:
- type: Transform
- pos: -10.5,27.5
+ pos: -34.5,74.5
parent: 2
- - uid: 15279
+ - uid: 20864
components:
- type: Transform
- pos: -11.5,27.5
+ pos: -40.5,73.5
parent: 2
- - uid: 15280
+ - uid: 20865
components:
- type: Transform
- pos: -8.5,27.5
+ pos: -34.5,73.5
parent: 2
- - uid: 15281
+ - uid: 20869
components:
- type: Transform
- pos: -7.5,27.5
+ pos: -22.5,-6.5
parent: 2
- - uid: 15282
+ - uid: 21002
components:
- type: Transform
- pos: -19.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 96.5,-26.5
parent: 2
- - uid: 15283
+ - uid: 21007
components:
- type: Transform
- pos: -6.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 101.5,-25.5
parent: 2
- - uid: 15285
+ - uid: 21013
components:
- type: Transform
- pos: -23.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,27.5
parent: 2
- - uid: 15286
+ - uid: 21075
components:
- type: Transform
- pos: -23.5,25.5
+ pos: -37.5,55.5
parent: 2
- - uid: 15287
+ - uid: 21087
components:
- type: Transform
- pos: -23.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,1.5
parent: 2
- - uid: 15290
+ - uid: 21107
components:
- type: Transform
- pos: -12.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 106.5,-26.5
parent: 2
- - uid: 15291
+ - uid: 21110
components:
- type: Transform
- pos: -22.5,27.5
+ pos: 24.5,-23.5
parent: 2
- - uid: 15292
+ - uid: 21115
components:
- type: Transform
- pos: -13.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,6.5
parent: 2
- - uid: 15293
+ - uid: 21116
components:
- type: Transform
- pos: -17.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -94.5,5.5
parent: 2
- - uid: 15294
+ - uid: 21187
components:
- type: Transform
- pos: -23.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 105.5,-7.5
parent: 2
- - uid: 15301
+ - uid: 21209
components:
- type: Transform
- pos: -18.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,4.5
parent: 2
- - uid: 15303
+ - uid: 21265
components:
- type: Transform
- pos: -4.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,8.5
parent: 2
- - uid: 15304
+ - uid: 21782
components:
- type: Transform
- pos: -7.5,28.5
+ pos: -35.5,47.5
parent: 2
- - uid: 15305
+ - uid: 21783
components:
- type: Transform
- pos: -7.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,47.5
parent: 2
- - uid: 15306
+ - uid: 21785
components:
- type: Transform
- pos: -7.5,31.5
+ pos: -2.5,46.5
parent: 2
- - uid: 15307
+ - uid: 21809
components:
- type: Transform
- pos: -8.5,31.5
+ pos: -28.5,45.5
parent: 2
- - uid: 15308
+ - uid: 21812
components:
- type: Transform
- pos: -9.5,31.5
+ pos: 11.5,-25.5
parent: 2
- - uid: 15309
+ - uid: 21878
components:
- type: Transform
- pos: -9.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,41.5
parent: 2
- - uid: 15312
+ - uid: 21896
components:
- type: Transform
- pos: -9.5,35.5
+ rot: 3.141592653589793 rad
+ pos: -74.5,28.5
parent: 2
- - uid: 15313
+ - uid: 22107
components:
- type: Transform
- pos: -9.5,36.5
+ pos: 12.5,60.5
parent: 2
- - uid: 15314
+ - uid: 22167
components:
- type: Transform
- pos: -8.5,36.5
+ pos: -87.5,11.5
parent: 2
- - uid: 15315
+ - uid: 22280
components:
- type: Transform
- pos: -7.5,36.5
+ pos: 4.5,62.5
parent: 2
- - uid: 15316
+ - uid: 22299
components:
- type: Transform
- pos: -6.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,35.5
parent: 2
- - uid: 15317
+ - uid: 22301
components:
- type: Transform
- pos: -5.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,36.5
parent: 2
- - uid: 15318
+ - uid: 22302
components:
- type: Transform
- pos: -4.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,36.5
parent: 2
- - uid: 15319
+ - uid: 22303
components:
- type: Transform
- pos: 4.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,35.5
parent: 2
- - uid: 15321
+ - uid: 22304
components:
- type: Transform
- pos: -9.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,35.5
parent: 2
- - uid: 15322
+ - uid: 22307
components:
- type: Transform
- pos: -15.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,35.5
parent: 2
- - uid: 15323
+ - uid: 22309
components:
- type: Transform
- pos: -16.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,36.5
parent: 2
- - uid: 15325
+ - uid: 22311
components:
- type: Transform
- pos: -18.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,36.5
parent: 2
- - uid: 15331
+ - uid: 22313
components:
- type: Transform
- pos: -20.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: -17.5,36.5
parent: 2
- - uid: 15333
+ - uid: 22328
components:
- type: Transform
- pos: -22.5,31.5
+ pos: -71.5,-11.5
parent: 2
- - uid: 15334
+ - uid: 22345
components:
- type: Transform
- pos: -23.5,31.5
+ pos: -79.5,16.5
parent: 2
- - uid: 15335
+ - uid: 22348
components:
- type: Transform
- pos: -23.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: -79.5,15.5
parent: 2
- - uid: 15337
+ - uid: 22349
components:
- type: Transform
- pos: -27.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: -80.5,15.5
parent: 2
- - uid: 15340
+ - uid: 22351
components:
- type: Transform
- pos: -27.5,24.5
+ pos: -78.5,16.5
parent: 2
- - uid: 15341
+ - uid: 22356
components:
- type: Transform
- pos: -27.5,25.5
+ pos: 3.5,67.5
parent: 2
- - uid: 15342
+ - uid: 22361
components:
- type: Transform
- pos: -27.5,26.5
+ pos: -45.5,63.5
parent: 2
- - uid: 15343
+ - uid: 22374
components:
- type: Transform
- pos: -27.5,27.5
+ pos: -18.5,-6.5
parent: 2
- - uid: 15350
+ - uid: 22452
components:
- type: Transform
- pos: -31.5,26.5
+ rot: -1.5707963267948966 rad
+ pos: -93.5,6.5
parent: 2
- - uid: 15351
+ - uid: 22573
components:
- type: Transform
- pos: -31.5,27.5
+ pos: 55.5,45.5
parent: 2
- - uid: 15352
+ - uid: 22600
components:
- type: Transform
- pos: -31.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -92.5,-8.5
parent: 2
- - uid: 15354
+ - uid: 22616
components:
- type: Transform
- pos: -27.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,52.5
parent: 2
- - uid: 15356
+ - uid: 22628
components:
- type: Transform
- pos: -27.5,34.5
+ pos: -37.5,31.5
parent: 2
- - uid: 15358
+ - uid: 22651
components:
- type: Transform
- pos: -31.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,15.5
parent: 2
- - uid: 15359
+ - uid: 22667
components:
- type: Transform
- pos: -31.5,31.5
+ pos: -24.5,41.5
parent: 2
- - uid: 15360
+ - uid: 22682
components:
- type: Transform
- pos: -31.5,30.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,37.5
parent: 2
- - uid: 15390
+ - uid: 22695
components:
- type: Transform
- pos: -19.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,10.5
parent: 2
- - uid: 15394
+ - uid: 22696
components:
- type: Transform
- pos: -18.5,28.5
+ pos: 54.5,-35.5
parent: 2
- - uid: 15406
+ - uid: 22736
components:
- type: Transform
- pos: -27.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-41.5
parent: 2
- - uid: 15407
+ - uid: 22745
components:
- type: Transform
- pos: -19.5,34.5
+ pos: -40.5,-7.5
parent: 2
- - uid: 15408
+ - uid: 22835
components:
- type: Transform
- pos: -15.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -50.5,39.5
parent: 2
- - uid: 15410
+ - uid: 22949
components:
- type: Transform
- pos: -15.5,34.5
+ pos: 59.5,-33.5
parent: 2
- - uid: 15411
+ - uid: 23036
components:
- type: Transform
- pos: -27.5,31.5
+ pos: -61.5,52.5
parent: 2
- - uid: 15417
+ - uid: 23043
components:
- type: Transform
- pos: -19.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-27.5
parent: 2
- - uid: 15447
+ - uid: 23045
components:
- type: Transform
- pos: -19.5,32.5
+ pos: 53.5,-34.5
parent: 2
- - uid: 15449
+ - uid: 23049
components:
- type: Transform
- pos: -15.5,35.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,-10.5
parent: 2
- - uid: 15451
+ - uid: 23052
components:
- type: Transform
- pos: -15.5,43.5
+ pos: 12.5,-25.5
parent: 2
- - uid: 15462
+ - uid: 23060
components:
- type: Transform
- pos: -31.5,35.5
+ pos: -3.5,46.5
parent: 2
- - uid: 15463
+ - uid: 23083
components:
- type: Transform
- pos: -31.5,34.5
+ pos: 24.5,-17.5
parent: 2
- - uid: 15464
+ - uid: 23124
components:
- type: Transform
- pos: -31.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,5.5
parent: 2
- - uid: 15468
+ - uid: 23142
components:
- type: Transform
- pos: -23.5,35.5
+ pos: -44.5,-7.5
parent: 2
- - uid: 15469
+ - uid: 23143
components:
- type: Transform
- pos: -23.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,4.5
parent: 2
- - uid: 15470
+ - uid: 23149
components:
- type: Transform
- pos: -23.5,33.5
+ pos: -24.5,42.5
parent: 2
- - uid: 15471
+ - uid: 23154
components:
- type: Transform
- pos: -31.5,38.5
+ pos: 54.5,-34.5
parent: 2
- - uid: 15472
+ - uid: 23171
components:
- type: Transform
- pos: -31.5,39.5
+ pos: -34.5,71.5
parent: 2
- - uid: 15473
+ - uid: 23201
components:
- type: Transform
- pos: -31.5,40.5
+ pos: -23.5,28.5
parent: 2
- - uid: 15474
+ - uid: 23294
components:
- type: Transform
- pos: -31.5,41.5
+ pos: 42.5,10.5
parent: 2
- - uid: 15475
+ - uid: 23321
components:
- type: Transform
- pos: -31.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-23.5
parent: 2
- - uid: 15476
+ - uid: 23365
components:
- type: Transform
- pos: -31.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-21.5
parent: 2
- - uid: 15489
+ - uid: 23392
components:
- type: Transform
- pos: -35.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 95.5,-7.5
parent: 2
- - uid: 15523
+ - uid: 23444
components:
- type: Transform
- pos: -22.5,50.5
+ rot: 3.141592653589793 rad
+ pos: 111.5,-10.5
parent: 2
- - uid: 15535
+ - uid: 23501
components:
- type: Transform
- pos: -29.5,47.5
+ pos: -77.5,-7.5
parent: 2
- - uid: 15573
+ - uid: 23522
components:
- type: Transform
- pos: -22.5,49.5
+ rot: 3.141592653589793 rad
+ pos: 91.5,-8.5
parent: 2
- - uid: 15606
+ - uid: 23541
components:
- type: Transform
- pos: -21.5,43.5
+ pos: 45.5,-27.5
parent: 2
- - uid: 15607
+ - uid: 23556
components:
- type: Transform
- pos: -21.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,-6.5
parent: 2
- - uid: 15616
+ - uid: 23561
components:
- type: Transform
- pos: -15.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 100.5,-6.5
parent: 2
- - uid: 15617
+ - uid: 23562
components:
- type: Transform
- pos: -18.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 92.5,-6.5
parent: 2
- - uid: 15619
+ - uid: 23585
components:
- type: Transform
- pos: -27.5,38.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,59.5
parent: 2
- - uid: 15622
+ - uid: 23598
components:
- type: Transform
- pos: -22.5,43.5
+ pos: 6.5,47.5
parent: 2
- - uid: 15623
+ - uid: 23614
components:
- type: Transform
- pos: -19.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,23.5
parent: 2
- - uid: 15625
+ - uid: 23626
components:
- type: Transform
- pos: -17.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-17.5
parent: 2
- - uid: 15626
+ - uid: 23682
components:
- type: Transform
- pos: -16.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,39.5
parent: 2
- - uid: 15629
+ - uid: 23702
components:
- type: Transform
- pos: -19.5,42.5
+ pos: -55.5,52.5
parent: 2
- - uid: 15641
+ - uid: 23713
components:
- type: Transform
- pos: -23.5,50.5
+ pos: -55.5,47.5
parent: 2
- - uid: 15645
+ - uid: 23744
components:
- type: Transform
- pos: -29.5,48.5
+ rot: 3.141592653589793 rad
+ pos: 110.5,-26.5
parent: 2
- - uid: 15646
+ - uid: 23745
components:
- type: Transform
- pos: -20.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,-22.5
parent: 2
- - uid: 15647
+ - uid: 23748
components:
- type: Transform
- pos: -19.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-11.5
parent: 2
- - uid: 15650
+ - uid: 23764
components:
- type: Transform
- pos: -27.5,43.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-17.5
parent: 2
- - uid: 15653
+ - uid: 23815
components:
- type: Transform
- pos: -29.5,43.5
+ pos: -124.5,68.5
parent: 2
- - uid: 15654
+ - uid: 24110
components:
- type: Transform
- pos: -28.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-27.5
parent: 2
- - uid: 15655
+ - uid: 24149
components:
- type: Transform
- pos: -19.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,46.5
parent: 2
- - uid: 15656
+ - uid: 24187
components:
- type: Transform
- pos: -19.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-19.5
parent: 2
- - uid: 15657
+ - uid: 24352
components:
- type: Transform
- pos: -19.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-20.5
parent: 2
- - uid: 15661
+ - uid: 24483
components:
- type: Transform
- pos: -28.5,38.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-17.5
parent: 2
- - uid: 15662
+ - uid: 24655
components:
- type: Transform
- pos: -30.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-19.5
parent: 2
- - uid: 15668
+ - uid: 24787
components:
- type: Transform
- pos: -28.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-27.5
parent: 2
- - uid: 15678
+ - uid: 24809
components:
- type: Transform
- pos: -29.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,46.5
parent: 2
- - uid: 15680
+ - uid: 24810
components:
- type: Transform
- pos: -28.5,39.5
+ pos: -1.5,47.5
parent: 2
- - uid: 15692
+ - uid: 24828
components:
- type: Transform
- pos: -28.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-26.5
parent: 2
- - uid: 15693
+ - uid: 24936
components:
- type: Transform
- pos: -28.5,41.5
+ pos: 75.5,1.5
parent: 2
- - uid: 15775
+ - uid: 25055
components:
- type: Transform
- pos: -6.5,35.5
+ pos: 21.5,-24.5
parent: 2
- - uid: 15818
+ - uid: 25063
components:
- type: Transform
- pos: -24.5,65.5
+ pos: 61.5,45.5
parent: 2
- - uid: 15822
+ - uid: 25067
components:
- type: Transform
- pos: -20.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,14.5
parent: 2
- - uid: 15827
+ - uid: 25097
components:
- type: Transform
- pos: -21.5,49.5
+ pos: -52.5,36.5
parent: 2
- - uid: 15831
+ - uid: 25144
components:
- type: Transform
- pos: -30.5,48.5
+ pos: -36.5,53.5
parent: 2
- - uid: 15832
+ - uid: 25155
components:
- type: Transform
- pos: -17.5,46.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,42.5
parent: 2
- - uid: 15834
+ - uid: 25194
components:
- type: Transform
- pos: -15.5,46.5
+ pos: -0.5,40.5
parent: 2
- - uid: 15835
+ - uid: 25227
components:
- type: Transform
- pos: -14.5,46.5
+ pos: -24.5,51.5
parent: 2
- - uid: 15838
+ - uid: 25257
components:
- type: Transform
- pos: -90.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,15.5
parent: 2
- - uid: 15839
+ - uid: 25289
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 111.5,-9.5
parent: 2
- - uid: 15843
+ - uid: 25297
components:
- type: Transform
- pos: -8.5,65.5
+ pos: 51.5,-31.5
parent: 2
- - uid: 15847
+ - uid: 25319
components:
- type: Transform
- pos: 12.5,64.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,47.5
parent: 2
- - uid: 15854
+ - uid: 25328
components:
- type: Transform
- pos: -34.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,11.5
parent: 2
- - uid: 15862
+ - uid: 25557
components:
- type: Transform
- pos: -37.5,7.5
+ pos: 8.5,47.5
parent: 2
- - uid: 15863
+ - uid: 25570
components:
- type: Transform
- pos: -41.5,7.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-27.5
parent: 2
- - uid: 15864
+ - uid: 25836
components:
- type: Transform
- pos: -38.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,16.5
parent: 2
- - uid: 15865
+ - uid: 25846
components:
- type: Transform
- pos: -36.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,47.5
parent: 2
- - uid: 15866
+ - uid: 25847
components:
- type: Transform
- pos: -40.5,7.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,53.5
parent: 2
- - uid: 15868
+ - uid: 25953
components:
- type: Transform
- pos: -39.5,7.5
+ pos: -23.5,47.5
parent: 2
- - uid: 15882
+ - uid: 25954
components:
- type: Transform
- pos: -34.5,36.5
+ pos: -24.5,48.5
parent: 2
- - uid: 15899
+ - uid: 25956
components:
- type: Transform
- pos: -3.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,36.5
parent: 2
- - uid: 15930
+ - uid: 25957
components:
- type: Transform
- pos: -11.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,35.5
parent: 2
- - uid: 15937
+ - uid: 25958
components:
- type: Transform
- pos: -7.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: -24.5,35.5
parent: 2
- - uid: 15943
+ - uid: 25959
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -94.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,35.5
parent: 2
- - uid: 15979
+ - uid: 25960
components:
- type: Transform
- pos: -17.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,36.5
parent: 2
- - uid: 15999
+ - uid: 25961
components:
- type: Transform
- pos: -27.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,36.5
parent: 2
- - uid: 16000
+ - uid: 25969
components:
- type: Transform
- pos: -26.5,52.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-39.5
parent: 2
- - uid: 16001
+ - uid: 25971
components:
- type: Transform
- pos: -28.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,36.5
parent: 2
- - uid: 16080
+ - uid: 25972
components:
- type: Transform
- pos: 47.5,16.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,36.5
parent: 2
- - uid: 16082
+ - uid: 25973
components:
- type: Transform
- pos: -10.5,38.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,36.5
parent: 2
- - uid: 16086
+ - uid: 25988
components:
- type: Transform
- pos: -11.5,39.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,49.5
parent: 2
- - uid: 16097
+ - uid: 26002
components:
- type: Transform
- pos: -10.5,43.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,42.5
parent: 2
- - uid: 16165
+ - uid: 26004
components:
- type: Transform
- pos: -11.5,38.5
+ pos: -24.5,50.5
parent: 2
- - uid: 16284
+ - uid: 26021
components:
- type: Transform
- pos: -37.5,30.5
+ pos: -22.5,52.5
parent: 2
- - uid: 16285
+ - uid: 26082
components:
- type: Transform
- pos: -37.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -15.5,48.5
parent: 2
- - uid: 16286
+ - uid: 26130
components:
- type: Transform
- pos: -95.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-33.5
parent: 2
- - uid: 16287
+ - uid: 26182
components:
- type: Transform
- pos: -11.5,43.5
+ rot: -1.5707963267948966 rad
+ pos: -101.5,-0.5
parent: 2
- - uid: 16294
+ - uid: 26185
components:
- type: Transform
- pos: -18.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-44.5
parent: 2
- - uid: 16303
+ - uid: 26199
components:
- type: Transform
- pos: -30.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,46.5
parent: 2
- - uid: 16321
+ - uid: 26215
components:
- type: Transform
- pos: -10.5,60.5
+ pos: -35.5,54.5
parent: 2
- - uid: 16322
+ - uid: 26221
components:
- type: Transform
- pos: -9.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -63.5,-29.5
parent: 2
- - uid: 16323
+ - uid: 26282
components:
- type: Transform
- pos: -15.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -103.5,-0.5
parent: 2
- - uid: 16324
+ - uid: 26283
components:
- type: Transform
- pos: -14.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -104.5,-0.5
parent: 2
- - uid: 16325
+ - uid: 26284
components:
- type: Transform
- pos: -12.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -102.5,1.5
parent: 2
- - uid: 16326
+ - uid: 26334
components:
- type: Transform
- pos: -11.5,60.5
+ pos: -28.5,42.5
parent: 2
- - uid: 16327
+ - uid: 26341
components:
- type: Transform
- pos: -13.5,60.5
+ pos: 51.5,-27.5
parent: 2
- - uid: 16329
+ - uid: 26342
components:
- type: Transform
- pos: -17.5,60.5
+ pos: 52.5,-35.5
parent: 2
- - uid: 16330
+ - uid: 26363
components:
- type: Transform
- pos: -37.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-33.5
parent: 2
- - uid: 16339
+ - uid: 26437
components:
- type: Transform
- pos: -19.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-33.5
parent: 2
- - uid: 16340
+ - uid: 26440
components:
- type: Transform
- pos: -17.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-33.5
parent: 2
- - uid: 16346
+ - uid: 26441
components:
- type: Transform
- pos: -17.5,47.5
+ rot: 3.141592653589793 rad
+ pos: 58.5,46.5
parent: 2
- - uid: 16347
+ - uid: 26481
components:
- type: Transform
- pos: -17.5,48.5
+ pos: -32.5,5.5
parent: 2
- - uid: 16348
+ - uid: 26505
components:
- type: Transform
- pos: -17.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-44.5
parent: 2
- - uid: 16349
+ - uid: 26506
components:
- type: Transform
- pos: -17.5,52.5
+ pos: -15.5,51.5
parent: 2
- - uid: 16351
+ - uid: 26508
components:
- type: Transform
- pos: -17.5,50.5
+ pos: -24.5,49.5
parent: 2
- - uid: 16352
+ - uid: 26510
components:
- type: Transform
- pos: -17.5,49.5
+ pos: -15.5,52.5
parent: 2
- - uid: 16353
+ - uid: 26517
components:
- type: Transform
- pos: -9.5,62.5
+ pos: -30.5,53.5
parent: 2
- - uid: 16354
+ - uid: 26519
components:
- type: Transform
- pos: -9.5,61.5
+ pos: -32.5,53.5
parent: 2
- - uid: 16362
+ - uid: 26567
components:
- type: Transform
- pos: -12.5,66.5
+ pos: -76.5,25.5
parent: 2
- - uid: 16397
+ - uid: 26614
components:
- type: Transform
- pos: 47.5,15.5
+ pos: -75.5,25.5
parent: 2
- - uid: 16400
+ - uid: 26689
components:
- type: Transform
- pos: 48.5,2.5
+ pos: -128.5,68.5
parent: 2
- - uid: 16401
+ - uid: 26703
components:
- type: Transform
- pos: 46.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,6.5
parent: 2
- - uid: 16402
+ - uid: 26713
components:
- type: Transform
- pos: -28.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,30.5
parent: 2
- - uid: 16406
+ - uid: 26716
components:
- type: Transform
- pos: -24.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,-18.5
parent: 2
- - uid: 16410
+ - uid: 26728
components:
- type: Transform
- pos: -37.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,40.5
parent: 2
- - uid: 16414
+ - uid: 26733
components:
- type: Transform
- pos: -37.5,32.5
+ pos: 60.5,43.5
parent: 2
- - uid: 16415
+ - uid: 26736
components:
- type: Transform
- pos: -37.5,34.5
+ pos: 55.5,43.5
parent: 2
- - uid: 16417
+ - uid: 26737
components:
- type: Transform
- pos: -37.5,35.5
+ pos: 60.5,41.5
parent: 2
- - uid: 16452
+ - uid: 26750
components:
- type: Transform
- pos: -25.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,31.5
parent: 2
- - uid: 16453
+ - uid: 26751
components:
- type: Transform
- pos: -24.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,29.5
parent: 2
- - uid: 16454
+ - uid: 26757
components:
- type: Transform
- pos: -22.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,28.5
parent: 2
- - uid: 16455
+ - uid: 26758
components:
- type: Transform
- pos: -23.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,27.5
parent: 2
- - uid: 16456
+ - uid: 26759
components:
- type: Transform
- pos: -21.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,25.5
parent: 2
- - uid: 16477
+ - uid: 26760
components:
- type: Transform
- pos: 10.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -70.5,26.5
parent: 2
- - uid: 16478
+ - uid: 26768
components:
- type: Transform
- pos: -60.5,42.5
+ pos: -87.5,10.5
parent: 2
- - uid: 16479
+ - uid: 26772
components:
- type: Transform
- pos: -61.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,18.5
parent: 2
- - uid: 16486
+ - uid: 26773
components:
- type: Transform
- pos: -23.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,18.5
parent: 2
- - uid: 16487
+ - uid: 26775
components:
- type: Transform
- pos: -36.5,28.5
+ pos: -89.5,-3.5
parent: 2
- - uid: 16489
+ - uid: 26776
components:
- type: Transform
- pos: -51.5,38.5
+ pos: -89.5,10.5
parent: 2
- - uid: 16520
+ - uid: 26777
components:
- type: Transform
- pos: -35.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,5.5
parent: 2
- - uid: 16521
+ - uid: 26806
components:
- type: Transform
- pos: -32.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-47.5
parent: 2
- - uid: 16522
+ - uid: 26831
components:
- type: Transform
- pos: -34.5,28.5
+ pos: -95.5,-0.5
parent: 2
- - uid: 16526
+ - uid: 26845
components:
- type: Transform
- pos: 47.5,14.5
+ pos: -86.5,11.5
parent: 2
- - uid: 16578
+ - uid: 26880
components:
- type: Transform
- pos: -34.5,32.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,5.5
parent: 2
- - uid: 16609
+ - uid: 26892
components:
- type: Transform
- pos: -24.5,49.5
+ pos: -88.5,-2.5
parent: 2
- - uid: 16656
+ - uid: 26893
components:
- type: Transform
- pos: -43.5,7.5
+ pos: -86.5,-1.5
parent: 2
- - uid: 16697
+ - uid: 26894
components:
- type: Transform
- pos: 42.5,-32.5
+ rot: -1.5707963267948966 rad
+ pos: -86.5,4.5
parent: 2
- - uid: 17028
+ - uid: 26924
components:
- type: Transform
- pos: -34.5,47.5
+ pos: -88.5,10.5
parent: 2
- - uid: 17031
+ - uid: 26926
components:
- type: Transform
- pos: 93.5,60.5
+ pos: -89.5,-2.5
parent: 2
- - uid: 17796
+ - uid: 26935
components:
- type: Transform
- pos: -98.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,20.5
parent: 2
- - uid: 17797
+ - uid: 27111
components:
- type: Transform
- pos: -98.5,30.5
+ pos: -36.5,-12.5
parent: 2
- - uid: 17800
+ - uid: 27159
components:
- type: Transform
- pos: 90.5,50.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,46.5
parent: 2
- - uid: 17818
+ - uid: 27168
components:
- type: Transform
- pos: -19.5,50.5
+ pos: -33.5,-12.5
parent: 2
- - uid: 17910
+ - uid: 27203
components:
- type: Transform
- pos: -20.5,68.5
+ pos: -87.5,-2.5
parent: 2
- - uid: 17929
+ - uid: 27204
components:
- type: Transform
- pos: -16.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -89.5,19.5
parent: 2
- - uid: 17966
+ - uid: 27208
components:
- type: Transform
- pos: -12.5,68.5
+ pos: -87.5,-1.5
parent: 2
- - uid: 17972
+ - uid: 27209
components:
- type: Transform
- pos: -6.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: -87.5,19.5
parent: 2
- - uid: 17981
+ - uid: 27211
components:
- type: Transform
- pos: -29.5,56.5
+ pos: -90.5,-3.5
parent: 2
- - uid: 17982
+ - uid: 27212
components:
- type: Transform
- pos: -30.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,16.5
parent: 2
- - uid: 17983
+ - uid: 27214
components:
- type: Transform
- pos: -31.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,20.5
parent: 2
- - uid: 17984
+ - uid: 27215
components:
- type: Transform
- pos: -32.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -90.5,20.5
parent: 2
- - uid: 18001
+ - uid: 27216
components:
- type: Transform
- pos: -31.5,68.5
+ rot: 3.141592653589793 rad
+ pos: -95.5,17.5
parent: 2
- - uid: 18003
+ - uid: 27222
components:
- type: Transform
- pos: -29.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,2.5
parent: 2
- - uid: 18005
+ - uid: 27224
components:
- type: Transform
- pos: -31.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: -95.5,3.5
parent: 2
- - uid: 18008
+ - uid: 27225
components:
- type: Transform
- pos: -0.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: -96.5,3.5
parent: 2
- - uid: 18009
+ - uid: 27226
components:
- type: Transform
- pos: -5.5,62.5
+ pos: -93.5,-3.5
parent: 2
- - uid: 18010
+ - uid: 27243
components:
- type: Transform
- pos: -4.5,62.5
+ pos: -97.5,2.5
parent: 2
- - uid: 18011
+ - uid: 27244
components:
- type: Transform
- pos: -6.5,62.5
+ pos: -96.5,2.5
parent: 2
- - uid: 18012
+ - uid: 27298
components:
- type: Transform
- pos: -2.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-33.5
parent: 2
- - uid: 18013
+ - uid: 27345
components:
- type: Transform
- pos: -7.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,65.5
parent: 2
- - uid: 18034
+ - uid: 27372
components:
- type: Transform
- pos: -1.5,62.5
+ pos: 77.5,-0.5
parent: 2
- - uid: 18035
+ - uid: 27386
components:
- type: Transform
- pos: -0.5,65.5
+ pos: 77.5,-2.5
parent: 2
- - uid: 18038
+ - uid: 27387
components:
- type: Transform
- pos: -24.5,66.5
+ pos: 77.5,-1.5
parent: 2
- - uid: 18039
+ - uid: 27388
components:
- type: Transform
- pos: -20.5,66.5
+ pos: 77.5,-4.5
parent: 2
- - uid: 18040
+ - uid: 27443
components:
- type: Transform
- pos: -16.5,66.5
+ pos: 77.5,-5.5
parent: 2
- - uid: 18042
+ - uid: 27445
components:
- type: Transform
- pos: -40.5,70.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,37.5
parent: 2
- - uid: 18081
+ - uid: 27515
components:
- type: Transform
- pos: -6.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,22.5
parent: 2
- - uid: 18087
+ - uid: 27526
components:
- type: Transform
- pos: -6.5,66.5
+ pos: -66.5,-4.5
parent: 2
- - uid: 18098
+ - uid: 27527
components:
- type: Transform
- pos: 6.5,66.5
+ pos: -66.5,-1.5
parent: 2
- - uid: 18099
+ - uid: 27528
components:
- type: Transform
- pos: 15.5,67.5
+ pos: -69.5,-1.5
parent: 2
- - uid: 18109
+ - uid: 27543
components:
- type: Transform
- pos: 14.5,67.5
+ pos: -68.5,-1.5
parent: 2
- - uid: 18114
+ - uid: 27562
components:
- type: Transform
- pos: -5.5,69.5
+ pos: -67.5,-1.5
parent: 2
- - uid: 18120
+ - uid: 27698
components:
- type: Transform
- pos: -3.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,58.5
parent: 2
- - uid: 18126
+ - uid: 27757
components:
- type: Transform
- pos: -2.5,69.5
+ pos: -70.5,-1.5
parent: 2
- - uid: 18127
+ - uid: 27789
components:
- type: Transform
- pos: -1.5,69.5
+ pos: -18.5,47.5
parent: 2
- - uid: 18128
+ - uid: 27808
components:
- type: Transform
- pos: -0.5,69.5
+ pos: -2.5,47.5
parent: 2
- - uid: 18129
+ - uid: 27811
components:
- type: Transform
- pos: -0.5,68.5
+ pos: -33.5,53.5
parent: 2
- - uid: 18130
+ - uid: 27817
components:
- type: Transform
- pos: -0.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-27.5
parent: 2
- - uid: 18131
+ - uid: 27844
components:
- type: Transform
- pos: -0.5,66.5
+ pos: -36.5,55.5
parent: 2
- - uid: 18203
+ - uid: 27861
components:
- type: Transform
- pos: -12.5,72.5
+ pos: 77.5,-6.5
parent: 2
- - uid: 18204
+ - uid: 27869
components:
- type: Transform
- pos: -11.5,72.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,37.5
parent: 2
- - uid: 18205
+ - uid: 27964
components:
- type: Transform
- pos: -10.5,72.5
+ pos: -34.5,53.5
parent: 2
- - uid: 18206
+ - uid: 27965
components:
- type: Transform
- pos: -9.5,72.5
+ pos: -35.5,53.5
parent: 2
- - uid: 18207
+ - uid: 28114
components:
- type: Transform
- pos: -8.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-33.5
parent: 2
- - uid: 18208
+ - uid: 28115
components:
- type: Transform
- pos: -7.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-19.5
parent: 2
- - uid: 18209
+ - uid: 28118
components:
- type: Transform
- pos: -6.5,72.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,5.5
parent: 2
- - uid: 18210
+ - uid: 28125
components:
- type: Transform
- pos: -5.5,72.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-27.5
parent: 2
- - uid: 18211
+ - uid: 28200
components:
- type: Transform
- pos: -4.5,72.5
+ pos: -26.5,-47.5
parent: 2
- - uid: 18212
+ - uid: 28340
components:
- type: Transform
- pos: -3.5,72.5
+ pos: -70.5,-2.5
parent: 2
- - uid: 18213
+ - uid: 28341
components:
- type: Transform
- pos: -2.5,72.5
+ pos: -70.5,-3.5
parent: 2
- - uid: 18214
+ - uid: 28384
components:
- type: Transform
- pos: -1.5,72.5
+ pos: -33.5,38.5
parent: 2
- - uid: 18215
+ - uid: 28507
components:
- type: Transform
- pos: -0.5,72.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-44.5
parent: 2
- - uid: 18225
+ - uid: 28527
components:
- type: Transform
- pos: -45.5,55.5
+ pos: -70.5,-4.5
parent: 2
- - uid: 18226
+ - uid: 28618
components:
- type: Transform
- pos: -38.5,55.5
+ pos: 55.5,39.5
parent: 2
- - uid: 18230
+ - uid: 28621
components:
- type: Transform
- pos: -45.5,71.5
+ pos: 55.5,40.5
parent: 2
- - uid: 18255
+ - uid: 28641
components:
- type: Transform
- pos: -33.5,56.5
+ pos: -69.5,-4.5
parent: 2
- - uid: 18272
+ - uid: 28645
components:
- type: Transform
- pos: -24.5,67.5
+ pos: -68.5,-4.5
parent: 2
- - uid: 18273
+ - uid: 28655
components:
- type: Transform
- pos: -28.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,38.5
parent: 2
- - uid: 18274
+ - uid: 28680
components:
- type: Transform
- pos: -30.5,67.5
+ pos: -28.5,40.5
parent: 2
- - uid: 18352
+ - uid: 28682
components:
- type: Transform
- pos: 10.5,57.5
+ pos: -67.5,-4.5
parent: 2
- - uid: 18363
+ - uid: 28699
components:
- type: Transform
- pos: 3.5,63.5
+ pos: 77.5,0.5
parent: 2
- - uid: 18364
+ - uid: 28700
components:
- type: Transform
- pos: 3.5,64.5
+ pos: 77.5,-7.5
parent: 2
- - uid: 18366
+ - uid: 28704
components:
- type: Transform
- pos: 3.5,66.5
+ pos: -28.5,41.5
parent: 2
- - uid: 18376
+ - uid: 28719
components:
- type: Transform
- pos: 65.5,71.5
+ pos: -22.5,47.5
parent: 2
- - uid: 18379
+ - uid: 28721
components:
- type: Transform
- pos: -36.5,48.5
+ pos: -28.5,47.5
parent: 2
- - uid: 18392
+ - uid: 28728
components:
- type: Transform
- pos: -33.5,68.5
+ pos: 38.5,17.5
parent: 2
- - uid: 18557
+ - uid: 28729
components:
- type: Transform
- pos: -92.5,53.5
+ pos: 39.5,17.5
parent: 2
- - uid: 18558
+ - uid: 28731
components:
- type: Transform
- pos: -92.5,55.5
+ pos: 39.5,12.5
parent: 2
- - uid: 18559
+ - uid: 28777
components:
- type: Transform
- pos: -92.5,54.5
+ pos: 40.5,17.5
parent: 2
- - uid: 18561
+ - uid: 28789
components:
- type: Transform
- pos: -93.5,55.5
+ pos: -25.5,-29.5
parent: 2
- - uid: 18566
+ - uid: 28801
components:
- type: Transform
- pos: -97.5,55.5
+ pos: 55.5,35.5
parent: 2
- - uid: 18567
+ - uid: 28944
components:
- type: Transform
- pos: -98.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-44.5
parent: 2
- - uid: 18568
+ - uid: 28952
components:
- type: Transform
- pos: -92.5,49.5
+ pos: -21.5,47.5
parent: 2
- - uid: 18569
+ - uid: 28994
components:
- type: Transform
- pos: -92.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-37.5
parent: 2
- - uid: 18570
+ - uid: 29004
components:
- type: Transform
- pos: -92.5,47.5
+ pos: 48.5,-0.5
parent: 2
- - uid: 18571
+ - uid: 29041
components:
- type: Transform
- pos: -93.5,47.5
+ pos: -33.5,-39.5
parent: 2
- - uid: 18575
+ - uid: 29065
components:
- type: Transform
- pos: -97.5,47.5
+ pos: -75.5,16.5
parent: 2
- - uid: 18576
+ - uid: 29131
components:
- type: Transform
- pos: -98.5,47.5
+ pos: -21.5,52.5
parent: 2
- - uid: 18580
+ - uid: 29175
components:
- type: Transform
- pos: -98.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,12.5
parent: 2
- - uid: 18581
+ - uid: 29176
components:
- type: Transform
- pos: -99.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,13.5
parent: 2
- - uid: 18582
+ - uid: 29189
components:
- type: Transform
- pos: -100.5,58.5
+ pos: -92.5,-3.5
parent: 2
- - uid: 18583
+ - uid: 29190
components:
- type: Transform
- pos: -101.5,58.5
+ pos: -96.5,-0.5
parent: 2
- - uid: 18584
+ - uid: 29208
components:
- type: Transform
- pos: -102.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 111.5,-18.5
parent: 2
- - uid: 18588
+ - uid: 29245
components:
- type: Transform
- pos: -102.5,54.5
+ pos: 27.5,-33.5
parent: 2
- - uid: 18594
+ - uid: 29256
components:
- type: Transform
- pos: -102.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,6.5
parent: 2
- - uid: 18598
+ - uid: 29259
components:
- type: Transform
- pos: -102.5,44.5
+ rot: 3.141592653589793 rad
+ pos: 111.5,-19.5
parent: 2
- - uid: 18599
+ - uid: 29263
components:
- type: Transform
- pos: -101.5,44.5
+ pos: 45.5,-30.5
parent: 2
- - uid: 18600
+ - uid: 29274
components:
- type: Transform
- pos: -100.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,5.5
parent: 2
- - uid: 18601
+ - uid: 29516
components:
- type: Transform
- pos: -99.5,44.5
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-10.5
parent: 2
- - uid: 18602
+ - uid: 29602
components:
- type: Transform
- pos: -98.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,5.5
parent: 2
- - uid: 18662
+ - uid: 29611
components:
- type: Transform
- pos: -104.5,54.5
+ pos: -24.5,-29.5
parent: 2
- - uid: 18663
+ - uid: 29612
components:
- type: Transform
- pos: -104.5,48.5
+ pos: -24.5,-28.5
parent: 2
- - uid: 18664
+ - uid: 29613
components:
- type: Transform
- pos: -103.5,48.5
+ pos: -27.5,-28.5
parent: 2
- - uid: 18665
+ - uid: 29614
components:
- type: Transform
- pos: -103.5,54.5
+ pos: -27.5,-29.5
parent: 2
- - uid: 18681
+ - uid: 29615
components:
- type: Transform
- pos: -103.5,44.5
+ pos: -26.5,-29.5
parent: 2
- - uid: 18682
+ - uid: 29616
components:
- type: Transform
- pos: -104.5,44.5
+ pos: 40.5,16.5
parent: 2
- - uid: 18683
+ - uid: 29617
components:
- type: Transform
- pos: -104.5,58.5
+ pos: 38.5,16.5
parent: 2
- - uid: 18684
+ - uid: 29619
components:
- type: Transform
- pos: -103.5,58.5
+ pos: 38.5,13.5
parent: 2
- - uid: 18688
+ - uid: 29622
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,21.5
+ pos: 38.5,12.5
parent: 2
- - uid: 18705
+ - uid: 29626
components:
- type: Transform
- pos: -101.5,59.5
+ pos: -24.5,-27.5
parent: 2
- - uid: 18712
+ - uid: 29630
components:
- type: Transform
- pos: -103.5,43.5
+ pos: 79.5,8.5
parent: 2
- - uid: 18713
+ - uid: 29665
components:
- type: Transform
- pos: -103.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,25.5
parent: 2
- - uid: 18714
+ - uid: 29667
components:
- type: Transform
- pos: -103.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,27.5
parent: 2
- - uid: 18715
+ - uid: 29669
components:
- type: Transform
- pos: -103.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,40.5
parent: 2
- - uid: 18716
+ - uid: 29670
components:
- type: Transform
- pos: -104.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,24.5
parent: 2
- - uid: 18717
+ - uid: 29707
components:
- type: Transform
- pos: -105.5,60.5
+ pos: -44.5,68.5
parent: 2
- - uid: 18718
+ - uid: 29711
components:
- type: Transform
- pos: -106.5,60.5
+ pos: -43.5,68.5
parent: 2
- - uid: 18719
+ - uid: 29713
components:
- type: Transform
- pos: -107.5,60.5
+ pos: -42.5,68.5
parent: 2
- - uid: 18720
+ - uid: 29715
components:
- type: Transform
- pos: -108.5,60.5
+ pos: 15.5,71.5
parent: 2
- - uid: 18721
+ - uid: 29724
components:
- type: Transform
- pos: -109.5,60.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,41.5
parent: 2
- - uid: 18722
+ - uid: 29727
components:
- type: Transform
- pos: -110.5,60.5
+ pos: 27.5,-34.5
parent: 2
- - uid: 18726
+ - uid: 29811
components:
- type: Transform
- pos: -114.5,60.5
+ pos: -16.5,66.5
parent: 2
- - uid: 18727
+ - uid: 29941
components:
- type: Transform
- pos: -115.5,60.5
+ pos: 15.5,70.5
parent: 2
- - uid: 18728
+ - uid: 29947
components:
- type: Transform
- pos: -116.5,60.5
+ pos: 88.5,6.5
parent: 2
- - uid: 18729
+ - uid: 29952
components:
- type: Transform
- pos: -117.5,60.5
+ pos: -65.5,-22.5
parent: 2
- - uid: 18730
+ - uid: 29985
components:
- type: Transform
- pos: -118.5,60.5
+ pos: 83.5,11.5
parent: 2
- - uid: 18731
+ - uid: 29986
components:
- type: Transform
- pos: -119.5,60.5
+ pos: 83.5,12.5
parent: 2
- - uid: 18732
+ - uid: 29989
components:
- type: Transform
- pos: -120.5,60.5
+ pos: 84.5,15.5
parent: 2
- - uid: 18733
+ - uid: 29990
components:
- type: Transform
- pos: -121.5,60.5
+ pos: 84.5,16.5
parent: 2
- - uid: 18734
+ - uid: 29991
components:
- type: Transform
- pos: -121.5,59.5
+ pos: 84.5,17.5
parent: 2
- - uid: 18735
+ - uid: 29992
components:
- type: Transform
- pos: -121.5,58.5
+ pos: 84.5,18.5
parent: 2
- - uid: 18736
+ - uid: 29993
components:
- type: Transform
- pos: -121.5,57.5
+ pos: 84.5,19.5
parent: 2
- - uid: 18737
+ - uid: 29994
components:
- type: Transform
- pos: -121.5,56.5
+ pos: 84.5,20.5
parent: 2
- - uid: 18738
+ - uid: 29995
components:
- type: Transform
- pos: -121.5,55.5
+ pos: 84.5,21.5
parent: 2
- - uid: 18739
+ - uid: 30001
components:
- type: Transform
- pos: -121.5,54.5
+ pos: 82.5,9.5
parent: 2
- - uid: 18740
+ - uid: 30002
components:
- type: Transform
- pos: -121.5,53.5
+ pos: 83.5,13.5
parent: 2
- - uid: 18744
+ - uid: 30004
components:
- type: Transform
- pos: -121.5,49.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,16.5
parent: 2
- - uid: 18745
+ - uid: 30006
components:
- type: Transform
- pos: -121.5,48.5
+ pos: 81.5,4.5
parent: 2
- - uid: 18746
+ - uid: 30009
components:
- type: Transform
- pos: -121.5,47.5
+ pos: 82.5,4.5
parent: 2
- - uid: 18747
+ - uid: 30010
components:
- type: Transform
- pos: -121.5,46.5
+ pos: 83.5,4.5
parent: 2
- - uid: 18748
+ - uid: 30011
components:
- type: Transform
- pos: -121.5,45.5
+ pos: 84.5,4.5
parent: 2
- - uid: 18749
+ - uid: 30019
components:
- type: Transform
- pos: -121.5,44.5
+ pos: 88.5,14.5
parent: 2
- - uid: 18750
+ - uid: 30021
components:
- type: Transform
- pos: -121.5,43.5
+ pos: 91.5,14.5
parent: 2
- - uid: 18751
+ - uid: 30026
components:
- type: Transform
- pos: -121.5,42.5
+ pos: 78.5,4.5
parent: 2
- - uid: 18752
+ - uid: 30037
components:
- type: Transform
- pos: -120.5,42.5
+ pos: 85.5,6.5
parent: 2
- - uid: 18753
+ - uid: 30038
components:
- type: Transform
- pos: -119.5,42.5
+ pos: 84.5,5.5
parent: 2
- - uid: 18754
+ - uid: 30257
components:
- type: Transform
- pos: -118.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -75.5,15.5
parent: 2
- - uid: 18755
+ - uid: 30276
components:
- type: Transform
- pos: -117.5,42.5
+ pos: -44.5,-8.5
parent: 2
- - uid: 18756
+ - uid: 30284
components:
- type: Transform
- pos: -116.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,14.5
parent: 2
- - uid: 18757
+ - uid: 30285
components:
- type: Transform
- pos: -115.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,0.5
parent: 2
- - uid: 18758
+ - uid: 30286
components:
- type: Transform
- pos: -114.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -93.5,2.5
parent: 2
- - uid: 18762
+ - uid: 30288
components:
- type: Transform
- pos: -110.5,42.5
+ rot: 3.141592653589793 rad
+ pos: -94.5,0.5
parent: 2
- - uid: 18763
+ - uid: 30294
components:
- type: Transform
- pos: -109.5,42.5
+ pos: 80.5,8.5
parent: 2
- - uid: 18764
+ - uid: 30297
components:
- type: Transform
- pos: -108.5,42.5
+ pos: -76.5,16.5
parent: 2
- - uid: 18765
+ - uid: 30298
components:
- type: Transform
- pos: -107.5,42.5
+ pos: -78.5,15.5
parent: 2
- - uid: 18766
+ - uid: 30357
components:
- type: Transform
- pos: -106.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,24.5
parent: 2
- - uid: 18767
+ - uid: 30358
components:
- type: Transform
- pos: -105.5,42.5
+ pos: -1.5,37.5
parent: 2
- - uid: 18768
+ - uid: 30408
components:
- type: Transform
- pos: -104.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-20.5
parent: 2
- - uid: 18796
+ - uid: 30467
components:
- type: Transform
- pos: -122.5,61.5
+ pos: 53.5,-35.5
parent: 2
- - uid: 18797
+ - uid: 30488
components:
- type: Transform
- pos: -122.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,24.5
parent: 2
- - uid: 18798
+ - uid: 30493
components:
- type: Transform
- pos: -122.5,59.5
+ pos: 81.5,8.5
parent: 2
- - uid: 18800
+ - uid: 30672
components:
- type: Transform
- pos: -92.5,56.5
+ pos: -32.5,67.5
parent: 2
- - uid: 18801
+ - uid: 30676
components:
- type: Transform
- pos: -122.5,58.5
+ pos: -32.5,66.5
parent: 2
- - uid: 18827
+ - uid: 30677
components:
- type: Transform
- pos: -122.5,46.5
+ pos: -32.5,65.5
parent: 2
- - uid: 18855
+ - uid: 30684
components:
- type: Transform
- pos: -122.5,48.5
+ pos: -47.5,69.5
parent: 2
- - uid: 18856
+ - uid: 30696
components:
- type: Transform
- pos: -122.5,47.5
+ pos: -41.5,68.5
parent: 2
- - uid: 18862
+ - uid: 30703
components:
- type: Transform
- pos: -120.5,43.5
+ pos: -43.5,71.5
parent: 2
- - uid: 18863
+ - uid: 30704
components:
- type: Transform
- pos: -104.5,59.5
+ pos: -47.5,62.5
parent: 2
- - uid: 18864
+ - uid: 30713
components:
- type: Transform
- pos: -104.5,43.5
+ pos: -34.5,68.5
parent: 2
- - uid: 18865
+ - uid: 30720
components:
- type: Transform
- pos: -120.5,59.5
+ pos: -40.5,71.5
parent: 2
- - uid: 18869
+ - uid: 30721
components:
- type: Transform
- pos: -126.5,58.5
+ pos: -41.5,71.5
parent: 2
- - uid: 18882
+ - uid: 30722
components:
- type: Transform
- pos: -119.5,61.5
+ pos: -40.5,61.5
parent: 2
- - uid: 18883
+ - uid: 30725
components:
- type: Transform
- pos: -122.5,45.5
+ pos: -42.5,71.5
parent: 2
- - uid: 18884
+ - uid: 30730
components:
- type: Transform
- pos: -120.5,61.5
+ pos: -46.5,71.5
parent: 2
- - uid: 18900
+ - uid: 30731
components:
- type: Transform
- pos: -118.5,37.5
+ pos: -47.5,71.5
parent: 2
- - uid: 18901
+ - uid: 30750
components:
- type: Transform
- pos: -126.5,41.5
+ pos: -34.5,63.5
parent: 2
- - uid: 18902
+ - uid: 30758
components:
- type: Transform
- pos: -125.5,51.5
+ pos: 13.5,67.5
parent: 2
- - uid: 18903
+ - uid: 30783
components:
- type: Transform
- pos: -125.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,41.5
parent: 2
- - uid: 18904
+ - uid: 30789
components:
- type: Transform
- pos: -119.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,50.5
parent: 2
- - uid: 18905
+ - uid: 30790
components:
- type: Transform
- pos: -111.5,65.5
+ pos: -16.5,47.5
parent: 2
- - uid: 18906
+ - uid: 30879
components:
- type: Transform
- pos: -104.5,64.5
+ pos: -34.5,57.5
parent: 2
- - uid: 18907
+ - uid: 30901
components:
- type: Transform
- pos: -101.5,64.5
+ pos: -13.5,72.5
parent: 2
- - uid: 18908
+ - uid: 30922
components:
- type: Transform
- pos: -98.5,61.5
+ pos: 15.5,69.5
parent: 2
- - uid: 18917
+ - uid: 30933
components:
- type: Transform
- pos: -129.5,46.5
+ pos: -51.5,14.5
parent: 2
- - uid: 18918
+ - uid: 31044
components:
- type: Transform
- pos: -129.5,47.5
+ pos: -30.5,66.5
parent: 2
- - uid: 18919
+ - uid: 31045
components:
- type: Transform
- pos: -129.5,48.5
+ pos: -30.5,65.5
parent: 2
- - uid: 18920
+ - uid: 31061
components:
- type: Transform
- pos: -129.5,49.5
+ pos: 4.5,67.5
parent: 2
- - uid: 18921
+ - uid: 31064
components:
- type: Transform
- pos: -129.5,50.5
+ pos: 5.5,67.5
parent: 2
- - uid: 18922
+ - uid: 31070
components:
- type: Transform
- pos: -129.5,51.5
+ pos: -20.5,67.5
parent: 2
- - uid: 18923
+ - uid: 31073
components:
- type: Transform
- pos: -129.5,52.5
+ pos: 15.5,68.5
parent: 2
- - uid: 18924
+ - uid: 31086
components:
- type: Transform
- pos: -129.5,53.5
+ pos: -47.5,68.5
parent: 2
- - uid: 18925
+ - uid: 31099
components:
- type: Transform
- pos: -129.5,54.5
+ pos: -49.5,69.5
parent: 2
- - uid: 18926
+ - uid: 31100
components:
- type: Transform
- pos: -98.5,45.5
+ pos: -48.5,71.5
parent: 2
- - uid: 18927
+ - uid: 31102
components:
- type: Transform
- pos: -129.5,56.5
+ pos: -49.5,70.5
parent: 2
- - uid: 18928
+ - uid: 31103
components:
- type: Transform
- pos: -129.5,57.5
+ pos: -49.5,71.5
parent: 2
- - uid: 18929
+ - uid: 31121
components:
- type: Transform
- pos: -129.5,58.5
+ pos: 6.5,67.5
parent: 2
- - uid: 18930
+ - uid: 31223
components:
- type: Transform
- pos: -129.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 99.5,-25.5
parent: 2
- - uid: 18931
+ - uid: 31251
components:
- type: Transform
- pos: -129.5,60.5
+ pos: -48.5,74.5
parent: 2
- - uid: 18932
+ - uid: 31274
components:
- type: Transform
- pos: -129.5,61.5
+ pos: -52.5,68.5
parent: 2
- - uid: 18933
+ - uid: 31275
components:
- type: Transform
- pos: -129.5,62.5
+ pos: -52.5,71.5
parent: 2
- - uid: 18934
+ - uid: 31300
components:
- type: Transform
- pos: -122.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 100.5,-26.5
parent: 2
- - uid: 18935
+ - uid: 31411
components:
- type: Transform
- pos: -121.5,68.5
+ pos: 5.5,-24.5
parent: 2
- - uid: 18936
+ - uid: 31450
components:
- type: Transform
- pos: -120.5,68.5
+ pos: -18.5,-8.5
parent: 2
- - uid: 18937
+ - uid: 31463
components:
- type: Transform
- pos: -119.5,68.5
+ pos: 12.5,67.5
parent: 2
- - uid: 18938
+ - uid: 31615
components:
- type: Transform
- pos: -118.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 101.5,-26.5
parent: 2
- - uid: 18939
+ - uid: 32092
components:
- type: Transform
- pos: -117.5,68.5
+ pos: 49.5,-27.5
parent: 2
- - uid: 18940
+ - uid: 32099
components:
- type: Transform
- pos: -116.5,68.5
+ pos: 50.5,-27.5
parent: 2
- - uid: 18941
+ - uid: 32335
components:
- type: Transform
- pos: -115.5,68.5
+ pos: -97.5,65.5
parent: 2
- - uid: 18942
+ - uid: 32439
components:
- type: Transform
- pos: -114.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-46.5
parent: 2
- - uid: 18943
+ - uid: 33243
components:
- type: Transform
- pos: -113.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,15.5
parent: 2
- - uid: 18944
+ - uid: 33244
components:
- type: Transform
- pos: -112.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,14.5
parent: 2
- - uid: 18945
+ - uid: 33618
components:
- type: Transform
- pos: -111.5,68.5
+ pos: -11.5,44.5
parent: 2
- - uid: 18946
+ - uid: 33649
components:
- type: Transform
- pos: -110.5,68.5
+ pos: -34.5,65.5
parent: 2
- - uid: 18947
+ - uid: 33654
components:
- type: Transform
- pos: -130.5,42.5
+ pos: -34.5,66.5
parent: 2
- - uid: 18955
+ - uid: 33700
components:
- type: Transform
- pos: -131.5,41.5
+ pos: 4.5,47.5
parent: 2
- - uid: 18956
+ - uid: 33705
components:
- type: Transform
- pos: -122.5,70.5
+ pos: 5.5,47.5
parent: 2
- - uid: 18957
+ - uid: 33807
components:
- type: Transform
- pos: -131.5,65.5
+ pos: -34.5,72.5
parent: 2
- - uid: 18958
+ - uid: 33808
components:
- type: Transform
- pos: -106.5,68.5
+ pos: -24.5,-12.5
parent: 2
- - uid: 19087
+ - uid: 33809
components:
- type: Transform
- pos: -98.5,46.5
+ pos: -23.5,-12.5
parent: 2
- - uid: 19088
+ - uid: 33812
components:
- type: Transform
- pos: -97.5,45.5
+ pos: -19.5,-6.5
parent: 2
- - uid: 19089
+ - uid: 33813
components:
- type: Transform
- pos: -97.5,43.5
+ pos: -23.5,-6.5
parent: 2
- - uid: 19097
+ - uid: 33814
components:
- type: Transform
- pos: -119.5,41.5
+ pos: -18.5,-7.5
parent: 2
- - uid: 19106
+ - uid: 33815
components:
- type: Transform
- pos: -102.5,59.5
+ pos: -18.5,-9.5
parent: 2
- - uid: 19107
+ - uid: 33816
components:
- type: Transform
- pos: -97.5,44.5
+ pos: -18.5,-10.5
parent: 2
- - uid: 19112
+ - uid: 33817
components:
- type: Transform
- pos: -118.5,41.5
+ pos: -18.5,-11.5
parent: 2
- - uid: 19115
+ - uid: 33818
components:
- type: Transform
- pos: -117.5,41.5
+ pos: -18.5,-12.5
parent: 2
- - uid: 19132
+ - uid: 33819
components:
- type: Transform
- pos: -116.5,41.5
+ pos: -19.5,-12.5
parent: 2
- - uid: 19312
+ - uid: 33820
components:
- type: Transform
- pos: -47.5,61.5
+ pos: -24.5,-6.5
parent: 2
- - uid: 19313
+ - uid: 33821
components:
- type: Transform
- pos: -47.5,60.5
+ pos: -24.5,-7.5
parent: 2
- - uid: 19314
+ - uid: 33822
components:
- type: Transform
- pos: -47.5,59.5
+ pos: -24.5,-8.5
parent: 2
- - uid: 19320
+ - uid: 33823
components:
- type: Transform
- pos: -49.5,61.5
+ pos: -24.5,-10.5
parent: 2
- - uid: 19324
+ - uid: 33824
components:
- type: Transform
- pos: 69.5,70.5
+ pos: -24.5,-9.5
parent: 2
- - uid: 19329
+ - uid: 34207
components:
- type: Transform
- pos: -61.5,47.5
+ pos: 48.5,-27.5
parent: 2
- - uid: 19333
+ - uid: 34209
components:
- type: Transform
- pos: -61.5,43.5
+ pos: 51.5,-28.5
parent: 2
- - uid: 19335
+ - uid: 34211
components:
- type: Transform
- pos: -61.5,44.5
+ pos: 46.5,-27.5
parent: 2
- - uid: 19377
+ - uid: 34715
components:
- type: Transform
- pos: -18.5,50.5
+ pos: 42.5,8.5
parent: 2
- - uid: 19466
+ - uid: 34973
components:
- type: Transform
- pos: -1.5,79.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-45.5
parent: 2
- - uid: 19467
+ - uid: 36140
components:
- type: Transform
- pos: -2.5,79.5
+ pos: -10.5,65.5
parent: 2
- - uid: 19468
+ - uid: 36214
components:
- type: Transform
- pos: -3.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-27.5
parent: 2
- - uid: 19469
+ - uid: 36388
components:
- type: Transform
- pos: 4.5,79.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,6.5
parent: 2
- - uid: 19470
+ - uid: 36392
components:
- type: Transform
- pos: 6.5,79.5
+ pos: -122.5,68.5
parent: 2
- - uid: 19471
+ - uid: 36401
components:
- type: Transform
- pos: 5.5,79.5
+ pos: -114.5,68.5
parent: 2
- - uid: 19519
+ - uid: 36402
components:
- type: Transform
- pos: 14.5,72.5
+ pos: -113.5,68.5
parent: 2
- - uid: 19520
+ - uid: 36404
components:
- type: Transform
- pos: 15.5,72.5
+ pos: -112.5,68.5
parent: 2
- - uid: 19521
+ - uid: 36494
components:
- type: Transform
- pos: 15.5,73.5
+ pos: -40.5,-9.5
parent: 2
- - uid: 19522
+ - uid: 36743
components:
- type: Transform
- pos: 12.5,79.5
+ pos: -79.5,18.5
parent: 2
- - uid: 19523
+ - uid: 36895
components:
- type: Transform
- pos: 13.5,79.5
+ pos: -36.5,-7.5
parent: 2
- - uid: 19524
+ - uid: 36947
components:
- type: Transform
- pos: 14.5,79.5
+ pos: 3.5,47.5
parent: 2
- - uid: 19525
+ - uid: 37179
components:
- type: Transform
- pos: 15.5,79.5
+ pos: -76.5,15.5
parent: 2
- - uid: 19526
+ - uid: 37235
components:
- type: Transform
- pos: 15.5,78.5
+ pos: -20.5,-6.5
parent: 2
- - uid: 19527
+ - uid: 37262
components:
- type: Transform
- pos: -9.5,79.5
+ pos: -40.5,74.5
parent: 2
- - uid: 19528
+ - uid: 37300
components:
- type: Transform
- pos: -10.5,79.5
+ pos: -34.5,70.5
parent: 2
- - uid: 19529
+ - uid: 37301
components:
- type: Transform
- pos: -11.5,79.5
+ pos: -41.5,74.5
parent: 2
- - uid: 19530
+ - uid: 37303
components:
- type: Transform
- pos: -12.5,79.5
+ pos: -34.5,69.5
parent: 2
- - uid: 19531
+ - uid: 37689
components:
- type: Transform
- pos: -12.5,78.5
+ pos: 11.5,61.5
parent: 2
- - uid: 19532
+ - uid: 37690
components:
- type: Transform
- pos: -12.5,73.5
+ pos: 11.5,62.5
parent: 2
- - uid: 19627
+ - uid: 37964
components:
- type: Transform
- pos: -47.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 92.5,-24.5
parent: 2
- - uid: 19628
+ - uid: 38041
components:
- type: Transform
- pos: 13.5,63.5
+ pos: -79.5,17.5
parent: 2
- - uid: 19629
+ - uid: 38042
components:
- type: Transform
- pos: 12.5,63.5
+ pos: -75.5,19.5
parent: 2
- - uid: 19632
+ - uid: 38043
components:
- type: Transform
- pos: -47.5,57.5
+ pos: -75.5,18.5
parent: 2
- - uid: 19664
+ - uid: 38044
components:
- type: Transform
- pos: 5.5,63.5
+ pos: -75.5,17.5
parent: 2
- - uid: 19670
+ - uid: 38134
components:
- type: Transform
- pos: -40.5,68.5
+ pos: -12.5,-46.5
parent: 2
- - uid: 19671
+ - uid: 38148
components:
- type: Transform
- pos: 6.5,64.5
+ pos: -13.5,-46.5
parent: 2
- - uid: 19674
+ - uid: 38702
components:
- type: Transform
- pos: 6.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,47.5
parent: 2
- - uid: 19676
+ - uid: 38781
components:
- type: Transform
- pos: 14.5,63.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,62.5
parent: 2
- - uid: 19690
+ - uid: 38797
components:
- type: Transform
- pos: -39.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: -44.5,37.5
parent: 2
- - uid: 19705
+ - uid: 38900
components:
- type: Transform
- pos: -35.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-39.5
parent: 2
- - uid: 19708
+- proto: WallReinforcedDiagonal
+ entities:
+ - uid: 22062
components:
- type: Transform
- pos: -34.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,8.5
parent: 2
- - uid: 19709
+ - uid: 31011
components:
- type: Transform
- pos: -45.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,5.5
parent: 2
- - uid: 19710
+- proto: WallReinforcedRust
+ entities:
+ - uid: 1474
components:
- type: Transform
- pos: -38.5,57.5
+ pos: 72.5,64.5
parent: 2
- - uid: 19711
+ - uid: 1476
components:
- type: Transform
- pos: -40.5,57.5
+ pos: 73.5,64.5
parent: 2
- - uid: 19717
+ - uid: 2460
components:
- type: Transform
- pos: -37.5,57.5
+ pos: 76.5,55.5
parent: 2
- - uid: 19719
+ - uid: 3154
components:
- type: Transform
- pos: -36.5,57.5
+ pos: 88.5,74.5
parent: 2
- - uid: 19733
+ - uid: 4137
components:
- type: Transform
- pos: 4.5,63.5
+ pos: 77.5,64.5
parent: 2
- - uid: 19824
+ - uid: 4509
components:
- type: Transform
- pos: -44.5,61.5
+ pos: 76.5,64.5
parent: 2
- - uid: 19825
+ - uid: 4525
components:
- type: Transform
- pos: -45.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,52.5
parent: 2
- - uid: 19826
+ - uid: 4536
components:
- type: Transform
- pos: -45.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,52.5
parent: 2
- - uid: 19827
+ - uid: 4724
components:
- type: Transform
- pos: -42.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,71.5
parent: 2
- - uid: 19829
+ - uid: 4727
components:
- type: Transform
- pos: -45.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,71.5
parent: 2
- - uid: 19848
+ - uid: 4730
components:
- type: Transform
- pos: -40.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,71.5
parent: 2
- - uid: 19853
+ - uid: 4770
components:
- type: Transform
- pos: -45.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,76.5
parent: 2
- - uid: 19944
+ - uid: 4831
components:
- type: Transform
- pos: -76.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,80.5
parent: 2
- - uid: 19945
+ - uid: 4833
components:
- type: Transform
- pos: -66.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,80.5
parent: 2
- - uid: 19946
+ - uid: 4840
components:
- type: Transform
- pos: -75.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 92.5,80.5
parent: 2
- - uid: 19947
+ - uid: 4841
components:
- type: Transform
- pos: -74.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,80.5
parent: 2
- - uid: 19967
+ - uid: 4849
components:
- type: Transform
- pos: -96.5,69.5
+ pos: 112.5,-4.5
parent: 2
- - uid: 20184
+ - uid: 4890
components:
- type: Transform
- pos: -41.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,71.5
parent: 2
- - uid: 20268
+ - uid: 4905
components:
- type: Transform
- pos: -34.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,75.5
parent: 2
- - uid: 20277
+ - uid: 4908
components:
- type: Transform
- pos: -34.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 99.5,71.5
parent: 2
- - uid: 20278
+ - uid: 4911
components:
- type: Transform
- pos: -34.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,75.5
parent: 2
- - uid: 20298
+ - uid: 4948
components:
- type: Transform
- pos: -34.5,51.5
+ pos: 100.5,77.5
parent: 2
- - uid: 20589
+ - uid: 5321
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,80.5
parent: 2
- - uid: 20597
+ - uid: 5325
components:
- type: Transform
- pos: -55.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,78.5
parent: 2
- - uid: 20598
+ - uid: 5538
components:
- type: Transform
- pos: -50.5,53.5
+ pos: 91.5,-22.5
parent: 2
- - uid: 20607
+ - uid: 5942
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -91.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,80.5
parent: 2
- - uid: 20610
+ - uid: 6110
components:
- type: Transform
- pos: -77.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,80.5
parent: 2
- - uid: 20612
+ - uid: 6172
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,17.5
+ rot: 1.5707963267948966 rad
+ pos: 90.5,80.5
parent: 2
- - uid: 20838
+ - uid: 6411
components:
- type: Transform
- pos: -25.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,52.5
parent: 2
- - uid: 20864
+ - uid: 6426
components:
- type: Transform
- pos: -24.5,-4.5
+ pos: 110.5,-7.5
parent: 2
- - uid: 20865
+ - uid: 6435
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: 110.5,-18.5
parent: 2
- - uid: 20866
+ - uid: 6436
components:
- type: Transform
- pos: -26.5,-6.5
+ pos: 110.5,-17.5
parent: 2
- - uid: 20868
+ - uid: 6437
components:
- type: Transform
- pos: -24.5,-6.5
+ pos: 110.5,-12.5
parent: 2
- - uid: 20869
+ - uid: 6934
components:
- type: Transform
- pos: -24.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,52.5
parent: 2
- - uid: 20870
+ - uid: 7658
components:
- type: Transform
- pos: -26.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,70.5
parent: 2
- - uid: 20875
+ - uid: 8159
components:
- type: Transform
- pos: -25.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,71.5
parent: 2
- - uid: 20878
+ - uid: 8167
components:
- type: Transform
- pos: -28.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 101.5,56.5
parent: 2
- - uid: 20879
+ - uid: 8169
components:
- type: Transform
- pos: -27.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,71.5
parent: 2
- - uid: 20889
+ - uid: 8171
components:
- type: Transform
- pos: -29.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,56.5
parent: 2
- - uid: 20890
+ - uid: 8176
components:
- type: Transform
- pos: -29.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,52.5
parent: 2
- - uid: 21045
+ - uid: 8178
components:
- type: Transform
- pos: -28.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,52.5
parent: 2
- - uid: 21075
+ - uid: 8179
components:
- type: Transform
- pos: -37.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: 102.5,56.5
parent: 2
- - uid: 21087
+ - uid: 8184
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 107.5,56.5
parent: 2
- - uid: 21115
+ - uid: 8202
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,55.5
parent: 2
- - uid: 21116
+ - uid: 8205
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -94.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,52.5
parent: 2
- - uid: 21909
+ - uid: 8206
components:
- type: Transform
- pos: 70.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,53.5
parent: 2
- - uid: 21975
+ - uid: 8207
components:
- type: Transform
- pos: -119.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,54.5
parent: 2
- - uid: 22099
+ - uid: 8208
components:
- type: Transform
- pos: 71.5,28.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,55.5
parent: 2
- - uid: 22167
+ - uid: 8209
components:
- type: Transform
- pos: -87.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,56.5
parent: 2
- - uid: 22282
+ - uid: 8210
components:
- type: Transform
- pos: 4.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,57.5
parent: 2
- - uid: 22284
+ - uid: 8211
components:
- type: Transform
- pos: 4.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,58.5
parent: 2
- - uid: 22356
+ - uid: 8212
components:
- type: Transform
- pos: 3.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,58.5
parent: 2
- - uid: 22361
+ - uid: 8220
components:
- type: Transform
- pos: -45.5,63.5
+ pos: 93.5,76.5
parent: 2
- - uid: 22452
+ - uid: 8221
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -93.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,74.5
parent: 2
- - uid: 22573
+ - uid: 8225
components:
- type: Transform
- pos: 55.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,79.5
parent: 2
- - uid: 22600
+ - uid: 8227
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -92.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,75.5
parent: 2
- - uid: 22628
+ - uid: 8237
components:
- type: Transform
- pos: -37.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 91.5,80.5
parent: 2
- - uid: 22651
+ - uid: 8242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,79.5
parent: 2
- - uid: 22812
+ - uid: 8250
components:
- type: Transform
- pos: 8.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,20.5
parent: 2
- - uid: 22813
+ - uid: 8251
components:
- type: Transform
- pos: 8.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 102.5,19.5
parent: 2
- - uid: 22887
+ - uid: 8256
components:
- type: Transform
- pos: -34.5,-37.5
+ pos: 99.5,62.5
parent: 2
- - uid: 23036
+ - uid: 8380
components:
- type: Transform
- pos: -61.5,52.5
+ pos: 65.5,61.5
parent: 2
- - uid: 23043
+ - uid: 8610
components:
- type: Transform
- pos: 9.5,-19.5
+ pos: 65.5,71.5
parent: 2
- - uid: 23051
+ - uid: 9346
components:
- type: Transform
- pos: 11.5,-19.5
+ pos: 113.5,-27.5
parent: 2
- - uid: 23052
+ - uid: 9378
components:
- type: Transform
- pos: 10.5,-19.5
+ pos: -101.5,54.5
parent: 2
- - uid: 23054
+ - uid: 9403
components:
- type: Transform
- pos: 12.5,-19.5
+ pos: -102.5,47.5
parent: 2
- - uid: 23055
+ - uid: 9406
components:
- type: Transform
- pos: -36.5,53.5
+ pos: -101.5,57.5
parent: 2
- - uid: 23057
+ - uid: 9493
components:
- type: Transform
- pos: -6.5,46.5
+ pos: -101.5,49.5
parent: 2
- - uid: 23058
+ - uid: 9673
components:
- type: Transform
- pos: -4.5,46.5
+ pos: -101.5,50.5
parent: 2
- - uid: 23060
+ - uid: 9891
components:
- type: Transform
- pos: -3.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -111.5,54.5
parent: 2
- - uid: 23062
+ - uid: 10336
components:
- type: Transform
- pos: 100.5,26.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,49.5
parent: 2
- - uid: 23065
+ - uid: 10348
components:
- type: Transform
- pos: 86.5,69.5
+ pos: 65.5,72.5
parent: 2
- - uid: 23070
+ - uid: 11261
components:
- type: Transform
- pos: 52.5,67.5
+ pos: 90.5,-13.5
parent: 2
- - uid: 23074
+ - uid: 11266
components:
- type: Transform
- pos: -5.5,46.5
+ pos: 92.5,-13.5
parent: 2
- - uid: 23076
+ - uid: 11498
components:
- type: Transform
- pos: 10.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 63.5,49.5
parent: 2
- - uid: 23077
+ - uid: 12588
components:
- type: Transform
- pos: 96.5,57.5
+ pos: 92.5,-19.5
parent: 2
- - uid: 23080
+ - uid: 12589
components:
- type: Transform
- pos: 11.5,-17.5
+ pos: 91.5,-19.5
parent: 2
- - uid: 23083
+ - uid: 12592
components:
- type: Transform
- pos: 9.5,-17.5
+ pos: 91.5,-13.5
parent: 2
- - uid: 23117
+ - uid: 13361
components:
- type: Transform
- pos: 12.5,-17.5
+ pos: -102.5,57.5
parent: 2
- - uid: 23124
+ - uid: 13363
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,55.5
parent: 2
- - uid: 23133
+ - uid: 13364
components:
- type: Transform
- pos: 12.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,48.5
parent: 2
- - uid: 23142
+ - uid: 13460
components:
- type: Transform
- pos: -44.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -111.5,50.5
parent: 2
- - uid: 23143
+ - uid: 13485
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,4.5
+ pos: -101.5,48.5
parent: 2
- - uid: 23496
+ - uid: 13716
components:
- type: Transform
- pos: 86.5,53.5
+ pos: -111.5,57.5
parent: 2
- - uid: 23497
+ - uid: 13718
components:
- type: Transform
- pos: 85.5,53.5
+ pos: -101.5,55.5
parent: 2
- - uid: 23498
+ - uid: 16660
components:
- type: Transform
- pos: 84.5,53.5
+ pos: 110.5,-9.5
parent: 2
- - uid: 23499
+ - uid: 16665
components:
- type: Transform
- pos: 83.5,53.5
+ pos: 109.5,-7.5
parent: 2
- - uid: 23501
+ - uid: 16666
components:
- type: Transform
- pos: -77.5,-7.5
+ pos: 107.5,-7.5
parent: 2
- - uid: 23503
+ - uid: 16670
components:
- type: Transform
- pos: -67.5,-7.5
+ pos: 106.5,-7.5
parent: 2
- - uid: 23534
+ - uid: 16673
components:
- type: Transform
- pos: -70.5,-7.5
+ pos: 92.5,-23.5
parent: 2
- - uid: 23614
+ - uid: 16705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,23.5
+ pos: 91.5,-26.5
parent: 2
- - uid: 23702
+ - uid: 17381
components:
- type: Transform
- pos: -55.5,52.5
+ pos: 97.5,-7.5
parent: 2
- - uid: 23713
+ - uid: 18057
components:
- type: Transform
- pos: -55.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,70.5
parent: 2
- - uid: 23722
+ - uid: 18516
components:
- type: Transform
- pos: -120.5,41.5
+ pos: 110.5,-13.5
parent: 2
- - uid: 23725
+ - uid: 18521
components:
- type: Transform
- pos: -110.5,61.5
+ pos: 108.5,-7.5
parent: 2
- - uid: 23726
+ - uid: 18524
components:
- type: Transform
- pos: -99.5,59.5
+ pos: 85.5,-23.5
parent: 2
- - uid: 23727
+ - uid: 18526
components:
- type: Transform
- pos: -100.5,59.5
+ pos: 81.5,-23.5
parent: 2
- - uid: 23740
+ - uid: 18558
components:
- type: Transform
- pos: -97.5,57.5
+ pos: 88.5,-9.5
parent: 2
- - uid: 23741
+ - uid: 18560
components:
- type: Transform
- pos: -115.5,61.5
+ pos: 88.5,-23.5
parent: 2
- - uid: 23742
+ - uid: 18562
components:
- type: Transform
- pos: -122.5,44.5
+ pos: 84.5,-22.5
parent: 2
- - uid: 23743
+ - uid: 18564
components:
- type: Transform
- pos: -122.5,43.5
+ pos: 85.5,-9.5
parent: 2
- - uid: 23746
+ - uid: 18565
components:
- type: Transform
- pos: -114.5,41.5
+ pos: 81.5,-9.5
parent: 2
- - uid: 23747
+ - uid: 18569
components:
- type: Transform
- pos: -115.5,41.5
+ pos: 80.5,-9.5
parent: 2
- - uid: 23749
+ - uid: 18570
components:
- type: Transform
- pos: -108.5,41.5
+ pos: 90.5,-9.5
parent: 2
- - uid: 23750
+ - uid: 18572
components:
- type: Transform
- pos: -110.5,41.5
+ pos: 77.5,-23.5
parent: 2
- - uid: 23751
+ - uid: 18633
components:
- type: Transform
- pos: -109.5,41.5
+ pos: 110.5,-16.5
parent: 2
- - uid: 23752
+ - uid: 18639
components:
- type: Transform
- pos: -103.5,61.5
+ pos: 98.5,-25.5
parent: 2
- - uid: 23754
+ - uid: 18641
components:
- type: Transform
- pos: 96.5,56.5
+ pos: 110.5,-14.5
parent: 2
- - uid: 23767
+ - uid: 18650
components:
- type: Transform
- pos: 96.5,54.5
+ pos: 92.5,-7.5
parent: 2
- - uid: 23768
+ - uid: 18651
components:
- type: Transform
- pos: 90.5,63.5
+ pos: 92.5,-8.5
parent: 2
- - uid: 23778
+ - uid: 18653
components:
- type: Transform
- pos: 91.5,22.5
+ pos: 92.5,-25.5
parent: 2
- - uid: 23779
+ - uid: 18654
components:
- type: Transform
- pos: 101.5,27.5
+ pos: 93.5,-25.5
parent: 2
- - uid: 23796
+ - uid: 18655
components:
- type: Transform
- pos: -124.5,33.5
+ pos: 94.5,-25.5
parent: 2
- - uid: 23815
+ - uid: 18656
components:
- type: Transform
- pos: -124.5,68.5
+ pos: 110.5,-20.5
parent: 2
- - uid: 24934
+ - uid: 18657
components:
- type: Transform
- pos: 100.5,25.5
+ pos: 110.5,-24.5
parent: 2
- - uid: 24936
+ - uid: 18658
components:
- type: Transform
- pos: 75.5,1.5
+ pos: 110.5,-23.5
parent: 2
- - uid: 25304
+ - uid: 18668
components:
- type: Transform
- pos: 90.5,23.5
+ pos: 96.5,-25.5
parent: 2
- - uid: 25315
+ - uid: 18670
components:
- type: Transform
- pos: -7.5,46.5
+ pos: 100.5,-25.5
parent: 2
- - uid: 25328
+ - uid: 18671
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,11.5
+ pos: 97.5,-25.5
parent: 2
- - uid: 25557
+ - uid: 18673
components:
- type: Transform
- pos: 8.5,47.5
+ pos: 102.5,-25.5
parent: 2
- - uid: 25836
+ - uid: 18677
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,16.5
+ pos: 107.5,-26.5
parent: 2
- - uid: 26182
+ - uid: 18679
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,-0.5
+ pos: 108.5,-26.5
parent: 2
- - uid: 26217
+ - uid: 18714
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -101.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,70.5
parent: 2
- - uid: 26221
+ - uid: 18719
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -63.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,70.5
parent: 2
- - uid: 26567
+ - uid: 18725
components:
- type: Transform
- pos: -76.5,25.5
+ pos: 103.5,-7.5
parent: 2
- - uid: 26614
+ - uid: 18727
components:
- type: Transform
- pos: -75.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,68.5
parent: 2
- - uid: 26687
+ - uid: 18728
components:
- type: Transform
- pos: -117.5,33.5
+ pos: 66.5,64.5
parent: 2
- - uid: 26689
+ - uid: 18729
components:
- type: Transform
- pos: -128.5,68.5
+ pos: 76.5,61.5
parent: 2
- - uid: 26691
+ - uid: 18736
components:
- type: Transform
- pos: -116.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,71.5
parent: 2
- - uid: 26692
+ - uid: 18740
components:
- type: Transform
- pos: -126.5,33.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,19.5
parent: 2
- - uid: 26693
+ - uid: 18741
components:
- type: Transform
- pos: -129.5,34.5
+ pos: 94.5,-7.5
parent: 2
- - uid: 26701
+ - uid: 18742
components:
- type: Transform
- pos: -129.5,36.5
+ pos: 99.5,-7.5
parent: 2
- - uid: 26702
+ - uid: 18744
components:
- type: Transform
- pos: -125.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,72.5
parent: 2
- - uid: 26703
+ - uid: 18746
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,6.5
+ pos: 100.5,-7.5
parent: 2
- - uid: 26713
+ - uid: 18747
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,30.5
+ pos: 90.5,76.5
parent: 2
- - uid: 26750
+ - uid: 18754
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,31.5
+ pos: 98.5,-7.5
parent: 2
- - uid: 26751
+ - uid: 18755
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,29.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,77.5
parent: 2
- - uid: 26757
+ - uid: 18759
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,28.5
+ pos: 82.5,-23.5
parent: 2
- - uid: 26758
+ - uid: 18760
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,27.5
+ pos: 80.5,-23.5
parent: 2
- - uid: 26759
+ - uid: 18761
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,25.5
+ pos: 78.5,-23.5
parent: 2
- - uid: 26760
+ - uid: 18769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -70.5,26.5
+ pos: 87.5,-23.5
parent: 2
- - uid: 26761
+ - uid: 18770
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -71.5,32.5
+ pos: 87.5,-9.5
parent: 2
- - uid: 26768
+ - uid: 18774
components:
- type: Transform
- pos: -87.5,10.5
+ pos: 84.5,-23.5
parent: 2
- - uid: 26772
+ - uid: 18779
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,18.5
+ pos: 83.5,-22.5
parent: 2
- - uid: 26773
+ - uid: 18803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,18.5
+ rot: 1.5707963267948966 rad
+ pos: -113.5,54.5
parent: 2
- - uid: 26775
+ - uid: 18804
components:
- type: Transform
- pos: -89.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -112.5,50.5
parent: 2
- - uid: 26776
+ - uid: 18829
components:
- type: Transform
- pos: -89.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -110.5,47.5
parent: 2
- - uid: 26777
+ - uid: 18830
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -104.5,47.5
parent: 2
- - uid: 26831
+ - uid: 18865
components:
- type: Transform
- pos: -95.5,-0.5
+ pos: -101.5,47.5
parent: 2
- - uid: 26845
+ - uid: 18896
components:
- type: Transform
- pos: -86.5,11.5
+ pos: -108.5,45.5
parent: 2
- - uid: 26880
+ - uid: 18899
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,5.5
+ pos: -108.5,44.5
parent: 2
- - uid: 26892
+ - uid: 18923
components:
- type: Transform
- pos: -88.5,-2.5
+ pos: -104.5,58.5
parent: 2
- - uid: 26893
+ - uid: 18925
components:
- type: Transform
- pos: -86.5,-1.5
+ pos: -104.5,59.5
parent: 2
- - uid: 26894
+ - uid: 18963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -86.5,4.5
+ pos: 96.5,-7.5
parent: 2
- - uid: 26924
+ - uid: 18964
components:
- type: Transform
- pos: -88.5,10.5
+ pos: 102.5,-7.5
parent: 2
- - uid: 26926
+ - uid: 18965
components:
- type: Transform
- pos: -89.5,-2.5
+ pos: 109.5,-25.5
parent: 2
- - uid: 26935
+ - uid: 18966
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,20.5
+ pos: 110.5,-22.5
parent: 2
- - uid: 27111
+ - uid: 18967
components:
- type: Transform
- pos: -36.5,-12.5
+ pos: 110.5,-25.5
parent: 2
- - uid: 27168
+ - uid: 18969
components:
- type: Transform
- pos: -33.5,-12.5
+ pos: 110.5,-19.5
parent: 2
- - uid: 27203
+ - uid: 18970
components:
- type: Transform
- pos: -87.5,-2.5
+ pos: 106.5,-25.5
parent: 2
- - uid: 27204
+ - uid: 18971
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -89.5,19.5
+ pos: 107.5,-25.5
parent: 2
- - uid: 27208
+ - uid: 18972
components:
- type: Transform
- pos: -87.5,-1.5
+ pos: 103.5,-25.5
parent: 2
- - uid: 27209
+ - uid: 18973
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -87.5,19.5
+ pos: 105.5,-25.5
parent: 2
- - uid: 27211
+ - uid: 18974
components:
- type: Transform
- pos: -90.5,-3.5
+ pos: 104.5,-25.5
parent: 2
- - uid: 27212
+ - uid: 19002
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,16.5
+ pos: 103.5,-6.5
parent: 2
- - uid: 27213
+ - uid: 19003
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,1.5
+ pos: 102.5,-6.5
parent: 2
- - uid: 27214
+ - uid: 19011
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -93.5,20.5
+ pos: 90.5,-10.5
parent: 2
- - uid: 27215
+ - uid: 19012
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -90.5,20.5
+ pos: 89.5,-9.5
parent: 2
- - uid: 27216
+ - uid: 19014
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -95.5,17.5
+ pos: 111.5,-8.5
parent: 2
- - uid: 27222
+ - uid: 19016
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,2.5
+ pos: 96.5,-6.5
parent: 2
- - uid: 27224
+ - uid: 19017
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -95.5,3.5
+ pos: 95.5,-6.5
parent: 2
- - uid: 27225
+ - uid: 19018
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -96.5,3.5
+ pos: 94.5,-6.5
parent: 2
- - uid: 27226
+ - uid: 19019
components:
- type: Transform
- pos: -93.5,-3.5
+ pos: 93.5,-6.5
parent: 2
- - uid: 27243
+ - uid: 19026
components:
- type: Transform
- pos: -97.5,2.5
+ pos: 111.5,-7.5
parent: 2
- - uid: 27244
+ - uid: 19027
components:
- type: Transform
- pos: -96.5,2.5
+ pos: 111.5,-6.5
parent: 2
- - uid: 27372
+ - uid: 19028
components:
- type: Transform
- pos: 77.5,-0.5
+ pos: 110.5,-6.5
parent: 2
- - uid: 27386
+ - uid: 19029
components:
- type: Transform
- pos: 77.5,-2.5
+ pos: 101.5,-6.5
parent: 2
- - uid: 27387
+ - uid: 19032
components:
- type: Transform
- pos: 77.5,-1.5
+ pos: 98.5,-6.5
parent: 2
- - uid: 27388
+ - uid: 19033
components:
- type: Transform
- pos: 77.5,-4.5
+ pos: 97.5,-6.5
parent: 2
- - uid: 27443
+ - uid: 19034
components:
- type: Transform
- pos: 77.5,-5.5
+ pos: 91.5,-6.5
parent: 2
- - uid: 27515
+ - uid: 19035
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,22.5
+ pos: 91.5,-7.5
parent: 2
- - uid: 27526
+ - uid: 19037
components:
- type: Transform
- pos: -66.5,-4.5
+ pos: 91.5,-9.5
parent: 2
- - uid: 27527
+ - uid: 19038
components:
- type: Transform
- pos: -66.5,-1.5
+ pos: 91.5,-10.5
parent: 2
- - uid: 27528
+ - uid: 19039
components:
- type: Transform
- pos: -69.5,-1.5
+ pos: 106.5,-6.5
parent: 2
- - uid: 27543
+ - uid: 19040
components:
- type: Transform
- pos: -68.5,-1.5
+ pos: 104.5,-6.5
parent: 2
- - uid: 27562
+ - uid: 19041
components:
- type: Transform
- pos: -67.5,-1.5
+ pos: 105.5,-6.5
parent: 2
- - uid: 27757
+ - uid: 19042
components:
- type: Transform
- pos: -70.5,-1.5
+ pos: 109.5,-6.5
parent: 2
- - uid: 27828
+ - uid: 19043
components:
- type: Transform
- pos: 89.5,23.5
+ pos: 108.5,-6.5
parent: 2
- - uid: 27829
+ - uid: 19055
components:
- type: Transform
- pos: 88.5,23.5
+ pos: 91.5,-24.5
parent: 2
- - uid: 27844
+ - uid: 19108
components:
- type: Transform
- pos: -36.5,55.5
+ pos: 111.5,-26.5
parent: 2
- - uid: 27861
+ - uid: 19112
components:
- type: Transform
- pos: 77.5,-6.5
+ pos: 74.5,63.5
parent: 2
- - uid: 27863
+ - uid: 19116
components:
- type: Transform
- pos: -104.5,61.5
+ pos: 90.5,-4.5
parent: 2
- - uid: 27864
+ - uid: 19117
components:
- type: Transform
- pos: -105.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-12.5
parent: 2
- - uid: 27865
+ - uid: 19118
components:
- type: Transform
- pos: -106.5,61.5
+ pos: 109.5,-26.5
parent: 2
- - uid: 27870
+ - uid: 19122
components:
- type: Transform
- pos: 87.5,69.5
+ pos: 111.5,-25.5
parent: 2
- - uid: 27901
+ - uid: 19162
components:
- type: Transform
- pos: 52.5,64.5
+ pos: 111.5,-24.5
parent: 2
- - uid: 27908
+ - uid: 19163
components:
- type: Transform
- pos: 52.5,58.5
+ pos: 111.5,-23.5
parent: 2
- - uid: 27911
+ - uid: 19164
components:
- type: Transform
- pos: 52.5,59.5
+ pos: 111.5,-12.5
parent: 2
- - uid: 27916
+ - uid: 19167
components:
- type: Transform
- pos: 90.5,69.5
+ pos: 111.5,-13.5
parent: 2
- - uid: 27917
+ - uid: 19168
components:
- type: Transform
- pos: 52.5,63.5
+ pos: 111.5,-11.5
parent: 2
- - uid: 27922
+ - uid: 19198
components:
- type: Transform
- pos: 52.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-22.5
parent: 2
- - uid: 27923
+ - uid: 19203
components:
- type: Transform
- pos: 90.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,-22.5
parent: 2
- - uid: 27925
+ - uid: 19204
components:
- type: Transform
- pos: 94.5,63.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-22.5
parent: 2
- - uid: 27926
+ - uid: 19236
components:
- type: Transform
- pos: 52.5,60.5
+ pos: 113.5,-4.5
parent: 2
- - uid: 27927
+ - uid: 19237
components:
- type: Transform
- pos: 52.5,61.5
+ pos: 92.5,-9.5
parent: 2
- - uid: 27929
+ - uid: 19240
components:
- type: Transform
- pos: 52.5,62.5
+ pos: 89.5,-4.5
parent: 2
- - uid: 27931
+ - uid: 19242
components:
- type: Transform
- pos: 81.5,69.5
+ pos: 89.5,-5.5
parent: 2
- - uid: 27934
+ - uid: 19818
components:
- type: Transform
- pos: 89.5,69.5
+ pos: 74.5,64.5
parent: 2
- - uid: 27941
+ - uid: 20642
components:
- type: Transform
- pos: 100.5,38.5
+ pos: 93.5,-26.5
parent: 2
- - uid: 27946
+ - uid: 20767
components:
- type: Transform
- pos: 100.5,39.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-13.5
parent: 2
- - uid: 27961
+ - uid: 20773
components:
- type: Transform
- pos: -14.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-10.5
parent: 2
- - uid: 27979
+ - uid: 20774
components:
- type: Transform
- pos: 100.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-19.5
parent: 2
- - uid: 27982
+ - uid: 20775
components:
- type: Transform
- pos: 77.5,69.5
+ pos: 92.5,-10.5
parent: 2
- - uid: 27983
+ - uid: 20802
components:
- type: Transform
- pos: 78.5,69.5
+ pos: 91.5,-23.5
parent: 2
- - uid: 27984
+ - uid: 20882
components:
- type: Transform
- pos: 80.5,69.5
+ pos: 113.5,-5.5
parent: 2
- - uid: 27986
+ - uid: 21031
components:
- type: Transform
- pos: 76.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 104.5,52.5
parent: 2
- - uid: 27989
+ - uid: 21036
components:
- type: Transform
- pos: 100.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 106.5,52.5
parent: 2
- - uid: 28013
+ - uid: 21038
components:
- type: Transform
- pos: 90.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,56.5
parent: 2
- - uid: 28018
+ - uid: 21058
components:
- type: Transform
- pos: 88.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,56.5
parent: 2
- - uid: 28022
+ - uid: 21919
components:
- type: Transform
- pos: 52.5,56.5
+ rot: 3.141592653589793 rad
+ pos: -109.5,47.5
parent: 2
- - uid: 28024
+ - uid: 22113
components:
- type: Transform
- pos: 95.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,36.5
parent: 2
- - uid: 28036
+ - uid: 22178
components:
- type: Transform
- pos: 95.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -103.5,47.5
parent: 2
- - uid: 28037
+ - uid: 22191
components:
- type: Transform
- pos: 101.5,26.5
+ pos: -109.5,57.5
parent: 2
- - uid: 28038
+ - uid: 22194
components:
- type: Transform
- pos: 101.5,29.5
+ pos: -104.5,57.5
parent: 2
- - uid: 28039
+ - uid: 22254
components:
- type: Transform
- pos: 101.5,28.5
+ pos: 111.5,-16.5
parent: 2
- - uid: 28040
+ - uid: 22256
components:
- type: Transform
- pos: 101.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-9.5
parent: 2
- - uid: 28041
+ - uid: 22272
components:
- type: Transform
- pos: 96.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 107.5,52.5
parent: 2
- - uid: 28043
+ - uid: 22511
components:
- type: Transform
- pos: 96.5,46.5
+ pos: 111.5,-21.5
parent: 2
- - uid: 28044
+ - uid: 22938
components:
- type: Transform
- pos: 96.5,52.5
+ rot: 3.141592653589793 rad
+ pos: 82.5,-9.5
parent: 2
- - uid: 28198
+ - uid: 23247
components:
- type: Transform
- pos: -15.5,-45.5
+ pos: 111.5,-22.5
parent: 2
- - uid: 28251
+ - uid: 23303
components:
- type: Transform
- pos: -22.5,-39.5
+ pos: 111.5,-20.5
parent: 2
- - uid: 28252
+ - uid: 23314
components:
- type: Transform
- pos: -25.5,-39.5
+ pos: 111.5,-15.5
parent: 2
- - uid: 28253
+ - uid: 23315
components:
- type: Transform
- pos: -21.5,-39.5
+ pos: 111.5,-17.5
parent: 2
- - uid: 28254
+ - uid: 23341
components:
- type: Transform
- pos: -23.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 83.5,-10.5
parent: 2
- - uid: 28340
+ - uid: 23417
components:
- type: Transform
- pos: -70.5,-2.5
+ pos: 90.5,-22.5
parent: 2
- - uid: 28341
+ - uid: 23496
components:
- type: Transform
- pos: -70.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,75.5
parent: 2
- - uid: 28405
+ - uid: 23499
components:
- type: Transform
- pos: -24.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,71.5
parent: 2
- - uid: 28527
+ - uid: 23519
components:
- type: Transform
- pos: -70.5,-4.5
+ pos: 92.5,-22.5
parent: 2
- - uid: 28641
+ - uid: 23722
components:
- type: Transform
- pos: -69.5,-4.5
+ pos: 92.5,76.5
parent: 2
- - uid: 28645
+ - uid: 23726
components:
- type: Transform
- pos: -68.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 96.5,75.5
parent: 2
- - uid: 28682
+ - uid: 23835
components:
- type: Transform
- pos: -67.5,-4.5
+ pos: 90.5,-28.5
parent: 2
- - uid: 28699
+ - uid: 25214
components:
- type: Transform
- pos: 77.5,0.5
+ pos: 91.5,-25.5
parent: 2
- - uid: 28700
+ - uid: 25216
components:
- type: Transform
- pos: 77.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 84.5,-10.5
parent: 2
- - uid: 28728
+ - uid: 26249
components:
- type: Transform
- pos: 38.5,17.5
+ pos: 89.5,-23.5
parent: 2
- - uid: 28729
+ - uid: 26369
components:
- type: Transform
- pos: 39.5,17.5
+ pos: 92.5,-26.5
parent: 2
- - uid: 28731
+ - uid: 26556
components:
- type: Transform
- pos: 39.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,67.5
parent: 2
- - uid: 28777
+ - uid: 26558
components:
- type: Transform
- pos: 40.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,68.5
parent: 2
- - uid: 28789
+ - uid: 27883
components:
- type: Transform
- pos: -25.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,36.5
parent: 2
- - uid: 28895
+ - uid: 27884
components:
- type: Transform
- pos: -30.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,31.5
parent: 2
- - uid: 28900
+ - uid: 27887
components:
- type: Transform
- pos: -24.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,34.5
parent: 2
- - uid: 28907
+ - uid: 27908
components:
- type: Transform
- pos: -18.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,29.5
parent: 2
- - uid: 28908
+ - uid: 27933
components:
- type: Transform
- pos: -21.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,56.5
parent: 2
- - uid: 28942
+ - uid: 27940
components:
- type: Transform
- pos: -28.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,57.5
parent: 2
- - uid: 28945
+ - uid: 27946
components:
- type: Transform
- pos: -19.5,49.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,34.5
parent: 2
- - uid: 28950
+ - uid: 27985
components:
- type: Transform
- pos: -29.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,48.5
parent: 2
- - uid: 28951
+ - uid: 27998
components:
- type: Transform
- pos: -30.5,44.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,55.5
parent: 2
- - uid: 28952
+ - uid: 28008
components:
- type: Transform
- pos: -29.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,49.5
parent: 2
- - uid: 28960
+ - uid: 28013
components:
- type: Transform
- pos: 47.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,49.5
parent: 2
- - uid: 29004
+ - uid: 28014
components:
- type: Transform
- pos: 48.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,49.5
parent: 2
- - uid: 29041
+ - uid: 28015
components:
- type: Transform
- pos: -33.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,49.5
parent: 2
- - uid: 29175
+ - uid: 28016
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,12.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,52.5
parent: 2
- - uid: 29176
+ - uid: 28119
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,36.5
parent: 2
- - uid: 29189
+ - uid: 28121
components:
- type: Transform
- pos: -92.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,42.5
parent: 2
- - uid: 29190
+ - uid: 28122
components:
- type: Transform
- pos: -96.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 75.5,32.5
parent: 2
- - uid: 29255
+ - uid: 28792
components:
- type: Transform
- pos: 75.5,69.5
+ pos: 90.5,66.5
parent: 2
- - uid: 29257
+ - uid: 28802
components:
- type: Transform
- pos: 79.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,37.5
parent: 2
- - uid: 29259
+ - uid: 28838
components:
- type: Transform
- pos: 72.5,69.5
+ pos: 112.5,-28.5
parent: 2
- - uid: 29260
+ - uid: 28915
components:
- type: Transform
- pos: 74.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,46.5
parent: 2
- - uid: 29261
+ - uid: 28917
components:
- type: Transform
- pos: 73.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,53.5
parent: 2
- - uid: 29269
+ - uid: 29021
components:
- type: Transform
- pos: 70.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,54.5
parent: 2
- - uid: 29272
+ - uid: 29028
components:
- type: Transform
- pos: 71.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,51.5
parent: 2
- - uid: 29273
+ - uid: 29029
components:
- type: Transform
- pos: 69.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,51.5
parent: 2
- - uid: 29286
+ - uid: 29031
components:
- type: Transform
- pos: 100.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,51.5
parent: 2
- - uid: 29300
+ - uid: 29032
components:
- type: Transform
- pos: 79.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,37.5
parent: 2
- - uid: 29301
+ - uid: 29038
components:
- type: Transform
- pos: 79.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,55.5
parent: 2
- - uid: 29309
+ - uid: 29048
components:
- type: Transform
- pos: 96.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,55.5
parent: 2
- - uid: 29312
+ - uid: 29056
components:
- type: Transform
- pos: 99.5,24.5
+ pos: 85.5,72.5
parent: 2
- - uid: 29314
+ - uid: 29072
components:
- type: Transform
- pos: 96.5,23.5
+ pos: 85.5,71.5
parent: 2
- - uid: 29315
+ - uid: 29113
components:
- type: Transform
- pos: 98.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,36.5
parent: 2
- - uid: 29316
+ - uid: 29264
components:
- type: Transform
- pos: 98.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-22.5
parent: 2
- - uid: 29321
+ - uid: 29268
components:
- type: Transform
- pos: 53.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 88.5,-10.5
parent: 2
- - uid: 29322
+ - uid: 29269
components:
- type: Transform
- pos: 52.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,-10.5
parent: 2
- - uid: 29363
+ - uid: 29317
components:
- type: Transform
- pos: 80.5,57.5
+ pos: 108.5,-25.5
parent: 2
- - uid: 29366
+ - uid: 29318
components:
- type: Transform
- pos: 81.5,60.5
+ pos: 95.5,-25.5
parent: 2
- - uid: 29371
+ - uid: 29322
components:
- type: Transform
- pos: 100.5,33.5
+ pos: 86.5,-9.5
parent: 2
- - uid: 29372
+ - uid: 29328
components:
- type: Transform
- pos: 100.5,32.5
+ pos: 104.5,-7.5
parent: 2
- - uid: 29389
+ - uid: 29330
components:
- type: Transform
- pos: 80.5,26.5
+ pos: 93.5,-7.5
parent: 2
- - uid: 29391
+ - uid: 29331
components:
- type: Transform
- pos: 80.5,25.5
+ pos: 86.5,-23.5
parent: 2
- - uid: 29393
+ - uid: 29346
components:
- type: Transform
- pos: 100.5,36.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,45.5
parent: 2
- - uid: 29394
+ - uid: 29357
components:
- type: Transform
- pos: 100.5,35.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,45.5
parent: 2
- - uid: 29400
+ - uid: 29358
components:
- type: Transform
- pos: 100.5,42.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,44.5
parent: 2
- - uid: 29401
+ - uid: 29361
components:
- type: Transform
- pos: 100.5,43.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,39.5
parent: 2
- - uid: 29403
+ - uid: 29362
components:
- type: Transform
- pos: 100.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,44.5
parent: 2
- - uid: 29404
+ - uid: 29363
components:
- type: Transform
- pos: 100.5,40.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,40.5
parent: 2
- - uid: 29405
+ - uid: 29364
components:
- type: Transform
- pos: 100.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,39.5
parent: 2
- - uid: 29423
+ - uid: 29365
components:
- type: Transform
- pos: 81.5,61.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,45.5
parent: 2
- - uid: 29611
+ - uid: 29369
components:
- type: Transform
- pos: -24.5,-29.5
+ pos: 113.5,-28.5
parent: 2
- - uid: 29612
+ - uid: 29393
components:
- type: Transform
- pos: -24.5,-28.5
+ pos: 88.5,67.5
parent: 2
- - uid: 29613
+ - uid: 29397
components:
- type: Transform
- pos: -27.5,-28.5
+ pos: 95.5,66.5
parent: 2
- - uid: 29614
+ - uid: 29400
components:
- type: Transform
- pos: -27.5,-29.5
+ pos: 90.5,67.5
parent: 2
- - uid: 29615
+ - uid: 29517
components:
- type: Transform
- pos: -26.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 89.5,-10.5
parent: 2
- - uid: 29616
+ - uid: 29738
components:
- type: Transform
- pos: 40.5,16.5
+ pos: 89.5,-27.5
parent: 2
- - uid: 29617
+ - uid: 29762
components:
- type: Transform
- pos: 38.5,16.5
+ pos: 89.5,-28.5
parent: 2
- - uid: 29619
+ - uid: 29776
components:
- type: Transform
- pos: 38.5,13.5
+ pos: 100.5,78.5
parent: 2
- - uid: 29622
+ - uid: 29788
components:
- type: Transform
- pos: 38.5,12.5
+ pos: 68.5,86.5
parent: 2
- - uid: 29626
+ - uid: 29789
components:
- type: Transform
- pos: -24.5,-27.5
+ pos: 75.5,85.5
parent: 2
- - uid: 29707
+ - uid: 29843
components:
- type: Transform
- pos: -44.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,82.5
parent: 2
- - uid: 29711
+ - uid: 29875
components:
- type: Transform
- pos: -43.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,66.5
parent: 2
- - uid: 29713
+ - uid: 29876
components:
- type: Transform
- pos: -42.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,62.5
parent: 2
- - uid: 29715
+ - uid: 29879
components:
- type: Transform
- pos: 15.5,71.5
+ pos: 79.5,36.5
parent: 2
- - uid: 29729
+ - uid: 29889
components:
- type: Transform
- pos: 81.5,62.5
+ pos: 79.5,35.5
parent: 2
- - uid: 29730
+ - uid: 29943
components:
- type: Transform
- pos: 81.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 105.5,56.5
parent: 2
- - uid: 29731
+ - uid: 29944
components:
- type: Transform
- pos: 87.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 104.5,56.5
parent: 2
- - uid: 29732
+ - uid: 29946
components:
- type: Transform
- pos: 88.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 106.5,56.5
parent: 2
- - uid: 29733
+ - uid: 30017
components:
- type: Transform
- pos: 88.5,57.5
+ pos: 60.5,86.5
parent: 2
- - uid: 29734
+ - uid: 30024
components:
- type: Transform
- pos: 88.5,53.5
+ pos: 101.5,57.5
parent: 2
- - uid: 29735
+ - uid: 30102
components:
- type: Transform
- pos: 87.5,57.5
+ pos: 100.5,76.5
parent: 2
- - uid: 29736
+ - uid: 30103
components:
- type: Transform
- pos: 85.5,63.5
+ pos: 98.5,78.5
parent: 2
- - uid: 29737
+ - uid: 30105
components:
- type: Transform
- pos: 87.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: 103.5,75.5
parent: 2
- - uid: 29738
+ - uid: 30106
components:
- type: Transform
- pos: 84.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,71.5
parent: 2
- - uid: 29739
+ - uid: 30107
components:
- type: Transform
- pos: 83.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 97.5,75.5
parent: 2
- - uid: 29740
+ - uid: 30108
components:
- type: Transform
- pos: 82.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 100.5,75.5
parent: 2
- - uid: 29741
+ - uid: 30117
components:
- type: Transform
- pos: 81.5,57.5
+ pos: 99.5,78.5
parent: 2
- - uid: 29744
+ - uid: 30124
components:
- type: Transform
- pos: 84.5,57.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,73.5
parent: 2
- - uid: 29745
+ - uid: 30125
components:
- type: Transform
- pos: 81.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: 93.5,71.5
parent: 2
- - uid: 29747
+ - uid: 30145
components:
- type: Transform
- pos: 81.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,64.5
parent: 2
- - uid: 29751
+ - uid: 30152
components:
- type: Transform
- pos: 86.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,34.5
parent: 2
- - uid: 29752
+ - uid: 30153
components:
- type: Transform
- pos: 87.5,63.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,35.5
parent: 2
- - uid: 29757
+ - uid: 30154
components:
- type: Transform
- pos: 82.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,18.5
parent: 2
- - uid: 29758
+ - uid: 30155
components:
- type: Transform
- pos: 83.5,60.5
+ pos: 107.5,20.5
parent: 2
- - uid: 29759
+ - uid: 30678
components:
- type: Transform
- pos: 84.5,60.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,49.5
parent: 2
- - uid: 29760
+ - uid: 30966
components:
- type: Transform
- pos: 86.5,60.5
+ pos: 107.5,19.5
parent: 2
- - uid: 29761
+ - uid: 31206
components:
- type: Transform
- pos: 87.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,17.5
parent: 2
- - uid: 29762
+ - uid: 31207
components:
- type: Transform
- pos: 87.5,58.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,18.5
parent: 2
- - uid: 29763
+ - uid: 31218
components:
- type: Transform
- pos: 86.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,15.5
parent: 2
- - uid: 29764
+ - uid: 31221
components:
- type: Transform
- pos: 87.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,14.5
parent: 2
- - uid: 29765
+ - uid: 31222
components:
- type: Transform
- pos: 87.5,62.5
+ pos: 95.5,-26.5
parent: 2
- - uid: 29807
+ - uid: 31224
components:
- type: Transform
- pos: 88.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 89.5,8.5
parent: 2
- - uid: 29823
+ - uid: 31312
components:
- type: Transform
- pos: 91.5,53.5
+ pos: 94.5,-26.5
parent: 2
- - uid: 29824
+ - uid: 31930
components:
- type: Transform
- pos: 91.5,57.5
+ pos: 98.5,-26.5
parent: 2
- - uid: 29831
+ - uid: 32063
components:
- type: Transform
- pos: 79.5,54.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,79.5
parent: 2
- - uid: 29832
+ - uid: 32065
components:
- type: Transform
- pos: 79.5,53.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,78.5
parent: 2
- - uid: 29838
+ - uid: 32071
components:
- type: Transform
- pos: 77.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,76.5
parent: 2
- - uid: 29839
+ - uid: 32072
components:
- type: Transform
- pos: 76.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,77.5
parent: 2
- - uid: 29841
+ - uid: 32073
components:
- type: Transform
- pos: 80.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,73.5
parent: 2
- - uid: 29842
+ - uid: 32074
components:
- type: Transform
- pos: 81.5,24.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,72.5
parent: 2
- - uid: 29843
+ - uid: 32075
components:
- type: Transform
- pos: 83.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,74.5
parent: 2
- - uid: 29844
+ - uid: 32076
components:
- type: Transform
- pos: 83.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 87.5,8.5
parent: 2
- - uid: 29846
+ - uid: 32077
components:
- type: Transform
- pos: 83.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 89.5,75.5
parent: 2
- - uid: 29847
+ - uid: 32081
components:
- type: Transform
- pos: 82.5,24.5
+ pos: 90.5,71.5
parent: 2
- - uid: 29848
+ - uid: 32082
components:
- type: Transform
- pos: 82.5,23.5
+ pos: 92.5,71.5
parent: 2
- - uid: 29877
+ - uid: 32151
components:
- type: Transform
- pos: 97.5,46.5
+ pos: 99.5,-26.5
parent: 2
- - uid: 29879
+ - uid: 32193
components:
- type: Transform
- pos: 99.5,23.5
+ pos: 90.5,-23.5
parent: 2
- - uid: 29891
+ - uid: 32231
components:
- type: Transform
- pos: 96.5,49.5
+ pos: 97.5,-26.5
parent: 2
- - uid: 29892
+ - uid: 32233
components:
- type: Transform
- pos: 96.5,51.5
+ pos: 104.5,-26.5
parent: 2
- - uid: 29907
+ - uid: 32243
components:
- type: Transform
- pos: 91.5,67.5
+ pos: 102.5,-26.5
parent: 2
- - uid: 29908
+ - uid: 32245
components:
- type: Transform
- pos: 92.5,67.5
+ pos: 103.5,-26.5
parent: 2
- - uid: 29909
+ - uid: 32253
components:
- type: Transform
- pos: 98.5,51.5
+ pos: 105.5,-26.5
parent: 2
- - uid: 29910
+ - uid: 32464
components:
- type: Transform
- pos: 93.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: 98.5,56.5
parent: 2
- - uid: 29911
+ - uid: 32504
components:
- type: Transform
- pos: 102.5,35.5
+ pos: 96.5,68.5
parent: 2
- - uid: 29912
+ - uid: 32527
components:
- type: Transform
- pos: 96.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,69.5
parent: 2
- - uid: 29913
+ - uid: 32566
components:
- type: Transform
- pos: 98.5,52.5
+ rot: 1.5707963267948966 rad
+ pos: 80.5,45.5
parent: 2
- - uid: 29914
+ - uid: 32578
components:
- type: Transform
- pos: 97.5,65.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,52.5
parent: 2
- - uid: 29915
+ - uid: 32596
components:
- type: Transform
- pos: 94.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: 95.5,48.5
parent: 2
- - uid: 29916
+ - uid: 32597
components:
- type: Transform
- pos: 97.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,49.5
parent: 2
- - uid: 29918
+ - uid: 32598
components:
- type: Transform
- pos: 98.5,62.5
+ rot: 1.5707963267948966 rad
+ pos: 94.5,50.5
parent: 2
- - uid: 29919
+ - uid: 32782
components:
- type: Transform
- pos: 98.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 80.5,50.5
parent: 2
- - uid: 29920
+ - uid: 32783
components:
- type: Transform
- pos: 98.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,54.5
parent: 2
- - uid: 29921
+ - uid: 32786
components:
- type: Transform
- pos: 98.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 80.5,51.5
parent: 2
- - uid: 29922
+ - uid: 32807
components:
- type: Transform
- pos: 98.5,57.5
+ pos: 65.5,64.5
parent: 2
- - uid: 29923
+ - uid: 32826
components:
- type: Transform
- pos: 98.5,56.5
+ pos: 74.5,61.5
parent: 2
- - uid: 29924
+ - uid: 32833
components:
- type: Transform
- pos: 98.5,55.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,73.5
parent: 2
- - uid: 29925
+ - uid: 32837
components:
- type: Transform
- pos: 98.5,50.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,74.5
parent: 2
- - uid: 29926
+ - uid: 32852
components:
- type: Transform
- pos: 102.5,46.5
+ pos: 75.5,61.5
parent: 2
- - uid: 29927
+ - uid: 32855
components:
- type: Transform
- pos: 102.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,68.5
parent: 2
- - uid: 29928
+ - uid: 32867
components:
- type: Transform
- pos: 102.5,42.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,70.5
parent: 2
- - uid: 29929
+ - uid: 32875
components:
- type: Transform
- pos: 102.5,40.5
+ pos: 70.5,64.5
parent: 2
- - uid: 29930
+ - uid: 32877
components:
- type: Transform
- pos: 102.5,39.5
+ pos: 74.5,62.5
parent: 2
- - uid: 29931
+ - uid: 32880
components:
- type: Transform
- pos: 102.5,38.5
+ rot: -1.5707963267948966 rad
+ pos: 64.5,82.5
parent: 2
- - uid: 29935
+ - uid: 32881
components:
- type: Transform
- pos: 102.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 65.5,82.5
parent: 2
- - uid: 29941
+ - uid: 32882
components:
- type: Transform
- pos: 15.5,70.5
+ rot: -1.5707963267948966 rad
+ pos: 63.5,82.5
parent: 2
- - uid: 29943
+ - uid: 32892
components:
- type: Transform
- pos: 91.5,10.5
+ pos: 102.5,62.5
parent: 2
- - uid: 29944
+ - uid: 32894
components:
- type: Transform
- pos: 90.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,60.5
parent: 2
- - uid: 29945
+ - uid: 32917
components:
- type: Transform
- pos: 90.5,8.5
+ pos: 70.5,62.5
parent: 2
- - uid: 29946
+ - uid: 32918
components:
- type: Transform
- pos: 90.5,7.5
+ pos: 70.5,63.5
parent: 2
- - uid: 29947
+ - uid: 32924
components:
- type: Transform
- pos: 88.5,6.5
+ rot: -1.5707963267948966 rad
+ pos: 66.5,82.5
parent: 2
- - uid: 29948
+ - uid: 32926
components:
- type: Transform
- pos: 88.5,-0.5
+ pos: 67.5,61.5
parent: 2
- - uid: 29952
+ - uid: 32927
components:
- type: Transform
- pos: -65.5,-22.5
+ pos: 69.5,64.5
parent: 2
- - uid: 29984
+ - uid: 32929
components:
- type: Transform
- pos: 80.5,6.5
+ pos: 68.5,61.5
parent: 2
- - uid: 29985
+ - uid: 32930
components:
- type: Transform
- pos: 83.5,11.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,75.5
parent: 2
- - uid: 29986
+ - uid: 32938
components:
- type: Transform
- pos: 83.5,12.5
+ pos: 78.5,62.5
parent: 2
- - uid: 29987
+ - uid: 32943
components:
- type: Transform
- pos: 84.5,13.5
+ pos: 67.5,86.5
parent: 2
- - uid: 29988
+ - uid: 32945
components:
- type: Transform
- pos: 84.5,14.5
+ pos: 71.5,82.5
parent: 2
- - uid: 29989
+ - uid: 32961
components:
- type: Transform
- pos: 84.5,15.5
+ pos: 78.5,63.5
parent: 2
- - uid: 29990
+ - uid: 32967
components:
- type: Transform
- pos: 84.5,16.5
+ pos: 78.5,64.5
parent: 2
- - uid: 29991
+ - uid: 32973
components:
- type: Transform
- pos: 84.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: 69.5,67.5
parent: 2
- - uid: 29992
+ - uid: 32984
components:
- type: Transform
- pos: 84.5,18.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,61.5
parent: 2
- - uid: 29993
+ - uid: 32989
components:
- type: Transform
- pos: 84.5,19.5
+ pos: 89.5,46.5
parent: 2
- - uid: 29994
+ - uid: 32990
components:
- type: Transform
- pos: 84.5,20.5
+ pos: 88.5,46.5
parent: 2
- - uid: 29995
+ - uid: 32991
components:
- type: Transform
- pos: 84.5,21.5
+ pos: 87.5,46.5
parent: 2
- - uid: 29999
+ - uid: 32996
components:
- type: Transform
- pos: 78.5,24.5
+ pos: 93.5,46.5
parent: 2
- - uid: 30000
+ - uid: 32997
components:
- type: Transform
- pos: 75.5,23.5
+ pos: 93.5,47.5
parent: 2
- - uid: 30001
+ - uid: 32998
components:
- type: Transform
- pos: 82.5,9.5
+ pos: 82.5,46.5
parent: 2
- - uid: 30002
+ - uid: 32999
components:
- type: Transform
- pos: 83.5,13.5
+ pos: 81.5,46.5
parent: 2
- - uid: 30003
+ - uid: 33000
components:
- type: Transform
- pos: 76.5,24.5
+ pos: 80.5,46.5
parent: 2
- - uid: 30004
+ - uid: 33006
components:
- type: Transform
- pos: 82.5,7.5
+ pos: 81.5,50.5
parent: 2
- - uid: 30005
+ - uid: 33007
components:
- type: Transform
- pos: 81.5,6.5
+ pos: 82.5,50.5
parent: 2
- - uid: 30006
+ - uid: 33008
components:
- type: Transform
- pos: 81.5,4.5
+ pos: 83.5,50.5
parent: 2
- - uid: 30007
+ - uid: 33009
components:
- type: Transform
- pos: 79.5,6.5
+ pos: 84.5,50.5
parent: 2
- - uid: 30009
+ - uid: 33010
components:
- type: Transform
- pos: 82.5,4.5
+ pos: 85.5,50.5
parent: 2
- - uid: 30010
+ - uid: 33011
components:
- type: Transform
- pos: 83.5,4.5
+ pos: 86.5,50.5
parent: 2
- - uid: 30011
+ - uid: 33017
components:
- type: Transform
- pos: 84.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,67.5
parent: 2
- - uid: 30012
+ - uid: 33019
components:
- type: Transform
- pos: 85.5,5.5
+ pos: 64.5,64.5
parent: 2
- - uid: 30013
+ - uid: 33020
components:
- type: Transform
- pos: 86.5,8.5
+ pos: 64.5,61.5
parent: 2
- - uid: 30014
+ - uid: 33021
components:
- type: Transform
- pos: 86.5,9.5
+ pos: 65.5,73.5
parent: 2
- - uid: 30015
+ - uid: 33023
components:
- type: Transform
- pos: 86.5,10.5
+ pos: 77.5,61.5
parent: 2
- - uid: 30016
+ - uid: 33024
components:
- type: Transform
- pos: 87.5,13.5
+ pos: 78.5,61.5
parent: 2
- - uid: 30017
+ - uid: 33077
components:
- type: Transform
- pos: 87.5,14.5
+ pos: 95.5,56.5
parent: 2
- - uid: 30019
+ - uid: 33081
components:
- type: Transform
- pos: 88.5,14.5
+ pos: 66.5,63.5
parent: 2
- - uid: 30021
+ - uid: 33082
components:
- type: Transform
- pos: 91.5,14.5
+ rot: 3.141592653589793 rad
+ pos: 66.5,70.5
parent: 2
- - uid: 30024
+ - uid: 33110
components:
- type: Transform
- pos: 87.5,21.5
+ rot: 3.141592653589793 rad
+ pos: 104.5,59.5
parent: 2
- - uid: 30025
+ - uid: 33176
components:
- type: Transform
- pos: 87.5,22.5
+ pos: 77.5,60.5
parent: 2
- - uid: 30026
+ - uid: 33180
components:
- type: Transform
- pos: 78.5,4.5
+ pos: 78.5,60.5
parent: 2
- - uid: 30037
+ - uid: 33293
components:
- type: Transform
- pos: 85.5,6.5
+ rot: 3.141592653589793 rad
+ pos: 80.5,54.5
parent: 2
- - uid: 30038
+ - uid: 33294
components:
- type: Transform
- pos: 84.5,5.5
+ rot: 3.141592653589793 rad
+ pos: 80.5,53.5
parent: 2
- - uid: 30100
+ - uid: 33496
components:
- type: Transform
- pos: 101.5,31.5
+ pos: 101.5,62.5
parent: 2
- - uid: 30105
+ - uid: 33522
components:
- type: Transform
- pos: 98.5,45.5
+ rot: 3.141592653589793 rad
+ pos: 103.5,62.5
parent: 2
- - uid: 30106
+ - uid: 33537
components:
- type: Transform
- pos: 99.5,45.5
+ pos: 100.5,62.5
parent: 2
- - uid: 30126
+ - uid: 33540
components:
- type: Transform
- pos: 87.5,23.5
+ pos: 97.5,59.5
parent: 2
- - uid: 30168
+ - uid: 33543
components:
- type: Transform
- pos: 90.5,22.5
+ pos: 75.5,81.5
parent: 2
- - uid: 30169
+ - uid: 33545
components:
- type: Transform
- pos: 92.5,22.5
+ pos: 67.5,85.5
parent: 2
- - uid: 30170
+ - uid: 33546
components:
- type: Transform
- pos: 101.5,32.5
+ pos: 71.5,81.5
parent: 2
- - uid: 30171
+ - uid: 33551
components:
- type: Transform
- pos: 100.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: 107.5,16.5
parent: 2
- - uid: 30172
+ - uid: 33579
components:
- type: Transform
- pos: 97.5,23.5
+ rot: 3.141592653589793 rad
+ pos: 67.5,70.5
parent: 2
- - uid: 30173
+ - uid: 33638
components:
- type: Transform
- pos: 95.5,23.5
+ pos: 75.5,82.5
parent: 2
- - uid: 30174
+ - uid: 33781
components:
- type: Transform
- pos: 93.5,22.5
+ pos: 67.5,84.5
parent: 2
- - uid: 30258
+ - uid: 33848
components:
- type: Transform
- pos: -75.5,11.5
+ pos: 71.5,83.5
parent: 2
- - uid: 30276
+ - uid: 34243
components:
- type: Transform
- pos: -44.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,84.5
parent: 2
- - uid: 30646
+ - uid: 34805
components:
- type: Transform
- pos: -107.5,61.5
+ pos: -111.5,56.5
parent: 2
- - uid: 30672
+ - uid: 34940
components:
- type: Transform
- pos: -32.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: 67.5,34.5
parent: 2
- - uid: 30676
+ - uid: 34941
components:
- type: Transform
- pos: -32.5,66.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,7.5
parent: 2
- - uid: 30677
+ - uid: 34955
components:
- type: Transform
- pos: -32.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 80.5,28.5
parent: 2
- - uid: 30684
+ - uid: 34956
components:
- type: Transform
- pos: -47.5,69.5
+ rot: -1.5707963267948966 rad
+ pos: 87.5,28.5
parent: 2
- - uid: 30696
+ - uid: 34981
components:
- type: Transform
- pos: -41.5,68.5
+ rot: -1.5707963267948966 rad
+ pos: 87.5,27.5
parent: 2
- - uid: 30703
+ - uid: 34984
components:
- type: Transform
- pos: -43.5,71.5
+ rot: -1.5707963267948966 rad
+ pos: 85.5,5.5
parent: 2
- - uid: 30704
+ - uid: 34985
components:
- type: Transform
- pos: -47.5,62.5
+ rot: -1.5707963267948966 rad
+ pos: 87.5,14.5
parent: 2
- - uid: 30713
+ - uid: 34986
components:
- type: Transform
- pos: -34.5,68.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,11.5
parent: 2
- - uid: 30720
+ - uid: 34987
components:
- type: Transform
- pos: -40.5,71.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,8.5
parent: 2
- - uid: 30721
+ - uid: 35005
components:
- type: Transform
- pos: -41.5,71.5
+ rot: -1.5707963267948966 rad
+ pos: 101.5,13.5
parent: 2
- - uid: 30722
+ - uid: 35564
components:
- type: Transform
- pos: -40.5,61.5
+ pos: 55.5,81.5
parent: 2
- - uid: 30725
+ - uid: 35568
components:
- type: Transform
- pos: -42.5,71.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,86.5
parent: 2
- - uid: 30730
+ - uid: 35569
components:
- type: Transform
- pos: -46.5,71.5
+ pos: 62.5,86.5
parent: 2
- - uid: 30731
+ - uid: 35572
components:
- type: Transform
- pos: -47.5,71.5
+ pos: -111.5,47.5
parent: 2
- - uid: 30750
+ - uid: 35576
components:
- type: Transform
- pos: -34.5,63.5
+ rot: 3.141592653589793 rad
+ pos: -108.5,47.5
parent: 2
- - uid: 30758
+ - uid: 35579
components:
- type: Transform
- pos: 13.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: 55.5,87.5
parent: 2
- - uid: 30879
+ - uid: 35582
components:
- type: Transform
- pos: -34.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,86.5
parent: 2
- - uid: 30914
+ - uid: 35583
components:
- type: Transform
- pos: -34.5,59.5
+ pos: 55.5,80.5
parent: 2
- - uid: 30922
+ - uid: 35584
components:
- type: Transform
- pos: 15.5,69.5
+ pos: -103.5,57.5
parent: 2
- - uid: 30978
+ - uid: 35586
components:
- type: Transform
- pos: 9.5,63.5
+ pos: -110.5,57.5
parent: 2
- - uid: 31044
+ - uid: 35593
components:
- type: Transform
- pos: -30.5,66.5
+ rot: -1.5707963267948966 rad
+ pos: 53.5,82.5
parent: 2
- - uid: 31045
+ - uid: 35594
components:
- type: Transform
- pos: -30.5,65.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,87.5
parent: 2
- - uid: 31061
+ - uid: 35596
components:
- type: Transform
- pos: 4.5,67.5
+ pos: 55.5,77.5
parent: 2
- - uid: 31064
+ - uid: 35600
components:
- type: Transform
- pos: 5.5,67.5
+ pos: -108.5,46.5
parent: 2
- - uid: 31070
+ - uid: 35669
components:
- type: Transform
- pos: -20.5,67.5
+ pos: 59.5,82.5
parent: 2
- - uid: 31073
+ - uid: 35670
components:
- type: Transform
- pos: 15.5,68.5
+ pos: 60.5,82.5
parent: 2
- - uid: 31075
+ - uid: 35671
components:
- type: Transform
- pos: -34.5,58.5
+ pos: 59.5,81.5
parent: 2
- - uid: 31086
+ - uid: 35673
components:
- type: Transform
- pos: -47.5,68.5
+ pos: -101.5,56.5
parent: 2
- - uid: 31099
+ - uid: 35676
components:
- type: Transform
- pos: -49.5,69.5
+ pos: 55.5,79.5
parent: 2
- - uid: 31100
+ - uid: 35681
components:
- type: Transform
- pos: -48.5,71.5
+ pos: 59.5,76.5
parent: 2
- - uid: 31102
+ - uid: 35682
components:
- type: Transform
- pos: -49.5,70.5
+ pos: 59.5,77.5
parent: 2
- - uid: 31103
+ - uid: 35685
components:
- type: Transform
- pos: -49.5,71.5
+ pos: 63.5,86.5
parent: 2
- - uid: 31121
+ - uid: 35686
components:
- type: Transform
- pos: 6.5,67.5
+ pos: 64.5,86.5
parent: 2
- - uid: 31215
+ - uid: 35687
components:
- type: Transform
- pos: -108.5,61.5
+ pos: 65.5,86.5
parent: 2
- - uid: 31216
+ - uid: 35689
components:
- type: Transform
- pos: -109.5,61.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,75.5
parent: 2
- - uid: 31217
+ - uid: 35690
components:
- type: Transform
- pos: -98.5,59.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,67.5
parent: 2
- - uid: 31218
+ - uid: 35691
components:
- type: Transform
- pos: -93.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,66.5
parent: 2
- - uid: 31221
+ - uid: 35692
components:
- type: Transform
- pos: -97.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,60.5
parent: 2
- - uid: 31224
+ - uid: 35693
components:
- type: Transform
- pos: -92.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 59.5,68.5
parent: 2
- - uid: 31225
+ - uid: 35694
components:
- type: Transform
- pos: -93.5,56.5
+ rot: 3.141592653589793 rad
+ pos: 55.5,61.5
parent: 2
- - uid: 31226
+ - uid: 35699
components:
- type: Transform
- pos: -98.5,57.5
+ pos: 81.5,86.5
parent: 2
- - uid: 31227
+ - uid: 35880
components:
- type: Transform
- pos: -98.5,56.5
+ pos: 69.5,86.5
parent: 2
- - uid: 31251
+ - uid: 35881
components:
- type: Transform
- pos: -48.5,74.5
+ pos: -108.5,57.5
parent: 2
- - uid: 31274
+ - uid: 35899
components:
- type: Transform
- pos: -52.5,68.5
+ pos: 98.5,61.5
parent: 2
- - uid: 31275
+ - uid: 35905
components:
- type: Transform
- pos: -52.5,71.5
+ pos: 98.5,60.5
parent: 2
- - uid: 31277
+ - uid: 35908
components:
- type: Transform
- pos: -39.5,74.5
+ rot: 3.141592653589793 rad
+ pos: 75.5,83.5
parent: 2
- - uid: 31310
+ - uid: 35911
components:
- type: Transform
- pos: -103.5,41.5
+ pos: 74.5,86.5
parent: 2
- - uid: 31311
+ - uid: 35913
components:
- type: Transform
- pos: -102.5,43.5
+ pos: 77.5,86.5
parent: 2
- - uid: 31312
+ - uid: 35943
components:
- type: Transform
- pos: -101.5,43.5
+ pos: 75.5,86.5
parent: 2
- - uid: 31313
+ - uid: 35956
components:
- type: Transform
- pos: -100.5,43.5
+ pos: 79.5,84.5
parent: 2
- - uid: 31314
+ - uid: 35959
components:
- type: Transform
- pos: -106.5,41.5
+ pos: 71.5,84.5
parent: 2
- - uid: 31315
+ - uid: 35960
components:
- type: Transform
- pos: -105.5,41.5
+ pos: 71.5,85.5
parent: 2
- - uid: 31316
+ - uid: 35980
components:
- type: Transform
- pos: -104.5,41.5
+ pos: 79.5,86.5
parent: 2
- - uid: 31317
+ - uid: 35982
components:
- type: Transform
- pos: -107.5,41.5
+ pos: 82.5,86.5
parent: 2
- - uid: 31319
+ - uid: 36231
components:
- type: Transform
- pos: -117.5,61.5
+ pos: -98.5,50.5
parent: 2
- - uid: 31320
+ - uid: 36273
components:
- type: Transform
- pos: -118.5,61.5
+ pos: 76.5,86.5
parent: 2
- - uid: 31321
+ - uid: 36275
components:
- type: Transform
- pos: -114.5,61.5
+ pos: 80.5,86.5
parent: 2
- - uid: 31322
+ - uid: 36400
components:
- type: Transform
- pos: -99.5,43.5
+ pos: 83.5,83.5
parent: 2
- - uid: 31323
+ - uid: 36415
components:
- type: Transform
- pos: -122.5,49.5
+ pos: -104.5,41.5
parent: 2
- - uid: 31324
+ - uid: 36569
components:
- type: Transform
- pos: -98.5,43.5
+ pos: 83.5,85.5
parent: 2
- - uid: 31326
+ - uid: 36570
components:
- type: Transform
- pos: -116.5,61.5
+ pos: 83.5,86.5
parent: 2
- - uid: 31327
+ - uid: 36571
components:
- type: Transform
- pos: -129.5,55.5
+ pos: 83.5,84.5
parent: 2
- - uid: 31463
+ - uid: 36790
components:
- type: Transform
- pos: 12.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 73.5,67.5
parent: 2
- - uid: 31614
+ - uid: 36791
components:
- type: Transform
- pos: 81.5,73.5
+ rot: 3.141592653589793 rad
+ pos: 74.5,67.5
parent: 2
- - uid: 31615
+ - uid: 36797
components:
- type: Transform
- pos: 85.5,73.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,70.5
parent: 2
- - uid: 31631
+ - uid: 36803
components:
- type: Transform
- pos: 84.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,67.5
parent: 2
- - uid: 31716
+ - uid: 36810
components:
- type: Transform
- pos: -21.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 76.5,75.5
parent: 2
- - uid: 31717
+ - uid: 36852
components:
- type: Transform
- pos: -15.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,69.5
parent: 2
- - uid: 31996
+ - uid: 36894
components:
- type: Transform
- pos: -37.5,-38.5
+ pos: 111.5,-14.5
parent: 2
- - uid: 32118
+ - uid: 38231
components:
- type: Transform
- pos: -121.5,61.5
+ pos: -104.5,42.5
parent: 2
- - uid: 32201
+ - uid: 38232
components:
- type: Transform
- pos: -122.5,57.5
+ pos: -104.5,45.5
parent: 2
- - uid: 32202
+ - uid: 38256
components:
- type: Transform
- pos: -122.5,56.5
+ pos: -108.5,41.5
parent: 2
- - uid: 32203
+ - uid: 38257
components:
- type: Transform
- pos: -122.5,55.5
+ pos: -108.5,40.5
parent: 2
- - uid: 32204
+ - uid: 38258
components:
- type: Transform
- pos: -122.5,54.5
+ pos: -108.5,39.5
parent: 2
- - uid: 32205
+ - uid: 38326
components:
- type: Transform
- pos: -122.5,53.5
+ pos: -95.5,54.5
parent: 2
- - uid: 32206
+ - uid: 38345
components:
- type: Transform
- pos: -97.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -112.5,54.5
parent: 2
- - uid: 32207
+ - uid: 38348
components:
- type: Transform
- pos: -97.5,58.5
+ rot: 1.5707963267948966 rad
+ pos: -115.5,54.5
parent: 2
- - uid: 32208
+ - uid: 38349
components:
- type: Transform
- pos: -97.5,59.5
+ rot: 1.5707963267948966 rad
+ pos: -114.5,54.5
parent: 2
- - uid: 32335
+ - uid: 38367
components:
- type: Transform
- pos: -97.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -118.5,54.5
parent: 2
- - uid: 32351
+ - uid: 38384
components:
- type: Transform
- pos: -129.5,55.5
+ rot: 1.5707963267948966 rad
+ pos: -115.5,50.5
parent: 2
- - uid: 32432
+ - uid: 38403
components:
- type: Transform
- pos: 82.5,69.5
+ rot: 1.5707963267948966 rad
+ pos: -117.5,50.5
parent: 2
- - uid: 33649
+ - uid: 38414
components:
- type: Transform
- pos: -34.5,65.5
+ rot: 1.5707963267948966 rad
+ pos: -116.5,50.5
parent: 2
- - uid: 33654
+ - uid: 38468
components:
- type: Transform
- pos: -34.5,66.5
+ rot: 1.5707963267948966 rad
+ pos: -120.5,54.5
parent: 2
- - uid: 36140
+ - uid: 38500
components:
- type: Transform
- pos: -10.5,65.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,50.5
parent: 2
-- proto: WallReinforcedDiagonal
- entities:
- - uid: 22062
+ - uid: 38502
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 70.5,8.5
+ pos: -125.5,50.5
parent: 2
- - uid: 27514
+ - uid: 38503
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -123.5,50.5
parent: 2
- - uid: 27638
+ - uid: 38504
components:
- type: Transform
- pos: 69.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -123.5,54.5
parent: 2
- - uid: 31011
+ - uid: 38509
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,5.5
+ rot: 3.141592653589793 rad
+ pos: -121.5,50.5
parent: 2
-- proto: WallSolid
- entities:
- - uid: 3
+ - uid: 38510
components:
- type: Transform
- pos: -4.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -126.5,54.5
parent: 2
- - uid: 6
+ - uid: 38511
components:
- type: Transform
- pos: -1.5,15.5
+ rot: 3.141592653589793 rad
+ pos: -124.5,50.5
parent: 2
- - uid: 7
+ - uid: 38513
components:
- type: Transform
- pos: 7.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -122.5,54.5
parent: 2
- - uid: 10
+ - uid: 38521
components:
- type: Transform
- pos: 4.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -125.5,54.5
parent: 2
- - uid: 12
+ - uid: 38548
components:
- type: Transform
- pos: 3.5,8.5
+ pos: -108.5,61.5
parent: 2
- - uid: 14
+ - uid: 38569
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -108.5,62.5
parent: 2
- - uid: 16
+ - uid: 38598
components:
- type: Transform
- pos: -1.5,9.5
+ pos: -96.5,54.5
parent: 2
- - uid: 19
+- proto: WallSolid
+ entities:
+ - uid: 6
components:
- type: Transform
- pos: 14.5,17.5
+ pos: -1.5,15.5
parent: 2
- - uid: 20
+ - uid: 7
components:
- type: Transform
- pos: 15.5,17.5
+ pos: 7.5,-3.5
parent: 2
- - uid: 21
+ - uid: 10
components:
- type: Transform
- pos: 18.5,17.5
+ pos: 4.5,-3.5
parent: 2
- - uid: 23
+ - uid: 12
components:
- type: Transform
- pos: 16.5,17.5
+ pos: 3.5,8.5
parent: 2
- - uid: 24
+ - uid: 16
components:
- type: Transform
- pos: 17.5,17.5
+ pos: -1.5,9.5
parent: 2
- uid: 25
components:
- type: Transform
pos: -0.5,8.5
parent: 2
- - uid: 27
- components:
- - type: Transform
- pos: 8.5,-22.5
- parent: 2
- uid: 30
components:
- type: Transform
pos: -9.5,4.5
parent: 2
- - uid: 32
- components:
- - type: Transform
- pos: -8.5,4.5
- parent: 2
- uid: 33
components:
- type: Transform
@@ -209392,6 +233716,11 @@ entities:
- type: Transform
pos: 31.5,-12.5
parent: 2
+ - uid: 107
+ components:
+ - type: Transform
+ pos: -8.5,0.5
+ parent: 2
- uid: 109
components:
- type: Transform
@@ -209422,16 +233751,6 @@ entities:
- type: Transform
pos: 15.5,-12.5
parent: 2
- - uid: 126
- components:
- - type: Transform
- pos: 4.5,10.5
- parent: 2
- - uid: 128
- components:
- - type: Transform
- pos: 4.5,12.5
- parent: 2
- uid: 129
components:
- type: Transform
@@ -209447,16 +233766,6 @@ entities:
- type: Transform
pos: 7.5,-2.5
parent: 2
- - uid: 133
- components:
- - type: Transform
- pos: 4.5,14.5
- parent: 2
- - uid: 135
- components:
- - type: Transform
- pos: 4.5,16.5
- parent: 2
- uid: 136
components:
- type: Transform
@@ -209482,11 +233791,6 @@ entities:
- type: Transform
pos: 30.5,-12.5
parent: 2
- - uid: 149
- components:
- - type: Transform
- pos: 37.5,-4.5
- parent: 2
- uid: 157
components:
- type: Transform
@@ -209542,11 +233846,6 @@ entities:
- type: Transform
pos: -17.5,-12.5
parent: 2
- - uid: 178
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 2
- uid: 184
components:
- type: Transform
@@ -209562,11 +233861,6 @@ entities:
- type: Transform
pos: 5.5,8.5
parent: 2
- - uid: 188
- components:
- - type: Transform
- pos: 7.5,7.5
- parent: 2
- uid: 189
components:
- type: Transform
@@ -209580,7 +233874,7 @@ entities:
- uid: 191
components:
- type: Transform
- pos: 7.5,6.5
+ pos: -6.5,-3.5
parent: 2
- uid: 194
components:
@@ -209607,21 +233901,11 @@ entities:
- type: Transform
pos: 37.5,5.5
parent: 2
- - uid: 206
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 2
- uid: 207
components:
- type: Transform
pos: -21.5,17.5
parent: 2
- - uid: 209
- components:
- - type: Transform
- pos: 37.5,2.5
- parent: 2
- uid: 210
components:
- type: Transform
@@ -209687,31 +233971,11 @@ entities:
- type: Transform
pos: 7.5,4.5
parent: 2
- - uid: 241
- components:
- - type: Transform
- pos: 28.5,8.5
- parent: 2
- - uid: 242
- components:
- - type: Transform
- pos: 27.5,8.5
- parent: 2
- - uid: 252
- components:
- - type: Transform
- pos: 20.5,17.5
- parent: 2
- uid: 254
components:
- type: Transform
pos: 21.5,17.5
parent: 2
- - uid: 255
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 2
- uid: 256
components:
- type: Transform
@@ -209732,11 +233996,6 @@ entities:
- type: Transform
pos: -12.5,6.5
parent: 2
- - uid: 262
- components:
- - type: Transform
- pos: -9.5,0.5
- parent: 2
- uid: 263
components:
- type: Transform
@@ -209745,12 +234004,8 @@ entities:
- uid: 270
components:
- type: Transform
- pos: -8.5,0.5
- parent: 2
- - uid: 271
- components:
- - type: Transform
- pos: -23.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -35.5,-36.5
parent: 2
- uid: 272
components:
@@ -209777,21 +234032,11 @@ entities:
- type: Transform
pos: -25.5,-12.5
parent: 2
- - uid: 280
- components:
- - type: Transform
- pos: -24.5,-12.5
- parent: 2
- uid: 282
components:
- type: Transform
pos: -18.5,0.5
parent: 2
- - uid: 283
- components:
- - type: Transform
- pos: 37.5,6.5
- parent: 2
- uid: 285
components:
- type: Transform
@@ -209931,17 +234176,14 @@ entities:
- uid: 335
components:
- type: Transform
- pos: -30.5,4.5
- parent: 2
- - uid: 338
- components:
- - type: Transform
- pos: -29.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,3.5
parent: 2
- - uid: 341
+ - uid: 349
components:
- type: Transform
- pos: -30.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,25.5
parent: 2
- uid: 351
components:
@@ -210036,15 +234278,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-4.5
parent: 2
- - uid: 376
- components:
- - type: Transform
- pos: -30.5,1.5
- parent: 2
- - uid: 377
+ - uid: 375
components:
- type: Transform
- pos: -30.5,3.5
+ pos: -8.5,56.5
parent: 2
- uid: 382
components:
@@ -210106,6 +234343,11 @@ entities:
- type: Transform
pos: -30.5,15.5
parent: 2
+ - uid: 435
+ components:
+ - type: Transform
+ pos: -16.5,-36.5
+ parent: 2
- uid: 439
components:
- type: Transform
@@ -210311,21 +234553,11 @@ entities:
- type: Transform
pos: -25.5,11.5
parent: 2
- - uid: 554
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 2
- uid: 557
components:
- type: Transform
pos: 26.5,-13.5
parent: 2
- - uid: 559
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 2
- uid: 560
components:
- type: Transform
@@ -210346,60 +234578,11 @@ entities:
- type: Transform
pos: -14.5,-6.5
parent: 2
- - uid: 589
- components:
- - type: Transform
- pos: -23.5,-6.5
- parent: 2
- - uid: 626
- components:
- - type: Transform
- pos: -24.5,-7.5
- parent: 2
- - uid: 627
- components:
- - type: Transform
- pos: -24.5,-8.5
- parent: 2
- - uid: 628
- components:
- - type: Transform
- pos: -24.5,-9.5
- parent: 2
- - uid: 629
- components:
- - type: Transform
- pos: -24.5,-10.5
- parent: 2
- - uid: 630
- components:
- - type: Transform
- pos: -24.5,-11.5
- parent: 2
- - uid: 631
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 2
- - uid: 632
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 2
- - uid: 633
- components:
- - type: Transform
- pos: -18.5,-9.5
- parent: 2
- - uid: 634
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 2
- - uid: 635
+ - uid: 708
components:
- type: Transform
- pos: -18.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-38.5
parent: 2
- uid: 711
components:
@@ -210476,56 +234659,11 @@ entities:
- type: Transform
pos: -8.5,-39.5
parent: 2
- - uid: 751
- components:
- - type: Transform
- pos: 5.5,-17.5
- parent: 2
- - uid: 752
- components:
- - type: Transform
- pos: 6.5,-17.5
- parent: 2
- - uid: 753
- components:
- - type: Transform
- pos: 12.5,-33.5
- parent: 2
- - uid: 755
- components:
- - type: Transform
- pos: 12.5,-30.5
- parent: 2
- - uid: 756
- components:
- - type: Transform
- pos: 12.5,-31.5
- parent: 2
- uid: 762
components:
- type: Transform
pos: -9.5,-17.5
parent: 2
- - uid: 770
- components:
- - type: Transform
- pos: 34.5,-17.5
- parent: 2
- - uid: 782
- components:
- - type: Transform
- pos: 26.5,17.5
- parent: 2
- - uid: 783
- components:
- - type: Transform
- pos: 27.5,17.5
- parent: 2
- - uid: 784
- components:
- - type: Transform
- pos: 28.5,17.5
- parent: 2
- uid: 785
components:
- type: Transform
@@ -210561,11 +234699,6 @@ entities:
- type: Transform
pos: -0.5,-19.5
parent: 2
- - uid: 830
- components:
- - type: Transform
- pos: 3.5,-19.5
- parent: 2
- uid: 833
components:
- type: Transform
@@ -210621,6820 +234754,7852 @@ entities:
- type: Transform
pos: -9.5,15.5
parent: 2
- - uid: 875
+ - uid: 876
components:
- type: Transform
- pos: 26.5,8.5
+ pos: 22.5,-10.5
parent: 2
- - uid: 876
+ - uid: 877
components:
- type: Transform
- pos: 22.5,-10.5
+ pos: 22.5,-9.5
+ parent: 2
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 22.5,-8.5
+ parent: 2
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 37.5,7.5
+ parent: 2
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 37.5,0.5
+ parent: 2
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 15.5,4.5
+ parent: 2
+ - uid: 895
+ components:
+ - type: Transform
+ pos: 11.5,17.5
+ parent: 2
+ - uid: 896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,11.5
+ parent: 2
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 37.5,-2.5
+ parent: 2
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 37.5,-0.5
+ parent: 2
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 25.5,-3.5
+ parent: 2
+ - uid: 906
+ components:
+ - type: Transform
+ pos: 22.5,-4.5
+ parent: 2
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 22.5,-5.5
+ parent: 2
+ - uid: 908
+ components:
+ - type: Transform
+ pos: 22.5,-6.5
+ parent: 2
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 22.5,-7.5
+ parent: 2
+ - uid: 912
+ components:
+ - type: Transform
+ pos: 14.5,-7.5
+ parent: 2
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 14.5,-8.5
+ parent: 2
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 14.5,-9.5
+ parent: 2
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 22.5,-11.5
+ parent: 2
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 35.5,17.5
+ parent: 2
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 36.5,17.5
+ parent: 2
+ - uid: 944
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 2
+ - uid: 945
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 2
+ - uid: 946
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 2
+ - uid: 947
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 2
+ - uid: 948
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 2
+ - uid: 949
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 2
+ - uid: 951
+ components:
+ - type: Transform
+ pos: 46.5,17.5
+ parent: 2
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 32.5,8.5
+ parent: 2
+ - uid: 953
+ components:
+ - type: Transform
+ pos: 32.5,7.5
+ parent: 2
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 32.5,5.5
+ parent: 2
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 32.5,4.5
+ parent: 2
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 33.5,8.5
+ parent: 2
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 34.5,8.5
+ parent: 2
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 35.5,8.5
+ parent: 2
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 35.5,9.5
+ parent: 2
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 35.5,10.5
+ parent: 2
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 35.5,13.5
+ parent: 2
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 35.5,14.5
+ parent: 2
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 35.5,15.5
+ parent: 2
+ - uid: 967
+ components:
+ - type: Transform
+ pos: 35.5,16.5
+ parent: 2
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 32.5,1.5
+ parent: 2
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 32.5,0.5
+ parent: 2
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 32.5,-0.5
+ parent: 2
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 34.5,0.5
+ parent: 2
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 32.5,-2.5
+ parent: 2
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 32.5,-3.5
+ parent: 2
+ - uid: 976
+ components:
+ - type: Transform
+ pos: 33.5,-3.5
+ parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 34.5,-3.5
+ parent: 2
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 35.5,-3.5
+ parent: 2
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 37.5,4.5
+ parent: 2
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 37.5,8.5
+ parent: 2
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 14.5,-10.5
+ parent: 2
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 14.5,-11.5
+ parent: 2
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 19.5,4.5
+ parent: 2
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 21.5,4.5
+ parent: 2
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 12.5,1.5
+ parent: 2
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 25.5,-0.5
+ parent: 2
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 14.5,-4.5
+ parent: 2
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 18.5,-6.5
+ parent: 2
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 36.5,-3.5
+ parent: 2
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 17.5,4.5
+ parent: 2
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 13.5,-3.5
+ parent: 2
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 11.5,4.5
+ parent: 2
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 27.5,-0.5
+ parent: 2
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 26.5,-0.5
+ parent: 2
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 14.5,-6.5
+ parent: 2
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 11.5,-2.5
+ parent: 2
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 11.5,-3.5
+ parent: 2
+ - uid: 1055
+ components:
+ - type: Transform
+ pos: 12.5,-3.5
+ parent: 2
+ - uid: 1058
+ components:
+ - type: Transform
+ pos: 18.5,4.5
+ parent: 2
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 28.5,-3.5
+ parent: 2
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 29.5,-3.5
+ parent: 2
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 37.5,-3.5
+ parent: 2
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 28.5,-0.5
+ parent: 2
+ - uid: 1075
+ components:
+ - type: Transform
+ pos: 33.5,0.5
+ parent: 2
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 35.5,0.5
+ parent: 2
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 2
+ - uid: 1123
+ components:
+ - type: Transform
+ pos: -55.5,-30.5
+ parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 21.5,-6.5
+ parent: 2
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 29.5,-2.5
+ parent: 2
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 2
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 2
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 18.5,0.5
+ parent: 2
+ - uid: 1265
+ components:
+ - type: Transform
+ pos: 18.5,-0.5
+ parent: 2
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 22.5,-0.5
+ parent: 2
+ - uid: 1268
+ components:
+ - type: Transform
+ pos: 31.5,8.5
+ parent: 2
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 29.5,8.5
+ parent: 2
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 30.5,8.5
+ parent: 2
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: 23.5,-0.5
+ parent: 2
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 11.5,1.5
+ parent: 2
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 31.5,14.5
+ parent: 2
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 24.5,-0.5
+ parent: 2
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 29.5,-0.5
+ parent: 2
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 29.5,3.5
+ parent: 2
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 29.5,4.5
+ parent: 2
+ - uid: 1321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-35.5
+ parent: 2
+ - uid: 1322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-36.5
+ parent: 2
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 30.5,14.5
+ parent: 2
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 34.5,14.5
+ parent: 2
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 19.5,-0.5
+ parent: 2
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 28.5,4.5
+ parent: 2
+ - uid: 1472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,14.5
+ parent: 2
+ - uid: 1479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,10.5
+ parent: 2
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 21.5,8.5
+ parent: 2
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 20.5,8.5
+ parent: 2
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: -30.5,12.5
+ parent: 2
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: -58.5,-30.5
+ parent: 2
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: -56.5,-32.5
+ parent: 2
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: -60.5,-30.5
+ parent: 2
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -12.5,10.5
+ parent: 2
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: -5.5,16.5
+ parent: 2
+ - uid: 1625
+ components:
+ - type: Transform
+ pos: -5.5,15.5
+ parent: 2
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 17.5,0.5
+ parent: 2
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 1686
+ components:
+ - type: Transform
+ pos: -13.5,11.5
+ parent: 2
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: -60.5,-29.5
+ parent: 2
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: -59.5,-30.5
+ parent: 2
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 1742
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: 70.5,-20.5
+ parent: 2
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: 3.5,24.5
+ parent: 2
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 3.5,32.5
+ parent: 2
+ - uid: 1850
+ components:
+ - type: Transform
+ pos: -0.5,29.5
+ parent: 2
+ - uid: 1852
+ components:
+ - type: Transform
+ pos: -0.5,31.5
+ parent: 2
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: -0.5,32.5
+ parent: 2
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: -0.5,33.5
+ parent: 2
+ - uid: 1855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -49.5,-36.5
+ parent: 2
+ - uid: 1856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-36.5
+ parent: 2
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: 14.5,23.5
+ parent: 2
+ - uid: 1923
+ components:
+ - type: Transform
+ pos: 10.5,30.5
+ parent: 2
+ - uid: 1941
+ components:
+ - type: Transform
+ pos: 10.5,27.5
+ parent: 2
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 10.5,28.5
+ parent: 2
+ - uid: 2026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-25.5
+ parent: 2
+ - uid: 2027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -44.5,-36.5
+ parent: 2
+ - uid: 2039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,17.5
+ parent: 2
+ - uid: 2107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-36.5
+ parent: 2
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 29.5,0.5
+ parent: 2
+ - uid: 2162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-36.5
+ parent: 2
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 47.5,30.5
+ parent: 2
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: -2.5,57.5
+ parent: 2
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 30.5,22.5
+ parent: 2
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 25.5,23.5
+ parent: 2
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 2
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 25.5,25.5
+ parent: 2
+ - uid: 2213
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 2
+ - uid: 2215
+ components:
+ - type: Transform
+ pos: 25.5,28.5
parent: 2
- - uid: 877
+ - uid: 2216
components:
- type: Transform
- pos: 22.5,-9.5
+ pos: 25.5,29.5
parent: 2
- - uid: 878
+ - uid: 2217
components:
- type: Transform
- pos: 22.5,-8.5
+ pos: 25.5,30.5
parent: 2
- - uid: 879
+ - uid: 2218
components:
- type: Transform
- pos: 22.5,8.5
+ pos: 25.5,31.5
parent: 2
- - uid: 880
+ - uid: 2224
components:
- type: Transform
- pos: 24.5,8.5
+ pos: 40.5,22.5
parent: 2
- - uid: 881
+ - uid: 2228
components:
- type: Transform
- pos: 23.5,8.5
+ pos: 42.5,22.5
parent: 2
- - uid: 884
+ - uid: 2230
components:
- type: Transform
- pos: 37.5,7.5
+ pos: 41.5,41.5
parent: 2
- - uid: 885
+ - uid: 2244
components:
- type: Transform
- pos: 37.5,0.5
+ pos: 45.5,-20.5
parent: 2
- - uid: 887
+ - uid: 2253
components:
- type: Transform
- pos: 15.5,4.5
+ pos: 47.5,-19.5
parent: 2
- - uid: 889
+ - uid: 2263
components:
- type: Transform
- pos: 22.5,16.5
+ pos: 52.5,2.5
parent: 2
- - uid: 891
+ - uid: 2264
components:
- type: Transform
- pos: 22.5,14.5
+ pos: 51.5,5.5
parent: 2
- - uid: 892
+ - uid: 2265
components:
- type: Transform
- pos: 22.5,12.5
+ pos: 51.5,8.5
parent: 2
- - uid: 893
+ - uid: 2267
components:
- type: Transform
- pos: 22.5,10.5
+ pos: 51.5,6.5
parent: 2
- - uid: 894
+ - uid: 2268
components:
- type: Transform
- pos: 22.5,15.5
+ pos: 51.5,9.5
parent: 2
- - uid: 895
+ - uid: 2270
components:
- type: Transform
- pos: 22.5,13.5
+ pos: 51.5,7.5
parent: 2
- - uid: 896
+ - uid: 2271
components:
- type: Transform
- pos: 22.5,11.5
+ pos: 51.5,10.5
parent: 2
- - uid: 897
+ - uid: 2278
components:
- type: Transform
- pos: 22.5,9.5
+ pos: 51.5,15.5
parent: 2
- - uid: 899
+ - uid: 2281
components:
- type: Transform
- pos: 37.5,-2.5
+ pos: 48.5,-18.5
parent: 2
- - uid: 900
+ - uid: 2284
components:
- type: Transform
- pos: 37.5,-0.5
+ pos: 40.5,45.5
parent: 2
- - uid: 903
+ - uid: 2292
components:
- type: Transform
- pos: 25.5,-3.5
+ pos: -31.5,-3.5
parent: 2
- - uid: 906
+ - uid: 2295
components:
- type: Transform
- pos: 22.5,-4.5
+ pos: -32.5,-3.5
parent: 2
- - uid: 907
+ - uid: 2311
components:
- type: Transform
- pos: 22.5,-5.5
+ pos: -55.5,-4.5
parent: 2
- - uid: 908
+ - uid: 2312
components:
- type: Transform
- pos: 22.5,-6.5
+ pos: -34.5,-34.5
parent: 2
- - uid: 909
+ - uid: 2328
components:
- type: Transform
- pos: 22.5,-7.5
+ pos: -34.5,-35.5
parent: 2
- - uid: 912
+ - uid: 2332
components:
- type: Transform
- pos: 14.5,-7.5
+ pos: 52.5,1.5
parent: 2
- - uid: 913
+ - uid: 2344
components:
- type: Transform
- pos: 14.5,-8.5
+ pos: -55.5,-0.5
parent: 2
- - uid: 914
+ - uid: 2345
components:
- type: Transform
- pos: 8.5,-13.5
+ pos: -63.5,1.5
parent: 2
- - uid: 924
+ - uid: 2347
components:
- type: Transform
- pos: 12.5,8.5
+ pos: -60.5,-13.5
parent: 2
- - uid: 925
+ - uid: 2349
components:
- type: Transform
- pos: 14.5,-9.5
+ pos: -60.5,-17.5
parent: 2
- - uid: 936
+ - uid: 2350
components:
- type: Transform
- pos: 22.5,-11.5
+ pos: -60.5,-14.5
parent: 2
- - uid: 937
+ - uid: 2351
components:
- type: Transform
- pos: 35.5,17.5
+ pos: -60.5,-16.5
parent: 2
- - uid: 938
+ - uid: 2352
components:
- type: Transform
- pos: 36.5,17.5
+ pos: -60.5,-18.5
parent: 2
- - uid: 944
+ - uid: 2370
components:
- type: Transform
- pos: -0.5,-21.5
+ pos: -55.5,1.5
parent: 2
- - uid: 945
+ - uid: 2374
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: 27.5,-22.5
parent: 2
- - uid: 946
+ - uid: 2388
components:
- type: Transform
- pos: -0.5,-23.5
+ pos: 52.5,-8.5
parent: 2
- - uid: 947
+ - uid: 2403
components:
- type: Transform
- pos: -0.5,-22.5
+ pos: -34.5,22.5
parent: 2
- - uid: 948
+ - uid: 2425
components:
- type: Transform
- pos: -0.5,-25.5
+ pos: -50.5,-4.5
parent: 2
- - uid: 949
+ - uid: 2426
components:
- type: Transform
- pos: -0.5,-24.5
+ pos: -46.5,10.5
parent: 2
- - uid: 950
+ - uid: 2429
components:
- type: Transform
- pos: 3.5,-20.5
+ pos: -38.5,25.5
parent: 2
- - uid: 951
+ - uid: 2438
components:
- type: Transform
- pos: 46.5,17.5
+ pos: -49.5,-4.5
parent: 2
- - uid: 952
+ - uid: 2442
components:
- type: Transform
- pos: 32.5,8.5
+ pos: -48.5,-3.5
parent: 2
- - uid: 953
+ - uid: 2443
components:
- type: Transform
- pos: 32.5,7.5
+ pos: -48.5,-4.5
parent: 2
- - uid: 954
+ - uid: 2444
components:
- type: Transform
- pos: 34.5,4.5
+ pos: -48.5,-1.5
parent: 2
- - uid: 955
+ - uid: 2445
components:
- type: Transform
- pos: 32.5,5.5
+ pos: -0.5,-26.5
parent: 2
- - uid: 956
+ - uid: 2446
components:
- type: Transform
- pos: 32.5,4.5
+ pos: -0.5,-27.5
parent: 2
- - uid: 957
+ - uid: 2447
components:
- type: Transform
- pos: 33.5,8.5
+ pos: -48.5,-2.5
parent: 2
- - uid: 958
+ - uid: 2448
components:
- type: Transform
- pos: 34.5,8.5
+ pos: -0.5,-29.5
parent: 2
- - uid: 959
+ - uid: 2449
components:
- type: Transform
- pos: 35.5,8.5
+ pos: -0.5,-30.5
parent: 2
- - uid: 960
+ - uid: 2451
components:
- type: Transform
- pos: 35.5,9.5
+ pos: -48.5,-0.5
parent: 2
- - uid: 961
+ - uid: 2459
components:
- type: Transform
- pos: 35.5,10.5
+ pos: 3.5,-30.5
parent: 2
- - uid: 963
+ - uid: 2469
components:
- type: Transform
- pos: 35.5,12.5
+ pos: -1.5,-30.5
parent: 2
- - uid: 964
+ - uid: 2473
components:
- type: Transform
- pos: 35.5,13.5
+ pos: -2.5,-30.5
parent: 2
- - uid: 965
+ - uid: 2475
components:
- type: Transform
- pos: 35.5,14.5
+ pos: -5.5,-34.5
parent: 2
- - uid: 966
+ - uid: 2476
components:
- type: Transform
- pos: 35.5,15.5
+ pos: 4.5,-30.5
parent: 2
- - uid: 967
+ - uid: 2477
components:
- type: Transform
- pos: 35.5,16.5
+ pos: 5.5,-30.5
parent: 2
- - uid: 970
+ - uid: 2478
components:
- type: Transform
- pos: 32.5,1.5
+ pos: 6.5,-30.5
parent: 2
- - uid: 971
+ - uid: 2479
components:
- type: Transform
- pos: 32.5,0.5
+ pos: 7.5,-30.5
parent: 2
- - uid: 972
+ - uid: 2486
components:
- type: Transform
- pos: 32.5,-0.5
+ pos: 8.5,-38.5
parent: 2
- - uid: 973
+ - uid: 2488
components:
- type: Transform
- pos: 34.5,0.5
+ pos: 8.5,-36.5
parent: 2
- - uid: 974
+ - uid: 2489
components:
- type: Transform
- pos: 32.5,-2.5
+ pos: 8.5,-35.5
parent: 2
- - uid: 975
+ - uid: 2490
components:
- type: Transform
- pos: 32.5,-3.5
+ pos: 8.5,-34.5
parent: 2
- - uid: 976
+ - uid: 2491
components:
- type: Transform
- pos: 33.5,-3.5
+ pos: 8.5,-33.5
parent: 2
- - uid: 977
+ - uid: 2492
components:
- type: Transform
- pos: 34.5,-3.5
+ pos: 8.5,-32.5
parent: 2
- - uid: 978
+ - uid: 2493
components:
- type: Transform
- pos: 35.5,-3.5
+ pos: 8.5,-31.5
parent: 2
- - uid: 995
+ - uid: 2494
components:
- type: Transform
- pos: 37.5,4.5
+ pos: 8.5,-30.5
parent: 2
- - uid: 996
+ - uid: 2497
components:
- type: Transform
- pos: 37.5,8.5
+ pos: -5.5,-38.5
parent: 2
- - uid: 1005
+ - uid: 2503
components:
- type: Transform
- pos: 14.5,-10.5
+ pos: -5.5,-36.5
parent: 2
- - uid: 1007
+ - uid: 2504
components:
- type: Transform
- pos: 14.5,-11.5
+ pos: -5.5,-35.5
parent: 2
- - uid: 1016
+ - uid: 2506
components:
- type: Transform
- pos: 19.5,4.5
+ pos: -5.5,-33.5
parent: 2
- - uid: 1017
+ - uid: 2507
components:
- type: Transform
- pos: 21.5,4.5
+ pos: -5.5,-32.5
parent: 2
- - uid: 1022
+ - uid: 2508
components:
- type: Transform
- pos: 12.5,1.5
+ pos: -5.5,-31.5
parent: 2
- - uid: 1023
+ - uid: 2509
components:
- type: Transform
- pos: 25.5,-0.5
+ pos: -5.5,-30.5
parent: 2
- - uid: 1027
+ - uid: 2581
components:
- type: Transform
- pos: 14.5,-4.5
+ pos: 3.5,34.5
parent: 2
- - uid: 1029
+ - uid: 2589
components:
- type: Transform
- pos: 18.5,-6.5
+ pos: 14.5,-14.5
parent: 2
- - uid: 1031
+ - uid: 2597
components:
- type: Transform
- pos: 36.5,-3.5
+ pos: -2.5,-19.5
parent: 2
- - uid: 1033
+ - uid: 2598
components:
- type: Transform
- pos: 17.5,4.5
+ pos: 3.5,37.5
parent: 2
- - uid: 1039
+ - uid: 2627
components:
- type: Transform
- pos: 13.5,-3.5
+ pos: -1.5,53.5
parent: 2
- - uid: 1041
+ - uid: 2664
components:
- type: Transform
- pos: 11.5,4.5
+ pos: 40.5,21.5
parent: 2
- - uid: 1043
+ - uid: 2665
components:
- type: Transform
- pos: 27.5,-0.5
+ pos: -0.5,57.5
parent: 2
- - uid: 1044
+ - uid: 2668
components:
- type: Transform
- pos: 26.5,-0.5
+ pos: -67.5,12.5
parent: 2
- - uid: 1048
+ - uid: 2672
components:
- type: Transform
- pos: 14.5,-6.5
+ pos: -1.5,57.5
parent: 2
- - uid: 1050
+ - uid: 2706
components:
- type: Transform
- pos: 11.5,0.5
+ pos: -70.5,0.5
parent: 2
- - uid: 1051
+ - uid: 2752
components:
- type: Transform
- pos: 11.5,-0.5
+ pos: 6.5,34.5
parent: 2
- - uid: 1052
+ - uid: 2756
components:
- type: Transform
- pos: 11.5,-1.5
+ pos: 4.5,34.5
parent: 2
- - uid: 1053
+ - uid: 2825
components:
- type: Transform
- pos: 11.5,-2.5
+ pos: -1.5,50.5
parent: 2
- - uid: 1054
+ - uid: 2830
components:
- type: Transform
- pos: 11.5,-3.5
+ pos: -3.5,-30.5
parent: 2
- - uid: 1055
+ - uid: 2875
components:
- type: Transform
- pos: 12.5,-3.5
+ pos: -9.5,57.5
parent: 2
- - uid: 1056
+ - uid: 2877
components:
- type: Transform
- pos: 11.5,8.5
+ pos: 26.5,31.5
parent: 2
- - uid: 1057
+ - uid: 2878
components:
- type: Transform
- pos: 28.5,4.5
+ pos: 27.5,31.5
parent: 2
- - uid: 1058
+ - uid: 2879
components:
- type: Transform
- pos: 18.5,4.5
+ pos: 28.5,31.5
parent: 2
- - uid: 1062
+ - uid: 2880
components:
- type: Transform
- pos: 28.5,-3.5
+ pos: 29.5,31.5
parent: 2
- - uid: 1063
+ - uid: 2881
components:
- type: Transform
- pos: 29.5,-3.5
+ pos: 30.5,31.5
parent: 2
- - uid: 1064
+ - uid: 2882
components:
- type: Transform
- pos: 37.5,-3.5
+ pos: 31.5,31.5
parent: 2
- - uid: 1067
+ - uid: 2884
components:
- type: Transform
- pos: 28.5,-0.5
+ pos: 33.5,31.5
parent: 2
- - uid: 1071
+ - uid: 2885
components:
- type: Transform
- pos: 33.5,4.5
+ pos: 34.5,31.5
parent: 2
- - uid: 1073
+ - uid: 2890
components:
- type: Transform
- pos: 35.5,4.5
+ pos: 30.5,25.5
parent: 2
- - uid: 1074
+ - uid: 2891
components:
- type: Transform
- pos: 36.5,4.5
+ pos: 33.5,25.5
parent: 2
- - uid: 1075
+ - uid: 2892
components:
- type: Transform
- pos: 33.5,0.5
+ pos: 40.5,31.5
parent: 2
- - uid: 1077
+ - uid: 2894
components:
- type: Transform
- pos: 35.5,0.5
+ pos: 35.5,31.5
parent: 2
- - uid: 1078
+ - uid: 2895
components:
- type: Transform
- pos: 36.5,0.5
+ pos: 36.5,31.5
parent: 2
- - uid: 1151
+ - uid: 2896
components:
- type: Transform
- pos: 21.5,-6.5
+ pos: 37.5,31.5
parent: 2
- - uid: 1179
+ - uid: 2897
components:
- type: Transform
- pos: 29.5,-2.5
+ pos: 38.5,31.5
parent: 2
- - uid: 1222
+ - uid: 2911
components:
- type: Transform
- pos: 67.5,28.5
+ pos: 37.5,45.5
parent: 2
- - uid: 1224
+ - uid: 2921
components:
- type: Transform
- pos: 67.5,29.5
+ pos: -9.5,59.5
parent: 2
- - uid: 1264
+ - uid: 2927
components:
- type: Transform
- pos: 18.5,0.5
+ pos: -5.5,-18.5
parent: 2
- - uid: 1265
+ - uid: 2928
components:
- type: Transform
- pos: 18.5,-0.5
+ pos: -5.5,-19.5
parent: 2
- - uid: 1266
+ - uid: 2929
components:
- type: Transform
- pos: 22.5,-0.5
+ pos: -17.5,-22.5
parent: 2
- - uid: 1268
+ - uid: 2931
components:
- type: Transform
- pos: 31.5,8.5
+ pos: -16.5,-22.5
parent: 2
- - uid: 1269
+ - uid: 2932
components:
- type: Transform
- pos: 29.5,8.5
+ pos: -12.5,-22.5
parent: 2
- - uid: 1270
+ - uid: 2934
components:
- type: Transform
- pos: 30.5,8.5
+ pos: -10.5,-22.5
parent: 2
- - uid: 1278
+ - uid: 2935
components:
- type: Transform
- pos: 13.5,8.5
+ pos: -11.5,-22.5
parent: 2
- - uid: 1280
+ - uid: 2939
components:
- type: Transform
- pos: 23.5,-0.5
+ pos: -5.5,-20.5
parent: 2
- - uid: 1281
+ - uid: 2943
components:
- type: Transform
- pos: 11.5,1.5
+ pos: -5.5,-21.5
parent: 2
- - uid: 1285
+ - uid: 2944
components:
- type: Transform
- pos: 31.5,14.5
+ pos: -3.5,-26.5
parent: 2
- - uid: 1286
+ - uid: 2959
components:
- type: Transform
- pos: 24.5,-0.5
+ pos: -78.5,-5.5
parent: 2
- - uid: 1290
+ - uid: 2972
components:
- type: Transform
- pos: 29.5,-0.5
+ pos: -11.5,-26.5
parent: 2
- - uid: 1299
+ - uid: 2973
components:
- type: Transform
- pos: 29.5,2.5
+ pos: -12.5,-26.5
parent: 2
- - uid: 1300
+ - uid: 2976
components:
- type: Transform
- pos: 29.5,3.5
+ pos: -38.5,-28.5
parent: 2
- - uid: 1301
+ - uid: 2978
components:
- type: Transform
- pos: 29.5,4.5
+ pos: -17.5,-26.5
parent: 2
- - uid: 1306
+ - uid: 2982
components:
- type: Transform
- pos: 23.5,3.5
+ pos: -23.5,-21.5
parent: 2
- - uid: 1307
+ - uid: 2996
components:
- type: Transform
- pos: 23.5,0.5
+ pos: -7.5,-26.5
parent: 2
- - uid: 1341
+ - uid: 2997
components:
- type: Transform
- pos: 30.5,14.5
+ pos: -6.5,-26.5
parent: 2
- - uid: 1343
+ - uid: 2998
components:
- type: Transform
- pos: 34.5,14.5
+ pos: -5.5,-26.5
parent: 2
- - uid: 1349
+ - uid: 2999
components:
- type: Transform
- pos: 28.5,16.5
+ pos: -3.5,-21.5
parent: 2
- - uid: 1350
+ - uid: 3011
components:
- type: Transform
- pos: 28.5,15.5
+ pos: -8.5,-36.5
parent: 2
- - uid: 1351
+ - uid: 3012
components:
- type: Transform
- pos: 28.5,14.5
+ pos: -9.5,-36.5
parent: 2
- - uid: 1356
+ - uid: 3013
components:
- type: Transform
- pos: 29.5,14.5
+ pos: -10.5,-36.5
parent: 2
- - uid: 1416
+ - uid: 3014
components:
- type: Transform
- pos: 19.5,-0.5
+ pos: -11.5,-36.5
parent: 2
- - uid: 1434
+ - uid: 3016
components:
- type: Transform
- pos: 14.5,16.5
+ pos: -8.5,-35.5
parent: 2
- - uid: 1445
+ - uid: 3018
components:
- type: Transform
- pos: 14.5,9.5
+ pos: -8.5,-34.5
parent: 2
- - uid: 1446
+ - uid: 3019
components:
- type: Transform
- pos: 14.5,8.5
+ pos: -8.5,-31.5
parent: 2
- - uid: 1447
+ - uid: 3021
components:
- type: Transform
- pos: 14.5,11.5
+ pos: -8.5,-33.5
parent: 2
- - uid: 1448
+ - uid: 3023
components:
- type: Transform
- pos: 14.5,10.5
+ pos: -8.5,-32.5
parent: 2
- - uid: 1449
+ - uid: 3024
components:
- type: Transform
- pos: 14.5,13.5
+ pos: -5.5,-39.5
parent: 2
- - uid: 1450
+ - uid: 3038
components:
- type: Transform
- pos: 14.5,12.5
+ pos: -14.5,-36.5
parent: 2
- - uid: 1451
+ - uid: 3039
components:
- type: Transform
- pos: 14.5,14.5
+ pos: -13.5,-36.5
parent: 2
- - uid: 1452
+ - uid: 3040
components:
- type: Transform
- pos: 14.5,15.5
+ pos: -12.5,-36.5
parent: 2
- - uid: 1490
+ - uid: 3054
components:
- type: Transform
- pos: 15.5,8.5
+ pos: -31.5,-19.5
parent: 2
- - uid: 1491
+ - uid: 3055
components:
- type: Transform
- pos: 21.5,8.5
+ pos: -31.5,-20.5
parent: 2
- - uid: 1492
+ - uid: 3056
components:
- type: Transform
- pos: 16.5,8.5
+ pos: -31.5,-21.5
parent: 2
- - uid: 1493
+ - uid: 3057
components:
- type: Transform
- pos: 20.5,8.5
+ pos: 37.5,-5.5
parent: 2
- - uid: 1498
+ - uid: 3060
components:
- type: Transform
- pos: 20.5,11.5
+ pos: 37.5,-7.5
parent: 2
- - uid: 1507
+ - uid: 3062
components:
- type: Transform
- pos: 15.5,11.5
+ pos: 37.5,-10.5
parent: 2
- - uid: 1508
+ - uid: 3063
components:
- type: Transform
- pos: 21.5,11.5
+ pos: 37.5,-12.5
parent: 2
- - uid: 1509
+ - uid: 3065
components:
- type: Transform
- pos: 16.5,11.5
+ pos: 36.5,-12.5
parent: 2
- - uid: 1516
+ - uid: 3066
components:
- type: Transform
- pos: -30.5,12.5
+ pos: -52.5,-4.5
parent: 2
- - uid: 1544
+ - uid: 3073
components:
- type: Transform
- pos: -58.5,-30.5
+ pos: 52.5,4.5
parent: 2
- - uid: 1546
+ - uid: 3081
components:
- type: Transform
- pos: -56.5,-32.5
+ pos: -49.5,-9.5
parent: 2
- - uid: 1550
+ - uid: 3082
components:
- type: Transform
- pos: -60.5,-30.5
+ pos: -51.5,-4.5
parent: 2
- - uid: 1586
+ - uid: 3084
components:
- type: Transform
- pos: -12.5,10.5
+ pos: -51.5,-9.5
parent: 2
- - uid: 1598
+ - uid: 3085
components:
- type: Transform
- pos: -5.5,16.5
+ pos: -50.5,-9.5
parent: 2
- - uid: 1625
+ - uid: 3087
components:
- type: Transform
- pos: -5.5,15.5
+ pos: -52.5,-9.5
parent: 2
- - uid: 1659
+ - uid: 3091
components:
- type: Transform
- pos: 17.5,0.5
+ pos: -55.5,-9.5
parent: 2
- - uid: 1684
+ - uid: 3093
components:
- type: Transform
- pos: 8.5,-12.5
+ pos: -48.5,4.5
parent: 2
- - uid: 1686
+ - uid: 3107
components:
- type: Transform
- pos: -13.5,11.5
+ pos: 26.5,-20.5
parent: 2
- - uid: 1697
+ - uid: 3114
components:
- type: Transform
- pos: 7.5,-21.5
+ pos: 12.5,-34.5
parent: 2
- - uid: 1736
+ - uid: 3117
components:
- type: Transform
- pos: -60.5,-29.5
+ pos: -4.5,-26.5
parent: 2
- - uid: 1737
+ - uid: 3124
components:
- type: Transform
- pos: -59.5,-30.5
+ pos: 26.5,-19.5
parent: 2
- - uid: 1738
+ - uid: 3127
components:
- type: Transform
- pos: 5.5,-18.5
+ pos: 27.5,-27.5
parent: 2
- - uid: 1740
+ - uid: 3201
components:
- type: Transform
- pos: 5.5,-19.5
+ pos: -4.5,-21.5
parent: 2
- - uid: 1741
+ - uid: 3202
components:
- type: Transform
- pos: -1.5,-19.5
+ pos: -3.5,-17.5
parent: 2
- - uid: 1742
+ - uid: 3210
components:
- type: Transform
- pos: -2.5,-18.5
+ pos: -2.5,-21.5
parent: 2
- - uid: 1744
+ - uid: 3211
components:
- type: Transform
- pos: 70.5,-20.5
+ pos: -2.5,-26.5
parent: 2
- - uid: 1763
+ - uid: 3212
components:
- type: Transform
- pos: -31.5,8.5
+ pos: -36.5,14.5
parent: 2
- - uid: 1829
+ - uid: 3242
components:
- type: Transform
- pos: 3.5,-22.5
+ pos: 36.5,45.5
parent: 2
- - uid: 1830
+ - uid: 3243
components:
- type: Transform
- pos: 3.5,-23.5
+ pos: 36.5,35.5
parent: 2
- - uid: 1831
+ - uid: 3244
components:
- type: Transform
- pos: 3.5,-24.5
+ pos: 36.5,40.5
parent: 2
- - uid: 1835
+ - uid: 3245
components:
- type: Transform
- pos: 3.5,24.5
+ pos: 36.5,37.5
parent: 2
- - uid: 1844
+ - uid: 3246
components:
- type: Transform
- pos: 3.5,32.5
+ pos: 36.5,34.5
parent: 2
- - uid: 1846
+ - uid: 3247
components:
- type: Transform
- pos: -0.5,25.5
+ pos: 36.5,38.5
parent: 2
- - uid: 1847
+ - uid: 3248
components:
- type: Transform
- pos: -0.5,26.5
+ pos: 36.5,36.5
parent: 2
- - uid: 1848
+ - uid: 3249
components:
- type: Transform
- pos: -0.5,27.5
+ pos: 36.5,39.5
parent: 2
- - uid: 1850
+ - uid: 3250
components:
- type: Transform
- pos: -0.5,29.5
+ pos: 36.5,43.5
parent: 2
- - uid: 1851
+ - uid: 3253
components:
- type: Transform
- pos: -0.5,30.5
+ pos: 36.5,42.5
parent: 2
- - uid: 1852
+ - uid: 3255
components:
- type: Transform
- pos: -0.5,31.5
+ pos: -11.5,-25.5
parent: 2
- - uid: 1853
+ - uid: 3256
components:
- type: Transform
- pos: -0.5,32.5
+ pos: -11.5,-24.5
parent: 2
- - uid: 1854
+ - uid: 3257
components:
- type: Transform
- pos: -0.5,33.5
+ pos: -11.5,-23.5
parent: 2
- - uid: 1855
+ - uid: 3258
components:
- type: Transform
- pos: -32.5,7.5
+ pos: -7.5,-22.5
parent: 2
- - uid: 1856
+ - uid: 3259
components:
- type: Transform
- pos: -32.5,6.5
+ pos: -17.5,-27.5
parent: 2
- - uid: 1885
+ - uid: 3273
components:
- type: Transform
- pos: -32.5,5.5
+ pos: -34.5,-36.5
parent: 2
- - uid: 1895
+ - uid: 3280
components:
- type: Transform
- pos: 14.5,23.5
+ pos: -24.5,-36.5
parent: 2
- - uid: 1904
+ - uid: 3293
components:
- type: Transform
- pos: -31.5,4.5
+ pos: 32.5,-17.5
parent: 2
- - uid: 1923
+ - uid: 3307
components:
- type: Transform
- pos: 10.5,30.5
+ pos: 27.5,-32.5
parent: 2
- - uid: 1941
+ - uid: 3317
components:
- type: Transform
- pos: 10.5,27.5
+ pos: 41.5,-25.5
parent: 2
- - uid: 1942
+ - uid: 3342
components:
- type: Transform
- pos: 10.5,28.5
+ pos: 37.5,-18.5
parent: 2
- - uid: 2178
+ - uid: 3344
components:
- type: Transform
- pos: 16.5,-17.5
+ pos: 40.5,-21.5
parent: 2
- - uid: 2206
+ - uid: 3347
components:
- type: Transform
- pos: 47.5,30.5
+ pos: 36.5,-17.5
parent: 2
- - uid: 2207
+ - uid: 3348
components:
- type: Transform
- pos: -2.5,57.5
+ pos: 40.5,-20.5
parent: 2
- - uid: 2209
+ - uid: 3367
components:
- type: Transform
- pos: 30.5,22.5
+ pos: -24.5,-31.5
parent: 2
- - uid: 2210
+ - uid: 3375
components:
- type: Transform
- pos: 25.5,23.5
+ pos: -24.5,-33.5
parent: 2
- - uid: 2211
+ - uid: 3381
components:
- type: Transform
- pos: 25.5,24.5
+ pos: 48.5,-19.5
parent: 2
- - uid: 2212
+ - uid: 3383
components:
- type: Transform
- pos: 25.5,25.5
+ pos: 48.5,-20.5
parent: 2
- - uid: 2213
+ - uid: 3390
components:
- type: Transform
- pos: 25.5,26.5
+ pos: 37.5,-21.5
parent: 2
- - uid: 2215
+ - uid: 3404
components:
- type: Transform
- pos: 25.5,28.5
+ pos: 32.5,-22.5
parent: 2
- - uid: 2216
+ - uid: 3406
components:
- type: Transform
- pos: 25.5,29.5
+ pos: -24.5,-32.5
parent: 2
- - uid: 2217
+ - uid: 3414
components:
- type: Transform
- pos: 25.5,30.5
+ pos: 37.5,-20.5
parent: 2
- - uid: 2218
+ - uid: 3415
components:
- type: Transform
- pos: 25.5,31.5
+ pos: 40.5,-24.5
parent: 2
- - uid: 2220
+ - uid: 3419
components:
- type: Transform
- pos: 3.5,-25.5
+ pos: -7.5,-28.5
parent: 2
- - uid: 2224
+ - uid: 3420
components:
- type: Transform
- pos: 40.5,22.5
+ pos: 40.5,-27.5
parent: 2
- - uid: 2228
+ - uid: 3421
components:
- type: Transform
- pos: 42.5,22.5
+ pos: 40.5,-25.5
parent: 2
- - uid: 2230
+ - uid: 3422
components:
- type: Transform
- pos: 41.5,41.5
+ pos: -7.5,-29.5
parent: 2
- - uid: 2244
+ - uid: 3430
components:
- type: Transform
- pos: 45.5,-20.5
+ pos: -7.5,-27.5
parent: 2
- - uid: 2253
+ - uid: 3432
components:
- type: Transform
- pos: 47.5,-19.5
+ pos: -24.5,-34.5
parent: 2
- - uid: 2263
+ - uid: 3434
components:
- type: Transform
- pos: 52.5,2.5
+ pos: 33.5,30.5
parent: 2
- - uid: 2264
+ - uid: 3439
components:
- type: Transform
- pos: 51.5,5.5
+ pos: 45.5,-25.5
parent: 2
- - uid: 2265
+ - uid: 3440
components:
- type: Transform
- pos: 51.5,8.5
+ pos: 45.5,-24.5
parent: 2
- - uid: 2267
+ - uid: 3441
components:
- type: Transform
- pos: 51.5,6.5
+ pos: 45.5,-23.5
parent: 2
- - uid: 2268
+ - uid: 3442
components:
- type: Transform
- pos: 51.5,9.5
+ pos: 45.5,-21.5
parent: 2
- - uid: 2270
+ - uid: 3443
components:
- type: Transform
- pos: 51.5,7.5
+ pos: 45.5,-22.5
parent: 2
- - uid: 2271
+ - uid: 3476
components:
- type: Transform
- pos: 51.5,10.5
+ pos: -24.5,-37.5
parent: 2
- - uid: 2278
+ - uid: 3492
components:
- type: Transform
- pos: 51.5,15.5
+ pos: 42.5,-25.5
parent: 2
- - uid: 2281
+ - uid: 3494
components:
- type: Transform
- pos: 48.5,-18.5
+ pos: 44.5,-25.5
parent: 2
- - uid: 2284
+ - uid: 3495
components:
- type: Transform
- pos: 40.5,45.5
+ pos: 43.5,-25.5
parent: 2
- - uid: 2292
+ - uid: 3504
components:
- type: Transform
- pos: -31.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,11.5
parent: 2
- - uid: 2295
+ - uid: 3517
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: 37.5,-22.5
parent: 2
- - uid: 2311
+ - uid: 3526
components:
- type: Transform
- pos: -55.5,-4.5
+ pos: 27.5,-25.5
parent: 2
- - uid: 2312
+ - uid: 3527
components:
- type: Transform
- pos: -34.5,-34.5
+ pos: 27.5,-26.5
parent: 2
- - uid: 2328
+ - uid: 3528
components:
- type: Transform
- pos: -34.5,-35.5
+ pos: 27.5,-23.5
parent: 2
- - uid: 2332
+ - uid: 3529
components:
- type: Transform
- pos: 52.5,1.5
+ pos: 27.5,-24.5
parent: 2
- - uid: 2334
+ - uid: 3554
components:
- type: Transform
- pos: 12.5,-32.5
+ pos: -51.5,-30.5
parent: 2
- - uid: 2344
+ - uid: 3557
components:
- type: Transform
- pos: -55.5,-0.5
+ pos: -51.5,-25.5
parent: 2
- - uid: 2345
+ - uid: 3559
components:
- type: Transform
- pos: -63.5,1.5
+ pos: -52.5,-26.5
parent: 2
- - uid: 2347
+ - uid: 3560
components:
- type: Transform
- pos: -60.5,-13.5
+ pos: -51.5,-26.5
parent: 2
- - uid: 2349
+ - uid: 3563
components:
- type: Transform
- pos: -60.5,-17.5
+ pos: -34.5,-33.5
parent: 2
- - uid: 2350
+ - uid: 3566
components:
- type: Transform
- pos: -60.5,-14.5
+ pos: -34.5,-31.5
parent: 2
- - uid: 2351
+ - uid: 3567
components:
- type: Transform
- pos: -60.5,-16.5
+ pos: -34.5,-30.5
parent: 2
- - uid: 2352
+ - uid: 3569
components:
- type: Transform
- pos: -60.5,-18.5
+ pos: -51.5,-19.5
parent: 2
- - uid: 2370
+ - uid: 3570
components:
- type: Transform
- pos: -55.5,1.5
+ pos: -51.5,-18.5
parent: 2
- - uid: 2374
+ - uid: 3662
components:
- type: Transform
- pos: 27.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,21.5
parent: 2
- - uid: 2386
+ - uid: 3706
components:
- type: Transform
- pos: 26.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,9.5
parent: 2
- - uid: 2388
+ - uid: 3765
components:
- type: Transform
- pos: 52.5,-8.5
+ pos: -43.5,18.5
parent: 2
- - uid: 2399
+ - uid: 3779
components:
- type: Transform
- pos: -37.5,21.5
+ pos: 48.5,-21.5
parent: 2
- - uid: 2400
+ - uid: 3780
components:
- type: Transform
- pos: -36.5,21.5
+ pos: 48.5,-22.5
parent: 2
- - uid: 2401
+ - uid: 3782
components:
- type: Transform
- pos: -35.5,22.5
+ pos: 48.5,-24.5
parent: 2
- - uid: 2403
+ - uid: 3783
components:
- type: Transform
- pos: -34.5,22.5
+ pos: 48.5,-25.5
parent: 2
- - uid: 2404
+ - uid: 3784
components:
- type: Transform
- pos: 12.5,-36.5
+ pos: 48.5,-26.5
parent: 2
- - uid: 2418
+ - uid: 3785
components:
- type: Transform
- pos: 23.5,-25.5
+ pos: 75.5,-19.5
parent: 2
- - uid: 2419
+ - uid: 3820
components:
- type: Transform
- pos: 23.5,-26.5
+ pos: 44.5,22.5
parent: 2
- - uid: 2425
+ - uid: 3823
components:
- type: Transform
- pos: -50.5,-4.5
+ pos: -8.5,-38.5
parent: 2
- - uid: 2426
+ - uid: 3830
components:
- type: Transform
- pos: -46.5,10.5
+ pos: 64.5,26.5
parent: 2
- - uid: 2429
+ - uid: 3842
components:
- type: Transform
- pos: -38.5,25.5
+ pos: 45.5,-19.5
parent: 2
- - uid: 2438
+ - uid: 3855
components:
- type: Transform
- pos: -49.5,-4.5
+ pos: 41.5,38.5
parent: 2
- - uid: 2439
+ - uid: 3856
components:
- type: Transform
- pos: -53.5,-4.5
+ pos: 33.5,27.5
parent: 2
- - uid: 2440
+ - uid: 3863
components:
- type: Transform
- pos: -48.5,-5.5
+ pos: 61.5,-28.5
parent: 2
- - uid: 2441
+ - uid: 3864
components:
- type: Transform
- pos: -48.5,-6.5
+ pos: 62.5,-27.5
parent: 2
- - uid: 2442
+ - uid: 3865
components:
- type: Transform
- pos: -48.5,-3.5
+ pos: 63.5,-26.5
parent: 2
- - uid: 2443
+ - uid: 3866
components:
- type: Transform
- pos: -48.5,-4.5
+ pos: 64.5,-26.5
parent: 2
- - uid: 2444
+ - uid: 3867
components:
- type: Transform
- pos: -48.5,-1.5
+ pos: 65.5,-26.5
parent: 2
- - uid: 2445
+ - uid: 3871
components:
- type: Transform
- pos: -0.5,-26.5
+ pos: 51.5,19.5
parent: 2
- - uid: 2446
+ - uid: 3882
components:
- type: Transform
- pos: -0.5,-27.5
+ pos: 66.5,-25.5
parent: 2
- - uid: 2447
+ - uid: 3883
components:
- type: Transform
- pos: -48.5,-2.5
+ pos: 67.5,-24.5
parent: 2
- - uid: 2448
+ - uid: 3884
components:
- type: Transform
- pos: -0.5,-29.5
+ pos: 68.5,-23.5
parent: 2
- - uid: 2449
+ - uid: 3885
components:
- type: Transform
- pos: -0.5,-30.5
+ pos: 68.5,-22.5
parent: 2
- - uid: 2451
+ - uid: 3887
components:
- type: Transform
- pos: -48.5,-0.5
+ pos: 69.5,-20.5
parent: 2
- - uid: 2455
+ - uid: 3888
components:
- type: Transform
- pos: 3.5,-26.5
+ pos: 70.5,-19.5
parent: 2
- - uid: 2459
+ - uid: 3907
components:
- type: Transform
- pos: 3.5,-30.5
+ pos: -21.5,-3.5
parent: 2
- - uid: 2469
+ - uid: 3911
components:
- type: Transform
- pos: -1.5,-30.5
+ pos: 70.5,-15.5
parent: 2
- - uid: 2473
+ - uid: 3912
components:
- type: Transform
- pos: -2.5,-30.5
+ pos: 72.5,-19.5
parent: 2
- - uid: 2475
+ - uid: 3913
components:
- type: Transform
- pos: -5.5,-34.5
+ pos: 73.5,-19.5
parent: 2
- - uid: 2476
+ - uid: 3914
components:
- type: Transform
- pos: 4.5,-30.5
+ pos: 70.5,-18.5
parent: 2
- - uid: 2477
+ - uid: 3915
components:
- type: Transform
- pos: 5.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,7.5
parent: 2
- - uid: 2478
+ - uid: 3923
components:
- type: Transform
- pos: 6.5,-30.5
+ pos: 52.5,-28.5
parent: 2
- - uid: 2479
+ - uid: 3925
components:
- type: Transform
- pos: 7.5,-30.5
+ pos: 53.5,-28.5
parent: 2
- - uid: 2486
+ - uid: 3929
components:
- type: Transform
- pos: 8.5,-38.5
+ pos: 53.5,-10.5
parent: 2
- - uid: 2488
+ - uid: 3932
components:
- type: Transform
- pos: 8.5,-36.5
+ pos: 75.5,-9.5
parent: 2
- - uid: 2489
+ - uid: 3936
components:
- type: Transform
- pos: 8.5,-35.5
+ pos: 71.5,-19.5
parent: 2
- - uid: 2490
+ - uid: 3937
components:
- type: Transform
- pos: 8.5,-34.5
+ pos: 69.5,-9.5
parent: 2
- - uid: 2491
+ - uid: 3952
components:
- type: Transform
- pos: 8.5,-33.5
+ pos: 33.5,28.5
parent: 2
- - uid: 2492
+ - uid: 3954
components:
- type: Transform
- pos: 8.5,-32.5
+ pos: 36.5,27.5
parent: 2
- - uid: 2493
+ - uid: 3955
components:
- type: Transform
- pos: 8.5,-31.5
+ pos: 39.5,27.5
parent: 2
- - uid: 2494
+ - uid: 3956
components:
- type: Transform
- pos: 8.5,-30.5
+ pos: 37.5,27.5
parent: 2
- - uid: 2497
+ - uid: 3958
components:
- type: Transform
- pos: -5.5,-38.5
+ pos: 41.5,22.5
parent: 2
- - uid: 2503
+ - uid: 3959
components:
- type: Transform
- pos: -5.5,-36.5
+ pos: 40.5,27.5
parent: 2
- - uid: 2504
+ - uid: 3961
components:
- type: Transform
- pos: -5.5,-35.5
+ pos: 41.5,36.5
parent: 2
- - uid: 2506
+ - uid: 3967
components:
- type: Transform
- pos: -5.5,-33.5
+ pos: 33.5,23.5
parent: 2
- - uid: 2507
+ - uid: 3971
components:
- type: Transform
- pos: -5.5,-32.5
+ pos: 50.5,22.5
parent: 2
- - uid: 2508
+ - uid: 3972
components:
- type: Transform
- pos: -5.5,-31.5
+ pos: 33.5,26.5
parent: 2
- - uid: 2509
+ - uid: 3974
components:
- type: Transform
- pos: -5.5,-30.5
+ pos: 32.5,25.5
parent: 2
- - uid: 2581
+ - uid: 3975
components:
- type: Transform
- pos: 3.5,34.5
+ pos: 26.5,25.5
parent: 2
- - uid: 2589
+ - uid: 3978
components:
- type: Transform
- pos: 14.5,-14.5
+ pos: 76.5,-6.5
parent: 2
- - uid: 2592
+ - uid: 3979
components:
- type: Transform
- pos: -0.5,41.5
+ pos: 34.5,27.5
parent: 2
- - uid: 2593
+ - uid: 3982
components:
- type: Transform
- pos: -0.5,42.5
+ pos: 33.5,24.5
parent: 2
- - uid: 2594
+ - uid: 3987
components:
- type: Transform
- pos: -0.5,43.5
+ pos: 32.5,22.5
parent: 2
- - uid: 2596
+ - uid: 4003
components:
- type: Transform
- pos: -0.5,45.5
+ pos: 76.5,-7.5
parent: 2
- - uid: 2597
+ - uid: 4004
components:
- type: Transform
- pos: -2.5,-19.5
+ pos: 75.5,-8.5
parent: 2
- - uid: 2598
+ - uid: 4011
components:
- type: Transform
- pos: 3.5,37.5
+ pos: 41.5,45.5
parent: 2
- - uid: 2601
+ - uid: 4020
components:
- type: Transform
- pos: 3.5,40.5
+ pos: 49.5,22.5
parent: 2
- - uid: 2607
+ - uid: 4024
components:
- type: Transform
- pos: -0.5,46.5
+ pos: 41.5,25.5
parent: 2
- - uid: 2627
+ - uid: 4025
components:
- type: Transform
- pos: -1.5,53.5
+ pos: 41.5,26.5
parent: 2
- - uid: 2664
+ - uid: 4026
components:
- type: Transform
- pos: 40.5,21.5
+ pos: 41.5,24.5
parent: 2
- - uid: 2665
+ - uid: 4027
components:
- type: Transform
- pos: -0.5,57.5
+ pos: 41.5,23.5
parent: 2
- - uid: 2668
+ - uid: 4088
components:
- type: Transform
- pos: -67.5,12.5
+ pos: 49.5,41.5
parent: 2
- - uid: 2672
+ - uid: 4089
components:
- type: Transform
- pos: -1.5,57.5
+ pos: 48.5,41.5
parent: 2
- - uid: 2706
+ - uid: 4093
components:
- type: Transform
- pos: -70.5,0.5
+ pos: 44.5,41.5
parent: 2
- - uid: 2717
+ - uid: 4118
components:
- type: Transform
- pos: -2.5,46.5
+ pos: 51.5,24.5
parent: 2
- - uid: 2718
+ - uid: 4119
components:
- type: Transform
- pos: -1.5,46.5
+ pos: 38.5,27.5
parent: 2
- - uid: 2742
+ - uid: 4134
components:
- type: Transform
- pos: -4.5,57.5
+ pos: 49.5,45.5
parent: 2
- - uid: 2748
+ - uid: 4135
components:
- type: Transform
- pos: -3.5,57.5
+ pos: 48.5,45.5
parent: 2
- - uid: 2749
+ - uid: 4139
components:
- type: Transform
- pos: -5.5,57.5
+ pos: 42.5,45.5
parent: 2
- - uid: 2752
+ - uid: 4175
components:
- type: Transform
- pos: 6.5,34.5
+ pos: 51.5,22.5
parent: 2
- - uid: 2756
+ - uid: 4186
components:
- type: Transform
- pos: 4.5,34.5
+ pos: 38.5,45.5
parent: 2
- - uid: 2825
+ - uid: 4262
components:
- type: Transform
- pos: -1.5,50.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,25.5
parent: 2
- - uid: 2830
+ - uid: 4266
components:
- type: Transform
- pos: -3.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,31.5
parent: 2
- - uid: 2875
+ - uid: 4289
components:
- type: Transform
- pos: -9.5,57.5
+ pos: 51.5,23.5
parent: 2
- - uid: 2877
+ - uid: 4371
components:
- type: Transform
- pos: 26.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 52.5,31.5
parent: 2
- - uid: 2878
+ - uid: 4387
components:
- type: Transform
- pos: 27.5,31.5
+ pos: 42.5,-29.5
parent: 2
- - uid: 2879
+ - uid: 4388
components:
- type: Transform
- pos: 28.5,31.5
+ pos: 42.5,-30.5
parent: 2
- - uid: 2880
+ - uid: 4438
components:
- type: Transform
- pos: 29.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-11.5
parent: 2
- - uid: 2881
+ - uid: 4441
components:
- type: Transform
- pos: 30.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-8.5
parent: 2
- - uid: 2882
+ - uid: 4503
components:
- type: Transform
- pos: 31.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 63.5,31.5
parent: 2
- - uid: 2884
+ - uid: 4529
components:
- type: Transform
- pos: 33.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,31.5
parent: 2
- - uid: 2885
+ - uid: 4551
components:
- type: Transform
- pos: 34.5,31.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,31.5
parent: 2
- - uid: 2890
+ - uid: 4561
components:
- type: Transform
- pos: 30.5,25.5
+ pos: 50.5,25.5
parent: 2
- - uid: 2891
+ - uid: 4603
components:
- type: Transform
- pos: 33.5,25.5
+ pos: 42.5,-28.5
parent: 2
- - uid: 2892
+ - uid: 4623
components:
- type: Transform
- pos: 40.5,31.5
+ pos: -35.5,-30.5
parent: 2
- - uid: 2894
+ - uid: 4675
components:
- type: Transform
- pos: 35.5,31.5
+ pos: 87.5,19.5
parent: 2
- - uid: 2895
+ - uid: 4694
components:
- type: Transform
- pos: 36.5,31.5
+ pos: 87.5,15.5
parent: 2
- - uid: 2896
+ - uid: 4762
components:
- type: Transform
- pos: 37.5,31.5
+ pos: -73.5,-0.5
parent: 2
- - uid: 2897
+ - uid: 4872
components:
- type: Transform
- pos: 38.5,31.5
+ pos: 51.5,41.5
parent: 2
- - uid: 2911
+ - uid: 4900
components:
- type: Transform
- pos: 37.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,31.5
parent: 2
- - uid: 2916
+ - uid: 4953
components:
- type: Transform
- pos: 70.5,-11.5
+ pos: 53.5,-9.5
parent: 2
- - uid: 2921
+ - uid: 4954
components:
- type: Transform
- pos: -9.5,59.5
+ pos: 70.5,-9.5
parent: 2
- - uid: 2927
+ - uid: 4955
components:
- type: Transform
- pos: -5.5,-18.5
+ pos: 74.5,-9.5
parent: 2
- - uid: 2928
+ - uid: 4956
components:
- type: Transform
- pos: -5.5,-19.5
+ pos: 71.5,-9.5
parent: 2
- - uid: 2929
+ - uid: 4957
components:
- type: Transform
- pos: -17.5,-22.5
+ pos: 72.5,-9.5
parent: 2
- - uid: 2931
+ - uid: 4958
components:
- type: Transform
- pos: -16.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,31.5
parent: 2
- - uid: 2932
+ - uid: 4959
components:
- type: Transform
- pos: -12.5,-22.5
+ pos: 73.5,-9.5
parent: 2
- - uid: 2934
+ - uid: 5016
components:
- type: Transform
- pos: -10.5,-22.5
+ pos: 74.5,-19.5
parent: 2
- - uid: 2935
+ - uid: 5017
components:
- type: Transform
- pos: -11.5,-22.5
+ pos: 75.5,-18.5
parent: 2
- - uid: 2939
+ - uid: 5021
components:
- type: Transform
- pos: -5.5,-20.5
+ pos: 75.5,-14.5
parent: 2
- - uid: 2943
+ - uid: 5022
components:
- type: Transform
- pos: -5.5,-21.5
+ pos: 75.5,-13.5
parent: 2
- - uid: 2944
+ - uid: 5023
components:
- type: Transform
- pos: -3.5,-26.5
+ pos: 75.5,-12.5
parent: 2
- - uid: 2959
+ - uid: 5024
components:
- type: Transform
- pos: -78.5,-5.5
+ pos: 75.5,-11.5
parent: 2
- - uid: 2972
+ - uid: 5025
components:
- type: Transform
- pos: -11.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,31.5
parent: 2
- - uid: 2973
+ - uid: 5049
components:
- type: Transform
- pos: -12.5,-26.5
+ pos: 68.5,-10.5
parent: 2
- - uid: 2978
+ - uid: 5080
components:
- type: Transform
- pos: -17.5,-26.5
+ pos: 53.5,1.5
parent: 2
- - uid: 2982
+ - uid: 5081
components:
- type: Transform
- pos: -23.5,-21.5
+ pos: 55.5,1.5
parent: 2
- - uid: 2992
+ - uid: 5097
components:
- type: Transform
- pos: -6.5,57.5
+ pos: 77.5,-18.5
parent: 2
- - uid: 2993
+ - uid: 5192
components:
- type: Transform
- pos: -8.5,57.5
+ pos: -34.5,-18.5
parent: 2
- - uid: 2994
+ - uid: 5193
components:
- type: Transform
- pos: -7.5,57.5
+ pos: -34.5,-19.5
parent: 2
- - uid: 2996
+ - uid: 5196
components:
- type: Transform
- pos: -7.5,-26.5
+ pos: -50.5,-12.5
parent: 2
- - uid: 2997
+ - uid: 5201
components:
- type: Transform
- pos: -6.5,-26.5
+ pos: -34.5,-20.5
parent: 2
- - uid: 2998
+ - uid: 5202
components:
- type: Transform
- pos: -5.5,-26.5
+ pos: -34.5,-21.5
parent: 2
- - uid: 2999
+ - uid: 5203
components:
- type: Transform
- pos: -3.5,-21.5
+ pos: -9.5,0.5
parent: 2
- - uid: 3001
+ - uid: 5204
components:
- type: Transform
- pos: 6.5,-22.5
+ pos: -34.5,-23.5
parent: 2
- - uid: 3002
+ - uid: 5205
components:
- type: Transform
- pos: 6.5,-23.5
+ pos: -34.5,-24.5
parent: 2
- - uid: 3011
+ - uid: 5206
components:
- type: Transform
- pos: -8.5,-36.5
+ pos: -34.5,-25.5
parent: 2
- - uid: 3012
+ - uid: 5209
components:
- type: Transform
- pos: -9.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 57.5,31.5
parent: 2
- - uid: 3013
+ - uid: 5210
components:
- type: Transform
- pos: -10.5,-36.5
+ pos: -34.5,-29.5
parent: 2
- - uid: 3014
+ - uid: 5211
components:
- type: Transform
- pos: -11.5,-36.5
+ pos: 52.5,3.5
parent: 2
- - uid: 3016
+ - uid: 5238
components:
- type: Transform
- pos: -8.5,-35.5
+ pos: -42.5,9.5
parent: 2
- - uid: 3018
+ - uid: 5307
components:
- type: Transform
- pos: -8.5,-34.5
+ pos: 64.5,28.5
parent: 2
- - uid: 3019
+ - uid: 5340
components:
- type: Transform
- pos: -8.5,-31.5
+ pos: 52.5,48.5
parent: 2
- - uid: 3021
+ - uid: 5348
components:
- type: Transform
- pos: -8.5,-33.5
+ pos: 54.5,50.5
parent: 2
- - uid: 3023
+ - uid: 5437
components:
- type: Transform
- pos: -8.5,-32.5
+ pos: 47.5,29.5
parent: 2
- - uid: 3024
+ - uid: 5449
components:
- type: Transform
- pos: -5.5,-39.5
+ pos: 45.5,34.5
parent: 2
- - uid: 3025
+ - uid: 5506
components:
- type: Transform
- pos: 6.5,-26.5
+ pos: 45.5,33.5
parent: 2
- - uid: 3027
+ - uid: 5554
components:
- type: Transform
- pos: 7.5,-26.5
+ pos: 64.5,27.5
parent: 2
- - uid: 3038
+ - uid: 5555
components:
- type: Transform
- pos: -14.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 59.5,31.5
parent: 2
- - uid: 3039
+ - uid: 5569
components:
- type: Transform
- pos: -13.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,25.5
parent: 2
- - uid: 3040
+ - uid: 5575
components:
- type: Transform
- pos: -12.5,-36.5
+ pos: 64.5,30.5
parent: 2
- - uid: 3041
+ - uid: 5657
components:
- type: Transform
- pos: -54.5,-4.5
+ pos: 64.5,29.5
parent: 2
- - uid: 3042
+ - uid: 5660
components:
- type: Transform
- pos: -20.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 58.5,25.5
parent: 2
- - uid: 3054
+ - uid: 5669
components:
- type: Transform
- pos: -31.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-36.5
parent: 2
- - uid: 3055
+ - uid: 5764
components:
- type: Transform
- pos: -31.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-27.5
parent: 2
- - uid: 3056
+ - uid: 5889
components:
- type: Transform
- pos: -31.5,-21.5
+ pos: 32.5,-19.5
parent: 2
- - uid: 3057
+ - uid: 5891
components:
- type: Transform
- pos: 37.5,-5.5
+ pos: 32.5,-20.5
parent: 2
- - uid: 3060
+ - uid: 5908
components:
- type: Transform
- pos: 37.5,-7.5
+ pos: -35.5,-12.5
parent: 2
- - uid: 3062
+ - uid: 6010
components:
- type: Transform
- pos: 37.5,-10.5
+ pos: -32.5,-29.5
parent: 2
- - uid: 3063
+ - uid: 6011
components:
- type: Transform
- pos: 37.5,-12.5
+ pos: -33.5,-29.5
parent: 2
- - uid: 3065
+ - uid: 6012
components:
- type: Transform
- pos: 36.5,-12.5
+ pos: -30.5,-29.5
parent: 2
- - uid: 3066
+ - uid: 6013
components:
- type: Transform
- pos: -52.5,-4.5
+ pos: -31.5,-29.5
parent: 2
- - uid: 3073
+ - uid: 6016
components:
- type: Transform
- pos: 52.5,4.5
+ pos: -48.5,-9.5
parent: 2
- - uid: 3081
+ - uid: 6018
components:
- type: Transform
- pos: -49.5,-9.5
+ pos: -48.5,6.5
parent: 2
- - uid: 3082
+ - uid: 6127
components:
- type: Transform
- pos: -51.5,-4.5
+ pos: 37.5,1.5
parent: 2
- - uid: 3084
+ - uid: 6130
components:
- type: Transform
- pos: -51.5,-9.5
+ pos: 37.5,-6.5
parent: 2
- - uid: 3085
+ - uid: 6165
components:
- type: Transform
- pos: -50.5,-9.5
+ pos: -1.5,36.5
parent: 2
- - uid: 3087
+ - uid: 6177
components:
- type: Transform
- pos: -52.5,-9.5
+ pos: 41.5,-27.5
parent: 2
- - uid: 3091
+ - uid: 6207
components:
- type: Transform
- pos: -55.5,-9.5
+ pos: -36.5,-30.5
parent: 2
- - uid: 3093
+ - uid: 6268
components:
- type: Transform
- pos: -48.5,4.5
+ pos: -1.5,34.5
parent: 2
- - uid: 3103
+ - uid: 6270
components:
- type: Transform
- pos: 8.5,-26.5
+ pos: -9.5,18.5
parent: 2
- - uid: 3104
+ - uid: 6271
components:
- type: Transform
- pos: 9.5,-26.5
+ pos: -31.5,18.5
parent: 2
- - uid: 3105
+ - uid: 6361
components:
- type: Transform
- pos: 10.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,2.5
parent: 2
- - uid: 3106
+ - uid: 6365
components:
- type: Transform
- pos: 10.5,-21.5
+ pos: 37.5,-11.5
parent: 2
- - uid: 3110
+ - uid: 6366
components:
- type: Transform
- pos: 12.5,-35.5
+ pos: 37.5,-9.5
parent: 2
- - uid: 3113
+ - uid: 6392
components:
- type: Transform
- pos: 12.5,-29.5
+ pos: 36.5,32.5
parent: 2
- - uid: 3114
+ - uid: 6486
components:
- type: Transform
- pos: 12.5,-34.5
+ pos: -17.5,-30.5
parent: 2
- - uid: 3117
+ - uid: 6487
components:
- type: Transform
- pos: -4.5,-26.5
+ pos: -17.5,-31.5
parent: 2
- - uid: 3118
+ - uid: 6488
components:
- type: Transform
- pos: 6.5,-21.5
+ pos: -16.5,-31.5
parent: 2
- - uid: 3124
+ - uid: 6489
components:
- type: Transform
- pos: 11.5,-26.5
+ pos: -15.5,-31.5
parent: 2
- - uid: 3127
+ - uid: 6490
components:
- type: Transform
- pos: 27.5,-27.5
+ pos: -14.5,-31.5
parent: 2
- - uid: 3128
+ - uid: 6491
components:
- type: Transform
- pos: 10.5,-20.5
+ pos: -13.5,-31.5
parent: 2
- - uid: 3129
+ - uid: 6492
components:
- type: Transform
- pos: 12.5,-27.5
+ pos: -12.5,-31.5
parent: 2
- - uid: 3131
+ - uid: 6494
components:
- type: Transform
- pos: 12.5,-26.5
+ pos: -10.5,-31.5
parent: 2
- - uid: 3133
+ - uid: 6495
components:
- type: Transform
- pos: 12.5,-22.5
+ pos: -9.5,-31.5
parent: 2
- - uid: 3134
+ - uid: 6497
components:
- type: Transform
- pos: 12.5,-23.5
+ pos: -17.5,-32.5
parent: 2
- - uid: 3135
+ - uid: 6499
components:
- type: Transform
- pos: 12.5,-21.5
+ pos: -14.5,-35.5
parent: 2
- - uid: 3136
+ - uid: 6506
components:
- type: Transform
- pos: 12.5,-25.5
+ pos: -7.5,-31.5
parent: 2
- - uid: 3138
+ - uid: 6509
components:
- type: Transform
- pos: 8.5,-21.5
+ pos: -2.5,-23.5
parent: 2
- - uid: 3140
+ - uid: 6514
components:
- type: Transform
- pos: 12.5,-20.5
+ pos: -2.5,-22.5
parent: 2
- - uid: 3142
+ - uid: 6515
components:
- type: Transform
- pos: 17.5,-17.5
+ pos: -5.5,-22.5
parent: 2
- - uid: 3143
+ - uid: 6571
components:
- type: Transform
- pos: 16.5,-22.5
+ pos: -17.5,-23.5
parent: 2
- - uid: 3145
+ - uid: 6646
components:
- type: Transform
- pos: 18.5,-24.5
+ pos: -14.5,-32.5
parent: 2
- - uid: 3146
+ - uid: 6684
components:
- type: Transform
- pos: 16.5,-18.5
+ pos: -17.5,-35.5
parent: 2
- - uid: 3147
+ - uid: 6694
components:
- type: Transform
- pos: 16.5,-26.5
+ pos: -17.5,-36.5
parent: 2
- - uid: 3148
+ - uid: 6700
components:
- type: Transform
- pos: 18.5,-23.5
+ pos: -8.5,-37.5
parent: 2
- - uid: 3149
+ - uid: 6769
components:
- type: Transform
- pos: 17.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-39.5
parent: 2
- - uid: 3150
+ - uid: 6773
components:
- type: Transform
- pos: 18.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-37.5
parent: 2
- - uid: 3151
+ - uid: 6780
components:
- type: Transform
- pos: 21.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-40.5
parent: 2
- - uid: 3152
+ - uid: 6821
components:
- type: Transform
- pos: 18.5,-26.5
+ pos: -6.5,-39.5
parent: 2
- - uid: 3153
+ - uid: 6829
components:
- type: Transform
- pos: 22.5,-26.5
+ pos: -14.5,-37.5
parent: 2
- - uid: 3154
+ - uid: 6830
components:
- type: Transform
- pos: 19.5,-26.5
+ pos: -14.5,-40.5
parent: 2
- - uid: 3155
+ - uid: 6856
components:
- type: Transform
- pos: 8.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,25.5
parent: 2
- - uid: 3201
+ - uid: 6857
components:
- type: Transform
- pos: -4.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,4.5
parent: 2
- - uid: 3202
+ - uid: 7055
components:
- type: Transform
- pos: -3.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 62.5,25.5
parent: 2
- - uid: 3210
+ - uid: 7097
components:
- type: Transform
- pos: -2.5,-21.5
+ pos: -51.5,-24.5
parent: 2
- - uid: 3211
+ - uid: 7136
components:
- type: Transform
- pos: -2.5,-26.5
+ pos: -38.5,-27.5
parent: 2
- - uid: 3212
+ - uid: 7140
components:
- type: Transform
- pos: -36.5,14.5
+ pos: -48.5,-11.5
parent: 2
- - uid: 3215
+ - uid: 7156
components:
- type: Transform
- pos: 49.5,-27.5
+ pos: -48.5,-12.5
parent: 2
- - uid: 3242
+ - uid: 7167
components:
- type: Transform
- pos: 36.5,45.5
+ pos: -51.5,-13.5
parent: 2
- - uid: 3243
+ - uid: 7168
components:
- type: Transform
- pos: 36.5,35.5
+ pos: -50.5,-24.5
parent: 2
- - uid: 3244
+ - uid: 7173
components:
- type: Transform
- pos: 36.5,40.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-24.5
parent: 2
- - uid: 3245
+ - uid: 7179
components:
- type: Transform
- pos: 36.5,37.5
+ pos: -51.5,-12.5
parent: 2
- - uid: 3246
+ - uid: 7183
components:
- type: Transform
- pos: 36.5,34.5
+ pos: -63.5,-7.5
parent: 2
- - uid: 3247
+ - uid: 7184
components:
- type: Transform
- pos: 36.5,38.5
+ pos: -63.5,-8.5
parent: 2
- - uid: 3248
+ - uid: 7186
components:
- type: Transform
- pos: 36.5,36.5
+ pos: -63.5,-9.5
parent: 2
- - uid: 3249
+ - uid: 7187
components:
- type: Transform
- pos: 36.5,39.5
+ pos: -56.5,-1.5
parent: 2
- - uid: 3250
+ - uid: 7188
components:
- type: Transform
- pos: 36.5,43.5
+ pos: -56.5,-4.5
parent: 2
- - uid: 3251
+ - uid: 7196
components:
- type: Transform
- pos: 36.5,41.5
+ pos: -57.5,-13.5
parent: 2
- - uid: 3252
+ - uid: 7209
components:
- type: Transform
- pos: 36.5,44.5
+ pos: -57.5,-26.5
parent: 2
- - uid: 3253
+ - uid: 7215
components:
- type: Transform
- pos: 36.5,42.5
+ pos: -60.5,-19.5
parent: 2
- - uid: 3255
+ - uid: 7218
components:
- type: Transform
- pos: -11.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,4.5
parent: 2
- - uid: 3256
+ - uid: 7221
components:
- type: Transform
- pos: -11.5,-24.5
+ pos: -49.5,-34.5
parent: 2
- - uid: 3257
+ - uid: 7226
components:
- type: Transform
- pos: -11.5,-23.5
+ pos: -50.5,-34.5
parent: 2
- - uid: 3258
+ - uid: 7232
components:
- type: Transform
- pos: -7.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-36.5
parent: 2
- - uid: 3259
+ - uid: 7236
components:
- type: Transform
- pos: -17.5,-27.5
+ pos: -51.5,-31.5
parent: 2
- - uid: 3280
+ - uid: 7238
components:
- type: Transform
- pos: -24.5,-36.5
+ pos: -60.5,-20.5
parent: 2
- - uid: 3282
+ - uid: 7240
components:
- type: Transform
- pos: -22.5,-36.5
+ pos: -60.5,-22.5
parent: 2
- - uid: 3283
+ - uid: 7242
components:
- type: Transform
- pos: -23.5,-36.5
+ pos: -60.5,-24.5
parent: 2
- - uid: 3284
+ - uid: 7243
components:
- type: Transform
- pos: -21.5,-36.5
+ pos: -60.5,-25.5
parent: 2
- - uid: 3285
+ - uid: 7244
components:
- type: Transform
- pos: -20.5,-36.5
+ pos: -60.5,-26.5
parent: 2
- - uid: 3287
+ - uid: 7245
components:
- type: Transform
- pos: 33.5,-18.5
+ pos: -60.5,-27.5
parent: 2
- - uid: 3293
+ - uid: 7278
components:
- type: Transform
- pos: 32.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,6.5
parent: 2
- - uid: 3294
+ - uid: 7280
components:
- type: Transform
- pos: 19.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,0.5
parent: 2
- - uid: 3302
+ - uid: 7286
components:
- type: Transform
- pos: 27.5,-33.5
+ pos: -47.5,-24.5
parent: 2
- - uid: 3307
+ - uid: 7290
components:
- type: Transform
- pos: 27.5,-32.5
+ pos: -23.5,1.5
parent: 2
- - uid: 3312
+ - uid: 7299
components:
- type: Transform
- pos: 28.5,-22.5
+ pos: -63.5,-10.5
parent: 2
- - uid: 3317
+ - uid: 7300
components:
- type: Transform
- pos: 41.5,-25.5
+ pos: -63.5,-1.5
parent: 2
- - uid: 3339
+ - uid: 7301
components:
- type: Transform
- pos: 23.5,-23.5
+ pos: -63.5,-0.5
parent: 2
- - uid: 3340
+ - uid: 7302
components:
- type: Transform
- pos: 23.5,-22.5
+ pos: -49.5,-0.5
parent: 2
- - uid: 3342
+ - uid: 7305
components:
- type: Transform
- pos: 37.5,-18.5
+ pos: -56.5,-5.5
parent: 2
- - uid: 3343
+ - uid: 7306
components:
- type: Transform
- pos: 24.5,-22.5
+ pos: -56.5,-6.5
parent: 2
- - uid: 3344
+ - uid: 7307
components:
- type: Transform
- pos: 40.5,-21.5
+ pos: -56.5,-3.5
parent: 2
- - uid: 3347
+ - uid: 7309
components:
- type: Transform
- pos: 36.5,-17.5
+ pos: -56.5,-0.5
parent: 2
- - uid: 3348
+ - uid: 7312
components:
- type: Transform
- pos: 40.5,-20.5
+ pos: -63.5,0.5
parent: 2
- - uid: 3367
+ - uid: 7315
components:
- type: Transform
- pos: -24.5,-31.5
+ pos: -62.5,-5.5
parent: 2
- - uid: 3372
+ - uid: 7316
components:
- type: Transform
- pos: -24.5,-30.5
+ pos: -56.5,-7.5
parent: 2
- - uid: 3375
+ - uid: 7318
components:
- type: Transform
- pos: -24.5,-33.5
+ pos: -60.5,-5.5
parent: 2
- - uid: 3381
+ - uid: 7319
components:
- type: Transform
- pos: 48.5,-19.5
+ pos: -57.5,-5.5
parent: 2
- - uid: 3383
+ - uid: 7331
components:
- type: Transform
- pos: 48.5,-20.5
+ pos: 79.5,-7.5
parent: 2
- - uid: 3387
+ - uid: 7342
components:
- type: Transform
- pos: 17.5,-22.5
+ pos: -52.5,-13.5
parent: 2
- - uid: 3389
+ - uid: 7343
components:
- type: Transform
- pos: 18.5,-22.5
+ pos: -53.5,-13.5
parent: 2
- - uid: 3390
+ - uid: 7344
components:
- type: Transform
- pos: 37.5,-21.5
+ pos: -54.5,-13.5
parent: 2
- - uid: 3392
+ - uid: 7345
components:
- type: Transform
- pos: 27.5,-34.5
+ pos: -55.5,-13.5
parent: 2
- - uid: 3398
+ - uid: 7346
components:
- type: Transform
- pos: 21.5,-22.5
+ pos: -56.5,-13.5
parent: 2
- - uid: 3399
+ - uid: 7360
components:
- type: Transform
- pos: 20.5,-22.5
+ pos: 4.5,-11.5
parent: 2
- - uid: 3401
+ - uid: 7369
components:
- type: Transform
- pos: 22.5,-22.5
+ pos: -51.5,-27.5
parent: 2
- - uid: 3402
+ - uid: 7380
components:
- type: Transform
- pos: 30.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,25.5
parent: 2
- - uid: 3404
+ - uid: 7384
components:
- type: Transform
- pos: 32.5,-22.5
+ pos: 51.5,-15.5
parent: 2
- - uid: 3405
+ - uid: 7386
components:
- type: Transform
- pos: 31.5,-22.5
+ pos: -63.5,-5.5
parent: 2
- - uid: 3406
+ - uid: 7387
components:
- type: Transform
- pos: -24.5,-32.5
+ pos: -63.5,-6.5
parent: 2
- - uid: 3407
+ - uid: 7388
components:
- type: Transform
- pos: 33.5,-22.5
+ pos: -60.5,-12.5
parent: 2
- - uid: 3408
+ - uid: 7389
components:
- type: Transform
- pos: 33.5,-21.5
+ pos: 26.5,-22.5
parent: 2
- - uid: 3414
+ - uid: 7390
components:
- type: Transform
- pos: 37.5,-20.5
+ pos: -60.5,-10.5
parent: 2
- - uid: 3415
+ - uid: 7391
components:
- type: Transform
- pos: 40.5,-24.5
+ pos: -58.5,-10.5
parent: 2
- - uid: 3419
+ - uid: 7393
components:
- type: Transform
- pos: -7.5,-28.5
+ pos: -57.5,-10.5
parent: 2
- - uid: 3420
+ - uid: 7395
components:
- type: Transform
- pos: 40.5,-27.5
+ pos: -56.5,-10.5
parent: 2
- - uid: 3421
+ - uid: 7396
components:
- type: Transform
- pos: 40.5,-25.5
+ pos: -56.5,-9.5
parent: 2
- - uid: 3422
+ - uid: 7397
components:
- type: Transform
- pos: -7.5,-29.5
+ pos: -56.5,-8.5
parent: 2
- - uid: 3430
+ - uid: 7398
components:
- type: Transform
- pos: -7.5,-27.5
+ pos: -63.5,-2.5
parent: 2
- - uid: 3432
+ - uid: 7399
components:
- type: Transform
- pos: -24.5,-34.5
+ pos: -63.5,-3.5
parent: 2
- - uid: 3434
+ - uid: 7400
components:
- type: Transform
- pos: 33.5,30.5
+ pos: -63.5,-4.5
parent: 2
- - uid: 3439
+ - uid: 7401
components:
- type: Transform
- pos: 45.5,-25.5
+ pos: -61.5,-10.5
parent: 2
- - uid: 3440
+ - uid: 7402
components:
- type: Transform
- pos: 45.5,-24.5
+ pos: -62.5,-10.5
parent: 2
- - uid: 3441
+ - uid: 7403
components:
- type: Transform
- pos: 45.5,-23.5
+ pos: -63.5,2.5
parent: 2
- - uid: 3442
+ - uid: 7405
components:
- type: Transform
- pos: 45.5,-21.5
+ pos: -63.5,4.5
parent: 2
- - uid: 3443
+ - uid: 7406
components:
- type: Transform
- pos: 45.5,-22.5
+ pos: -63.5,5.5
parent: 2
- - uid: 3492
+ - uid: 7407
components:
- type: Transform
- pos: 42.5,-25.5
+ pos: -63.5,6.5
parent: 2
- - uid: 3494
+ - uid: 7411
components:
- type: Transform
- pos: 44.5,-25.5
+ pos: -61.5,-0.5
parent: 2
- - uid: 3495
+ - uid: 7419
components:
- type: Transform
- pos: 43.5,-25.5
+ pos: -67.5,18.5
parent: 2
- - uid: 3517
+ - uid: 7434
components:
- type: Transform
- pos: 37.5,-22.5
+ pos: -66.5,5.5
parent: 2
- - uid: 3522
+ - uid: 7435
components:
- type: Transform
- pos: 24.5,-26.5
+ pos: -66.5,6.5
parent: 2
- - uid: 3524
+ - uid: 7436
components:
- type: Transform
- pos: 26.5,-26.5
+ pos: -66.5,3.5
parent: 2
- - uid: 3525
+ - uid: 7437
components:
- type: Transform
- pos: 25.5,-26.5
+ pos: -66.5,4.5
parent: 2
- - uid: 3526
+ - uid: 7438
components:
- type: Transform
- pos: 27.5,-25.5
+ pos: -70.5,15.5
parent: 2
- - uid: 3527
+ - uid: 7439
components:
- type: Transform
- pos: 27.5,-26.5
+ pos: -66.5,0.5
parent: 2
- - uid: 3528
+ - uid: 7440
components:
- type: Transform
- pos: 27.5,-23.5
+ pos: -66.5,2.5
parent: 2
- - uid: 3529
+ - uid: 7444
components:
- type: Transform
- pos: 27.5,-24.5
+ pos: -66.5,11.5
parent: 2
- - uid: 3547
+ - uid: 7445
components:
- type: Transform
- pos: -51.5,-29.5
+ pos: -66.5,14.5
parent: 2
- - uid: 3548
+ - uid: 7446
components:
- type: Transform
- pos: -51.5,-28.5
+ pos: -66.5,12.5
parent: 2
- - uid: 3554
+ - uid: 7447
components:
- type: Transform
- pos: -51.5,-30.5
+ pos: -66.5,10.5
parent: 2
- - uid: 3557
+ - uid: 7448
components:
- type: Transform
- pos: -51.5,-25.5
+ pos: -66.5,13.5
parent: 2
- - uid: 3559
+ - uid: 7449
components:
- type: Transform
- pos: -52.5,-26.5
+ pos: -66.5,15.5
parent: 2
- - uid: 3560
+ - uid: 7450
components:
- type: Transform
- pos: -51.5,-26.5
+ pos: -66.5,17.5
parent: 2
- - uid: 3563
+ - uid: 7452
components:
- type: Transform
- pos: -34.5,-33.5
+ pos: -66.5,18.5
parent: 2
- - uid: 3566
+ - uid: 7454
components:
- type: Transform
- pos: -34.5,-31.5
+ pos: -56.5,-26.5
parent: 2
- - uid: 3567
+ - uid: 7556
components:
- type: Transform
- pos: -34.5,-30.5
+ pos: -47.5,10.5
parent: 2
- - uid: 3569
+ - uid: 7591
components:
- type: Transform
- pos: -51.5,-19.5
+ pos: 52.5,-14.5
parent: 2
- - uid: 3570
+ - uid: 7609
components:
- type: Transform
- pos: -51.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -57.5,-19.5
parent: 2
- - uid: 3653
+ - uid: 7623
components:
- type: Transform
- pos: -48.5,-7.5
+ pos: -32.5,-6.5
parent: 2
- - uid: 3765
+ - uid: 7632
components:
- type: Transform
- pos: -43.5,18.5
+ pos: -48.5,10.5
parent: 2
- - uid: 3779
+ - uid: 7633
components:
- type: Transform
- pos: 48.5,-21.5
+ pos: -49.5,10.5
parent: 2
- - uid: 3780
+ - uid: 7634
components:
- type: Transform
- pos: 48.5,-22.5
+ pos: -50.5,10.5
parent: 2
- - uid: 3781
+ - uid: 7635
components:
- type: Transform
- pos: 48.5,-23.5
+ pos: -51.5,10.5
parent: 2
- - uid: 3782
+ - uid: 7653
components:
- type: Transform
- pos: 48.5,-24.5
+ pos: -65.5,6.5
parent: 2
- - uid: 3783
+ - uid: 7654
components:
- type: Transform
- pos: 48.5,-25.5
+ pos: -65.5,10.5
parent: 2
- - uid: 3784
+ - uid: 7680
components:
- type: Transform
- pos: 48.5,-26.5
+ pos: -70.5,12.5
parent: 2
- - uid: 3785
+ - uid: 7681
components:
- type: Transform
- pos: 75.5,-19.5
+ pos: -71.5,12.5
parent: 2
- - uid: 3786
+ - uid: 7683
components:
- type: Transform
- pos: 48.5,-28.5
+ pos: -73.5,12.5
parent: 2
- - uid: 3787
+ - uid: 7688
components:
- type: Transform
- pos: 47.5,-28.5
+ pos: -70.5,4.5
parent: 2
- - uid: 3788
+ - uid: 7728
components:
- type: Transform
- pos: 46.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,25.5
parent: 2
- - uid: 3789
+ - uid: 7729
components:
- type: Transform
- pos: 45.5,-28.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,25.5
parent: 2
- - uid: 3820
+ - uid: 7730
components:
- type: Transform
- pos: 44.5,22.5
+ rot: 1.5707963267948966 rad
+ pos: 51.5,25.5
parent: 2
- - uid: 3823
+ - uid: 7737
components:
- type: Transform
- pos: -8.5,-38.5
+ pos: -45.5,18.5
parent: 2
- - uid: 3828
+ - uid: 7767
components:
- type: Transform
- pos: 48.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 60.5,31.5
parent: 2
- - uid: 3829
+ - uid: 7768
components:
- type: Transform
- pos: 48.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,31.5
parent: 2
- - uid: 3830
+ - uid: 7770
components:
- type: Transform
- pos: 64.5,26.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,26.5
parent: 2
- - uid: 3832
+ - uid: 7771
components:
- type: Transform
- pos: 45.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 64.5,31.5
parent: 2
- - uid: 3842
+ - uid: 7774
components:
- type: Transform
- pos: 45.5,-19.5
+ pos: -66.5,1.5
parent: 2
- - uid: 3855
+ - uid: 7778
components:
- type: Transform
- pos: 41.5,38.5
+ pos: -70.5,16.5
parent: 2
- - uid: 3856
+ - uid: 7798
components:
- type: Transform
- pos: 33.5,27.5
+ pos: -71.5,-0.5
parent: 2
- - uid: 3863
+ - uid: 7835
components:
- type: Transform
- pos: 61.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-8.5
parent: 2
- - uid: 3864
+ - uid: 7836
components:
- type: Transform
- pos: 62.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-8.5
parent: 2
- - uid: 3865
+ - uid: 7843
components:
- type: Transform
- pos: 63.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-10.5
parent: 2
- - uid: 3866
+ - uid: 7845
components:
- type: Transform
- pos: 64.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-9.5
parent: 2
- - uid: 3867
+ - uid: 7847
components:
- type: Transform
- pos: 65.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-7.5
parent: 2
- - uid: 3871
+ - uid: 8130
components:
- type: Transform
- pos: 51.5,19.5
+ pos: -75.5,2.5
parent: 2
- - uid: 3882
+ - uid: 8138
components:
- type: Transform
- pos: 66.5,-25.5
+ pos: -77.5,2.5
parent: 2
- - uid: 3883
+ - uid: 8240
components:
- type: Transform
- pos: 67.5,-24.5
+ pos: -78.5,2.5
parent: 2
- - uid: 3884
+ - uid: 8241
components:
- type: Transform
- pos: 68.5,-23.5
+ pos: -79.5,2.5
parent: 2
- - uid: 3885
+ - uid: 8274
components:
- type: Transform
- pos: 68.5,-22.5
+ pos: -33.5,23.5
parent: 2
- - uid: 3886
+ - uid: 8333
components:
- type: Transform
- pos: 69.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-11.5
parent: 2
- - uid: 3887
+ - uid: 8398
components:
- type: Transform
- pos: 69.5,-20.5
+ pos: -70.5,13.5
parent: 2
- - uid: 3888
+ - uid: 8399
components:
- type: Transform
- pos: 70.5,-19.5
+ pos: -70.5,17.5
parent: 2
- - uid: 3907
+ - uid: 8438
components:
- type: Transform
- pos: -21.5,-3.5
+ pos: -70.5,-0.5
parent: 2
- - uid: 3911
+ - uid: 8473
components:
- type: Transform
- pos: 70.5,-15.5
+ pos: -81.5,2.5
parent: 2
- - uid: 3912
+ - uid: 8598
components:
- type: Transform
- pos: 72.5,-19.5
+ pos: -30.5,13.5
parent: 2
- - uid: 3913
+ - uid: 8650
components:
- type: Transform
- pos: 73.5,-19.5
+ pos: -70.5,18.5
parent: 2
- - uid: 3914
+ - uid: 8651
components:
- type: Transform
- pos: 70.5,-18.5
+ pos: -68.5,18.5
parent: 2
- - uid: 3920
+ - uid: 8652
components:
- type: Transform
- pos: 50.5,-27.5
+ pos: -69.5,18.5
parent: 2
- - uid: 3922
+ - uid: 8717
components:
- type: Transform
- pos: 51.5,-28.5
+ pos: -40.5,25.5
parent: 2
- - uid: 3923
+ - uid: 8750
components:
- type: Transform
- pos: 52.5,-28.5
+ pos: -35.5,25.5
parent: 2
- - uid: 3925
+ - uid: 8751
components:
- type: Transform
- pos: 53.5,-28.5
+ pos: -36.5,25.5
parent: 2
- - uid: 3928
+ - uid: 8752
components:
- type: Transform
- pos: 48.5,-27.5
+ pos: -34.5,25.5
parent: 2
- - uid: 3929
+ - uid: 8753
components:
- type: Transform
- pos: 53.5,-10.5
+ pos: -37.5,25.5
parent: 2
- - uid: 3932
+ - uid: 8754
components:
- type: Transform
- pos: 75.5,-9.5
+ pos: -34.5,23.5
parent: 2
- - uid: 3936
+ - uid: 8755
components:
- type: Transform
- pos: 71.5,-19.5
+ pos: -34.5,24.5
parent: 2
- - uid: 3937
+ - uid: 9050
components:
- type: Transform
- pos: 69.5,-9.5
+ pos: -82.5,-1.5
parent: 2
- - uid: 3952
+ - uid: 9051
components:
- type: Transform
- pos: 33.5,28.5
+ pos: -78.5,-0.5
parent: 2
- - uid: 3954
+ - uid: 9053
components:
- type: Transform
- pos: 36.5,27.5
+ pos: -82.5,0.5
parent: 2
- - uid: 3955
+ - uid: 9054
components:
- type: Transform
- pos: 39.5,27.5
+ pos: -82.5,2.5
parent: 2
- - uid: 3956
+ - uid: 9067
components:
- type: Transform
- pos: 37.5,27.5
+ pos: -78.5,1.5
parent: 2
- - uid: 3958
+ - uid: 9104
components:
- type: Transform
- pos: 41.5,22.5
+ pos: -43.5,19.5
parent: 2
- - uid: 3959
+ - uid: 9107
components:
- type: Transform
- pos: 40.5,27.5
+ pos: -43.5,22.5
parent: 2
- - uid: 3961
+ - uid: 9108
components:
- type: Transform
- pos: 41.5,36.5
+ pos: -43.5,23.5
parent: 2
- - uid: 3967
+ - uid: 9110
components:
- type: Transform
- pos: 33.5,23.5
+ pos: -43.5,25.5
parent: 2
- - uid: 3971
+ - uid: 9111
components:
- type: Transform
- pos: 50.5,22.5
+ pos: -42.5,25.5
parent: 2
- - uid: 3972
+ - uid: 9112
components:
- type: Transform
- pos: 33.5,26.5
+ pos: -41.5,25.5
parent: 2
- - uid: 3974
+ - uid: 9121
components:
- type: Transform
- pos: 32.5,25.5
+ pos: -39.5,25.5
parent: 2
- - uid: 3975
+ - uid: 9140
components:
- type: Transform
- pos: 26.5,25.5
+ pos: -1.5,-34.5
parent: 2
- - uid: 3978
+ - uid: 9148
components:
- type: Transform
- pos: 76.5,-6.5
+ pos: -71.5,15.5
parent: 2
- - uid: 3979
+ - uid: 9213
components:
- type: Transform
- pos: 34.5,27.5
+ pos: 34.5,45.5
parent: 2
- - uid: 3982
+ - uid: 9254
components:
- type: Transform
- pos: 33.5,24.5
+ pos: 35.5,45.5
parent: 2
- - uid: 3987
+ - uid: 9262
components:
- type: Transform
- pos: 32.5,22.5
+ pos: -78.5,22.5
parent: 2
- - uid: 3989
+ - uid: 9277
components:
- type: Transform
- pos: 45.5,45.5
+ pos: -74.5,1.5
parent: 2
- - uid: 3991
+ - uid: 9350
components:
- type: Transform
- pos: 46.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,31.5
parent: 2
- - uid: 4003
+ - uid: 9461
components:
- type: Transform
- pos: 76.5,-7.5
+ pos: -2.5,56.5
parent: 2
- - uid: 4004
+ - uid: 9525
components:
- type: Transform
- pos: 75.5,-8.5
+ pos: -74.5,0.5
parent: 2
- - uid: 4011
+ - uid: 9646
components:
- type: Transform
- pos: 41.5,45.5
+ pos: -80.5,6.5
parent: 2
- - uid: 4020
+ - uid: 9648
components:
- type: Transform
- pos: 49.5,22.5
+ pos: -74.5,4.5
parent: 2
- - uid: 4024
+ - uid: 9650
components:
- type: Transform
- pos: 41.5,25.5
+ pos: -82.5,5.5
parent: 2
- - uid: 4025
+ - uid: 10015
components:
- type: Transform
- pos: 41.5,26.5
+ pos: -74.5,-0.5
parent: 2
- - uid: 4026
+ - uid: 10329
components:
- type: Transform
- pos: 41.5,24.5
+ pos: -30.5,-10.5
parent: 2
- - uid: 4027
+ - uid: 10353
components:
- type: Transform
- pos: 41.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,31.5
parent: 2
- - uid: 4088
+ - uid: 10366
components:
- type: Transform
- pos: 49.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 44.5,45.5
parent: 2
- - uid: 4089
+ - uid: 10367
components:
- type: Transform
- pos: 48.5,41.5
+ rot: 3.141592653589793 rad
+ pos: 43.5,45.5
parent: 2
- - uid: 4090
+ - uid: 10657
components:
- type: Transform
- pos: 47.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-36.5
parent: 2
- - uid: 4091
+ - uid: 10708
components:
- type: Transform
- pos: 46.5,41.5
+ pos: -9.5,7.5
parent: 2
- - uid: 4092
+ - uid: 10710
components:
- type: Transform
- pos: 45.5,41.5
+ pos: -9.5,5.5
parent: 2
- - uid: 4093
+ - uid: 10711
components:
- type: Transform
- pos: 44.5,41.5
+ pos: -6.5,8.5
parent: 2
- - uid: 4094
+ - uid: 11101
components:
- type: Transform
- pos: 43.5,41.5
+ pos: -74.5,2.5
parent: 2
- - uid: 4095
+ - uid: 11220
components:
- type: Transform
- pos: 42.5,41.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,5.5
parent: 2
- - uid: 4118
+ - uid: 11250
components:
- type: Transform
- pos: 51.5,24.5
+ pos: -5.5,0.5
parent: 2
- - uid: 4119
+ - uid: 11251
components:
- type: Transform
- pos: 38.5,27.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,4.5
parent: 2
- - uid: 4134
+ - uid: 11260
components:
- type: Transform
- pos: 49.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,7.5
parent: 2
- - uid: 4135
+ - uid: 11265
components:
- type: Transform
- pos: 48.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,6.5
parent: 2
- - uid: 4136
+ - uid: 11281
components:
- type: Transform
- pos: 47.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -53.5,-30.5
parent: 2
- - uid: 4137
+ - uid: 11282
components:
- type: Transform
- pos: 44.5,45.5
+ rot: 3.141592653589793 rad
+ pos: -52.5,-30.5
parent: 2
- - uid: 4138
+ - uid: 11334
components:
- type: Transform
- pos: 43.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
parent: 2
- - uid: 4139
+ - uid: 11335
components:
- type: Transform
- pos: 42.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-3.5
parent: 2
- - uid: 4175
+ - uid: 11342
components:
- type: Transform
- pos: 51.5,22.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,-36.5
parent: 2
- - uid: 4186
+ - uid: 11347
components:
- type: Transform
- pos: 38.5,45.5
+ rot: -1.5707963267948966 rad
+ pos: -72.5,4.5
parent: 2
- - uid: 4289
+ - uid: 11521
components:
- type: Transform
- pos: 51.5,23.5
+ pos: -39.5,-17.5
parent: 2
- - uid: 4387
+ - uid: 11531
components:
- type: Transform
- pos: 42.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-6.5
parent: 2
- - uid: 4388
+ - uid: 11661
components:
- type: Transform
- pos: 42.5,-30.5
+ pos: -38.5,-30.5
parent: 2
- - uid: 4438
+ - uid: 11873
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-11.5
+ pos: 3.5,70.5
parent: 2
- - uid: 4441
+ - uid: 11919
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-8.5
+ pos: -1.5,33.5
parent: 2
- - uid: 4561
+ - uid: 11968
components:
- type: Transform
- pos: 50.5,25.5
+ pos: 26.5,-18.5
parent: 2
- - uid: 4575
+ - uid: 12147
components:
- type: Transform
- pos: -15.5,4.5
+ pos: 21.5,18.5
parent: 2
- - uid: 4603
+ - uid: 12148
components:
- type: Transform
- pos: 42.5,-28.5
+ pos: 22.5,-13.5
parent: 2
- - uid: 4675
+ - uid: 12309
components:
- type: Transform
- pos: 87.5,19.5
+ pos: 5.5,-13.5
parent: 2
- - uid: 4694
+ - uid: 12338
components:
- type: Transform
- pos: 87.5,15.5
+ pos: -58.5,-26.5
parent: 2
- - uid: 4762
+ - uid: 12407
components:
- type: Transform
- pos: -73.5,-0.5
+ pos: 26.5,-17.5
parent: 2
- - uid: 4952
+ - uid: 12430
components:
- type: Transform
- pos: 70.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 65.5,31.5
parent: 2
- - uid: 4953
+ - uid: 12441
components:
- type: Transform
- pos: 53.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,31.5
parent: 2
- - uid: 4954
+ - uid: 12924
components:
- type: Transform
- pos: 70.5,-9.5
+ pos: -97.5,14.5
parent: 2
- - uid: 4955
+ - uid: 12925
components:
- type: Transform
- pos: 74.5,-9.5
+ pos: -79.5,-3.5
parent: 2
- - uid: 4956
+ - uid: 12997
components:
- type: Transform
- pos: 71.5,-9.5
+ pos: -82.5,-0.5
parent: 2
- - uid: 4957
+ - uid: 13044
components:
- type: Transform
- pos: 72.5,-9.5
+ pos: -96.5,13.5
parent: 2
- - uid: 4958
+ - uid: 13047
components:
- type: Transform
- pos: 42.5,-31.5
+ pos: -75.5,6.5
parent: 2
- - uid: 4959
+ - uid: 13053
components:
- type: Transform
- pos: 73.5,-9.5
+ pos: -74.5,6.5
parent: 2
- - uid: 5016
+ - uid: 13055
components:
- type: Transform
- pos: 74.5,-19.5
+ pos: -81.5,5.5
parent: 2
- - uid: 5017
+ - uid: 13074
components:
- type: Transform
- pos: 75.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 61.5,31.5
parent: 2
- - uid: 5019
+ - uid: 13075
components:
- type: Transform
- pos: 45.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,30.5
parent: 2
- - uid: 5021
+ - uid: 13131
components:
- type: Transform
- pos: 75.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,18.5
parent: 2
- - uid: 5022
+ - uid: 13206
components:
- type: Transform
- pos: 75.5,-13.5
+ pos: -81.5,6.5
parent: 2
- - uid: 5023
+ - uid: 13207
components:
- type: Transform
- pos: 75.5,-12.5
+ pos: -82.5,4.5
parent: 2
- - uid: 5024
+ - uid: 13242
components:
- type: Transform
- pos: 75.5,-11.5
+ pos: -42.5,10.5
parent: 2
- - uid: 5025
+ - uid: 13245
components:
- type: Transform
- pos: 75.5,-10.5
+ pos: 14.5,-3.5
parent: 2
- - uid: 5049
+ - uid: 13247
components:
- type: Transform
- pos: 68.5,-10.5
+ pos: -12.5,4.5
parent: 2
- - uid: 5050
+ - uid: 13248
components:
- type: Transform
- pos: 69.5,-11.5
+ pos: -12.5,0.5
parent: 2
- - uid: 5080
+ - uid: 13249
components:
- type: Transform
- pos: 53.5,1.5
+ pos: -12.5,11.5
parent: 2
- - uid: 5081
+ - uid: 13253
components:
- type: Transform
- pos: 55.5,1.5
+ pos: 22.5,-3.5
parent: 2
- - uid: 5097
+ - uid: 13275
components:
- type: Transform
- pos: 77.5,-18.5
+ pos: 37.5,-17.5
parent: 2
- - uid: 5145
+ - uid: 13319
components:
- type: Transform
- pos: 73.5,-12.5
+ pos: 52.5,5.5
parent: 2
- - uid: 5152
+ - uid: 13320
components:
- type: Transform
- pos: 74.5,-12.5
+ pos: 68.5,-9.5
parent: 2
- - uid: 5153
+ - uid: 13323
components:
- type: Transform
- pos: 71.5,-12.5
+ pos: 66.5,-26.5
parent: 2
- - uid: 5192
+ - uid: 13324
components:
- type: Transform
- pos: -34.5,-18.5
+ pos: -80.5,-2.5
parent: 2
- - uid: 5193
+ - uid: 13328
components:
- type: Transform
- pos: -34.5,-19.5
+ pos: -81.5,-2.5
parent: 2
- - uid: 5196
+ - uid: 13336
components:
- type: Transform
- pos: -50.5,-12.5
+ pos: 67.5,-25.5
parent: 2
- - uid: 5201
+ - uid: 13348
components:
- type: Transform
- pos: -34.5,-20.5
+ pos: 68.5,-24.5
parent: 2
- - uid: 5202
+ - uid: 13349
components:
- type: Transform
- pos: -34.5,-21.5
+ pos: 69.5,-22.5
parent: 2
- - uid: 5203
+ - uid: 13351
components:
- type: Transform
- pos: -34.5,-22.5
+ pos: 68.5,-11.5
parent: 2
- - uid: 5204
+ - uid: 13352
components:
- type: Transform
- pos: -34.5,-23.5
+ pos: 52.5,-9.5
parent: 2
- - uid: 5205
+ - uid: 13353
components:
- type: Transform
- pos: -34.5,-24.5
+ pos: 76.5,-8.5
parent: 2
- - uid: 5206
+ - uid: 13371
components:
- type: Transform
- pos: -34.5,-25.5
+ pos: -81.5,-1.5
parent: 2
- - uid: 5207
+ - uid: 13372
components:
- type: Transform
- pos: -34.5,-26.5
+ pos: -79.5,-1.5
parent: 2
- - uid: 5208
+ - uid: 13373
components:
- type: Transform
- pos: -34.5,-27.5
+ pos: -79.5,6.5
parent: 2
- - uid: 5209
+ - uid: 13374
components:
- type: Transform
- pos: -34.5,-32.5
+ pos: -76.5,6.5
parent: 2
- - uid: 5210
+ - uid: 13375
components:
- type: Transform
- pos: -34.5,-29.5
+ pos: -78.5,0.5
parent: 2
- - uid: 5211
+ - uid: 13376
components:
- type: Transform
- pos: 52.5,3.5
+ pos: -82.5,3.5
parent: 2
- - uid: 5236
+ - uid: 13377
components:
- type: Transform
- pos: -35.5,9.5
+ pos: -82.5,1.5
parent: 2
- - uid: 5238
+ - uid: 13830
components:
- type: Transform
- pos: -42.5,9.5
+ pos: 70.5,-12.5
parent: 2
- - uid: 5307
+ - uid: 13920
components:
- type: Transform
- pos: 64.5,28.5
+ pos: 8.5,40.5
parent: 2
- - uid: 5340
+ - uid: 13921
components:
- type: Transform
- pos: 52.5,48.5
+ pos: 8.5,37.5
parent: 2
- - uid: 5348
+ - uid: 14034
components:
- type: Transform
- pos: 54.5,50.5
+ pos: -96.5,14.5
parent: 2
- - uid: 5437
+ - uid: 14194
components:
- type: Transform
- pos: 47.5,29.5
+ pos: 63.5,-27.5
parent: 2
- - uid: 5449
+ - uid: 14211
components:
- type: Transform
- pos: 45.5,34.5
+ pos: 68.5,-6.5
parent: 2
- - uid: 5506
+ - uid: 14384
components:
- type: Transform
- pos: 45.5,33.5
+ pos: 22.5,4.5
parent: 2
- - uid: 5554
+ - uid: 14451
components:
- type: Transform
- pos: 64.5,27.5
+ pos: 68.5,-7.5
parent: 2
- - uid: 5575
+ - uid: 14452
components:
- type: Transform
- pos: 64.5,30.5
+ pos: 68.5,-8.5
parent: 2
- - uid: 5657
+ - uid: 14639
components:
- type: Transform
- pos: 64.5,29.5
+ pos: 50.5,45.5
parent: 2
- - uid: 5727
+ - uid: 14640
components:
- type: Transform
- pos: 22.5,6.5
+ pos: 50.5,42.5
parent: 2
- - uid: 5908
+ - uid: 14641
components:
- type: Transform
- pos: -35.5,-12.5
+ pos: 50.5,44.5
parent: 2
- - uid: 5993
+ - uid: 14658
components:
- type: Transform
- pos: -40.5,19.5
+ pos: 50.5,41.5
parent: 2
- - uid: 6010
+ - uid: 14713
components:
- type: Transform
- pos: -32.5,-29.5
+ pos: 51.5,39.5
parent: 2
- - uid: 6011
+ - uid: 14714
components:
- type: Transform
- pos: -33.5,-29.5
+ pos: 51.5,40.5
parent: 2
- - uid: 6012
+ - uid: 14715
components:
- type: Transform
- pos: -30.5,-29.5
+ pos: 51.5,36.5
parent: 2
- - uid: 6013
+ - uid: 14717
components:
- type: Transform
- pos: -31.5,-29.5
+ pos: 50.5,34.5
parent: 2
- - uid: 6016
+ - uid: 14718
components:
- type: Transform
- pos: -48.5,-9.5
+ pos: 50.5,35.5
parent: 2
- - uid: 6018
+ - uid: 14787
components:
- type: Transform
- pos: -48.5,6.5
+ pos: -30.5,-3.5
parent: 2
- - uid: 6127
+ - uid: 14945
components:
- type: Transform
- pos: 37.5,1.5
+ pos: 50.5,33.5
parent: 2
- - uid: 6130
+ - uid: 14949
components:
- type: Transform
- pos: 37.5,-6.5
+ pos: 51.5,38.5
parent: 2
- - uid: 6165
+ - uid: 14950
components:
- type: Transform
- pos: -1.5,36.5
+ pos: 51.5,35.5
parent: 2
- - uid: 6177
+ - uid: 14951
components:
- type: Transform
- pos: 41.5,-27.5
+ pos: 33.5,48.5
parent: 2
- - uid: 6198
+ - uid: 14952
components:
- type: Transform
- pos: -31.5,0.5
+ pos: 33.5,46.5
parent: 2
- - uid: 6199
+ - uid: 14953
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: 33.5,47.5
parent: 2
- - uid: 6200
+ - uid: 14954
components:
- type: Transform
- pos: -32.5,-1.5
+ pos: 33.5,45.5
parent: 2
- - uid: 6201
+ - uid: 15128
components:
- type: Transform
- pos: -32.5,-2.5
+ pos: -2.5,-11.5
parent: 2
- - uid: 6268
+ - uid: 15145
components:
- type: Transform
- pos: -1.5,34.5
+ pos: 32.5,-18.5
parent: 2
- - uid: 6270
+ - uid: 15400
components:
- type: Transform
- pos: -9.5,18.5
+ pos: -97.5,17.5
parent: 2
- - uid: 6271
+ - uid: 15418
components:
- type: Transform
- pos: -31.5,18.5
+ pos: -70.5,2.5
parent: 2
- - uid: 6365
+ - uid: 15419
components:
- type: Transform
- pos: 37.5,-11.5
+ pos: -70.5,3.5
parent: 2
- - uid: 6366
+ - uid: 15502
components:
- type: Transform
- pos: 37.5,-9.5
+ pos: -42.5,8.5
parent: 2
- - uid: 6392
+ - uid: 15542
components:
- type: Transform
- pos: 36.5,32.5
+ pos: 5.5,72.5
parent: 2
- - uid: 6486
+ - uid: 15826
components:
- type: Transform
- pos: -17.5,-30.5
+ pos: -1.5,56.5
parent: 2
- - uid: 6487
+ - uid: 15853
components:
- type: Transform
- pos: -17.5,-31.5
+ pos: 62.5,-28.5
parent: 2
- - uid: 6488
+ - uid: 15861
components:
- type: Transform
- pos: -16.5,-31.5
+ pos: -35.5,16.5
parent: 2
- - uid: 6489
+ - uid: 15870
components:
- type: Transform
- pos: -15.5,-31.5
+ pos: -40.5,13.5
parent: 2
- - uid: 6490
+ - uid: 15872
components:
- type: Transform
- pos: -14.5,-31.5
+ pos: -41.5,11.5
parent: 2
- - uid: 6491
+ - uid: 15877
components:
- type: Transform
- pos: -13.5,-31.5
+ pos: -36.5,15.5
parent: 2
- - uid: 6492
+ - uid: 15879
components:
- type: Transform
- pos: -12.5,-31.5
+ pos: -41.5,12.5
parent: 2
- - uid: 6494
+ - uid: 15895
components:
- type: Transform
- pos: -10.5,-31.5
+ pos: -48.5,1.5
parent: 2
- - uid: 6495
+ - uid: 16395
components:
- type: Transform
- pos: -9.5,-31.5
+ pos: -4.5,56.5
parent: 2
- - uid: 6499
+ - uid: 16547
components:
- type: Transform
- pos: -14.5,-35.5
+ pos: -5.5,4.5
parent: 2
- - uid: 6506
+ - uid: 16603
components:
- type: Transform
- pos: -7.5,-31.5
+ pos: -42.5,11.5
parent: 2
- - uid: 6509
+ - uid: 16604
components:
- type: Transform
- pos: -2.5,-23.5
+ pos: -41.5,13.5
parent: 2
- - uid: 6514
+ - uid: 16630
components:
- type: Transform
- pos: -2.5,-22.5
+ pos: -40.5,14.5
parent: 2
- - uid: 6515
+ - uid: 16632
components:
- type: Transform
- pos: -5.5,-22.5
+ pos: -35.5,17.5
parent: 2
- - uid: 6571
+ - uid: 16634
components:
- type: Transform
- pos: -17.5,-23.5
+ pos: -36.5,16.5
parent: 2
- - uid: 6627
+ - uid: 16653
components:
- type: Transform
- pos: -17.5,-36.5
+ pos: -36.5,13.5
parent: 2
- - uid: 6646
+ - uid: 16658
components:
- type: Transform
- pos: -14.5,-32.5
+ pos: -35.5,13.5
parent: 2
- - uid: 6700
+ - uid: 16690
components:
- type: Transform
- pos: -8.5,-37.5
+ pos: 42.5,-27.5
parent: 2
- - uid: 6821
+ - uid: 16843
components:
- type: Transform
- pos: -6.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,29.5
parent: 2
- - uid: 7097
+ - uid: 17317
components:
- type: Transform
- pos: -51.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,31.5
parent: 2
- - uid: 7140
+ - uid: 17613
components:
- type: Transform
- pos: -48.5,-11.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,15.5
parent: 2
- - uid: 7156
+ - uid: 17622
components:
- type: Transform
- pos: -48.5,-12.5
+ pos: -13.5,-40.5
parent: 2
- - uid: 7167
+ - uid: 17658
components:
- type: Transform
- pos: -51.5,-13.5
+ pos: -46.5,-12.5
parent: 2
- - uid: 7168
+ - uid: 17703
components:
- type: Transform
- pos: -50.5,-24.5
+ pos: -34.5,-28.5
parent: 2
- - uid: 7179
+ - uid: 17708
components:
- type: Transform
- pos: -51.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-36.5
parent: 2
- - uid: 7183
+ - uid: 17711
components:
- type: Transform
- pos: -63.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-36.5
parent: 2
- - uid: 7184
+ - uid: 17726
components:
- type: Transform
- pos: -63.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-2.5
parent: 2
- - uid: 7186
+ - uid: 17738
components:
- type: Transform
- pos: -63.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-18.5
parent: 2
- - uid: 7187
+ - uid: 17751
components:
- type: Transform
- pos: -56.5,-1.5
+ pos: 70.5,-10.5
parent: 2
- - uid: 7188
+ - uid: 17805
components:
- type: Transform
- pos: -56.5,-4.5
+ pos: -8.5,4.5
parent: 2
- - uid: 7196
+ - uid: 17899
components:
- type: Transform
- pos: -57.5,-13.5
+ pos: 50.5,-15.5
parent: 2
- - uid: 7197
+ - uid: 17912
components:
- type: Transform
- pos: -57.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,5.5
parent: 2
- - uid: 7199
+ - uid: 18006
components:
- type: Transform
- pos: -57.5,-16.5
+ pos: -49.5,6.5
parent: 2
- - uid: 7200
+ - uid: 18007
components:
- type: Transform
- pos: -57.5,-17.5
+ pos: -62.5,6.5
parent: 2
- - uid: 7201
+ - uid: 18023
components:
- type: Transform
- pos: -57.5,-18.5
+ pos: 51.5,-14.5
parent: 2
- - uid: 7202
+ - uid: 18090
components:
- type: Transform
- pos: -57.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-29.5
parent: 2
- - uid: 7204
+ - uid: 18101
components:
- type: Transform
- pos: -57.5,-21.5
+ pos: -48.5,5.5
parent: 2
- - uid: 7205
+ - uid: 18104
components:
- type: Transform
- pos: -57.5,-22.5
+ pos: 12.5,72.5
parent: 2
- - uid: 7206
+ - uid: 18118
components:
- type: Transform
- pos: -57.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,31.5
parent: 2
- - uid: 7207
+ - uid: 18124
components:
- type: Transform
- pos: -57.5,-24.5
+ pos: -39.5,-30.5
parent: 2
- - uid: 7208
+ - uid: 18154
components:
- type: Transform
- pos: -57.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,28.5
parent: 2
- - uid: 7209
+ - uid: 18173
components:
- type: Transform
- pos: -57.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-36.5
parent: 2
- - uid: 7215
+ - uid: 18198
components:
- type: Transform
- pos: -60.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,28.5
parent: 2
- - uid: 7218
+ - uid: 18407
components:
- type: Transform
- pos: -42.5,-29.5
+ pos: -62.5,-0.5
parent: 2
- - uid: 7220
+ - uid: 18431
components:
- type: Transform
- pos: -42.5,-31.5
+ pos: -53.5,6.5
parent: 2
- - uid: 7221
+ - uid: 18432
components:
- type: Transform
- pos: -35.5,-31.5
+ pos: -58.5,6.5
parent: 2
- - uid: 7222
+ - uid: 18448
components:
- type: Transform
- pos: -36.5,-31.5
+ pos: -55.5,0.5
parent: 2
- - uid: 7223
+ - uid: 18634
components:
- type: Transform
- pos: -37.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,2.5
parent: 2
- - uid: 7226
+ - uid: 19172
components:
- type: Transform
- pos: -40.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,10.5
parent: 2
- - uid: 7227
+ - uid: 19186
components:
- type: Transform
- pos: -41.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,21.5
parent: 2
- - uid: 7228
+ - uid: 19354
components:
- type: Transform
- pos: -43.5,-31.5
+ pos: -57.5,-30.5
parent: 2
- - uid: 7229
+ - uid: 19355
components:
- type: Transform
- pos: -44.5,-31.5
+ pos: -56.5,-30.5
parent: 2
- - uid: 7230
+ - uid: 19419
components:
- type: Transform
- pos: -45.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,28.5
parent: 2
- - uid: 7231
+ - uid: 19954
components:
- type: Transform
- pos: -46.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,7.5
parent: 2
- - uid: 7232
+ - uid: 19970
components:
- type: Transform
- pos: -47.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,7.5
parent: 2
- - uid: 7233
+ - uid: 19991
components:
- type: Transform
- pos: -48.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-26.5
parent: 2
- - uid: 7234
+ - uid: 19997
components:
- type: Transform
- pos: -49.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-4.5
parent: 2
- - uid: 7236
+ - uid: 20187
components:
- type: Transform
- pos: -51.5,-31.5
+ pos: -31.5,-6.5
parent: 2
- - uid: 7238
+ - uid: 20188
components:
- type: Transform
- pos: -60.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-28.5
parent: 2
- - uid: 7239
+ - uid: 20190
components:
- type: Transform
- pos: -60.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-30.5
parent: 2
- - uid: 7240
+ - uid: 20194
components:
- type: Transform
- pos: -60.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -55.5,-26.5
parent: 2
- - uid: 7241
+ - uid: 20199
components:
- type: Transform
- pos: -60.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -53.5,-26.5
parent: 2
- - uid: 7242
+ - uid: 20238
components:
- type: Transform
- pos: -60.5,-24.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,17.5
parent: 2
- - uid: 7243
+ - uid: 20239
components:
- type: Transform
- pos: -60.5,-25.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,8.5
parent: 2
- - uid: 7244
+ - uid: 20242
components:
- type: Transform
- pos: -60.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: 10.5,8.5
parent: 2
- - uid: 7245
+ - uid: 20254
components:
- type: Transform
- pos: -60.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,8.5
parent: 2
- - uid: 7246
+ - uid: 20312
components:
- type: Transform
- pos: -60.5,-28.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-7.5
parent: 2
- - uid: 7299
+ - uid: 20582
components:
- type: Transform
- pos: -63.5,-10.5
+ pos: 31.5,-22.5
parent: 2
- - uid: 7300
+ - uid: 20589
components:
- type: Transform
- pos: -63.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,24.5
parent: 2
- - uid: 7301
+ - uid: 20629
components:
- type: Transform
- pos: -63.5,-0.5
+ pos: -39.5,-28.5
parent: 2
- - uid: 7302
+ - uid: 20870
components:
- type: Transform
- pos: -49.5,-0.5
+ pos: -17.5,-6.5
parent: 2
- - uid: 7305
+ - uid: 21017
components:
- type: Transform
- pos: -56.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-26.5
parent: 2
- - uid: 7306
+ - uid: 21054
components:
- type: Transform
- pos: -56.5,-6.5
+ pos: 37.5,3.5
parent: 2
- - uid: 7307
+ - uid: 21089
components:
- type: Transform
- pos: -56.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,18.5
parent: 2
- - uid: 7309
+ - uid: 21099
components:
- type: Transform
- pos: -56.5,-0.5
+ pos: 73.5,-10.5
parent: 2
- - uid: 7312
+ - uid: 21165
components:
- type: Transform
- pos: -63.5,0.5
+ pos: -3.5,56.5
parent: 2
- - uid: 7315
+ - uid: 21169
components:
- type: Transform
- pos: -62.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,-24.5
parent: 2
- - uid: 7316
+ - uid: 21177
components:
- type: Transform
- pos: -56.5,-7.5
+ pos: -51.5,-34.5
parent: 2
- - uid: 7318
+ - uid: 21178
components:
- type: Transform
- pos: -60.5,-5.5
+ pos: -51.5,-33.5
parent: 2
- - uid: 7319
+ - uid: 21334
components:
- type: Transform
- pos: -57.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,8.5
parent: 2
- - uid: 7331
+ - uid: 21336
components:
- type: Transform
- pos: 79.5,-7.5
+ pos: 17.5,18.5
parent: 2
- - uid: 7342
+ - uid: 21575
components:
- type: Transform
- pos: -52.5,-13.5
+ pos: -49.5,-12.5
parent: 2
- - uid: 7343
+ - uid: 21784
components:
- type: Transform
- pos: -53.5,-13.5
+ pos: -7.5,56.5
parent: 2
- - uid: 7344
+ - uid: 21786
components:
- type: Transform
- pos: -54.5,-13.5
+ pos: -5.5,56.5
parent: 2
- - uid: 7345
+ - uid: 21883
components:
- type: Transform
- pos: -55.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: -71.5,4.5
parent: 2
- - uid: 7346
+ - uid: 21909
components:
- type: Transform
- pos: -56.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: 67.5,25.5
parent: 2
- - uid: 7359
+ - uid: 21921
components:
- type: Transform
- pos: 5.5,16.5
+ pos: -38.5,-26.5
parent: 2
- - uid: 7360
+ - uid: 21926
components:
- type: Transform
- pos: 4.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -40.5,-24.5
parent: 2
- - uid: 7369
+ - uid: 21936
components:
- type: Transform
- pos: -51.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,31.5
parent: 2
- - uid: 7376
+ - uid: 22046
components:
- type: Transform
- pos: -52.5,-18.5
+ pos: -50.5,-30.5
parent: 2
- - uid: 7377
+ - uid: 22050
components:
- type: Transform
- pos: -53.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: 71.5,28.5
parent: 2
- - uid: 7378
+ - uid: 22052
components:
- type: Transform
- pos: -54.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-6.5
parent: 2
- - uid: 7379
+ - uid: 22053
components:
- type: Transform
- pos: -55.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-24.5
parent: 2
- - uid: 7380
+ - uid: 22076
components:
- type: Transform
- pos: -56.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-24.5
parent: 2
- - uid: 7384
+ - uid: 22078
components:
- type: Transform
- pos: 51.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,13.5
parent: 2
- - uid: 7386
+ - uid: 22089
components:
- type: Transform
- pos: -63.5,-5.5
+ pos: -52.5,-19.5
parent: 2
- - uid: 7387
+ - uid: 22098
components:
- type: Transform
- pos: -63.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-24.5
parent: 2
- - uid: 7388
+ - uid: 22110
components:
- type: Transform
- pos: -60.5,-12.5
+ pos: -6.5,56.5
parent: 2
- - uid: 7389
+ - uid: 22114
components:
- type: Transform
- pos: -60.5,-11.5
+ pos: -50.5,-27.5
parent: 2
- - uid: 7390
+ - uid: 22119
components:
- type: Transform
- pos: -60.5,-10.5
+ pos: -9.5,56.5
parent: 2
- - uid: 7391
+ - uid: 22128
components:
- type: Transform
- pos: -58.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-24.5
parent: 2
- - uid: 7393
+ - uid: 22152
components:
- type: Transform
- pos: -57.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-1.5
parent: 2
- - uid: 7395
+ - uid: 22163
components:
- type: Transform
- pos: -56.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-0.5
parent: 2
- - uid: 7396
+ - uid: 22290
components:
- type: Transform
- pos: -56.5,-9.5
+ pos: -9.5,6.5
parent: 2
- - uid: 7397
+ - uid: 22373
components:
- type: Transform
- pos: -56.5,-8.5
+ pos: -12.5,-5.5
parent: 2
- - uid: 7398
+ - uid: 22492
components:
- type: Transform
- pos: -63.5,-2.5
+ pos: -72.5,-0.5
parent: 2
- - uid: 7399
+ - uid: 22579
components:
- type: Transform
- pos: -63.5,-3.5
+ pos: -7.5,8.5
parent: 2
- - uid: 7400
+ - uid: 22609
components:
- type: Transform
- pos: -63.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,7.5
parent: 2
- - uid: 7401
+ - uid: 22697
components:
- type: Transform
- pos: -61.5,-10.5
+ pos: -24.5,-38.5
parent: 2
- - uid: 7402
+ - uid: 22777
components:
- type: Transform
- pos: -62.5,-10.5
+ pos: -2.5,-25.5
parent: 2
- - uid: 7403
+ - uid: 22861
components:
- type: Transform
- pos: -63.5,2.5
+ pos: -12.5,-40.5
parent: 2
- - uid: 7405
+ - uid: 22889
components:
- type: Transform
- pos: -63.5,4.5
+ pos: 5.5,34.5
parent: 2
- - uid: 7406
+ - uid: 22912
components:
- type: Transform
- pos: -63.5,5.5
+ pos: -5.5,-43.5
parent: 2
- - uid: 7407
+ - uid: 23042
components:
- type: Transform
- pos: -63.5,6.5
+ pos: 32.5,3.5
parent: 2
- - uid: 7411
+ - uid: 23115
components:
- type: Transform
- pos: -61.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-19.5
parent: 2
- - uid: 7419
+ - uid: 23132
components:
- type: Transform
- pos: -67.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-23.5
parent: 2
- - uid: 7434
+ - uid: 23150
components:
- type: Transform
- pos: -66.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -39.5,-20.5
parent: 2
- - uid: 7435
+ - uid: 23254
components:
- type: Transform
- pos: -66.5,6.5
+ pos: -67.5,4.5
parent: 2
- - uid: 7436
+ - uid: 23297
components:
- type: Transform
- pos: -66.5,3.5
+ pos: -31.5,-12.5
parent: 2
- - uid: 7437
+ - uid: 23338
components:
- type: Transform
- pos: -66.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -51.5,-5.5
parent: 2
- - uid: 7438
+ - uid: 23408
components:
- type: Transform
- pos: -70.5,15.5
+ pos: -6.5,-43.5
parent: 2
- - uid: 7439
+ - uid: 23425
components:
- type: Transform
- pos: -66.5,0.5
+ pos: 5.5,-12.5
parent: 2
- - uid: 7440
+ - uid: 23456
components:
- type: Transform
- pos: -66.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-6.5
parent: 2
- - uid: 7444
+ - uid: 23500
components:
- type: Transform
- pos: -66.5,11.5
+ pos: -78.5,-4.5
parent: 2
- - uid: 7445
+ - uid: 23507
components:
- type: Transform
- pos: -66.5,14.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,44.5
parent: 2
- - uid: 7446
+ - uid: 23540
components:
- type: Transform
- pos: -66.5,12.5
+ pos: -75.5,-0.5
parent: 2
- - uid: 7447
+ - uid: 23654
components:
- type: Transform
- pos: -66.5,10.5
+ pos: 73.5,-12.5
parent: 2
- - uid: 7448
+ - uid: 23661
components:
- type: Transform
- pos: -66.5,13.5
+ pos: -2.5,16.5
parent: 2
- - uid: 7449
+ - uid: 23791
components:
- type: Transform
- pos: -66.5,15.5
+ pos: 13.5,72.5
parent: 2
- - uid: 7450
+ - uid: 23793
components:
- type: Transform
- pos: -66.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-39.5
parent: 2
- - uid: 7452
+ - uid: 23797
components:
- type: Transform
- pos: -66.5,18.5
+ pos: 3.5,71.5
parent: 2
- - uid: 7454
+ - uid: 23799
components:
- type: Transform
- pos: -56.5,-26.5
+ pos: 3.5,72.5
parent: 2
- - uid: 7556
+ - uid: 23800
components:
- type: Transform
- pos: -47.5,10.5
+ pos: 4.5,72.5
parent: 2
- - uid: 7591
+ - uid: 23805
components:
- type: Transform
- pos: 52.5,-14.5
+ pos: 3.5,57.5
parent: 2
- - uid: 7623
+ - uid: 23959
components:
- type: Transform
- pos: -32.5,-6.5
+ pos: 10.5,-13.5
parent: 2
- - uid: 7632
+ - uid: 23975
components:
- type: Transform
- pos: -48.5,10.5
+ pos: 67.5,30.5
parent: 2
- - uid: 7633
+ - uid: 24814
components:
- type: Transform
- pos: -49.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-36.5
parent: 2
- - uid: 7634
+ - uid: 25326
components:
- type: Transform
- pos: -50.5,10.5
+ pos: 11.5,18.5
parent: 2
- - uid: 7635
+ - uid: 25672
components:
- type: Transform
- pos: -51.5,10.5
+ pos: -59.5,-26.5
parent: 2
- - uid: 7653
+ - uid: 25697
components:
- type: Transform
- pos: -65.5,6.5
+ pos: 24.5,8.5
parent: 2
- - uid: 7654
+ - uid: 25792
components:
- type: Transform
- pos: -65.5,10.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,13.5
parent: 2
- - uid: 7658
+ - uid: 26247
components:
- type: Transform
- pos: 10.5,17.5
+ pos: 3.5,-29.5
parent: 2
- - uid: 7680
+ - uid: 26631
components:
- type: Transform
- pos: -70.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -17.5,-40.5
parent: 2
- - uid: 7681
+ - uid: 26678
components:
- type: Transform
- pos: -71.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-3.5
parent: 2
- - uid: 7683
+ - uid: 26720
components:
- type: Transform
- pos: -73.5,12.5
+ pos: -56.5,-19.5
parent: 2
- - uid: 7688
+ - uid: 26746
components:
- type: Transform
- pos: -70.5,4.5
+ pos: -74.5,5.5
parent: 2
- - uid: 7737
+ - uid: 26766
components:
- type: Transform
- pos: -45.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,18.5
parent: 2
- - uid: 7774
+ - uid: 26862
components:
- type: Transform
- pos: -66.5,1.5
+ pos: 4.5,24.5
parent: 2
- - uid: 7778
+ - uid: 26883
components:
- type: Transform
- pos: -70.5,16.5
+ pos: 35.5,-12.5
parent: 2
- - uid: 7798
+ - uid: 27040
components:
- type: Transform
- pos: -71.5,-0.5
+ pos: 73.5,-13.5
parent: 2
- - uid: 7835
+ - uid: 27069
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-8.5
+ pos: 37.5,-8.5
parent: 2
- - uid: 7836
+ - uid: 27313
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,9.5
parent: 2
- - uid: 7843
+ - uid: 27389
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,17.5
parent: 2
- - uid: 7845
+ - uid: 27442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-9.5
+ pos: -2.5,23.5
parent: 2
- - uid: 7847
+ - uid: 27784
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-7.5
+ pos: 35.5,-9.5
parent: 2
- - uid: 8130
+ - uid: 28143
components:
- type: Transform
- pos: -75.5,2.5
+ pos: -54.5,-19.5
parent: 2
- - uid: 8138
+ - uid: 28148
components:
- type: Transform
- pos: -77.5,2.5
+ pos: -53.5,-19.5
parent: 2
- - uid: 8240
+ - uid: 28178
components:
- type: Transform
- pos: -78.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,4.5
parent: 2
- - uid: 8241
+ - uid: 28179
components:
- type: Transform
- pos: -79.5,2.5
+ pos: -15.5,-36.5
parent: 2
- - uid: 8270
+ - uid: 28188
components:
- type: Transform
- pos: -38.5,20.5
+ pos: -24.5,-39.5
parent: 2
- - uid: 8274
+ - uid: 28191
components:
- type: Transform
- pos: -33.5,23.5
+ pos: -25.5,-39.5
parent: 2
- - uid: 8333
+ - uid: 28193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-40.5
parent: 2
- - uid: 8367
+ - uid: 28203
components:
- type: Transform
- pos: -48.5,-34.5
+ pos: -14.5,-38.5
parent: 2
- - uid: 8398
+ - uid: 28207
components:
- type: Transform
- pos: -70.5,13.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-26.5
parent: 2
- - uid: 8399
+ - uid: 28226
components:
- type: Transform
- pos: -70.5,17.5
+ pos: 5.5,-11.5
parent: 2
- - uid: 8438
+ - uid: 28228
components:
- type: Transform
- pos: -70.5,-0.5
+ pos: 5.5,17.5
parent: 2
- - uid: 8473
+ - uid: 28238
components:
- type: Transform
- pos: -81.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-6.5
parent: 2
- - uid: 8598
+ - uid: 28349
components:
- type: Transform
- pos: -30.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-7.5
parent: 2
- - uid: 8650
+ - uid: 28353
components:
- type: Transform
- pos: -70.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-10.5
parent: 2
- - uid: 8651
+ - uid: 28354
components:
- type: Transform
- pos: -68.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-6.5
parent: 2
- - uid: 8652
+ - uid: 28413
components:
- type: Transform
- pos: -69.5,18.5
+ pos: 5.5,24.5
parent: 2
- - uid: 8712
+ - uid: 28439
components:
- type: Transform
- pos: -40.5,20.5
+ pos: 11.5,19.5
parent: 2
- - uid: 8717
+ - uid: 28589
components:
- type: Transform
- pos: -40.5,25.5
+ pos: 5.5,23.5
parent: 2
- - uid: 8750
+ - uid: 28817
components:
- type: Transform
- pos: -35.5,25.5
+ pos: -15.5,18.5
parent: 2
- - uid: 8751
+ - uid: 28849
components:
- type: Transform
- pos: -36.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -73.5,4.5
parent: 2
- - uid: 8752
+ - uid: 29185
components:
- type: Transform
- pos: -34.5,25.5
+ pos: 65.5,28.5
parent: 2
- - uid: 8753
+ - uid: 29290
components:
- type: Transform
- pos: -37.5,25.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,72.5
parent: 2
- - uid: 8754
+ - uid: 29312
components:
- type: Transform
- pos: -34.5,23.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,12.5
parent: 2
- - uid: 8755
+ - uid: 29845
components:
- type: Transform
- pos: -34.5,24.5
+ pos: 87.5,18.5
parent: 2
- - uid: 9050
+ - uid: 29998
components:
- type: Transform
- pos: -82.5,-1.5
+ pos: 87.5,16.5
parent: 2
- - uid: 9051
+ - uid: 30219
components:
- type: Transform
- pos: -78.5,-0.5
+ pos: -44.5,7.5
parent: 2
- - uid: 9053
+ - uid: 30273
components:
- type: Transform
- pos: -82.5,0.5
+ pos: -17.5,-16.5
parent: 2
- - uid: 9054
+ - uid: 30274
components:
- type: Transform
- pos: -82.5,2.5
+ pos: -23.5,-16.5
parent: 2
- - uid: 9067
+ - uid: 30275
components:
- type: Transform
- pos: -78.5,1.5
+ pos: -39.5,-12.5
parent: 2
- - uid: 9104
+ - uid: 30421
components:
- type: Transform
- pos: -43.5,19.5
+ pos: 6.5,-13.5
parent: 2
- - uid: 9105
+ - uid: 30423
components:
- type: Transform
- pos: -43.5,20.5
+ pos: 14.5,-13.5
parent: 2
- - uid: 9107
+ - uid: 30426
components:
- type: Transform
- pos: -43.5,22.5
+ pos: 22.5,-14.5
parent: 2
- - uid: 9108
+ - uid: 30451
components:
- type: Transform
- pos: -43.5,23.5
+ pos: 7.5,-13.5
parent: 2
- - uid: 9109
+ - uid: 30586
components:
- type: Transform
- pos: -43.5,24.5
+ pos: -40.5,-12.5
parent: 2
- - uid: 9110
+ - uid: 30595
components:
- type: Transform
- pos: -43.5,25.5
+ pos: -55.5,-19.5
parent: 2
- - uid: 9111
+ - uid: 30610
components:
- type: Transform
- pos: -42.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-23.5
parent: 2
- - uid: 9112
+ - uid: 30654
components:
- type: Transform
- pos: -41.5,25.5
+ pos: -54.5,-30.5
parent: 2
- - uid: 9121
+ - uid: 30746
components:
- type: Transform
- pos: -39.5,25.5
+ pos: 73.5,-14.5
parent: 2
- - uid: 9140
+ - uid: 30798
components:
- type: Transform
- pos: -1.5,-34.5
+ pos: 24.5,4.5
parent: 2
- - uid: 9148
+ - uid: 30799
components:
- type: Transform
- pos: -71.5,15.5
+ pos: 23.5,4.5
parent: 2
- - uid: 9213
+ - uid: 30897
components:
- type: Transform
- pos: 34.5,45.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,17.5
parent: 2
- - uid: 9254
+ - uid: 31007
components:
- type: Transform
- pos: 35.5,45.5
+ pos: -9.5,-5.5
parent: 2
- - uid: 9262
+ - uid: 31008
components:
- type: Transform
- pos: -78.5,22.5
+ pos: -9.5,-4.5
parent: 2
- - uid: 9277
+ - uid: 31059
components:
- type: Transform
- pos: -74.5,1.5
+ pos: 74.5,-12.5
parent: 2
- - uid: 9525
+ - uid: 31060
components:
- type: Transform
- pos: -74.5,0.5
+ pos: 68.5,-12.5
parent: 2
- - uid: 9646
+ - uid: 31166
components:
- type: Transform
- pos: -80.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-29.5
parent: 2
- - uid: 9648
+ - uid: 31174
components:
- type: Transform
- pos: -74.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -54.5,-26.5
parent: 2
- - uid: 9650
+ - uid: 31277
components:
- type: Transform
- pos: -82.5,5.5
+ pos: -25.5,-6.5
parent: 2
- - uid: 10015
+ - uid: 31364
components:
- type: Transform
- pos: -74.5,-0.5
+ pos: -27.5,-6.5
parent: 2
- - uid: 10329
+ - uid: 31444
components:
- type: Transform
- pos: -30.5,-10.5
+ pos: 6.5,72.5
parent: 2
- - uid: 11101
+ - uid: 31477
components:
- type: Transform
- pos: -74.5,2.5
+ pos: -29.5,-3.5
parent: 2
- - uid: 11166
+ - uid: 31512
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,6.5
+ pos: -27.5,-3.5
parent: 2
- - uid: 11167
+ - uid: 31528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,5.5
+ pos: -28.5,-3.5
parent: 2
- - uid: 11250
+ - uid: 31744
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,7.5
+ pos: 17.5,19.5
parent: 2
- - uid: 11281
+ - uid: 31750
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -53.5,-30.5
+ pos: 30.5,15.5
parent: 2
- - uid: 11282
+ - uid: 31751
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -52.5,-30.5
+ pos: 30.5,16.5
parent: 2
- - uid: 11293
+ - uid: 32145
components:
- type: Transform
- pos: -13.5,4.5
+ pos: -28.5,-6.5
parent: 2
- - uid: 11334
+ - uid: 32259
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-8.5
+ pos: -33.5,8.5
parent: 2
- - uid: 11335
+ - uid: 32343
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -33.5,13.5
parent: 2
- - uid: 11336
+ - uid: 33689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-24.5
+ pos: -46.5,-13.5
parent: 2
- - uid: 11347
+ - uid: 33803
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -72.5,4.5
+ pos: -24.5,-3.5
parent: 2
- - uid: 11390
+ - uid: 33804
components:
- type: Transform
- pos: -48.5,-33.5
+ pos: -25.5,-3.5
parent: 2
- - uid: 11391
+ - uid: 33805
components:
- type: Transform
- pos: -48.5,-32.5
+ pos: -29.5,-6.5
parent: 2
- - uid: 11531
+ - uid: 33806
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-6.5
+ pos: -26.5,-3.5
parent: 2
- - uid: 11635
+ - uid: 33830
components:
- type: Transform
- pos: 3.5,-28.5
+ pos: -16.5,-6.5
parent: 2
- - uid: 11873
+ - uid: 33899
components:
- type: Transform
- pos: 3.5,70.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,16.5
parent: 2
- - uid: 11919
+ - uid: 33914
components:
- type: Transform
- pos: -1.5,33.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,12.5
parent: 2
- - uid: 12006
+ - uid: 33943
components:
- type: Transform
- pos: 73.5,-10.5
+ pos: 17.5,17.5
parent: 2
- - uid: 12130
+ - uid: 34657
components:
- type: Transform
- pos: -39.5,-31.5
+ pos: 69.5,-6.5
parent: 2
- - uid: 12147
+ - uid: 34658
components:
- type: Transform
- pos: 21.5,18.5
+ pos: 70.5,-6.5
parent: 2
- - uid: 12148
+ - uid: 34659
components:
- type: Transform
- pos: 22.5,-13.5
+ pos: 72.5,-6.5
parent: 2
- - uid: 12924
+ - uid: 34660
components:
- type: Transform
- pos: -97.5,14.5
+ pos: 73.5,-6.5
parent: 2
- - uid: 12925
+ - uid: 34661
components:
- type: Transform
- pos: -79.5,-3.5
+ pos: 74.5,-6.5
parent: 2
- - uid: 12974
+ - uid: 34662
components:
- type: Transform
- pos: 15.5,18.5
+ pos: 75.5,-6.5
parent: 2
- - uid: 12997
+ - uid: 39290
components:
- type: Transform
- pos: -82.5,-0.5
+ pos: 69.5,-12.5
parent: 2
- - uid: 13044
+- proto: WallSolidDiagonal
+ entities:
+ - uid: 1893
components:
- type: Transform
- pos: -96.5,13.5
+ pos: 13.5,23.5
parent: 2
- - uid: 13047
+ - uid: 1894
components:
- type: Transform
- pos: -75.5,6.5
+ pos: 14.5,24.5
parent: 2
- - uid: 13053
+- proto: WallWeaponCapacitorRecharger
+ entities:
+ - uid: 5570
components:
- type: Transform
- pos: -74.5,6.5
+ pos: 47.5,29.5
parent: 2
- - uid: 13055
+ - uid: 5571
components:
- type: Transform
- pos: -81.5,5.5
+ pos: 45.5,33.5
parent: 2
- - uid: 13131
+ - uid: 6841
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-25.5
parent: 2
- - uid: 13206
+ - uid: 14190
components:
- type: Transform
- pos: -81.5,6.5
+ pos: 20.5,46.5
parent: 2
- - uid: 13207
+ - uid: 15275
components:
- type: Transform
- pos: -82.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,67.5
parent: 2
- - uid: 13241
+ - uid: 19813
components:
- type: Transform
- pos: 51.5,-27.5
+ pos: -40.5,58.5
parent: 2
- - uid: 13242
+ - uid: 36967
components:
- type: Transform
- pos: -42.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,32.5
parent: 2
- - uid: 13245
+- proto: WallWood
+ entities:
+ - uid: 874
components:
- type: Transform
- pos: 14.5,-3.5
+ pos: 23.5,-6.5
parent: 2
- - uid: 13247
+ - uid: 910
components:
- type: Transform
- pos: -12.5,4.5
+ pos: 24.5,-6.5
parent: 2
- - uid: 13248
+ - uid: 911
components:
- type: Transform
- pos: -12.5,0.5
+ pos: 25.5,-6.5
parent: 2
- - uid: 13249
+ - uid: 1018
components:
- type: Transform
- pos: -12.5,11.5
+ pos: 24.5,-9.5
parent: 2
- - uid: 13250
+ - uid: 1020
components:
- type: Transform
- pos: 4.5,-19.5
+ pos: 33.5,-9.5
parent: 2
- - uid: 13253
+ - uid: 1040
components:
- type: Transform
- pos: 22.5,-3.5
+ pos: 23.5,-9.5
parent: 2
- - uid: 13271
+ - uid: 1070
components:
- type: Transform
- pos: -40.5,18.5
+ pos: 25.5,-9.5
parent: 2
- - uid: 13275
+ - uid: 1186
components:
- type: Transform
- pos: 37.5,-17.5
+ pos: 32.5,-9.5
parent: 2
- - uid: 13276
+ - uid: 2758
components:
- type: Transform
- pos: -35.5,21.5
+ pos: 67.5,9.5
parent: 2
- - uid: 13319
+ - uid: 5349
components:
- type: Transform
- pos: 52.5,5.5
+ pos: 54.5,51.5
parent: 2
- - uid: 13320
+ - uid: 11249
components:
- type: Transform
- pos: 68.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-6.5
parent: 2
- - uid: 13323
+ - uid: 11539
components:
- type: Transform
- pos: 66.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 33.5,-6.5
parent: 2
- - uid: 13324
+ - uid: 18709
components:
- type: Transform
- pos: -80.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-6.5
parent: 2
- - uid: 13328
+ - uid: 26884
components:
- type: Transform
- pos: -81.5,-2.5
+ pos: 34.5,-9.5
parent: 2
- - uid: 13336
+- proto: WardrobeBotanistFilled
+ entities:
+ - uid: 18460
components:
- type: Transform
- pos: 67.5,-25.5
+ pos: -50.5,-1.5
parent: 2
- - uid: 13348
+ - uid: 18499
components:
- type: Transform
- pos: 68.5,-24.5
+ pos: -49.5,-1.5
parent: 2
- - uid: 13349
+- proto: WardrobeCargoFilled
+ entities:
+ - uid: 807
components:
- type: Transform
- pos: 69.5,-22.5
+ pos: -12.5,-35.5
parent: 2
- - uid: 13351
+ - uid: 6648
components:
- type: Transform
- pos: 68.5,-11.5
+ pos: -10.5,-35.5
parent: 2
- - uid: 13352
+ - uid: 22599
components:
- type: Transform
- pos: 52.5,-9.5
+ pos: -9.5,-35.5
parent: 2
- - uid: 13353
+ - uid: 27960
components:
- type: Transform
- pos: 76.5,-8.5
+ pos: -13.5,-35.5
parent: 2
- - uid: 13371
+- proto: WardrobeChapelFilled
+ entities:
+ - uid: 458
components:
- type: Transform
- pos: -81.5,-1.5
+ pos: 65.5,29.5
parent: 2
- - uid: 13372
+- proto: WardrobeFormal
+ entities:
+ - uid: 1060
components:
- type: Transform
- pos: -79.5,-1.5
+ pos: -73.5,0.5
parent: 2
- - uid: 13373
+- proto: WardrobeGreenFilled
+ entities:
+ - uid: 13135
components:
- type: Transform
- pos: -79.5,6.5
+ pos: -73.5,17.5
parent: 2
- - uid: 13374
+- proto: WardrobePrison
+ entities:
+ - uid: 36801
components:
- type: Transform
- pos: -76.5,6.5
+ pos: 74.5,69.5
parent: 2
- - uid: 13375
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 14275
components:
- type: Transform
- pos: -78.5,0.5
+ pos: -26.5,24.5
parent: 2
- - uid: 13376
+ - uid: 15380
components:
- type: Transform
- pos: -82.5,3.5
+ pos: -30.5,24.5
parent: 2
- - uid: 13377
+ - uid: 15485
components:
- type: Transform
- pos: -82.5,1.5
+ pos: -30.5,34.5
parent: 2
- - uid: 13920
+ - uid: 15486
components:
- type: Transform
- pos: 8.5,40.5
+ pos: -26.5,34.5
parent: 2
- - uid: 13921
+ - uid: 18052
components:
- type: Transform
- pos: 8.5,37.5
+ pos: -25.5,67.5
parent: 2
- - uid: 14034
+ - uid: 18054
components:
- type: Transform
- pos: -96.5,14.5
+ pos: -21.5,67.5
parent: 2
- - uid: 14194
+ - uid: 18056
components:
- type: Transform
- pos: 63.5,-27.5
+ pos: -17.5,67.5
parent: 2
- - uid: 14211
+ - uid: 18058
components:
- type: Transform
- pos: 68.5,-6.5
+ pos: -13.5,67.5
parent: 2
- - uid: 14384
+ - uid: 36783
components:
- type: Transform
- pos: 22.5,4.5
+ pos: 77.5,62.5
parent: 2
- - uid: 14451
+- proto: WarningAir
+ entities:
+ - uid: 4334
components:
- type: Transform
- pos: 68.5,-7.5
+ pos: 54.5,52.5
parent: 2
- - uid: 14452
+ - uid: 4535
components:
- type: Transform
- pos: 68.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: 97.5,75.5
parent: 2
- - uid: 14787
+ - uid: 6718
components:
- type: Transform
- pos: -30.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-47.5
parent: 2
- - uid: 15128
+- proto: WarningCO2
+ entities:
+ - uid: 9495
components:
- type: Transform
- pos: -2.5,-11.5
+ pos: -40.5,47.5
parent: 2
- - uid: 15148
+- proto: WarningN2
+ entities:
+ - uid: 9490
components:
- type: Transform
- pos: 8.5,-23.5
+ pos: -50.5,47.5
parent: 2
- - uid: 15400
+- proto: WarningN2O
+ entities:
+ - uid: 9491
components:
- type: Transform
- pos: -97.5,17.5
+ pos: -46.5,47.5
parent: 2
- - uid: 15418
+- proto: WarningO2
+ entities:
+ - uid: 9492
components:
- type: Transform
- pos: -70.5,2.5
+ pos: -48.5,47.5
parent: 2
- - uid: 15419
+- proto: WarningPlasma
+ entities:
+ - uid: 15244
components:
- type: Transform
- pos: -70.5,3.5
+ pos: -42.5,47.5
parent: 2
- - uid: 15502
+- proto: WarningTritium
+ entities:
+ - uid: 9494
components:
- type: Transform
- pos: -42.5,8.5
+ pos: -44.5,47.5
parent: 2
- - uid: 15542
+- proto: WarningWaste
+ entities:
+ - uid: 2439
components:
- type: Transform
- pos: 5.5,72.5
+ pos: -50.5,54.5
parent: 2
- - uid: 15853
+- proto: WarpPointBombing
+ entities:
+ - uid: 37555
components:
- type: Transform
- pos: 62.5,-28.5
+ pos: 1.5,2.5
parent: 2
- - uid: 15861
+ - type: WarpPoint
+ location: medical bombing target
+ - uid: 37556
components:
- type: Transform
- pos: -35.5,16.5
+ pos: -54.5,23.5
parent: 2
- - uid: 15870
+ - type: WarpPoint
+ location: engineering bombing target
+ - uid: 37557
components:
- type: Transform
- pos: -40.5,13.5
+ pos: -57.5,0.5
parent: 2
- - uid: 15872
+ - type: WarpPoint
+ location: botany bombing target
+ - uid: 37558
components:
- type: Transform
- pos: -41.5,11.5
+ pos: -84.5,8.5
parent: 2
- - uid: 15873
+ - type: WarpPoint
+ location: zoo bombing target
+ - uid: 37559
components:
- type: Transform
- pos: -39.5,14.5
+ pos: -13.5,39.5
parent: 2
- - uid: 15877
+ - type: WarpPoint
+ location: security bombing target
+ - uid: 37560
components:
- type: Transform
- pos: -36.5,15.5
+ pos: -26.5,63.5
parent: 2
- - uid: 15879
+ - type: WarpPoint
+ location: psych ward bombing target
+ - uid: 37561
components:
- type: Transform
- pos: -41.5,12.5
+ pos: 18.5,50.5
parent: 2
- - uid: 15880
+ - type: WarpPoint
+ location: bridge bombing target
+ - uid: 37562
components:
- type: Transform
- pos: -35.5,10.5
+ pos: -17.5,-24.5
parent: 2
- - uid: 15895
+ - type: WarpPoint
+ location: logistics bombing target
+ - uid: 37563
components:
- type: Transform
- pos: -48.5,1.5
+ pos: -43.5,-30.5
parent: 2
- - uid: 16527
+ - type: WarpPoint
+ location: bar bombing target
+ - uid: 37564
components:
- type: Transform
- pos: -37.5,20.5
+ pos: -37.5,10.5
parent: 2
- - uid: 16603
+ - type: WarpPoint
+ location: disposals bombing target
+ - uid: 37565
components:
- type: Transform
- pos: -42.5,11.5
+ pos: 18.5,-4.5
parent: 2
- - uid: 16604
+ - type: WarpPoint
+ location: chemistry bombing target
+ - uid: 37567
components:
- type: Transform
- pos: -41.5,13.5
+ pos: 9.5,28.5
parent: 2
- - uid: 16630
+ - type: WarpPoint
+ location: hop's office bombing target
+ - uid: 37568
components:
- type: Transform
- pos: -40.5,14.5
+ pos: -78.5,4.5
parent: 2
- - uid: 16632
+ - type: WarpPoint
+ location: theatre dorms bombing target
+ - uid: 37569
components:
- type: Transform
- pos: -35.5,17.5
+ pos: -53.5,-17.5
parent: 2
- - uid: 16634
+ - type: WarpPoint
+ location: food court bombing target
+ - uid: 37570
components:
- type: Transform
- pos: -36.5,16.5
+ pos: 34.5,-23.5
parent: 2
- - uid: 16637
+ - type: WarpPoint
+ location: boxing ring bombing target
+ - uid: 37571
components:
- type: Transform
- pos: -38.5,14.5
+ pos: 63.5,-6.5
parent: 2
- - uid: 16653
+ - type: WarpPoint
+ location: park bombing target
+ - uid: 37572
components:
- type: Transform
- pos: -36.5,13.5
+ pos: 61.5,17.5
parent: 2
- - uid: 16658
+ - type: WarpPoint
+ location: chapel bombing target
+ - uid: 37573
components:
- type: Transform
- pos: -35.5,13.5
+ pos: -7.5,54.5
parent: 2
- - uid: 16659
+ - type: WarpPoint
+ location: courtroom bombing target
+- proto: WashingMachine
+ entities:
+ - uid: 7080
components:
- type: Transform
- pos: -37.5,14.5
+ pos: -35.5,-18.5
parent: 2
- - uid: 16660
+- proto: WashingMachineBroken
+ entities:
+ - uid: 7040
components:
- type: Transform
- pos: -35.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-19.5
parent: 2
- - uid: 16690
+- proto: WashingMachineFilledClothes
+ entities:
+ - uid: 7088
components:
- type: Transform
- pos: 42.5,-27.5
+ pos: -38.5,-19.5
parent: 2
- - uid: 17317
+ - uid: 7159
components:
- type: Transform
- pos: -1.5,24.5
+ pos: -38.5,-18.5
parent: 2
- - uid: 17658
+- proto: WaterCooler
+ entities:
+ - uid: 309
components:
- type: Transform
- pos: -46.5,-12.5
+ pos: -11.5,-27.5
parent: 2
- - uid: 17899
+ - uid: 5267
components:
- type: Transform
- pos: 50.5,-15.5
+ pos: 34.5,30.5
parent: 2
- - uid: 18006
+ - uid: 6908
components:
- type: Transform
- pos: -49.5,6.5
+ pos: 43.5,-24.5
parent: 2
- - uid: 18007
+ - uid: 9033
components:
- type: Transform
- pos: -62.5,6.5
+ pos: -56.5,31.5
parent: 2
- - uid: 18023
+ - uid: 15593
components:
- type: Transform
- pos: 51.5,-14.5
+ pos: -8.5,30.5
parent: 2
- - uid: 18101
+ - uid: 15927
components:
- type: Transform
- pos: -48.5,5.5
+ pos: -2.5,49.5
parent: 2
- - uid: 18104
+ - uid: 16356
components:
- type: Transform
- pos: 12.5,72.5
+ pos: -10.5,61.5
parent: 2
- - uid: 18407
+ - uid: 16399
components:
- type: Transform
- pos: -62.5,-0.5
+ pos: -73.5,13.5
parent: 2
- - uid: 18431
+ - uid: 16627
components:
- type: Transform
- pos: -53.5,6.5
+ pos: -8.5,59.5
parent: 2
- - uid: 18432
+ - uid: 17798
components:
- type: Transform
- pos: -58.5,6.5
+ pos: 10.5,56.5
parent: 2
- - uid: 18448
+ - uid: 17969
components:
- type: Transform
- pos: -55.5,0.5
+ pos: -1.5,7.5
parent: 2
- - uid: 19353
+ - uid: 18462
components:
- type: Transform
- pos: -54.5,-30.5
+ pos: -58.5,-1.5
parent: 2
- - uid: 19354
+ - uid: 22057
components:
- type: Transform
- pos: -57.5,-30.5
+ pos: -75.5,5.5
parent: 2
- - uid: 19355
+ - uid: 28100
components:
- type: Transform
- pos: -56.5,-30.5
+ pos: -54.5,-12.5
parent: 2
- - uid: 19997
+ - uid: 36464
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-4.5
+ pos: 60.5,83.5
parent: 2
- - uid: 20029
+- proto: WaterTankFull
+ entities:
+ - uid: 217
components:
- type: Transform
- pos: -32.5,8.5
+ pos: -35.5,-11.5
parent: 2
- - uid: 20030
+ - uid: 2900
components:
- type: Transform
- pos: -32.5,4.5
+ pos: 77.5,-13.5
parent: 2
- - uid: 20031
+ - uid: 7668
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -5.5,-27.5
parent: 2
- - uid: 20187
+ - uid: 9291
components:
- type: Transform
- pos: -31.5,-6.5
+ pos: 34.5,48.5
parent: 2
- - uid: 20312
+ - uid: 9609
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-7.5
+ pos: -46.5,31.5
parent: 2
- - uid: 20931
+ - uid: 20011
components:
- type: Transform
- pos: 29.5,1.5
+ pos: 37.5,9.5
parent: 2
- - uid: 21054
+ - uid: 20933
components:
- type: Transform
- pos: 37.5,3.5
+ pos: -31.5,9.5
parent: 2
- - uid: 21575
+ - uid: 20935
components:
- type: Transform
- pos: -49.5,-12.5
+ pos: 52.5,6.5
parent: 2
- - uid: 21883
+ - uid: 20937
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -71.5,4.5
+ pos: 17.5,32.5
parent: 2
- - uid: 21918
+ - uid: 20941
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-8.5
+ pos: -65.5,-18.5
parent: 2
- - uid: 21942
+ - uid: 20942
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,0.5
+ pos: -26.5,-31.5
parent: 2
- - uid: 22046
+ - uid: 21207
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-24.5
+ pos: -40.5,27.5
parent: 2
- - uid: 22052
+ - uid: 32097
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-6.5
+ pos: 53.5,-29.5
parent: 2
- - uid: 22053
+ - uid: 38938
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -48.5,-24.5
+ pos: -73.5,19.5
parent: 2
- - uid: 22128
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 18481
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-24.5
+ pos: -52.5,0.5
parent: 2
- - uid: 22129
+- proto: WaterVaporCanister
+ entities:
+ - uid: 3599
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-24.5
+ pos: 44.5,46.5
parent: 2
- - uid: 22130
+ - type: AtmosDevice
+ joinedGrid: 2
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 1980
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-24.5
+ pos: 4.5,27.5
parent: 2
- - uid: 22151
+ - uid: 2748
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -36.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,45.5
parent: 2
- - uid: 22492
+ - uid: 3129
components:
- type: Transform
- pos: -72.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-20.5
parent: 2
- - uid: 22777
+ - uid: 6331
components:
- type: Transform
- pos: -2.5,-25.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,61.5
parent: 2
- - uid: 22889
+ - uid: 7965
components:
- type: Transform
- pos: 5.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,32.5
parent: 2
- - uid: 22948
+ - uid: 11971
components:
- type: Transform
- pos: 9.5,8.5
+ pos: 6.5,-21.5
parent: 2
- - uid: 23042
+ - uid: 14191
components:
- type: Transform
- pos: 32.5,3.5
+ pos: 13.5,54.5
parent: 2
- - uid: 23199
+ - uid: 14380
components:
- type: Transform
- pos: 6.5,-25.5
+ pos: -19.5,60.5
parent: 2
- - uid: 23254
+ - uid: 15274
components:
- type: Transform
- pos: -67.5,4.5
+ pos: -44.5,60.5
parent: 2
- - uid: 23297
+ - uid: 16031
components:
- type: Transform
- pos: -31.5,-12.5
+ pos: -21.5,46.5
parent: 2
- - uid: 23338
+ - uid: 16170
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -51.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,49.5
parent: 2
- - uid: 23425
+ - uid: 16480
components:
- type: Transform
- pos: 5.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,59.5
parent: 2
- - uid: 23456
+ - uid: 19188
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-6.5
+ pos: -11.5,37.5
parent: 2
- - uid: 23500
+ - uid: 19405
components:
- type: Transform
- pos: -78.5,-4.5
+ pos: 29.5,51.5
parent: 2
- - uid: 23540
+ - uid: 19406
components:
- type: Transform
- pos: -75.5,-0.5
+ pos: 16.5,59.5
parent: 2
- - uid: 23661
+ - uid: 21228
components:
- type: Transform
- pos: -2.5,16.5
+ pos: -10.5,37.5
parent: 2
- - uid: 23791
+ - uid: 25975
components:
- type: Transform
- pos: 13.5,72.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,43.5
parent: 2
- - uid: 23797
+ - uid: 28000
components:
- type: Transform
- pos: 3.5,71.5
+ rot: 1.5707963267948966 rad
+ pos: 12.5,43.5
parent: 2
- - uid: 23799
+ - uid: 28605
components:
- type: Transform
- pos: 3.5,72.5
+ pos: -24.5,46.5
parent: 2
- - uid: 23800
+ - uid: 30623
components:
- type: Transform
- pos: 4.5,72.5
+ pos: -35.5,35.5
parent: 2
- - uid: 23805
+ - uid: 36960
components:
- type: Transform
- pos: 3.5,57.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,31.5
parent: 2
- - uid: 23959
+ - uid: 36961
components:
- type: Transform
- pos: 10.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,31.5
parent: 2
- - uid: 23975
+- proto: WeaponDisabler
+ entities:
+ - uid: 14137
components:
- type: Transform
- pos: 67.5,30.5
+ pos: 13.482066,47.817783
parent: 2
- - uid: 24657
+ - uid: 15682
components:
- type: Transform
- pos: -2.5,24.5
+ pos: -18.544258,50.390102
parent: 2
- - uid: 24809
+ - uid: 17723
components:
- type: Transform
- pos: -1.5,39.5
+ pos: 6.3726206,-20.212404
parent: 2
- - uid: 24810
+- proto: WeaponDisablerPractice
+ entities:
+ - uid: 9505
components:
- type: Transform
- pos: -1.5,38.5
+ pos: -32.3164,43.572277
parent: 2
- - uid: 24811
+ - uid: 17013
components:
- type: Transform
- pos: -0.5,40.5
+ pos: -32.582024,43.751965
parent: 2
- - uid: 24813
+- proto: WeaponFlareGun
+ entities:
+ - uid: 6073
components:
- type: Transform
- pos: -1.5,37.5
+ pos: 16.488016,26.920761
parent: 2
- - uid: 25210
+- proto: WeaponLaserCarbinePractice
+ entities:
+ - uid: 8738
components:
- type: Transform
- pos: -0.5,39.5
+ pos: -30.527334,43.806652
parent: 2
- - uid: 25360
+ - uid: 9125
components:
- type: Transform
- pos: -0.5,24.5
+ pos: -30.519522,43.54884
parent: 2
- - uid: 26247
+- proto: WeaponLauncherRocket
+ entities:
+ - uid: 14355
components:
+ - type: MetaData
+ desc: The Warden's special girl.
+ name: Bethany
- type: Transform
- pos: 3.5,-29.5
+ pos: -22.514536,51.356438
parent: 2
- - uid: 26678
+- proto: WeaponShotgunKammererNonLethal
+ entities:
+ - uid: 14068
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-3.5
+ pos: -11.293884,37.834354
parent: 2
- - uid: 26716
+- proto: WeaponSubMachineGunWt550
+ entities:
+ - uid: 22260
+ components:
+ - type: Transform
+ parent: 30282
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponTurretHostile
+ entities:
+ - uid: 9161
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,-26.5
+ pos: -100.5,46.5
parent: 2
- - uid: 26717
+ - uid: 35567
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,-25.5
+ pos: -110.5,58.5
parent: 2
- - uid: 26719
+ - uid: 38198
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,-28.5
+ pos: -99.5,57.5
parent: 2
- - uid: 26720
+ - uid: 38261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,-30.5
+ pos: -110.5,43.5
parent: 2
- - uid: 26738
+ - uid: 38370
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -49.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: -117.5,52.5
parent: 2
- - uid: 26746
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 4722
components:
- type: Transform
- pos: -74.5,5.5
+ pos: 92.5,72.5
parent: 2
- - uid: 26766
+ - uid: 4739
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,18.5
+ pos: 90.5,72.5
parent: 2
- - uid: 26862
+ - uid: 8165
components:
- type: Transform
- pos: 4.5,24.5
+ pos: 96.5,74.5
parent: 2
- - uid: 26883
+ - uid: 8193
components:
- type: Transform
- pos: 35.5,-12.5
+ pos: 69.5,42.5
parent: 2
- - uid: 27069
+ - uid: 12709
components:
- type: Transform
- pos: 37.5,-8.5
+ pos: -122.5,42.5
parent: 2
- - uid: 27219
+ - uid: 13365
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -43.5,-24.5
+ pos: -122.5,51.5
parent: 2
- - uid: 27220
+ - uid: 18902
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-24.5
+ pos: -101.5,36.5
parent: 2
- - uid: 27298
+ - uid: 18903
components:
- type: Transform
- pos: 3.5,-27.5
+ pos: -92.5,53.5
parent: 2
- - uid: 27429
+ - uid: 18910
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-27.5
+ pos: -117.5,62.5
parent: 2
- - uid: 27442
+ - uid: 18913
components:
- type: Transform
- pos: -2.5,23.5
+ pos: -98.5,63.5
parent: 2
- - uid: 27784
+ - uid: 22231
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-9.5
+ pos: -98.5,56.5
parent: 2
- - uid: 28226
+ - uid: 22232
components:
- type: Transform
- pos: 5.5,-11.5
+ pos: -115.5,53.5
parent: 2
- - uid: 28228
+ - uid: 22234
components:
- type: Transform
- pos: 5.5,17.5
+ pos: -111.5,44.5
parent: 2
- - uid: 28238
+ - uid: 30159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,39.5
parent: 2
- - uid: 28349
+ - uid: 35405
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-7.5
+ pos: -100.5,44.5
parent: 2
- - uid: 28353
+ - uid: 35675
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-10.5
+ pos: -122.5,58.5
parent: 2
- - uid: 28354
+ - uid: 35973
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-6.5
+ pos: -93.5,56.5
parent: 2
- - uid: 28390
+ - uid: 36212
components:
- type: Transform
- pos: 8.5,17.5
+ pos: -113.5,57.5
parent: 2
- - uid: 28413
+- proto: WeaponTurretXeno
+ entities:
+ - uid: 25698
components:
- type: Transform
- pos: 5.5,24.5
+ pos: 80.5,85.5
parent: 2
- - uid: 28589
+ - uid: 36661
components:
- type: Transform
- pos: 5.5,23.5
+ pos: 82.5,85.5
parent: 2
- - uid: 28817
+- proto: Welder
+ entities:
+ - uid: 9102
components:
- type: Transform
- pos: -15.5,18.5
+ pos: -47.58446,31.661036
parent: 2
- - uid: 28849
+ - uid: 9610
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -73.5,4.5
+ pos: -47.244617,31.602442
parent: 2
- - uid: 29185
+ - uid: 19989
components:
- type: Transform
- pos: 65.5,28.5
+ pos: -5.4724207,-0.6537677
parent: 2
- - uid: 29845
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 3764
components:
- type: Transform
- pos: 87.5,18.5
+ pos: -1.5,29.5
parent: 2
- - uid: 29998
+ - uid: 5415
components:
- type: Transform
- pos: 87.5,16.5
+ pos: 52.5,51.5
parent: 2
- - uid: 30219
+ - uid: 6302
components:
- type: Transform
- pos: -44.5,7.5
+ pos: -35.5,-9.5
parent: 2
- - uid: 30273
+ - uid: 20946
components:
- type: Transform
- pos: -17.5,-16.5
+ pos: 76.5,-9.5
parent: 2
- - uid: 30274
+ - uid: 20949
components:
- type: Transform
- pos: -23.5,-16.5
+ pos: -62.5,-31.5
parent: 2
- - uid: 30275
+ - uid: 20950
components:
- type: Transform
- pos: -39.5,-12.5
+ pos: -65.5,20.5
parent: 2
- - uid: 30423
+ - uid: 20953
components:
- type: Transform
- pos: 14.5,-13.5
+ pos: 18.5,32.5
parent: 2
- - uid: 30426
+ - uid: 26246
components:
- type: Transform
- pos: 22.5,-14.5
+ pos: -36.5,27.5
parent: 2
- - uid: 30586
+ - uid: 29262
components:
- type: Transform
- pos: -40.5,-12.5
+ pos: 43.5,-30.5
parent: 2
- - uid: 30798
+- proto: WeldingFuelTankHighCapacity
+ entities:
+ - uid: 9608
components:
- type: Transform
- pos: 24.5,4.5
+ pos: -48.5,31.5
parent: 2
- - uid: 30799
+ - uid: 33827
components:
- type: Transform
- pos: 23.5,4.5
+ pos: 21.5,-22.5
parent: 2
- - uid: 31007
+- proto: WetFloorSign
+ entities:
+ - uid: 18534
components:
- type: Transform
- pos: -9.5,-5.5
+ pos: -38.39471,13.79245
parent: 2
- - uid: 31008
+ - uid: 18536
components:
- type: Transform
- pos: -9.5,-4.5
+ pos: -38.371273,13.569113
parent: 2
- - uid: 31444
+ - uid: 18537
components:
- type: Transform
- pos: 6.5,72.5
+ pos: -38.511898,13.759489
parent: 2
- - uid: 32574
+- proto: WhoopieCushion
+ entities:
+ - uid: 6397
components:
- type: Transform
- pos: -38.5,-17.5
+ pos: 54.568737,44.490295
parent: 2
- - uid: 33689
+ - uid: 37667
components:
- type: Transform
- pos: -46.5,-13.5
+ pos: 93.25983,78.44319
parent: 2
- - uid: 34657
+- proto: Windoor
+ entities:
+ - uid: 1673
components:
- type: Transform
- pos: 69.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,30.5
parent: 2
- - uid: 34658
+ - uid: 6677
components:
- type: Transform
- pos: 70.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -16.5,-38.5
parent: 2
- - uid: 34659
+ - uid: 6687
components:
- type: Transform
- pos: 72.5,-6.5
+ pos: -27.5,-45.5
parent: 2
- - uid: 34660
+ - uid: 6692
components:
- type: Transform
- pos: 73.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-38.5
parent: 2
- - uid: 34661
+ - uid: 6719
components:
- type: Transform
- pos: 74.5,-6.5
+ pos: -30.5,-45.5
parent: 2
- - uid: 34662
+ - uid: 6731
components:
- type: Transform
- pos: 75.5,-6.5
+ pos: -28.5,-45.5
parent: 2
-- proto: WallSolidDiagonal
- entities:
- - uid: 1893
+ - uid: 8259
components:
- type: Transform
- pos: 13.5,23.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,31.5
parent: 2
- - uid: 1894
+ - uid: 11856
components:
- type: Transform
- pos: 14.5,24.5
+ pos: -31.5,-45.5
parent: 2
-- proto: WallWeaponCapacitorRecharger
- entities:
- - uid: 4463
+ - uid: 11876
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,44.5
+ pos: -28.5,-45.5
parent: 2
- - uid: 5570
+ - uid: 17847
components:
- type: Transform
- pos: 47.5,29.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,30.5
parent: 2
- - uid: 5571
+ - uid: 18100
components:
- type: Transform
- pos: 45.5,33.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,30.5
parent: 2
- - uid: 6841
+ - uid: 21903
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-25.5
+ pos: -61.5,13.5
parent: 2
- - uid: 14190
+ - uid: 21905
components:
- type: Transform
- pos: 20.5,46.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,51.5
parent: 2
- - uid: 15275
+ - uid: 21906
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,67.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,51.5
parent: 2
- - uid: 19813
+ - uid: 21907
components:
- type: Transform
- pos: -40.5,58.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,51.5
parent: 2
-- proto: WallWood
- entities:
- - uid: 874
+ - uid: 21908
components:
- type: Transform
- pos: 23.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,34.5
parent: 2
- - uid: 910
+ - uid: 22179
components:
- type: Transform
- pos: 24.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,34.5
parent: 2
- - uid: 911
+ - uid: 22288
components:
- type: Transform
- pos: 25.5,-6.5
+ pos: -46.5,36.5
parent: 2
- - uid: 1018
+ - uid: 22329
components:
- type: Transform
- pos: 24.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,34.5
parent: 2
- - uid: 1020
+ - uid: 22331
components:
- type: Transform
- pos: 33.5,-9.5
+ pos: -45.5,36.5
parent: 2
- - uid: 1040
+ - uid: 22333
components:
- type: Transform
- pos: 23.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 48.5,29.5
parent: 2
- - uid: 1070
+ - uid: 22537
components:
- type: Transform
- pos: 25.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 49.5,29.5
parent: 2
- - uid: 1186
+ - uid: 22657
components:
- type: Transform
- pos: 32.5,-9.5
+ pos: -47.5,36.5
parent: 2
- - uid: 2758
+ - uid: 23035
components:
- type: Transform
- pos: 67.5,9.5
+ pos: -48.5,36.5
parent: 2
- - uid: 5349
+ - uid: 23057
components:
- type: Transform
- pos: 54.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,47.5
parent: 2
- - uid: 11249
+ - uid: 23268
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,36.5
parent: 2
- - uid: 11539
+ - uid: 23588
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,33.5
parent: 2
- - uid: 18709
+ - uid: 23605
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,57.5
parent: 2
- - uid: 26884
+ - uid: 23685
components:
- type: Transform
- pos: 34.5,-9.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,37.5
parent: 2
-- proto: WardrobeBotanistFilled
- entities:
- - uid: 18460
+ - uid: 24440
components:
- type: Transform
- pos: -50.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,37.5
parent: 2
- - uid: 18499
+ - uid: 25317
components:
- type: Transform
- pos: -49.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,35.5
parent: 2
-- proto: WardrobeCargoFilled
- entities:
- - uid: 334
+ - uid: 26059
components:
- type: Transform
- pos: -11.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,35.5
parent: 2
- - uid: 807
+ - uid: 26616
components:
- type: Transform
- pos: -12.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,33.5
parent: 2
- - uid: 6648
+ - uid: 26891
components:
- type: Transform
- pos: -10.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: -56.5,34.5
parent: 2
-- proto: WardrobeChapelFilled
- entities:
- - uid: 458
+ - uid: 27089
components:
- type: Transform
- pos: 65.5,29.5
+ rot: -1.5707963267948966 rad
+ pos: -52.5,34.5
parent: 2
-- proto: WardrobeFormal
- entities:
- - uid: 1060
+ - uid: 27806
components:
- type: Transform
- pos: -73.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,30.5
parent: 2
-- proto: WardrobeGreenFilled
- entities:
- - uid: 13135
+ - uid: 27902
components:
- type: Transform
- pos: -73.5,17.5
+ pos: -62.5,13.5
parent: 2
-- proto: WardrobePrisonFilled
- entities:
- - uid: 14275
+ - uid: 27903
components:
- type: Transform
- pos: -26.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,34.5
parent: 2
- - uid: 15380
+ - uid: 28078
components:
- type: Transform
- pos: -30.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,34.5
parent: 2
- - uid: 15485
+ - uid: 28088
components:
- type: Transform
- pos: -30.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-8.5
parent: 2
- - uid: 15486
+ - uid: 28860
components:
- type: Transform
- pos: -26.5,34.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-9.5
parent: 2
- - uid: 18052
+ - uid: 29007
components:
- type: Transform
- pos: -25.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,10.5
parent: 2
- - uid: 18054
+ - uid: 29010
components:
- type: Transform
- pos: -21.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,9.5
parent: 2
- - uid: 18056
+ - uid: 29196
components:
- type: Transform
- pos: -17.5,67.5
+ rot: 1.5707963267948966 rad
+ pos: -41.5,8.5
parent: 2
- - uid: 18058
+ - uid: 29283
components:
- type: Transform
- pos: -13.5,67.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-43.5
parent: 2
-- proto: WarningAir
- entities:
- - uid: 4334
+ - uid: 31893
components:
- type: Transform
- pos: 54.5,52.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-42.5
parent: 2
-- proto: WarningCO2
- entities:
- - uid: 9495
+ - uid: 31894
components:
- type: Transform
- pos: -40.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-45.5
parent: 2
-- proto: WarningN2
- entities:
- - uid: 9490
+ - uid: 31959
components:
- type: Transform
- pos: -50.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -9.5,-38.5
parent: 2
-- proto: WarningN2O
- entities:
- - uid: 9491
+ - uid: 32058
components:
- type: Transform
- pos: -46.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-38.5
parent: 2
-- proto: WarningO2
- entities:
- - uid: 9492
+ - uid: 32447
components:
- type: Transform
- pos: -48.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -13.5,-38.5
parent: 2
-- proto: WarningPlasma
- entities:
- - uid: 9493
+ - uid: 32553
components:
- type: Transform
- pos: -38.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,-38.5
parent: 2
-- proto: WarningTritium
- entities:
- - uid: 9494
+ - uid: 32556
components:
- type: Transform
- pos: -44.5,47.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-38.5
parent: 2
-- proto: WarningWaste
- entities:
- - uid: 9496
+ - uid: 33444
components:
- type: Transform
- pos: -42.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-41.5
parent: 2
-- proto: WashingMachine
- entities:
- - uid: 1275
+ - uid: 33445
components:
- type: Transform
- pos: -37.5,-30.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-44.5
parent: 2
- - uid: 2382
+ - uid: 34367
components:
- type: Transform
- pos: -36.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: 86.5,-11.5
parent: 2
- - uid: 26808
+ - uid: 34368
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -36.5,-26.5
+ pos: 87.5,-11.5
parent: 2
- - uid: 28230
+ - uid: 34370
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -35.5,-26.5
+ pos: 80.5,-11.5
parent: 2
-- proto: WashingMachineBroken
- entities:
- - uid: 11343
+ - uid: 34371
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -41.5,-26.5
+ pos: 79.5,-11.5
parent: 2
-- proto: WashingMachineFilledClothes
- entities:
- - uid: 2653
+ - uid: 34372
components:
- type: Transform
- pos: -36.5,-30.5
+ pos: 86.5,-21.5
parent: 2
- - uid: 11251
+ - uid: 34373
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-26.5
+ pos: 87.5,-21.5
parent: 2
- - type: Storage
- isUiOpen: True
- - type: ActiveUserInterface
- - uid: 18404
+ - uid: 34374
components:
- type: Transform
- pos: -35.5,-27.5
+ pos: 80.5,-21.5
parent: 2
- - uid: 19318
+ - uid: 34375
components:
- type: Transform
- pos: -40.5,-27.5
+ pos: 79.5,-21.5
parent: 2
- - uid: 19420
+ - uid: 36399
components:
- type: Transform
- pos: -41.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,30.5
parent: 2
- - uid: 23709
+ - uid: 37533
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-33.5
parent: 2
- - uid: 25057
+ - uid: 37591
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-26.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,29.5
parent: 2
-- proto: WaterCooler
- entities:
- - uid: 309
+ - uid: 37607
components:
- type: Transform
- pos: -11.5,-27.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-33.5
parent: 2
- - uid: 657
+ - uid: 37608
components:
- type: Transform
- pos: -13.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -60.5,-35.5
parent: 2
- - uid: 1699
+ - uid: 37613
components:
- type: Transform
- pos: -1.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-35.5
parent: 2
- - uid: 5267
+ - uid: 37617
components:
- type: Transform
- pos: 34.5,30.5
+ pos: -60.5,-33.5
parent: 2
- - uid: 6908
+ - uid: 37621
components:
- type: Transform
- pos: 43.5,-24.5
+ pos: -59.5,-33.5
parent: 2
- - uid: 9033
+- proto: WindoorAssembly
+ entities:
+ - uid: 32364
components:
- type: Transform
- pos: -56.5,31.5
+ pos: -107.5,51.5
parent: 2
- - uid: 11399
+- proto: WindoorBarLocked
+ entities:
+ - uid: 39303
components:
- type: Transform
- pos: -55.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -40.5,-28.5
parent: 2
- - uid: 15593
+- proto: WindoorHydroponicsLocked
+ entities:
+ - uid: 3068
components:
- type: Transform
- pos: -8.5,30.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,3.5
parent: 2
- - uid: 15927
+ - uid: 3071
components:
- type: Transform
- pos: -2.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -48.5,2.5
parent: 2
- - uid: 16356
+- proto: WindoorKitchenLocked
+ entities:
+ - uid: 23569
components:
- type: Transform
- pos: -10.5,61.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-16.5
parent: 2
- - uid: 16399
+ - uid: 23576
components:
- type: Transform
- pos: -73.5,13.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-20.5
parent: 2
- - uid: 16627
+ - uid: 23578
components:
- type: Transform
- pos: -8.5,59.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-17.5
parent: 2
- - uid: 17798
+ - uid: 23618
components:
- type: Transform
- pos: 10.5,56.5
+ rot: -1.5707963267948966 rad
+ pos: -51.5,-21.5
parent: 2
- - uid: 18462
+- proto: WindoorSecure
+ entities:
+ - uid: 562
components:
- type: Transform
- pos: -58.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: -3.5,-34.5
parent: 2
- - uid: 22057
+ - uid: 1120
components:
- type: Transform
- pos: -75.5,5.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-32.5
parent: 2
-- proto: WaterTankFull
- entities:
- - uid: 217
+ - uid: 1863
components:
- type: Transform
- pos: -35.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,40.5
parent: 2
- - uid: 2900
+ - uid: 1926
components:
- type: Transform
- pos: 77.5,-13.5
+ pos: 7.5,26.5
parent: 2
- - uid: 9291
+ - uid: 2233
components:
- type: Transform
- pos: 34.5,48.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-34.5
parent: 2
- - uid: 9609
+ - uid: 2241
components:
- type: Transform
- pos: -46.5,31.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-31.5
parent: 2
- - uid: 13127
+ - uid: 2277
components:
- type: Transform
- pos: -73.5,24.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-34.5
parent: 2
- - uid: 20011
+ - uid: 2280
components:
- type: Transform
- pos: 37.5,9.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-33.5
parent: 2
- - uid: 20933
+ - uid: 3113
components:
- type: Transform
- pos: -31.5,9.5
+ pos: 6.5,-27.5
parent: 2
- - uid: 20935
+ - uid: 3192
components:
- type: Transform
- pos: 52.5,6.5
+ pos: 5.5,-27.5
parent: 2
- - uid: 20937
+ - uid: 16059
components:
- type: Transform
- pos: 17.5,32.5
+ pos: 1.5,46.5
parent: 2
- - uid: 20941
+ - uid: 17011
components:
- type: Transform
- pos: -65.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-26.5
parent: 2
- - uid: 20942
+ - uid: 17031
components:
- type: Transform
- pos: -26.5,-31.5
+ pos: 1.5,-20.5
parent: 2
- - uid: 20943
+ - uid: 19215
components:
- type: Transform
- pos: -4.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,1.5
parent: 2
- - uid: 20945
+ - uid: 20310
components:
- type: Transform
- pos: 47.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 2
- - uid: 21207
+ - uid: 23006
components:
- type: Transform
- pos: -40.5,27.5
+ pos: -106.5,51.5
parent: 2
-- proto: WaterTankHighCapacity
- entities:
- - uid: 18481
+ - uid: 25283
components:
- type: Transform
- pos: -52.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,2.5
parent: 2
-- proto: WaterVaporCanister
- entities:
- - uid: 3599
+ - uid: 25284
components:
- type: Transform
- pos: 44.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,1.5
parent: 2
- - type: AtmosDevice
- joinedGrid: 2
-- proto: WeaponCapacitorRecharger
- entities:
- - uid: 1980
+ - uid: 36082
components:
- type: Transform
- pos: 4.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,1.5
parent: 2
- - uid: 14191
+ - uid: 36387
components:
- type: Transform
- pos: 13.5,54.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,1.5
parent: 2
- - uid: 15274
+ - uid: 38004
components:
- type: Transform
- pos: -44.5,60.5
+ rot: 1.5707963267948966 rad
+ pos: -0.5,42.5
parent: 2
- - uid: 15613
+ - uid: 38024
components:
- type: Transform
- pos: -13.5,32.5
+ pos: 7.5,-27.5
parent: 2
- - uid: 15614
+ - uid: 38400
components:
- type: Transform
- pos: -12.5,32.5
+ pos: -105.5,51.5
parent: 2
- - uid: 16293
+ - uid: 38788
components:
- type: Transform
- pos: -33.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,35.5
parent: 2
- - uid: 16338
+ - uid: 38789
components:
- type: Transform
- pos: -33.5,37.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,34.5
parent: 2
- - uid: 16544
+ - uid: 38790
components:
- type: Transform
- pos: -28.5,46.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,33.5
parent: 2
- - uid: 16545
+- proto: WindoorSecureArmoryLocked
+ entities:
+ - uid: 293
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,47.5
+ pos: -23.5,42.5
parent: 2
- - uid: 19405
+ - uid: 16156
components:
- type: Transform
- pos: 29.5,51.5
+ pos: -22.5,43.5
parent: 2
- - uid: 19406
+ - uid: 16157
components:
- type: Transform
- pos: 16.5,59.5
+ pos: -20.5,43.5
parent: 2
-- proto: WeaponDisabler
- entities:
- - uid: 14137
+ - uid: 16336
components:
- type: Transform
- pos: 13.482066,47.817783
+ pos: -21.5,43.5
parent: 2
- - uid: 15580
+ - uid: 30899
components:
- type: Transform
- pos: -13.58909,33.04747
+ rot: 1.5707963267948966 rad
+ pos: -23.5,41.5
parent: 2
- - uid: 15682
+ - uid: 38839
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.131556,40.631958
+ pos: -17.5,39.5
parent: 2
-- proto: WeaponDisablerPractice
+- proto: WindoorSecureCargoLocked
entities:
- - uid: 9505
+ - uid: 2966
components:
- type: Transform
- pos: -33.57274,40.718952
+ pos: -15.5,-22.5
parent: 2
- - uid: 17013
+ - uid: 2967
components:
- type: Transform
- pos: -33.41649,40.547077
+ pos: -14.5,-22.5
parent: 2
-- proto: WeaponFlareGun
- entities:
- - uid: 6073
+ - uid: 2968
components:
- type: Transform
- pos: 16.488016,26.920761
+ pos: -13.5,-22.5
parent: 2
-- proto: WeaponLaserCarbinePractice
+- proto: WindoorSecureChemistryLocked
entities:
- - uid: 8738
+ - uid: 1158
components:
- type: Transform
- pos: -33.54149,41.687702
+ rot: 3.141592653589793 rad
+ pos: 16.5,-6.5
parent: 2
- - uid: 9125
+ - uid: 1216
components:
- type: Transform
- pos: -33.38524,41.468952
+ rot: 3.141592653589793 rad
+ pos: 19.5,-6.5
parent: 2
- - uid: 33599
+ - uid: 1217
components:
- type: Transform
- pos: 72.465744,41.351635
+ rot: 3.141592653589793 rad
+ pos: 17.5,-6.5
parent: 2
-- proto: WeaponLauncherRocket
- entities:
- - uid: 4454
+ - uid: 1237
components:
- type: Transform
- pos: -18.462254,48.516518
+ rot: 3.141592653589793 rad
+ pos: 20.5,-6.5
parent: 2
-- proto: WeaponPistolMk58Nonlethal
- entities:
- - uid: 5280
+ - uid: 1424
components:
- type: Transform
- pos: -26.218739,44.70984
+ pos: 12.5,4.5
parent: 2
- - uid: 5536
+ - uid: 1425
components:
- type: Transform
- pos: -26.395823,44.45984
+ pos: 13.5,4.5
parent: 2
-- proto: WeaponSubMachineGunWt550
- entities:
- - uid: 22260
+ - uid: 1426
components:
- type: Transform
- parent: 22113
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: WeaponTurretXeno
- entities:
- - uid: 7743
+ pos: 14.5,4.5
+ parent: 2
+ - uid: 1528
components:
- type: Transform
- pos: 75.5,30.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-3.5
parent: 2
- - uid: 33542
+ - uid: 1529
components:
- type: Transform
- pos: 93.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-3.5
parent: 2
- - uid: 33619
+- proto: WindoorSecureCommandLocked
+ entities:
+ - uid: 2620
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 83.5,27.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,41.5
parent: 2
- - uid: 33620
+ - uid: 2677
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,36.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,41.5
parent: 2
- - uid: 33621
+ - uid: 5112
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 72.5,59.5
+ pos: 29.5,55.5
parent: 2
- - uid: 33622
+ - uid: 5411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,64.5
+ rot: 1.5707963267948966 rad
+ pos: 41.5,28.5
parent: 2
- - uid: 33623
+ - uid: 10030
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 89.5,68.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,14.5
parent: 2
- - uid: 33624
+ - uid: 15046
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 93.5,48.5
+ rot: 1.5707963267948966 rad
+ pos: -76.5,11.5
parent: 2
- - uid: 33625
+ - uid: 22325
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 99.5,40.5
+ pos: -78.5,11.5
parent: 2
- - uid: 33626
+ - uid: 34966
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 96.5,29.5
+ pos: -77.5,15.5
parent: 2
- - uid: 33627
+ - uid: 36910
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 70.5,44.5
+ pos: 29.5,56.5
parent: 2
- - uid: 33628
+ - uid: 37180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 55.5,44.5
+ pos: -78.5,14.5
parent: 2
- - uid: 33629
+ - uid: 37181
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 72.5,55.5
+ pos: -78.5,13.5
parent: 2
-- proto: Welder
- entities:
- - uid: 9102
+ - uid: 37182
components:
- type: Transform
- pos: -47.58446,31.661036
+ rot: -1.5707963267948966 rad
+ pos: -78.5,12.5
parent: 2
- - uid: 9610
+ - uid: 37184
components:
- type: Transform
- pos: -47.244617,31.602442
+ rot: 1.5707963267948966 rad
+ pos: -76.5,13.5
parent: 2
- - uid: 28508
+ - uid: 37185
components:
- type: Transform
- pos: -68.19635,32.823574
+ rot: 1.5707963267948966 rad
+ pos: -76.5,12.5
parent: 2
-- proto: WeldingFuelTankFull
- entities:
- - uid: 5415
+ - uid: 38088
components:
- type: Transform
- pos: 52.5,51.5
+ rot: 3.141592653589793 rad
+ pos: -77.5,16.5
parent: 2
- - uid: 6302
+ - uid: 38359
components:
- type: Transform
- pos: -35.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,54.5
parent: 2
- - uid: 20946
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 1380
components:
- type: Transform
- pos: 76.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,30.5
parent: 2
- - uid: 20947
+ - uid: 1455
components:
- type: Transform
- pos: 46.5,-27.5
+ rot: 3.141592653589793 rad
+ pos: -47.5,30.5
parent: 2
- - uid: 20948
+ - uid: 6093
components:
- type: Transform
- pos: 10.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,24.5
parent: 2
- - uid: 20949
+ - uid: 6117
components:
- type: Transform
- pos: -62.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 84.5,23.5
parent: 2
- - uid: 20950
+ - uid: 9483
components:
- type: Transform
- pos: -65.5,20.5
+ rot: 3.141592653589793 rad
+ pos: -49.5,24.5
parent: 2
- - uid: 20953
+ - uid: 10021
components:
- type: Transform
- pos: 18.5,32.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,30.5
parent: 2
- - uid: 21464
+ - uid: 12105
components:
- type: Transform
- pos: -2.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,30.5
parent: 2
- - uid: 26246
+ - uid: 27961
components:
- type: Transform
- pos: -36.5,27.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,30.5
parent: 2
-- proto: WeldingFuelTankHighCapacity
+- proto: WindoorSecureHeadOfPersonnelLocked
entities:
- - uid: 9608
+ - uid: 1925
components:
- type: Transform
- pos: -48.5,31.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,26.5
parent: 2
-- proto: WetFloorSign
+- proto: WindoorSecureMailLocked
entities:
- - uid: 18534
+ - uid: 3207
components:
- type: Transform
- pos: -40.68424,22.060213
+ pos: -8.5,-22.5
parent: 2
- - uid: 18536
+ - uid: 16755
components:
- type: Transform
- pos: -40.512363,21.919588
+ pos: -9.5,-22.5
parent: 2
- - uid: 18537
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 377
components:
- type: Transform
- pos: -40.293613,21.763338
+ rot: 1.5707963267948966 rad
+ pos: 3.5,5.5
parent: 2
- - uid: 30560
+ - uid: 894
components:
- type: Transform
- pos: -38.4634,19.611803
+ pos: 13.5,13.5
parent: 2
-- proto: Windoor
- entities:
- - uid: 28892
+ - uid: 1365
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,47.5
+ pos: 10.5,10.5
parent: 2
-- proto: WindoorBarLocked
- entities:
- - uid: 25230
+ - uid: 1377
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-27.5
+ pos: 18.5,10.5
parent: 2
-- proto: WindoorHydroponicsLocked
- entities:
- - uid: 3068
+ - uid: 1438
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,3.5
+ pos: 15.5,13.5
parent: 2
- - uid: 3071
+ - uid: 1565
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -48.5,2.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,16.5
parent: 2
-- proto: WindoorKitchenLocked
- entities:
- - uid: 11240
+ - uid: 8961
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -58.5,-26.5
+ pos: 9.5,16.5
parent: 2
- - uid: 23569
+ - uid: 11657
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,6.5
parent: 2
- - uid: 23576
+ - uid: 16474
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,4.5
parent: 2
- - uid: 23578
+ - uid: 20236
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,15.5
parent: 2
- - uid: 23618
+ - uid: 27418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -51.5,-21.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,1.5
parent: 2
-- proto: WindoorSecure
- entities:
- - uid: 562
+ - uid: 28174
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -3.5,-34.5
+ pos: 20.5,16.5
parent: 2
- - uid: 1120
+ - uid: 28462
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-32.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,2.5
parent: 2
- - uid: 1926
+ - uid: 28904
components:
- type: Transform
- pos: 7.5,26.5
+ rot: 3.141592653589793 rad
+ pos: 5.5,4.5
parent: 2
- - uid: 2233
+ - uid: 31745
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-34.5
+ pos: 10.5,16.5
parent: 2
- - uid: 2241
+ - uid: 31786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-31.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,15.5
parent: 2
- - uid: 2277
+ - uid: 31789
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-34.5
+ pos: 19.5,16.5
parent: 2
- - uid: 2280
+ - uid: 33893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-33.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,16.5
parent: 2
- - uid: 16646
+ - uid: 33947
components:
- type: Transform
- pos: -39.5,9.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,15.5
parent: 2
- - uid: 16647
+ - uid: 34063
components:
- type: Transform
- pos: -38.5,9.5
+ pos: 14.5,13.5
parent: 2
-- proto: WindoorSecureArmoryLocked
+- proto: WindoorSecureParamedicLocked
entities:
- - uid: 15830
+ - uid: 11839
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,3.5
parent: 2
- - uid: 28955
+ - uid: 11965
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,47.5
+ rot: -1.5707963267948966 rad
+ pos: 34.5,1.5
parent: 2
- - uid: 36114
+ - uid: 12117
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,47.5
+ pos: 34.5,2.5
parent: 2
-- proto: WindoorSecureCargoLocked
- entities:
- - uid: 2966
+ - uid: 18632
components:
- type: Transform
- pos: -15.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,3.5
parent: 2
- - uid: 2967
+ - uid: 18652
components:
- type: Transform
- pos: -14.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,1.5
parent: 2
- - uid: 2968
+ - uid: 18660
components:
- type: Transform
- pos: -13.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,2.5
parent: 2
- - uid: 28982
+- proto: WindoorSecureScienceLocked
+ entities:
+ - uid: 3957
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-38.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,25.5
parent: 2
-- proto: WindoorSecureChemistryLocked
- entities:
- - uid: 1158
+ - uid: 3960
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,28.5
parent: 2
- - uid: 1216
+ - uid: 4028
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-6.5
+ pos: 28.5,25.5
parent: 2
- - uid: 1217
+ - uid: 4029
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-6.5
+ pos: 29.5,25.5
parent: 2
- - uid: 1237
+- proto: WindoorSecureSecurityLawyerLocked
+ entities:
+ - uid: 1038
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,66.5
parent: 2
- - uid: 1424
+ - uid: 1066
components:
- type: Transform
- pos: 12.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,68.5
parent: 2
- - uid: 1425
+ - uid: 1073
components:
- type: Transform
- pos: 13.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,66.5
parent: 2
- - uid: 1426
+ - uid: 3295
components:
- type: Transform
- pos: 14.5,4.5
+ pos: -30.5,40.5
parent: 2
- - uid: 1528
+ - uid: 9546
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 26.5,-3.5
+ pos: -24.5,37.5
parent: 2
- - uid: 1529
+ - uid: 10260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,38.5
+ parent: 2
+ - uid: 10261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-3.5
+ pos: -30.5,37.5
parent: 2
-- proto: WindoorSecureCommandLocked
- entities:
- - uid: 2620
+ - uid: 10570
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,41.5
+ pos: -23.5,37.5
parent: 2
- - uid: 2677
+ - uid: 11197
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 13.5,41.5
+ pos: -29.5,37.5
parent: 2
- - uid: 5411
+ - uid: 11210
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 41.5,28.5
+ pos: -31.5,39.5
parent: 2
-- proto: WindoorSecureEngineeringLocked
- entities:
- - uid: 7636
+ - uid: 15396
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,17.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,27.5
parent: 2
- - uid: 8694
+ - uid: 15397
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,27.5
parent: 2
- - uid: 9483
+ - uid: 15398
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -49.5,24.5
+ pos: -19.5,27.5
parent: 2
- - uid: 14299
+ - uid: 15472
components:
- type: Transform
- pos: 51.5,44.5
+ pos: -29.5,40.5
parent: 2
- - uid: 14361
+ - uid: 15967
components:
- type: Transform
- pos: 52.5,44.5
+ pos: -9.5,53.5
parent: 2
-- proto: WindoorSecureHeadOfPersonnelLocked
- entities:
- - uid: 1925
+ - uid: 15968
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 7.5,26.5
+ pos: -9.5,50.5
parent: 2
-- proto: WindoorSecureMailLocked
- entities:
- - uid: 3207
+ - uid: 16158
components:
- type: Transform
- pos: -8.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -22.5,43.5
parent: 2
- - uid: 16755
+ - uid: 16337
components:
- type: Transform
- pos: -9.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,43.5
parent: 2
-- proto: WindoorSecureMedicalLocked
- entities:
- - uid: 269
+ - uid: 16338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,43.5
+ parent: 2
+ - uid: 17659
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,7.5
+ pos: -4.5,67.5
parent: 2
- - uid: 1319
+ - uid: 17698
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,68.5
parent: 2
- - uid: 1320
+ - uid: 20192
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,4.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 2
- - uid: 1321
+ - uid: 22665
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,4.5
+ pos: -21.5,37.5
parent: 2
- - uid: 1322
+ - uid: 22838
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,67.5
parent: 2
- - uid: 1323
+ - uid: 23061
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,6.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,37.5
parent: 2
- - uid: 1324
+ - uid: 27971
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,52.5
parent: 2
- - uid: 1325
+ - uid: 27975
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,51.5
parent: 2
- - uid: 1326
+ - uid: 29045
components:
- type: Transform
- pos: -7.5,0.5
+ pos: 15.5,-23.5
parent: 2
- - uid: 1327
+ - uid: 29119
components:
- type: Transform
- pos: -6.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,37.5
parent: 2
- - uid: 1328
+ - uid: 32122
components:
- type: Transform
- pos: -5.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-22.5
parent: 2
- - uid: 1338
+ - uid: 34982
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-2.5
+ pos: 14.5,-23.5
parent: 2
-- proto: WindoorSecureSalvageLocked
- entities:
- - uid: 29057
+ - uid: 35768
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-38.5
+ pos: 13.5,-23.5
parent: 2
-- proto: WindoorSecureScienceLocked
- entities:
- - uid: 3957
+ - uid: 35804
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,25.5
+ pos: 7.5,-22.5
parent: 2
- - uid: 3960
+ - uid: 36728
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,28.5
+ pos: 13.5,-22.5
parent: 2
- - uid: 4028
+ - uid: 38156
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,25.5
+ pos: 10.5,-23.5
parent: 2
- - uid: 4029
+ - uid: 38157
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,25.5
+ pos: 11.5,-23.5
parent: 2
-- proto: WindoorSecureSecurityLawyerLocked
- entities:
- - uid: 15396
+ - uid: 38158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,27.5
+ pos: 7.5,-23.5
parent: 2
- - uid: 15397
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 2342
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,27.5
+ pos: -20.5,62.5
parent: 2
- - uid: 15398
+ - uid: 2699
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -19.5,27.5
+ pos: -21.5,62.5
parent: 2
- - uid: 15967
+ - uid: 3156
components:
- type: Transform
- pos: -9.5,53.5
+ pos: -21.5,62.5
parent: 2
- - uid: 15968
+ - uid: 4670
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,50.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,42.5
parent: 2
-- proto: WindoorSecureSecurityLocked
- entities:
- uid: 15362
components:
- type: Transform
@@ -217442,8 +242607,14 @@ entities:
pos: -29.5,27.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22622
+ - 15388
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15388:
+ - DoorStatus: DoorBolt
- uid: 15363
components:
- type: Transform
@@ -217451,24 +242622,42 @@ entities:
pos: -25.5,27.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22621
+ - 15389
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15389:
+ - DoorStatus: DoorBolt
- uid: 15388
components:
- type: Transform
pos: -29.5,26.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22622
+ - 15362
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15362:
+ - DoorStatus: DoorBolt
- uid: 15389
components:
- type: Transform
pos: -25.5,26.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22621
+ - 15363
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15363:
+ - DoorStatus: DoorBolt
- uid: 15409
components:
- type: Transform
@@ -217476,24 +242665,42 @@ entities:
pos: -29.5,32.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22619
+ - 15453
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15453:
+ - DoorStatus: DoorBolt
- uid: 15453
components:
- type: Transform
pos: -29.5,31.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22619
+ - 15409
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15409:
+ - DoorStatus: DoorBolt
- uid: 15455
components:
- type: Transform
pos: -25.5,31.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22620
+ - 15457
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15457:
+ - DoorStatus: DoorBolt
- uid: 15457
components:
- type: Transform
@@ -217501,8 +242708,31 @@ entities:
pos: -25.5,32.5
parent: 2
- type: DeviceLinkSink
+ invokeCounter: 1
links:
- 22620
+ - 15455
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15455:
+ - DoorStatus: DoorBolt
+ - uid: 18142
+ components:
+ - type: Transform
+ pos: -20.5,62.5
+ parent: 2
+ - uid: 33708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,35.5
+ parent: 2
+ - uid: 36727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,33.5
+ parent: 2
- proto: WindoorServiceLocked
entities:
- uid: 7776
@@ -217534,11 +242764,6 @@ entities:
- type: Transform
pos: -1.5,14.5
parent: 2
- - uid: 70
- components:
- - type: Transform
- pos: -21.5,-26.5
- parent: 2
- uid: 140
components:
- type: Transform
@@ -217565,11 +242790,6 @@ entities:
- type: Transform
pos: -28.5,58.5
parent: 2
- - uid: 739
- components:
- - type: Transform
- pos: -14.5,-40.5
- parent: 2
- uid: 839
components:
- type: Transform
@@ -217600,11 +242820,6 @@ entities:
- type: Transform
pos: 4.5,15.5
parent: 2
- - uid: 1162
- components:
- - type: Transform
- pos: 6.5,17.5
- parent: 2
- uid: 1167
components:
- type: Transform
@@ -217655,16 +242870,6 @@ entities:
- type: Transform
pos: 21.5,-0.5
parent: 2
- - uid: 1417
- components:
- - type: Transform
- pos: 23.5,-3.5
- parent: 2
- - uid: 1418
- components:
- - type: Transform
- pos: 24.5,-3.5
- parent: 2
- uid: 1420
components:
- type: Transform
@@ -217675,41 +242880,6 @@ entities:
- type: Transform
pos: 18.5,3.5
parent: 2
- - uid: 1431
- components:
- - type: Transform
- pos: 11.5,3.5
- parent: 2
- - uid: 1432
- components:
- - type: Transform
- pos: 11.5,2.5
- parent: 2
- - uid: 1454
- components:
- - type: Transform
- pos: -23.5,60.5
- parent: 2
- - uid: 1470
- components:
- - type: Transform
- pos: 7.5,17.5
- parent: 2
- - uid: 1474
- components:
- - type: Transform
- pos: 11.5,17.5
- parent: 2
- - uid: 1475
- components:
- - type: Transform
- pos: 12.5,17.5
- parent: 2
- - uid: 1476
- components:
- - type: Transform
- pos: 13.5,17.5
- parent: 2
- uid: 1653
components:
- type: Transform
@@ -217720,51 +242890,11 @@ entities:
- type: Transform
pos: -13.5,17.5
parent: 2
- - uid: 1721
- components:
- - type: Transform
- pos: -12.5,17.5
- parent: 2
- uid: 1722
components:
- type: Transform
pos: -11.5,17.5
parent: 2
- - uid: 1728
- components:
- - type: Transform
- pos: -9.5,-2.5
- parent: 2
- - uid: 1729
- components:
- - type: Transform
- pos: -9.5,-0.5
- parent: 2
- - uid: 1730
- components:
- - type: Transform
- pos: -9.5,2.5
- parent: 2
- - uid: 1731
- components:
- - type: Transform
- pos: -9.5,5.5
- parent: 2
- - uid: 1732
- components:
- - type: Transform
- pos: -9.5,7.5
- parent: 2
- - uid: 1733
- components:
- - type: Transform
- pos: -7.5,8.5
- parent: 2
- - uid: 1734
- components:
- - type: Transform
- pos: -6.5,8.5
- parent: 2
- uid: 1868
components:
- type: Transform
@@ -217780,21 +242910,6 @@ entities:
- type: Transform
pos: -2.5,21.5
parent: 2
- - uid: 1873
- components:
- - type: Transform
- pos: 5.5,-13.5
- parent: 2
- - uid: 1876
- components:
- - type: Transform
- pos: 5.5,-16.5
- parent: 2
- - uid: 1877
- components:
- - type: Transform
- pos: -2.5,-16.5
- parent: 2
- uid: 1880
components:
- type: Transform
@@ -217810,81 +242925,37 @@ entities:
- type: Transform
pos: -51.5,6.5
parent: 2
- - uid: 2990
+ - uid: 2923
components:
- type: Transform
- pos: -21.5,-17.5
+ pos: -17.5,-20.5
parent: 2
- - uid: 3144
+ - uid: 2990
components:
- type: Transform
- pos: 13.5,-17.5
+ pos: -21.5,-17.5
parent: 2
- uid: 3297
components:
- type: Transform
pos: -28.5,57.5
parent: 2
- - uid: 3356
- components:
- - type: Transform
- pos: -32.5,63.5
- parent: 2
- - uid: 3362
- components:
- - type: Transform
- pos: 16.5,-19.5
- parent: 2
- - uid: 3364
+ - uid: 3322
components:
- type: Transform
- pos: 15.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -48.5,-8.5
parent: 2
- - uid: 3369
+ - uid: 3356
components:
- type: Transform
- pos: 16.5,-21.5
+ pos: -32.5,63.5
parent: 2
- uid: 3403
components:
- type: Transform
pos: -33.5,63.5
parent: 2
- - uid: 3425
- components:
- - type: Transform
- pos: 26.5,-17.5
- parent: 2
- - uid: 3426
- components:
- - type: Transform
- pos: 23.5,-17.5
- parent: 2
- - uid: 3428
- components:
- - type: Transform
- pos: 27.5,-17.5
- parent: 2
- - uid: 3433
- components:
- - type: Transform
- pos: -14.5,-37.5
- parent: 2
- - uid: 3486
- components:
- - type: Transform
- pos: 27.5,-29.5
- parent: 2
- - uid: 3487
- components:
- - type: Transform
- pos: 27.5,-28.5
- parent: 2
- - uid: 3489
- components:
- - type: Transform
- pos: 27.5,-30.5
- parent: 2
- uid: 3844
components:
- type: Transform
@@ -217925,36 +242996,6 @@ entities:
- type: Transform
pos: 51.5,21.5
parent: 2
- - uid: 4585
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,4.5
- parent: 2
- - uid: 4587
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,4.5
- parent: 2
- - uid: 4588
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,4.5
- parent: 2
- - uid: 4616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,4.5
- parent: 2
- - uid: 4617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,4.5
- parent: 2
- uid: 4641
components:
- type: Transform
@@ -217980,6 +243021,11 @@ entities:
- type: Transform
pos: 52.5,0.5
parent: 2
+ - uid: 5420
+ components:
+ - type: Transform
+ pos: -42.5,18.5
+ parent: 2
- uid: 6159
components:
- type: Transform
@@ -218015,16 +243061,6 @@ entities:
- type: Transform
pos: 37.5,-19.5
parent: 2
- - uid: 6171
- components:
- - type: Transform
- pos: 33.5,-19.5
- parent: 2
- - uid: 6172
- components:
- - type: Transform
- pos: 33.5,-20.5
- parent: 2
- uid: 6173
components:
- type: Transform
@@ -218045,36 +243081,6 @@ entities:
- type: Transform
pos: 40.5,-31.5
parent: 2
- - uid: 6202
- components:
- - type: Transform
- pos: -30.5,-0.5
- parent: 2
- - uid: 6203
- components:
- - type: Transform
- pos: -30.5,-1.5
- parent: 2
- - uid: 6204
- components:
- - type: Transform
- pos: -30.5,-2.5
- parent: 2
- - uid: 6205
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 2
- - uid: 6206
- components:
- - type: Transform
- pos: -30.5,6.5
- parent: 2
- - uid: 6207
- components:
- - type: Transform
- pos: -30.5,7.5
- parent: 2
- uid: 6316
components:
- type: Transform
@@ -218175,16 +243181,6 @@ entities:
- type: Transform
pos: -6.5,-17.5
parent: 2
- - uid: 6549
- components:
- - type: Transform
- pos: -23.5,-18.5
- parent: 2
- - uid: 6550
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 2
- uid: 6552
components:
- type: Transform
@@ -218200,20 +243196,22 @@ entities:
- type: Transform
pos: -15.5,-26.5
parent: 2
- - uid: 6614
+ - uid: 6659
components:
- type: Transform
- pos: -17.5,-18.5
+ pos: -14.5,-41.5
parent: 2
- - uid: 6659
+ - uid: 6804
components:
- type: Transform
- pos: -14.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-45.5
parent: 2
- - uid: 7088
+ - uid: 6813
components:
- type: Transform
- pos: -51.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-34.5
parent: 2
- uid: 7129
components:
@@ -218250,6 +243248,11 @@ entities:
- type: Transform
pos: -51.5,-22.5
parent: 2
+ - uid: 7270
+ components:
+ - type: Transform
+ pos: -9.5,-0.5
+ parent: 2
- uid: 7457
components:
- type: Transform
@@ -218265,30 +243268,21 @@ entities:
- type: Transform
pos: -34.5,61.5
parent: 2
- - uid: 7565
- components:
- - type: Transform
- pos: -24.5,59.5
- parent: 2
- - uid: 7567
- components:
- - type: Transform
- pos: -24.5,58.5
- parent: 2
- - uid: 10193
+ - uid: 8836
components:
- type: Transform
- pos: -50.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -46.5,13.5
parent: 2
- - uid: 10194
+ - uid: 10717
components:
- type: Transform
- pos: -49.5,15.5
+ pos: -20.5,4.5
parent: 2
- - uid: 10195
+ - uid: 10718
components:
- type: Transform
- pos: -48.5,15.5
+ pos: -18.5,4.5
parent: 2
- uid: 11244
components:
@@ -218314,16 +243308,33 @@ entities:
rot: -1.5707963267948966 rad
pos: 35.5,-7.5
parent: 2
- - uid: 11291
+ - uid: 11665
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,4.5
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-17.5
parent: 2
- - uid: 12311
+ - uid: 12050
components:
- type: Transform
- pos: -55.5,-26.5
+ pos: 49.5,-16.5
+ parent: 2
+ - uid: 12051
+ components:
+ - type: Transform
+ pos: 53.5,-12.5
+ parent: 2
+ - uid: 12400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,-5.5
+ parent: 2
+ - uid: 12442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-17.5
parent: 2
- uid: 12953
components:
@@ -218340,15 +243351,45 @@ entities:
- type: Transform
pos: 48.5,-16.5
parent: 2
- - uid: 13236
+ - uid: 14961
components:
- type: Transform
- pos: -54.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,10.5
parent: 2
- - uid: 13237
+ - uid: 14964
components:
- type: Transform
- pos: -53.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-22.5
+ parent: 2
+ - uid: 14974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-22.5
+ parent: 2
+ - uid: 14975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-22.5
+ parent: 2
+ - uid: 15075
+ components:
+ - type: Transform
+ pos: -9.5,-2.5
+ parent: 2
+ - uid: 15160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,8.5
+ parent: 2
+ - uid: 15257
+ components:
+ - type: Transform
+ pos: 28.5,8.5
parent: 2
- uid: 15801
components:
@@ -218365,40 +243406,26 @@ entities:
- type: Transform
pos: -1.5,48.5
parent: 2
- - uid: 15898
- components:
- - type: Transform
- pos: -1.5,47.5
- parent: 2
- uid: 15920
components:
- type: Transform
pos: -1.5,55.5
parent: 2
- - uid: 15921
- components:
- - type: Transform
- pos: -1.5,56.5
- parent: 2
- uid: 16317
components:
- type: Transform
pos: 3.5,35.5
parent: 2
- - uid: 16355
- components:
- - type: Transform
- pos: 3.5,41.5
- parent: 2
- - uid: 16639
+ - uid: 17001
components:
- type: Transform
- pos: -35.5,8.5
+ pos: -14.5,-42.5
parent: 2
- - uid: 17852
+ - uid: 17628
components:
- type: Transform
- pos: 3.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,17.5
parent: 2
- uid: 17855
components:
@@ -218450,25 +243477,11 @@ entities:
- type: Transform
pos: -52.5,6.5
parent: 2
- - uid: 18333
- components:
- - type: Transform
- pos: -21.5,60.5
- parent: 2
- - uid: 18343
- components:
- - type: Transform
- pos: -19.5,60.5
- parent: 2
- - uid: 18344
- components:
- - type: Transform
- pos: -20.5,60.5
- parent: 2
- uid: 18347
components:
- type: Transform
- pos: -22.5,60.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,59.5
parent: 2
- uid: 18350
components:
@@ -218510,6 +243523,12 @@ entities:
- type: Transform
pos: -50.5,-0.5
parent: 2
+ - uid: 19109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,22.5
+ parent: 2
- uid: 19681
components:
- type: Transform
@@ -218560,22 +243579,71 @@ entities:
- type: Transform
pos: -28.5,61.5
parent: 2
- - uid: 20173
+ - uid: 20269
components:
- type: Transform
- pos: 22.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,8.5
parent: 2
- - uid: 22050
+ - uid: 20300
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,4.5
+ pos: -14.5,4.5
parent: 2
- - uid: 22927
+ - uid: 20794
+ components:
+ - type: Transform
+ pos: -41.5,18.5
+ parent: 2
+ - uid: 20796
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -42.5,18.5
+ pos: -39.5,22.5
+ parent: 2
+ - uid: 20797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,22.5
+ parent: 2
+ - uid: 20902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-17.5
+ parent: 2
+ - uid: 20948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-17.5
+ parent: 2
+ - uid: 21173
+ components:
+ - type: Transform
+ pos: -9.5,-1.5
+ parent: 2
+ - uid: 22732
+ components:
+ - type: Transform
+ pos: -38.5,14.5
+ parent: 2
+ - uid: 22788
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 2
+ - uid: 23447
+ components:
+ - type: Transform
+ pos: -16.5,4.5
+ parent: 2
+ - uid: 23766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-17.5
parent: 2
- uid: 23788
components:
@@ -218592,6 +243660,12 @@ entities:
- type: Transform
pos: 7.5,72.5
parent: 2
+ - uid: 23847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-17.5
+ parent: 2
- uid: 24744
components:
- type: Transform
@@ -218602,17 +243676,50 @@ entities:
- type: Transform
pos: 33.5,-12.5
parent: 2
- - uid: 26747
+ - uid: 26208
+ components:
+ - type: Transform
+ pos: -15.5,49.5
+ parent: 2
+ - uid: 27234
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -69.5,4.5
+ pos: -48.5,-6.5
parent: 2
- - uid: 28669
+ - uid: 27341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,12.5
+ parent: 2
+ - uid: 27416
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 28199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-33.5
+ parent: 2
+ - uid: 28246
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -41.5,18.5
+ pos: -14.5,-43.5
+ parent: 2
+ - uid: 28263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -17.5,-21.5
+ parent: 2
+ - uid: 28390
+ components:
+ - type: Transform
+ pos: 3.5,7.5
parent: 2
- uid: 30413
components:
@@ -218624,6 +243731,27 @@ entities:
- type: Transform
pos: -5.5,-40.5
parent: 2
+ - uid: 30657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -48.5,-7.5
+ parent: 2
+ - uid: 30904
+ components:
+ - type: Transform
+ pos: -4.5,2.5
+ parent: 2
+ - uid: 31000
+ components:
+ - type: Transform
+ pos: 6.5,4.5
+ parent: 2
+ - uid: 31117
+ components:
+ - type: Transform
+ pos: 26.5,8.5
+ parent: 2
- uid: 31402
components:
- type: Transform
@@ -218634,56 +243762,133 @@ entities:
- type: Transform
pos: 10.5,72.5
parent: 2
+ - uid: 32038
+ components:
+ - type: Transform
+ pos: -15.5,50.5
+ parent: 2
+ - uid: 32181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,14.5
+ parent: 2
- uid: 32182
components:
- type: Transform
- pos: -19.5,-26.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,16.5
parent: 2
-- proto: WindowDiagonal
- entities:
- - uid: 20408
+ - uid: 32260
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 49.5,-16.5
+ pos: -41.5,22.5
parent: 2
- - uid: 22501
+ - uid: 32262
components:
- type: Transform
- pos: 52.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,22.5
parent: 2
- - uid: 28670
+ - uid: 32441
components:
- type: Transform
- pos: 48.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -38.5,22.5
parent: 2
- - uid: 28674
+ - uid: 32443
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 53.5,-12.5
+ pos: -37.5,22.5
+ parent: 2
+ - uid: 33894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,17.5
+ parent: 2
+ - uid: 35854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -46.5,11.5
+ parent: 2
+ - uid: 37707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,22.5
+ parent: 2
+ - uid: 38147
+ components:
+ - type: Transform
+ pos: -14.5,-44.5
+ parent: 2
+ - uid: 38885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,58.5
parent: 2
- proto: WindowDirectional
entities:
- - uid: 3675
+ - uid: 13
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-25.5
+ parent: 2
+ - uid: 32
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 16.5,-27.5
+ pos: -41.5,-28.5
parent: 2
- - uid: 6249
+ - uid: 1104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-24.5
+ parent: 2
+ - uid: 1731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-24.5
+ parent: 2
+ - uid: 4213
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 21.5,-28.5
+ pos: -40.5,67.5
+ parent: 2
+ - uid: 6623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-46.5
+ parent: 2
+ - uid: 6921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-46.5
+ parent: 2
+ - uid: 34345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,64.5
parent: 2
- proto: WindowFrostedDirectional
entities:
- - uid: 319
+ - uid: 281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-38.5
parent: 2
- uid: 572
components:
@@ -218703,6 +243908,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-38.5
parent: 2
+ - uid: 795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-53.5
+ parent: 2
- uid: 796
components:
- type: Transform
@@ -218755,6 +243966,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,53.5
parent: 2
+ - uid: 1763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -35.5,1.5
+ parent: 2
- uid: 1773
components:
- type: Transform
@@ -218805,6 +244022,12 @@ entities:
- type: Transform
pos: -1.5,-39.5
parent: 2
+ - uid: 2317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,1.5
+ parent: 2
- uid: 2389
components:
- type: Transform
@@ -218907,6 +244130,12 @@ entities:
- type: Transform
pos: 40.5,-18.5
parent: 2
+ - uid: 2717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,58.5
+ parent: 2
- uid: 2767
components:
- type: Transform
@@ -218918,16 +244147,16 @@ entities:
- type: Transform
pos: 39.5,-18.5
parent: 2
- - uid: 3109
+ - uid: 3049
components:
- type: Transform
- pos: 41.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-49.5
parent: 2
- - uid: 3295
+ - uid: 3109
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,72.5
+ pos: 41.5,-18.5
parent: 2
- uid: 3640
components:
@@ -218945,23 +244174,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-37.5
parent: 2
- - uid: 5242
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,60.5
- parent: 2
- - uid: 5243
+ - uid: 4640
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,61.5
- parent: 2
- - uid: 5245
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,58.5
+ pos: -2.5,61.5
parent: 2
- uid: 5424
components:
@@ -219057,6 +244274,12 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-49.5
parent: 2
+ - uid: 6242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,8.5
+ parent: 2
- uid: 6248
components:
- type: Transform
@@ -219249,36 +244472,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,-6.5
parent: 2
- - uid: 6331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-40.5
- parent: 2
- - uid: 6332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-41.5
- parent: 2
- - uid: 6333
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-42.5
- parent: 2
- - uid: 6334
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-43.5
- parent: 2
- - uid: 6335
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-44.5
- parent: 2
- uid: 6336
components:
- type: Transform
@@ -219358,70 +244551,23 @@ entities:
- type: Transform
pos: 9.5,-45.5
parent: 2
- - uid: 6351
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-45.5
- parent: 2
- - uid: 6352
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-46.5
- parent: 2
- - uid: 6353
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-47.5
- parent: 2
- - uid: 6354
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-48.5
- parent: 2
- - uid: 6355
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-49.5
- parent: 2
- - uid: 6356
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-50.5
- parent: 2
- - uid: 6357
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-51.5
- parent: 2
- - uid: 6358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-52.5
- parent: 2
- - uid: 6359
+ - uid: 6352
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-53.5
+ pos: -2.5,-46.5
parent: 2
- - uid: 6360
+ - uid: 6353
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-47.5
parent: 2
- - uid: 6361
+ - uid: 6354
components:
- type: Transform
- pos: -5.5,-45.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-48.5
parent: 2
- uid: 6362
components:
@@ -219433,11 +244579,6 @@ entities:
- type: Transform
pos: -3.5,-45.5
parent: 2
- - uid: 6364
- components:
- - type: Transform
- pos: -10.5,-53.5
- parent: 2
- uid: 6372
components:
- type: Transform
@@ -219528,34 +244669,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,-36.5
parent: 2
- - uid: 7173
- components:
- - type: Transform
- pos: -35.5,-19.5
- parent: 2
- - uid: 7174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-20.5
- parent: 2
- - uid: 7175
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-21.5
- parent: 2
- - uid: 7176
+ - uid: 6763
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-22.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-51.5
parent: 2
- - uid: 7177
+ - uid: 6767
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-50.5
parent: 2
- uid: 7569
components:
@@ -219575,6 +244699,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -88.5,11.5
parent: 2
+ - uid: 8448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-37.5
+ parent: 2
- uid: 8474
components:
- type: Transform
@@ -219593,12 +244723,6 @@ entities:
rot: 3.141592653589793 rad
pos: 41.5,-9.5
parent: 2
- - uid: 9320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-17.5
- parent: 2
- uid: 11302
components:
- type: Transform
@@ -219689,40 +244813,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,7.5
parent: 2
- - uid: 12990
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,8.5
- parent: 2
- - uid: 12991
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,9.5
- parent: 2
- - uid: 12992
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,10.5
- parent: 2
- - uid: 12993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,11.5
- parent: 2
- - uid: 12994
- components:
- - type: Transform
- pos: 44.5,12.5
- parent: 2
- - uid: 12995
- components:
- - type: Transform
- pos: 45.5,12.5
- parent: 2
- uid: 13076
components:
- type: Transform
@@ -219734,11 +244824,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,-16.5
parent: 2
- - uid: 13078
- components:
- - type: Transform
- pos: 32.5,-15.5
- parent: 2
- uid: 13113
components:
- type: Transform
@@ -219825,36 +244910,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,51.5
parent: 2
- - uid: 15513
- components:
- - type: Transform
- pos: -1.5,60.5
- parent: 2
- - uid: 15516
+ - uid: 15716
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,58.5
- parent: 2
- - uid: 16641
- components:
- - type: Transform
- pos: -41.5,9.5
- parent: 2
- - uid: 16642
- components:
- - type: Transform
- pos: -40.5,9.5
- parent: 2
- - uid: 16643
- components:
- - type: Transform
- pos: -37.5,9.5
+ pos: 0.5,55.5
parent: 2
- - uid: 16644
+ - uid: 15878
components:
- type: Transform
- pos: -36.5,9.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,60.5
parent: 2
- uid: 17496
components:
@@ -219862,24 +244928,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,54.5
parent: 2
- - uid: 18368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-17.5
- parent: 2
- - uid: 18369
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-17.5
- parent: 2
- - uid: 18370
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-17.5
- parent: 2
- uid: 18434
components:
- type: Transform
@@ -219904,29 +244952,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -58.5,4.5
parent: 2
- - uid: 18514
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-17.5
- parent: 2
- - uid: 19337
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-17.5
- parent: 2
- - uid: 19338
+ - uid: 19196
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-17.5
+ pos: -36.5,1.5
parent: 2
- - uid: 19339
+ - uid: 19395
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-17.5
+ pos: 1.5,56.5
parent: 2
- uid: 19454
components:
@@ -220047,17 +245082,17 @@ entities:
rot: 3.141592653589793 rad
pos: -20.5,0.5
parent: 2
- - uid: 20300
+ - uid: 20308
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,0.5
+ pos: -14.5,0.5
parent: 2
- - uid: 20308
+ - uid: 20851
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -14.5,0.5
+ pos: -40.5,1.5
parent: 2
- uid: 22064
components:
@@ -220083,12 +245118,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -88.5,2.5
parent: 2
- - uid: 22609
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,5.5
- parent: 2
- uid: 22957
components:
- type: Transform
@@ -220142,35 +245171,6 @@ entities:
- type: Transform
pos: 1.5,-38.5
parent: 2
- - uid: 23251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,6.5
- parent: 2
- - uid: 23300
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,4.5
- parent: 2
- - uid: 23301
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,3.5
- parent: 2
- - uid: 23302
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,2.5
- parent: 2
- - uid: 23303
- components:
- - type: Transform
- pos: -42.5,2.5
- parent: 2
- uid: 23304
components:
- type: Transform
@@ -220225,24 +245225,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-6.5
parent: 2
- - uid: 23314
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -41.5,-7.5
- parent: 2
- - uid: 23315
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -40.5,-8.5
- parent: 2
- - uid: 23321
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-8.5
- parent: 2
- uid: 23322
components:
- type: Transform
@@ -220255,41 +245237,11 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,-6.5
parent: 2
- - uid: 23329
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,13.5
- parent: 2
- - uid: 23330
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,14.5
- parent: 2
- - uid: 23331
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,15.5
- parent: 2
- - uid: 23332
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,16.5
- parent: 2
- - uid: 23333
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,17.5
- parent: 2
- - uid: 23334
+ - uid: 23349
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,18.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-52.5
parent: 2
- uid: 23665
components:
@@ -220326,6 +245278,12 @@ entities:
- type: Transform
pos: 71.5,13.5
parent: 2
+ - uid: 25965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,55.5
+ parent: 2
- uid: 26585
components:
- type: Transform
@@ -220338,6 +245296,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 71.5,14.5
parent: 2
+ - uid: 26629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-49.5
+ parent: 2
- uid: 26771
components:
- type: Transform
@@ -220356,11 +245320,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -88.5,4.5
parent: 2
- - uid: 27221
+ - uid: 27302
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -88.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-36.5
parent: 2
- uid: 27513
components:
@@ -220380,6 +245344,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,16.5
parent: 2
+ - uid: 28190
+ components:
+ - type: Transform
+ pos: -10.5,-53.5
+ parent: 2
- uid: 28624
components:
- type: Transform
@@ -220392,17 +245361,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,54.5
parent: 2
- - uid: 28626
- components:
- - type: Transform
- pos: 1.5,55.5
- parent: 2
- - uid: 28663
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,0.5
- parent: 2
- uid: 28664
components:
- type: Transform
@@ -220445,11 +245403,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,-8.5
parent: 2
- - uid: 29188
+ - uid: 29255
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -80.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -41.5,1.5
+ parent: 2
+ - uid: 29603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,1.5
parent: 2
- uid: 29690
components:
@@ -220481,28 +245445,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,0.5
parent: 2
- - uid: 30327
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,18.5
- parent: 2
- - uid: 30332
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,18.5
- parent: 2
- - uid: 30333
- components:
- - type: Transform
- pos: 27.5,19.5
- parent: 2
- - uid: 30335
- components:
- - type: Transform
- pos: 29.5,19.5
- parent: 2
- uid: 30342
components:
- type: Transform
@@ -220545,18 +245487,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,33.5
parent: 2
- - uid: 30357
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,38.5
- parent: 2
- - uid: 30358
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,38.5
- parent: 2
- uid: 30359
components:
- type: Transform
@@ -220581,12 +245511,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,34.5
parent: 2
- - uid: 30364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,38.5
- parent: 2
- uid: 30368
components:
- type: Transform
@@ -220697,8 +245621,130 @@ entities:
rot: 3.141592653589793 rad
pos: 3.5,16.5
parent: 2
+ - uid: 32263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -88.5,18.5
+ parent: 2
+ - uid: 33706
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 2
+ - uid: 36868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,70.5
+ parent: 2
+ - uid: 36869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,70.5
+ parent: 2
+ - uid: 36871
+ components:
+ - type: Transform
+ pos: 71.5,70.5
+ parent: 2
+ - uid: 36872
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 2
- proto: WindowReinforcedDirectional
entities:
+ - uid: 866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,4.5
+ parent: 2
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,15.5
+ parent: 2
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,15.5
+ parent: 2
+ - uid: 1370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,9.5
+ parent: 2
+ - uid: 1376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,16.5
+ parent: 2
+ - uid: 1386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,31.5
+ parent: 2
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,3.5
+ parent: 2
+ - uid: 1399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,0.5
+ parent: 2
+ - uid: 1450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,15.5
+ parent: 2
+ - uid: 1458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -52.5,38.5
+ parent: 2
+ - uid: 1851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,40.5
+ parent: 2
+ - uid: 1862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,40.5
+ parent: 2
+ - uid: 2391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -50.5,31.5
+ parent: 2
+ - uid: 2607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,47.5
+ parent: 2
+ - uid: 2789
+ components:
+ - type: Transform
+ pos: 12.5,12.5
+ parent: 2
- uid: 2796
components:
- type: Transform
@@ -220732,6 +245778,18 @@ entities:
- type: Transform
pos: -16.5,-12.5
parent: 2
+ - uid: 3121
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,47.5
+ parent: 2
+ - uid: 3741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,47.5
+ parent: 2
- uid: 4007
components:
- type: Transform
@@ -220744,17 +245802,22 @@ entities:
rot: 3.141592653589793 rad
pos: -27.5,-17.5
parent: 2
- - uid: 4121
+ - uid: 4437
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -46.5,14.5
+ pos: -23.5,-18.5
parent: 2
- - uid: 4122
+ - uid: 4671
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,13.5
+ pos: 18.5,11.5
+ parent: 2
+ - uid: 5229
+ components:
+ - type: Transform
+ pos: -7.5,22.5
parent: 2
- uid: 5508
components:
@@ -220766,35 +245829,75 @@ entities:
- type: Transform
pos: -28.5,-12.5
parent: 2
- - uid: 5510
+ - uid: 5514
+ components:
+ - type: Transform
+ pos: -5.5,22.5
+ parent: 2
+ - uid: 6534
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -20.5,-6.5
+ pos: 22.5,40.5
parent: 2
- - uid: 5511
+ - uid: 7281
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -16.5,-6.5
+ pos: -7.5,-3.5
parent: 2
- - uid: 6299
+ - uid: 7358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -30.5,-16.5
+ parent: 2
+ - uid: 8637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,31.5
+ parent: 2
+ - uid: 8758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,20.5
+ parent: 2
+ - uid: 8765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,21.5
+ parent: 2
+ - uid: 8774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,19.5
+ parent: 2
+ - uid: 8831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -39.5,18.5
+ parent: 2
+ - uid: 8833
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -46.5,12.5
+ pos: -6.5,35.5
parent: 2
- - uid: 6534
+ - uid: 14131
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,40.5
+ pos: -10.5,31.5
parent: 2
- - uid: 7358
+ - uid: 15375
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,52.5
parent: 2
- uid: 15948
components:
@@ -220802,43 +245905,66 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-6.5
parent: 2
- - uid: 15950
+ - uid: 16057
components:
- type: Transform
- pos: -22.5,-12.5
+ pos: 0.5,46.5
parent: 2
- - uid: 16224
+ - uid: 16058
components:
- type: Transform
- pos: -20.5,-12.5
+ pos: 2.5,46.5
parent: 2
- - uid: 16615
+ - uid: 16431
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-3.5
+ pos: -5.5,47.5
parent: 2
- - uid: 17480
+ - uid: 16532
components:
- type: Transform
- pos: -3.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,47.5
parent: 2
- - uid: 17898
+ - uid: 16664
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 16678
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 16845
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -8.5,46.5
+ pos: 0.5,-26.5
parent: 2
- - uid: 19994
+ - uid: 16846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-26.5
+ parent: 2
+ - uid: 17480
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 17718
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-5.5
+ pos: 13.5,-21.5
parent: 2
- - uid: 19995
+ - uid: 19994
components:
- type: Transform
- pos: 6.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-5.5
parent: 2
- uid: 19998
components:
@@ -220858,11 +245984,6 @@ entities:
rot: 3.141592653589793 rad
pos: -29.5,17.5
parent: 2
- - uid: 20310
- components:
- - type: Transform
- pos: 7.5,-12.5
- parent: 2
- uid: 20311
components:
- type: Transform
@@ -220886,11 +246007,27 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,17.5
parent: 2
- - uid: 22772
+ - uid: 22117
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,59.5
+ parent: 2
+ - uid: 22164
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,46.5
+ pos: -11.5,-10.5
+ parent: 2
+ - uid: 22180
+ components:
+ - type: Transform
+ pos: -11.5,-7.5
+ parent: 2
+ - uid: 22796
+ components:
+ - type: Transform
+ pos: -14.5,56.5
parent: 2
- uid: 22877
components:
@@ -220898,17 +246035,21 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,-17.5
parent: 2
- - uid: 22949
+ - uid: 22893
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-6.5
+ pos: -6.5,22.5
parent: 2
- - uid: 23045
+ - uid: 22922
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-6.5
+ pos: -1.5,40.5
+ parent: 2
+ - uid: 23027
+ components:
+ - type: Transform
+ pos: -4.5,22.5
parent: 2
- uid: 23139
components:
@@ -220927,12 +246068,6 @@ entities:
rot: 3.141592653589793 rad
pos: -10.5,50.5
parent: 2
- - uid: 23144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,47.5
- parent: 2
- uid: 23145
components:
- type: Transform
@@ -220951,17 +246086,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,48.5
parent: 2
- - uid: 23149
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,47.5
- parent: 2
- uid: 23182
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,57.5
+ pos: -10.5,56.5
parent: 2
- uid: 23183
components:
@@ -221034,107 +246162,124 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,55.5
parent: 2
- - uid: 23200
+ - uid: 23211
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,53.5
parent: 2
- - uid: 23201
+ - uid: 23212
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,56.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,54.5
parent: 2
- - uid: 23202
+ - uid: 23213
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -8.5,56.5
+ pos: -8.5,55.5
parent: 2
- - uid: 23203
+ - uid: 23771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,49.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,67.5
parent: 2
- - uid: 23204
+ - uid: 23772
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,48.5
+ rot: -1.5707963267948966 rad
+ pos: -49.5,68.5
parent: 2
- - uid: 23205
+ - uid: 24350
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,50.5
+ pos: 16.5,12.5
parent: 2
- - uid: 23206
+ - uid: 24778
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,51.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,46.5
parent: 2
- - uid: 23207
+ - uid: 25146
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,52.5
+ pos: -29.5,46.5
parent: 2
- - uid: 23211
+ - uid: 25287
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,53.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,9.5
parent: 2
- - uid: 23212
+ - uid: 25790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,54.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,31.5
parent: 2
- - uid: 23213
+ - uid: 25791
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,55.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,29.5
parent: 2
- - uid: 23671
+ - uid: 26000
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,46.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,46.5
parent: 2
- - uid: 23771
+ - uid: 26001
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,67.5
+ pos: -33.5,46.5
parent: 2
- - uid: 23772
+ - uid: 26293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,35.5
+ parent: 2
+ - uid: 26704
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -49.5,68.5
+ pos: 4.5,-6.5
parent: 2
- - uid: 25054
+ - uid: 27330
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -52.5,14.5
+ pos: 18.5,16.5
parent: 2
- - uid: 25056
+ - uid: 27331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,15.5
+ parent: 2
+ - uid: 27338
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -46.5,13.5
+ pos: 10.5,11.5
parent: 2
- - uid: 26704
+ - uid: 27419
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-6.5
+ pos: 24.5,3.5
+ parent: 2
+ - uid: 28202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,4.5
parent: 2
- uid: 28351
components:
@@ -221153,6 +246298,12 @@ entities:
rot: 3.141592653589793 rad
pos: -28.5,17.5
parent: 2
+ - uid: 28461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,0.5
+ parent: 2
- uid: 28464
components:
- type: Transform
@@ -221183,6 +246334,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -30.5,-16.5
parent: 2
+ - uid: 30231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 30303
+ components:
+ - type: Transform
+ pos: 11.5,12.5
+ parent: 2
- uid: 30616
components:
- type: Transform
@@ -221201,6 +246363,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -27.5,-16.5
parent: 2
+ - uid: 30647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-22.5
+ parent: 2
+ - uid: 30839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,12.5
+ parent: 2
- uid: 31096
components:
- type: Transform
@@ -221231,150 +246405,282 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,62.5
parent: 2
- - uid: 35794
+ - uid: 31479
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 23.5,40.5
+ pos: 9.5,-22.5
parent: 2
-- proto: WindowTintedDirectional
- entities:
- - uid: 12981
+ - uid: 31717
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,7.5
+ pos: 13.5,-23.5
parent: 2
- - uid: 16514
+ - uid: 31792
+ components:
+ - type: Transform
+ pos: 17.5,12.5
+ parent: 2
+ - uid: 33608
+ components:
+ - type: Transform
+ pos: -11.5,31.5
+ parent: 2
+ - uid: 33630
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,6.5
+ pos: -11.5,31.5
parent: 2
- - uid: 16531
+ - uid: 33707
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,5.5
+ pos: -11.5,36.5
parent: 2
- - uid: 17745
+ - uid: 33941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,12.5
+ parent: 2
+ - uid: 34761
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,6.5
+ pos: -11.5,34.5
parent: 2
- - uid: 17805
+ - uid: 34969
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 2
+ - uid: 35067
+ components:
+ - type: Transform
+ pos: -20.5,-12.5
+ parent: 2
+ - uid: 35794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,40.5
+ parent: 2
+ - uid: 35803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-22.5
+ parent: 2
+ - uid: 36106
+ components:
+ - type: Transform
+ pos: -11.5,56.5
+ parent: 2
+ - uid: 36951
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,5.5
+ pos: -11.5,32.5
parent: 2
- - uid: 18018
+ - uid: 36952
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,6.5
+ pos: -11.5,37.5
parent: 2
- - uid: 18020
+ - uid: 37622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-35.5
+ parent: 2
+ - uid: 37624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -59.5,-33.5
+ parent: 2
+ - uid: 37731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-19.5
+ parent: 2
+ - uid: 38154
+ components:
+ - type: Transform
+ pos: 9.5,-23.5
+ parent: 2
+ - uid: 38155
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 38159
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 38160
+ components:
+ - type: Transform
+ pos: 6.5,-23.5
+ parent: 2
+- proto: WindowTintedDirectional
+ entities:
+ - uid: 1562
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,6.5
+ pos: -22.5,5.5
parent: 2
- - uid: 19821
+ - uid: 1715
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,7.5
+ pos: -20.5,7.5
parent: 2
- - uid: 19930
+ - uid: 1732
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,7.5
+ pos: -20.5,5.5
parent: 2
- - uid: 19931
+ - uid: 1733
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,7.5
+ pos: -18.5,5.5
parent: 2
- - uid: 19952
+ - uid: 1734
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,5.5
+ pos: -20.5,6.5
parent: 2
- - uid: 19989
+ - uid: 3120
+ components:
+ - type: Transform
+ pos: 42.5,41.5
+ parent: 2
+ - uid: 4549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,45.5
+ parent: 2
+ - uid: 4668
+ components:
+ - type: Transform
+ pos: 46.5,41.5
+ parent: 2
+ - uid: 4805
+ components:
+ - type: Transform
+ pos: 45.5,41.5
+ parent: 2
+ - uid: 5945
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 2
+ - uid: 5979
+ components:
+ - type: Transform
+ pos: 43.5,41.5
+ parent: 2
+ - uid: 7229
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,7.5
+ pos: -14.5,6.5
parent: 2
- - uid: 19991
+ - uid: 10358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,45.5
+ parent: 2
+ - uid: 10365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,45.5
+ parent: 2
+ - uid: 10715
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,5.5
+ pos: -14.5,5.5
parent: 2
- - uid: 21919
+ - uid: 11653
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,6.5
+ pos: -16.5,7.5
parent: 2
- - uid: 21936
+ - uid: 11656
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,7.5
+ pos: -16.5,6.5
parent: 2
- - uid: 21938
+ - uid: 11663
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,5.5
+ pos: -16.5,5.5
parent: 2
- - uid: 21939
+ - uid: 11664
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,5.5
+ pos: -18.5,6.5
parent: 2
- - uid: 21944
+ - uid: 11668
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,6.5
+ pos: -18.5,7.5
parent: 2
-- proto: Wirecutter
- entities:
- - uid: 29262
+ - uid: 19986
components:
- type: Transform
- pos: -66.524475,34.354824
+ rot: -1.5707963267948966 rad
+ pos: -22.5,6.5
parent: 2
- - uid: 30682
+ - uid: 19988
components:
- type: Transform
- pos: 5.4815645,64.65436
+ rot: -1.5707963267948966 rad
+ pos: -14.5,7.5
parent: 2
-- proto: WoodDoor
+ - uid: 21912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,7.5
+ parent: 2
+- proto: Wirecutter
entities:
- - uid: 32545
+ - uid: 30682
components:
- type: Transform
- pos: 70.5,43.5
+ pos: 5.4815645,64.65436
parent: 2
- - uid: 32570
+- proto: WoodDoor
+ entities:
+ - uid: 23175
components:
- type: Transform
- pos: 74.5,62.5
+ pos: 70.5,-11.5
parent: 2
- - uid: 32588
+ - uid: 30809
components:
- type: Transform
- pos: 73.5,52.5
+ pos: 73.5,-11.5
parent: 2
- proto: Wrench
entities:
@@ -221398,38 +246704,11 @@ entities:
- type: Transform
pos: 5.357978,64.67412
parent: 2
- - uid: 19099
- components:
- - type: Transform
- pos: -96.56446,50.994957
- parent: 2
- uid: 23214
components:
- type: Transform
pos: -58.461433,29.647139
parent: 2
- - uid: 29165
- components:
- - type: Transform
- pos: -68.25885,34.198574
- parent: 2
- - uid: 36394
- components:
- - type: Transform
- pos: 83.39625,59.432922
- parent: 2
-- proto: Zipties
- entities:
- - uid: 15511
- components:
- - type: Transform
- pos: -36.419666,31.184338
- parent: 2
- - uid: 15512
- components:
- - type: Transform
- pos: -36.61498,31.645275
- parent: 2
- proto: ZiptiesBroken
entities:
- uid: 5392
@@ -221455,6 +246734,22 @@ entities:
- uid: 7010
components:
- type: Transform
- pos: -25.229254,-35.211353
+ pos: -26.308697,-34.25065
+ parent: 2
+ - uid: 23009
+ components:
+ - type: Transform
+ pos: -106.053535,55.715134
+ parent: 2
+ - uid: 31228
+ components:
+ - type: Transform
+ pos: -103.053535,52.94951
+ parent: 2
+ - uid: 35563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.7689,15.3065815
parent: 2
...
diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
index c93f0d5886..55d9b5aec7 100644
--- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
@@ -29,3 +29,11 @@
components:
- type: AccessReader
access: [["Corpsman"]]
+
+- type: entity
+ parent: AirlockGlassShuttle
+ id: AirlockExternalGlassShuttleEscapeSub
+ suffix: External, Escape Sub, Glass, Docking
+ components:
+ - type: GridFill
+ path: /Maps/Shuttles/DeltaV/sub_escape_pod.yml
diff --git a/Resources/Prototypes/Maps/submarine.yml b/Resources/Prototypes/Maps/submarine.yml
index 6f73a22a8a..215c5c2f4c 100644
--- a/Resources/Prototypes/Maps/submarine.yml
+++ b/Resources/Prototypes/Maps/submarine.yml
@@ -2,7 +2,7 @@
id: Submarine
mapName: 'Submarine'
mapPath: /Maps/submarine.yml
- minPlayers: 50
+ minPlayers: 60
stations:
Submarine:
stationProto: StandardNanotrasenStation
@@ -13,7 +13,7 @@
!type:NanotrasenNameGenerator
prefixCreator: 'DV'
- type: StationEmergencyShuttle
- emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_BC20.yml
+ emergencyShuttlePath: /Maps/Shuttles/DeltaV/NTES_Propeller.yml
- type: StationJobs
overflowJobs:
- Passenger
@@ -27,12 +27,12 @@
AtmosphericTechnician: [ 2, 4 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 4, 6 ]
- TechnicalAssistant: [ 2, 4 ]
+ TechnicalAssistant: [ 2, 3 ]
#medical
Chemist: [ 2, 2 ]
ChiefMedicalOfficer: [ 1, 1 ]
- MedicalDoctor: [ 6, 9 ]
- MedicalIntern: [ 4, 4 ]
+ MedicalDoctor: [ 5, 7 ]
+ MedicalIntern: [ 2, 3 ]
Paramedic: [ 2, 3 ]
Psychologist: [ 1, 2 ]
#security
@@ -53,6 +53,7 @@
HeadOfPersonnel: [ 1, 1 ]
Janitor: [ 2, 3 ]
Lawyer: [ 2, 2 ]
+ MartialArtist: [ 2, 2 ]
Mime: [ 1, 2 ]
Musician: [ 2, 2 ]
Reporter: [ 1, 2 ]
@@ -62,7 +63,7 @@
MedicalBorg: [ 2, 3 ]
Chaplain: [ 1, 1 ]
ForensicMantis: [ 1, 1 ]
- ResearchAssistant: [ 2, 4 ]
+ ResearchAssistant: [ 2, 3 ]
ResearchDirector: [ 1, 1 ]
Scientist: [ 3, 4 ]
#supply
From 67137d1adb51d197b013bf43e8a7ccd8cbeb3aff Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 21:01:53 -0700
Subject: [PATCH 14/45] Mirror: Add log when a player starts observing. (#190)
## Mirror of PR #26091: [Add log when a player starts
observing.](https://github.com/space-wizards/space-station-14/pull/26091)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `85e0a5328a28b02fc29575648cfa7421f5bfb410`
PR opened by
nikthechampiongr at 2024-03-13 19:26:04 UTC
---
PR changed 1 files with 1 additions and 0 deletions.
The PR had the following labels:
- Status: Needs Review
---
Original Body
> closes #26089
>
>
>
> ## About the PR
>
> This PR adds logs for joining the round as an observer.
>
> ## Why / Balance
>
> The admin cabal has contracted me to do this. Please I want to see my
family again.
>
> ## Media
>
>
> - [x] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
>
>
>
> :cl:
> ADMIN:
> - add: Players now leave logs when joining as observers.
>
Co-authored-by: SimpleStation14
---
Content.Server/GameTicking/GameTicker.Spawning.cs | 1 +
1 file changed, 1 insertion(+)
diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs
index 52b59703e3..54587e95be 100644
--- a/Content.Server/GameTicking/GameTicker.Spawning.cs
+++ b/Content.Server/GameTicking/GameTicker.Spawning.cs
@@ -346,6 +346,7 @@ public void SpawnObserver(ICommonSession player)
_metaData.SetEntityName(ghost, name);
_ghost.SetCanReturnToBody(ghost, false);
_mind.TransferTo(mind.Value, ghost);
+ _adminLogger.Add(LogType.LateJoin, LogImpact.Low, $"{player.Name} late joined the round as an Observer with {ToPrettyString(ghost):entity}.");
}
#region Mob Spawning Helpers
From 79918820d5d921d10ec2d45dccadff0ac4c8859c Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 21:38:44 -0700
Subject: [PATCH 15/45] Separates DV-added airlocks into DV files (#74)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## Mirror of PR #1002: [Separates DV-added airlocks into DV
files](https://github.com/DeltaV-Station/Delta-v/pull/1002) from
[DeltaV-Station](https://github.com/DeltaV-Station)/[Delta-v](https://github.com/DeltaV-Station/Delta-v)
`3dea418e7ee0db6136855914dd3f99b01fb337ee`
---
PR changed 0 files with 0 additions and 0 deletions.
The PR had the following labels:
- Changes: YML
---
Original Body
> ## About the PR
> Simply moves airlocks we added from the upstream file to our file for
better separation/easier management over time. Does not add any new
entities.
>
> ## Why / Balance
> Probably should have been done this way the first time but...🤷♂️
Co-authored-by: Velcroboy <107660393+IamVelcroboy@users.noreply.github.com>
Co-authored-by: VMSolidus
Co-authored-by: Peptide90 <78795277+Peptide90@users.noreply.github.com>
---
.../Structures/Doors/Airlocks/access.yml | 219 +++++++++++++++++
.../Structures/Doors/Airlocks/access.yml | 222 ------------------
2 files changed, 219 insertions(+), 222 deletions(-)
diff --git a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
index 55d9b5aec7..fc9f2902ad 100644
--- a/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
+++ b/Resources/Prototypes/DeltaV/Entities/Structures/Doors/Airlocks/access.yml
@@ -1,3 +1,4 @@
+# Delta V specific roles
- type: entity
parent: AirlockScience
id: AirlockMantisLocked
@@ -37,3 +38,221 @@
components:
- type: GridFill
path: /Maps/Shuttles/DeltaV/sub_escape_pod.yml
+
+- type: entity
+ parent: Airlock
+ id: AirlockBoxerLocked
+ suffix: Boxer, Locked
+ components:
+ - type: AccessReader
+ access: [["Boxer"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockClownLocked
+ suffix: Clown, Locked
+ components:
+ - type: AccessReader
+ access: [["Clown"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockMimeLocked
+ suffix: Mime, Locked
+ components:
+ - type: AccessReader
+ access: [["Mime"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockMusicianLocked
+ suffix: Musician, Locked
+ components:
+ - type: AccessReader
+ access: [["Musician"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockReporterLocked
+ suffix: Reporter, Locked
+ components:
+ - type: AccessReader
+ access: [["Reporter"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockLibraryLocked
+ suffix: Library, Locked
+ components:
+ - type: AccessReader
+ access: [["Library"]]
+
+- type: entity
+ parent: Airlock
+ id: AirlockZookeeperLocked
+ suffix: Zookeeper, Locked
+ components:
+ - type: AccessReader
+ access: [["Zookeeper"]]
+
+- type: entity
+ parent: AirlockExternal
+ id: AirlockExternalSalvageLocked
+ suffix: External, Salvage, Locked
+ components:
+ - type: AccessReader
+ access: [["Salvage"]]
+
+- type: entity
+ parent: AirlockMedical
+ id: AirlockPsychologistLocked
+ suffix: Psychologist, Locked
+ components:
+ - type: AccessReader
+ access: [["Psychologist"]]
+
+# Glass Airlocks
+- type: entity
+ parent: AirlockGlass
+ id: AirlockBoxerGlassLocked
+ suffix: Boxer, Locked
+ components:
+ - type: AccessReader
+ access: [["Boxer"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockClownGlassLocked
+ suffix: Clown, Locked
+ components:
+ - type: AccessReader
+ access: [["Clown"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockMimeGlassLocked
+ suffix: Mime, Locked
+ components:
+ - type: AccessReader
+ access: [["Mime"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockMusicianGlassLocked
+ suffix: Musician, Locked
+ components:
+ - type: AccessReader
+ access: [["Musician"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockReporterGlassLocked
+ suffix: Reporter, Locked
+ components:
+ - type: AccessReader
+ access: [["Reporter"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockLibraryGlassLocked
+ suffix: Library, Locked
+ components:
+ - type: AccessReader
+ access: [["Library"]]
+
+- type: entity
+ parent: AirlockGlass
+ id: AirlockZookeeperGlassLocked
+ suffix: Zookeeper, Locked
+ components:
+ - type: AccessReader
+ access: [["Zookeeper"]]
+
+- type: entity
+ parent: AirlockExternalGlass
+ id: AirlockExternalGlassSalvageLocked
+ suffix: External, Glass, Salvage, Locked
+ components:
+ - type: AccessReader
+ access: [["Salvage"]]
+
+- type: entity
+ parent: AirlockMedicalGlass
+ id: AirlockPsychologistGlassLocked
+ suffix: Psychologist, Locked
+ components:
+ - type: AccessReader
+ access: [["Psychologist"]]
+
+# Maintenance Hatches
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintBoxerLocked
+ suffix: Boxer, Locked
+ components:
+ - type: AccessReader
+ access: [["Boxer"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintClownLocked
+ suffix: Clown, Locked
+ components:
+ - type: AccessReader
+ access: [["Clown"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintMimeLocked
+ suffix: Mime, Locked
+ components:
+ - type: AccessReader
+ access: [["Mime"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintMusicianLocked
+ suffix: Musician, Locked
+ components:
+ - type: AccessReader
+ access: [["Musician"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintReporterLocked
+ suffix: Reporter, Locked
+ components:
+ - type: AccessReader
+ access: [["Reporter"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintLibraryLocked
+ suffix: Library, Locked
+ components:
+ - type: AccessReader
+ access: [["Library"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintZookeeperLocked
+ suffix: Zookeeper, Locked
+ components:
+ - type: AccessReader
+ access: [["Zookeeper"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintPsychologistLocked
+ suffix: Psychologist, Locked
+ components:
+ - type: AccessReader
+ access: [["Psychologist"]]
+
+- type: entity
+ parent: AirlockMaint
+ id: AirlockMaintSecurityLawyerLocked
+ suffix: Security/Lawyer, Locked
+ components:
+ - type: AccessReader
+ access: [["Security"], ["Lawyer"]]
diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml
index 82cdcde7c0..51f121c64f 100644
--- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml
+++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml
@@ -374,80 +374,6 @@
- type: AccessReader
access: [["External"]]
-#Delta V: Add Airlocks
-- type: entity
- parent: Airlock
- id: AirlockBoxerLocked
- suffix: Boxer, Locked
- components:
- - type: AccessReader
- access: [["Boxer"]]
-
-- type: entity
- parent: Airlock
- id: AirlockClownLocked
- suffix: Clown, Locked
- components:
- - type: AccessReader
- access: [["Clown"]]
-
-- type: entity
- parent: Airlock
- id: AirlockMimeLocked
- suffix: Mime, Locked
- components:
- - type: AccessReader
- access: [["Mime"]]
-
-- type: entity
- parent: Airlock
- id: AirlockMusicianLocked
- suffix: Musician, Locked
- components:
- - type: AccessReader
- access: [["Musician"]]
-
-- type: entity
- parent: Airlock
- id: AirlockReporterLocked
- suffix: Reporter, Locked
- components:
- - type: AccessReader
- access: [["Reporter"]]
-
-- type: entity
- parent: Airlock
- id: AirlockLibraryLocked
- suffix: Library, Locked
- components:
- - type: AccessReader
- access: [["Library"]]
-
-- type: entity
- parent: Airlock
- id: AirlockZookeeperLocked
- suffix: Zookeeper, Locked
- components:
- - type: AccessReader
- access: [["Zookeeper"]]
-
-- type: entity
- parent: AirlockExternal
- id: AirlockExternalSalvageLocked
- suffix: External, Salvage, Locked
- components:
- - type: AccessReader
- access: [["Salvage"]]
-
-- type: entity
- parent: AirlockMedical
- id: AirlockPsychologistLocked
- suffix: Psychologist, Locked
- components:
- - type: AccessReader
- access: [["Psychologist"]]
-#End of Delta V
-
# Glass Airlocks
- type: entity
parent: AirlockGlass
@@ -788,80 +714,6 @@
- type: AccessReader
access: [["NuclearOperative"]]
-#Delta V: Add Airlocks
-- type: entity
- parent: AirlockGlass
- id: AirlockBoxerGlassLocked
- suffix: Boxer, Locked
- components:
- - type: AccessReader
- access: [["Boxer"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockClownGlassLocked
- suffix: Clown, Locked
- components:
- - type: AccessReader
- access: [["Clown"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockMimeGlassLocked
- suffix: Mime, Locked
- components:
- - type: AccessReader
- access: [["Mime"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockMusicianGlassLocked
- suffix: Musician, Locked
- components:
- - type: AccessReader
- access: [["Musician"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockReporterGlassLocked
- suffix: Reporter, Locked
- components:
- - type: AccessReader
- access: [["Reporter"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockLibraryGlassLocked
- suffix: Library, Locked
- components:
- - type: AccessReader
- access: [["Library"]]
-
-- type: entity
- parent: AirlockGlass
- id: AirlockZookeeperGlassLocked
- suffix: Zookeeper, Locked
- components:
- - type: AccessReader
- access: [["Zookeeper"]]
-
-- type: entity
- parent: AirlockExternalGlass
- id: AirlockExternalGlassSalvageLocked
- suffix: External, Glass, Salvage, Locked
- components:
- - type: AccessReader
- access: [["Salvage"]]
-
-- type: entity
- parent: AirlockMedicalGlass
- id: AirlockPsychologistGlassLocked
- suffix: Psychologist, Locked
- components:
- - type: AccessReader
- access: [["Psychologist"]]
-#End of Delta V
-
# Maintenance Hatches
- type: entity
parent: AirlockMaint
@@ -1103,80 +955,6 @@
- type: AccessReader
access: [["Armory"]]
-#Delta V: Add Airlocks
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintBoxerLocked
- suffix: Boxer, Locked
- components:
- - type: AccessReader
- access: [["Boxer"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintClownLocked
- suffix: Clown, Locked
- components:
- - type: AccessReader
- access: [["Clown"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintMimeLocked
- suffix: Mime, Locked
- components:
- - type: AccessReader
- access: [["Mime"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintMusicianLocked
- suffix: Musician, Locked
- components:
- - type: AccessReader
- access: [["Musician"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintReporterLocked
- suffix: Reporter, Locked
- components:
- - type: AccessReader
- access: [["Reporter"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintLibraryLocked
- suffix: Library, Locked
- components:
- - type: AccessReader
- access: [["Library"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintZookeeperLocked
- suffix: Zookeeper, Locked
- components:
- - type: AccessReader
- access: [["Zookeeper"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintPsychologistLocked
- suffix: Psychologist, Locked
- components:
- - type: AccessReader
- access: [["Psychologist"]]
-
-- type: entity
- parent: AirlockMaint
- id: AirlockMaintSecurityLawyerLocked
- suffix: Security/Lawyer, Locked
- components:
- - type: AccessReader
- access: [["Security"], ["Lawyer"]]
-#End of Delta V
-
- type: entity
parent: AirlockSyndicate
id: AirlockSyndicateLocked
From 2cb2cf5dd7be683fdcf85590e20057a6c586e7aa Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:14:47 -0700
Subject: [PATCH 16/45] Mirror: Rats eyes glow in dark + reorganize rat
textures (#290)
## Mirror of PR #26300: [Rats eyes glow in dark + reorganize rat
textures ](https://github.com/space-wizards/space-station-14/pull/26300)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `12f94b33c3537ce9442b513d84bfce7b40d88169`
PR opened by jamessimo at 2024-03-21
04:12:51 UTC
---
PR changed 16 files with 147 additions and 86 deletions.
The PR had the following labels:
- No C#
- Changes: Sprites
---
Original Body
>
>
>
> ## About the PR
>
> Gave RatKing, BuffRat and Rats unshaded eyes (like spacecarps) so they
can be seen in the dark.
> Split rats from mice in texture resources, no longer hardcode a mouse
variant as a rat.
> Fixed misleading admin smite text to turn player into a mouse.
>
> ## Why / Balance
>
> Balance so its easier to ID that rats are a hostile mob
> Why because it looks rad.
>
> ## Technical details
>
> Rats used to share there sprites with mice and had a hardcoded mouse-3
sprite, put that in its own rat.rsi allowing for multi rat variants if
in future.
>
> ## Media
>
>
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame
>
>
![RATS](https://github.com/space-wizards/space-station-14/assets/4888377/792e1961-d036-44c2-8059-0266b182d64d)
>
> ## Breaking changes
>
> N/A
>
> **Changelog**
>
>
>
> :cl:
> - tweak: Ratkings and Rat servants eyes now glow in the dark
>
>
Co-authored-by: SimpleStation14
---
.../Locale/en-US/administration/smites.ftl | 2 +-
.../Entities/Mobs/NPCs/regalrat.yml | 26 ++++--
.../Mobs/Animals/buffrat.rsi/eyes.png | Bin 0 -> 124 bytes
.../Mobs/Animals/buffrat.rsi/meta.json | 40 +++++----
.../Textures/Mobs/Animals/mouse.rsi/meta.json | 39 ---------
.../Mobs/Animals/mouse.rsi/mouse-moving-3.png | Bin 1535 -> 0 bytes
.../dead-3.png => rat.rsi/dead.png} | Bin
.../Mobs/Animals/rat.rsi/eyes-moving.png | Bin 0 -> 168 bytes
.../Textures/Mobs/Animals/rat.rsi/eyes.png | Bin 0 -> 123 bytes
.../icon-3.png => rat.rsi/icon.png} | Bin
.../Textures/Mobs/Animals/rat.rsi/meta.json | 80 ++++++++++++++++++
.../Mobs/Animals/rat.rsi/rat-moving.png | Bin 0 -> 1581 bytes
.../mouse-3.png => rat.rsi/rat.png} | Bin
.../splat-3.png => rat.rsi/splat.png} | Bin
.../Mobs/Animals/regalrat.rsi/eyes.png | Bin 0 -> 125 bytes
.../Mobs/Animals/regalrat.rsi/meta.json | 46 +++++-----
16 files changed, 147 insertions(+), 86 deletions(-)
create mode 100644 Resources/Textures/Mobs/Animals/buffrat.rsi/eyes.png
delete mode 100644 Resources/Textures/Mobs/Animals/mouse.rsi/mouse-moving-3.png
rename Resources/Textures/Mobs/Animals/{mouse.rsi/dead-3.png => rat.rsi/dead.png} (100%)
create mode 100644 Resources/Textures/Mobs/Animals/rat.rsi/eyes-moving.png
create mode 100644 Resources/Textures/Mobs/Animals/rat.rsi/eyes.png
rename Resources/Textures/Mobs/Animals/{mouse.rsi/icon-3.png => rat.rsi/icon.png} (100%)
create mode 100644 Resources/Textures/Mobs/Animals/rat.rsi/meta.json
create mode 100644 Resources/Textures/Mobs/Animals/rat.rsi/rat-moving.png
rename Resources/Textures/Mobs/Animals/{mouse.rsi/mouse-3.png => rat.rsi/rat.png} (100%)
rename Resources/Textures/Mobs/Animals/{mouse.rsi/splat-3.png => rat.rsi/splat.png} (100%)
create mode 100644 Resources/Textures/Mobs/Animals/regalrat.rsi/eyes.png
diff --git a/Resources/Locale/en-US/administration/smites.ftl b/Resources/Locale/en-US/administration/smites.ftl
index fe8077a550..ae4e6f7271 100644
--- a/Resources/Locale/en-US/administration/smites.ftl
+++ b/Resources/Locale/en-US/administration/smites.ftl
@@ -44,7 +44,7 @@ admin-smite-reptilian-species-swap-description = It changes their species to Rep
admin-smite-locker-stuff-description = Stuffs them in a (welded) locker.
admin-smite-headstand-description = Vertically flips their sprite.
admin-smite-plasma-internals-description = Replaces the contents of their internals with plasma.
-admin-smite-become-mouse-description = They become a rat. Ratatouille.
+admin-smite-become-mouse-description = They become a mouse. Squeak!
admin-smite-maid-description = Forcibly converts them into a janitorial cat maid. This is actual torture for some players, use it wisely.
admin-smite-zoom-in-description = Zooms in their view so that they can no longer see their surroundings.
admin-smite-flip-eye-description = Flips their view, effectively reversing their controls and making the game annoying to play.
diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
index 396094eeaf..89a6f16e52 100644
--- a/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
+++ b/Resources/Prototypes/Entities/Mobs/NPCs/regalrat.yml
@@ -26,6 +26,9 @@
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: regalrat
+ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ]
+ state: eyes
+ shader: unshaded
- type: Physics
bodyType: KinematicController
- type: Fixtures
@@ -77,6 +80,7 @@
states:
Alive:
Base: regalrat
+ BaseUnshaded: eyes
Critical:
Base: critical
Dead:
@@ -127,6 +131,9 @@
layers:
- map: ["enum.DamageStateVisualLayers.Base"]
state: regalrat
+ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded"]
+ state: eyes
+ shader: unshaded
- type: MobState
- type: MobThresholds
thresholds:
@@ -181,17 +188,21 @@
- SimpleHostile
- type: Sprite
drawdepth: SmallMobs
- sprite: Mobs/Animals/mouse.rsi
+ sprite: Mobs/Animals/rat.rsi
layers:
- map: ["enum.DamageStateVisualLayers.Base", "movement"]
- state: mouse-3
+ state: rat
+ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded"]
+ state: eyes
+ shader: unshaded
+
- type: SpriteMovement
movementLayers:
movement:
- state: mouse-moving-3
+ state: rat-moving
noMovementLayers:
movement:
- state: mouse-3
+ state: rat
- type: Physics
bodyType: KinematicController
- type: Fixtures
@@ -244,11 +255,12 @@
- type: DamageStateVisuals
states:
Alive:
- Base: mouse-3
+ Base: rat
+ BaseUnshaded: eyes
Critical:
- Base: dead-3
+ Base: dead
Dead:
- Base: splat-3
+ Base: splat
- type: Butcherable
spawned:
- id: FoodMeatRat
diff --git a/Resources/Textures/Mobs/Animals/buffrat.rsi/eyes.png b/Resources/Textures/Mobs/Animals/buffrat.rsi/eyes.png
new file mode 100644
index 0000000000000000000000000000000000000000..27e2720a91d02115dc87cb7212e3d8b28aaa5513
GIT binary patch
literal 124
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|%sgEjLn`LH
zy|s{+fq{c%?g~=jw*gW{8qELxId!qrMHW$1SqN=Dh&bS?o1puwizoEp9t_lMH
z)dKf}=)lCF8HVpEgfpDmV9WOd*M1o*yK9_*%-UVxDD27i%TnF+1GzOV%TF799`hi5
z8~L7-_T>{D`5@Iz<`ok?`MMtJn_4pLPfT}s5>qRJA(?Wo1*qBb$gJSq^z@gO1$leu
zTJOo$wxz!42$93QjXQmVle+Ogp=&5?t@UFhWuQ}2w{U#tb<#7yQN-i%Oeu8;Vz@*i
z!G}9Xc{Wt+of|HxUR=qAHm$O&9_--Mt+HaR+0&Jm8Czv>Q@y>}0%lQ>+w~i3ZtUYr
z0z_^O(f8cU`(iKenHVniT*#ki2{;b}PvIz4S|dmn^F;1m2qZO4nz!GV*Mt?_xgS6ASDQ9J~xb`BEQnn
zgSiNmC=C^H+?*@DjsdB#++|i`o3P(uurDtabZ7J;4v#u1GMI0ERrllxjKAbZ*2xHn
znXT|_YZMMf@JPdFM-o>5XsE=O4?ROpMA)^F43Li`Wp6*%7V<RqjS&5pR};qOBs<1dGLV?w^Wn_^5Sv0B
z2TJ+_g|2uM*o60z>x&)Iq^UH|b(aWqV&-ihi!MqfwP=t7VU%Zswv?L+AoeE)K8CFw
zXh=rrny8^afl~g{!~e=qWPulKFp@gotQS*vi1HAVi3-0GPproy-7VX}eZG(~MX&sa
zxNGlj7aIBK`yoqZjq)f9RPE{e6QIo=W^-B;#?qwmu`BL
z=iyp3*a3&^WQ=lXdOFU-J|Aq0DbfxBi3<34yCWjEVbX|)7bvG;~J2R+?&^`n?3wVj2-Y$l3pi;@?FTb^f3(Jg{TN
zD-WM##AEUNdq!}8rIx^CUJT`NpMH9EVEt?}%k}n|<>L!-v&wBCbd>y4S!PyI46b}B
z*ehUjqqlfa14^6RLZB?
zR7RX)F%aa3%Grg5k*`}b`40(`+K#5?g@RvIO`kK~sU*p~!zOfsz4p8w4+UGFY511;
zZmFL`gMO~8Y2P}fGfY;G}w=#hyx)syTtO&zNvOSGWD
zYG7kW%bcKd=~msc@ZXoO07;D8kew2t{5cNKpRqBlDZB5YoyzuQzD}47*+ErC;_{+l
zSBr0^o%-lSvw!>D<}Mn~FMjs;=?*cy?*o-pPI&LQEovWXM4xWBD7A+BBt@#kXtjv6
z9L86fq(h?R>=ar}9;^@{vjEm-S6e$5M;*Z-db{@lCoFn*^~wsfpCNJexp1o9Nvk6!
zNEce8?ZxAXoqCzTvXN{S`3s9Zs;VY^fe{TS>%Bo^7zH7oWLS>9!QN52<|$Ub;l7
idOz*5tMuBIHKm2fuZ(!FoLh>g4Y)h|9ArBMr~Cy=8Qu^8
diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/dead-3.png b/Resources/Textures/Mobs/Animals/rat.rsi/dead.png
similarity index 100%
rename from Resources/Textures/Mobs/Animals/mouse.rsi/dead-3.png
rename to Resources/Textures/Mobs/Animals/rat.rsi/dead.png
diff --git a/Resources/Textures/Mobs/Animals/rat.rsi/eyes-moving.png b/Resources/Textures/Mobs/Animals/rat.rsi/eyes-moving.png
new file mode 100644
index 0000000000000000000000000000000000000000..34020dad686d82fda5eb1a08f0e72fb6d3d12559
GIT binary patch
literal 168
zcmeAS@N?(olHy`uVBq!ia0vp^4M3d0!3HF+R#kZdDaPU;cPEB*=VV?2IZ2)_jv*Cu
z-rm{B%V5C4?D&4aN#Xq8Bj1V@AY{=a8pRMFOn&^y&&+YbB
gzuvc(AFA$v0=tL4_{&)a#cM$#p00i_>zopr05$F@`Tzg`
literal 0
HcmV?d00001
diff --git a/Resources/Textures/Mobs/Animals/rat.rsi/eyes.png b/Resources/Textures/Mobs/Animals/rat.rsi/eyes.png
new file mode 100644
index 0000000000000000000000000000000000000000..716195bc43c5900cdc66a0d87deb35ce2e6a0603
GIT binary patch
literal 123
zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=jKx9jP7LeL$-D$|Og&v3Ln`LH
zy|s{$fq~=jhQI$!B2<{%lYY4f17#ytFG&N6gFr*Q-hM`YCLrs;LblNN>_2NIW6D7i
Mp00i_>zopr05p>zrvLx|
literal 0
HcmV?d00001
diff --git a/Resources/Textures/Mobs/Animals/mouse.rsi/icon-3.png b/Resources/Textures/Mobs/Animals/rat.rsi/icon.png
similarity index 100%
rename from Resources/Textures/Mobs/Animals/mouse.rsi/icon-3.png
rename to Resources/Textures/Mobs/Animals/rat.rsi/icon.png
diff --git a/Resources/Textures/Mobs/Animals/rat.rsi/meta.json b/Resources/Textures/Mobs/Animals/rat.rsi/meta.json
new file mode 100644
index 0000000000..be50d5e880
--- /dev/null
+++ b/Resources/Textures/Mobs/Animals/rat.rsi/meta.json
@@ -0,0 +1,80 @@
+{
+ "version": 1,
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/tgstation/tgstation/commit/e15c63d100db65eaaa5231133b8a2662ff439131#diff-8dd94e19fdb2ff341b57e31bce101298 eyes added by jamessimo",
+ "size": {
+ "x": 32,
+ "y": 32
+ },
+ "states": [
+ {
+ "name": "icon"
+ },
+ {
+ "name": "rat",
+ "directions": 4
+ },
+ {
+ "name": "eyes",
+ "directions": 4
+ },
+ {
+ "name": "rat-moving",
+ "directions": 4,
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "eyes-moving",
+ "directions": 4,
+ "delays": [
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ],
+ [
+ 0.2,
+ 0.2,
+ 0.2
+ ]
+ ]
+ },
+ {
+ "name": "dead"
+ },
+ {
+ "name": "splat"
+ }
+ ]
+}
diff --git a/Resources/Textures/Mobs/Animals/rat.rsi/rat-moving.png b/Resources/Textures/Mobs/Animals/rat.rsi/rat-moving.png
new file mode 100644
index 0000000000000000000000000000000000000000..f6c1d6d936f04a3f4ffb859caa834f86c3834d77
GIT binary patch
literal 1581
zcmV+|2GaS7P)Px)=Sf6CRCt{2-9Km>R~!fMuSIb~FkBRMaEl^~!vsP@Vp|*td8ns=2{EKYJro)Y
zF#(s*p`Jpz#3fS}6Cz?72pKwbsiDT0WXjSsAXLSnSwcCii-#_ba>NPLgI)&tU38LV
z-^uq*|GpnEMmp)f@7_J#AHnYlAR;0nA|fIpqPCPy#YH+57k-yD@<}kwqA;XWaWOhN
zDj$lc`OUuCWk-%20q~b=*?v5|NSd551OTi(&egqdzhyyb=lqPJ3jlbMGnM40Q*oi|
zIsib^G+0&vsEb}r5JRbojCk*lP4>R(isP2UQmIbAq^D~An
zZeN=R09?I!OQ;wGyE{|FV#fi%+1XMvJ0I{k0OZD>Oq{^>`}eTlZ8;+z0PJ^L_~Nq|
z296%ZZYKr06WTo=fRlgw+Pu<1kWN8tZM{Y;cHA`xs*ea>cRt|b6d*g{-s)Pz*IYh7
ziR+8^l^ljUCI9NpTgpxYQq8r1qfjXL+W7zw@%qBG$GN`ii}$g<{sI7yy|?1}zrOy$
z)%p45tgoxlZpg3Q`9Ze}h#%A5f&o5_1
z>f&6WpN3w~-){f_{*MBlj{rbr9|W?4l=eGfg#1Nv<0j#gTz>S&jP$(2!7bJHU=7p+_XMW{2vsBuKX`0R;
zu&g2qg#t>YZQs`)zFsUp0g1$rbJZy~-m;2KHGuj4oj-R*tUh|)C%+poO%qS^n|({O
z)8fi6zo{Dlz{gIIw;TWviyaSb<9j{7)}4iU@%>M?n$Goo3b-_40I1w+%D<_hQ_l0M
zT^cbkHFV0AU)`=&O
z3A#SL)AGBGulWH~)Teh+emC;mNvi78J0;(XFy<%-I^XjVKvjKur{o``x`h0jA8#m`
zqd-NzuTy}E`t(l9-%E8p;K{@ZytG~+IXsBWJ6*{f0YT?C)xaR@)7w42QJtUc__Jrf
zbe`Mz_di7X|A(d>gQjT>tA^Vt-*;tD(Dmt^mJfU^5wGri07woGI-Q@rw*pPmkW9ww
zW)o?reBT40*Q74a^;K8k)XooJS;e~d*tU(i%NGDtE?6JlU2J*~sLpS?I8=_bYGGFB
zhMk{Z&Wfl1nE3UN-%&e3gk=?7?U7~Mavp&o+M_DJsfJ|?U6ji^&~@E)OBRXrhgPB6
zs{D+hi`ql4+yRnpzfpE45_Eo36GdJcF|b>QE_7XY!p@&N6Uw)6jq;afr^S<;sWkgZ
z&g?6fcbxAeOw&Xp(vMPU8vr0n$5mYnw>rPhorU?9e)Za_{B$ZVmS(5-%+45k!(~Bc
z@0FoC8-Tk$z11bkt=+^wEDub$pQ6HZ%bdek$
z#7pZHP9{#ca>FV`>(+cvZ{Dj$J&gMJ>PlGKwqe_EP~Q0z$>BlgHS*`&_sTfzZ}@g{
zzSryn%flP(eAV^w)f+F@rD?}p8xK?lpvoHjPR*|^D{th$0nm#2_>7^8hj$m9jJeAf
z8vb0m%&6^z!+iRBDc^GgTTve`Hz=8m1AuG&w*AI6N02<-d^`0u(x>%6O2&F2-}6PF
zTw%u0MeW24)s3k952ij|4xDm%$C(|hkxH93ahPAy?#2A3CyA=9PnT5Hr>9eKA%CV_
zl9NQpcBrh0@7DaLZUg0p-|!s5{_&PEke&Ufv6Rb2
OkbtMFpUXO@geCyIb|SX`
literal 0
HcmV?d00001
diff --git a/Resources/Textures/Mobs/Animals/regalrat.rsi/meta.json b/Resources/Textures/Mobs/Animals/regalrat.rsi/meta.json
index 5c80471313..f3ed84b963 100644
--- a/Resources/Textures/Mobs/Animals/regalrat.rsi/meta.json
+++ b/Resources/Textures/Mobs/Animals/regalrat.rsi/meta.json
@@ -1,24 +1,28 @@
{
- "version": 1,
- "size": {
- "x": 32,
- "y": 32
- },
- "license": "CC-BY-SA-3.0",
- "copyright": "Taken from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b Changed by Alekshhh",
- "states": [
- {
- "name": "critical"
+ "version": 1,
+ "size": {
+ "x": 32,
+ "y": 32
},
- {
- "name": "dead"
- },
- {
- "name": "icon"
- },
- {
- "name": "regalrat",
- "directions": 4
- }
- ]
+ "license": "CC-BY-SA-3.0",
+ "copyright": "Taken from https://github.com/tgstation/tgstation/commit/53d1f1477d22a11a99c6c6924977cd431075761b Changed by Alekshhh + eyes added by jamessimo",
+ "states": [
+ {
+ "name": "critical"
+ },
+ {
+ "name": "dead"
+ },
+ {
+ "name": "icon"
+ },
+ {
+ "name": "regalrat",
+ "directions": 4
+ },
+ {
+ "name": "eyes",
+ "directions": 4
+ }
+ ]
}
From f5bf453386f5f82b4490bbc82120b998d99e1fb7 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:15:04 -0700
Subject: [PATCH 17/45] Mirror: The return of the 'long bedhead' haircut as an
alternative (#305)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
## Mirror of PR #26336: [The return of the 'long bedhead' haircut as an
alternative](https://github.com/space-wizards/space-station-14/pull/26336)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `6bffa31eba2c0b108ec9d5bebb3d161fc7e83ebb`
PR opened by ImRenQ at
2024-03-22 15:26:53 UTC
---
PR changed 4 files with 12 additions and 0 deletions.
The PR had the following labels:
- No C#
- Changes: Sprites
---
Original Body
> ## About the PR
> Added back the 'old' sprite of long bedhead haircut as a secondary
choice to the current long bedhead.
>
> ## Why / Balance
> The new sprite (#19298) haircut is very different from the original
>
> ## Media
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
![long_bedhead](https://github.com/space-wizards/space-station-14/assets/164364533/e40e8291-a383-496c-83db-f4de54d7384e)
>
> **Changelog**
> 🆑 RenQ
> - add: brought back the classic long bedhead as an alternative to the
current one.
Co-authored-by: SimpleStation14
---
Resources/Locale/en-US/accessories/human-hair.ftl | 1 +
.../Mobs/Customization/Markings/human_hair.yml | 7 +++++++
.../human_hair.rsi/long_bedhead2.png | Bin 0 -> 748 bytes
.../Mobs/Customization/human_hair.rsi/meta.json | 4 ++++
4 files changed, 12 insertions(+)
create mode 100644 Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead2.png
diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl
index a39e09d5d5..3a507ec6cf 100644
--- a/Resources/Locale/en-US/accessories/human-hair.ftl
+++ b/Resources/Locale/en-US/accessories/human-hair.ftl
@@ -7,6 +7,7 @@ marking-HumanHairBedhead = Bedhead
marking-HumanHairBedheadv2 = Bedhead 2
marking-HumanHairBedheadv3 = Bedhead 3
marking-HumanHairLongBedhead = Long Bedhead
+marking-HumanHairLongBedhead2 = Long Bedhead 2
marking-HumanHairFloorlengthBedhead = Floorlength Bedhead
marking-HumanHairBeehive = Beehive
marking-HumanHairBeehivev2 = Beehive 2
diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml
index c3f3bd13a3..449f8aa2cd 100644
--- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml
+++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml
@@ -61,6 +61,13 @@
sprites:
- sprite: Mobs/Customization/human_hair.rsi
state: long_bedhead
+- type: marking
+ id: HumanHairLongBedhead2
+ bodyPart: Hair
+ markingCategory: Hair
+ sprites:
+ - sprite: Mobs/Customization/human_hair.rsi
+ state: long_bedhead2
- type: marking
id: HumanHairFloorlengthBedhead
bodyPart: Hair
diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead2.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/long_bedhead2.png
new file mode 100644
index 0000000000000000000000000000000000000000..12520f077dac4cd2d685f54284d79c9b2fd4b5d1
GIT binary patch
literal 748
zcmVdCU$;rve%F4{l%+1Zs&&|!x&(F}%(9zM+)6>(`)YR72*4Nk9*x1ch$<>lw+=jrF?>FMd~>gw$4>+bFC@b2#U
z`T76<|I^TJZvX%Q0d!JMQvg8b*k%9#0rg2lK~xwS?ZM$%5>XTd&|OxFBP4RfxTip3
zvcU>=x|{cZv}PDgoO@C5XCG@}ldvMB2`j>OY9LJwq-o71Ax#^QQc6B|mrA6RS}Tzz
zl@+tH6jD^KNk~!{UYwr-gK#fE*d#!r8YGd@JMEzJ4tSrVvvZ!zM#po>Nq1c`M1Vw@yx~cK7{W#NI5k{1E}eezLQWuibuK
zm>FVbXqcfb%d(KKO=r0o5)2Ovv9}?Fd?i%Ou(#9j2(NGiAT)r0*9xcv931@j94~S_
zLp3}@HEiK1)c_0;1Jo$tNRrCRpHl8fa96n^Ax*VnRyekBa-kYhoRswIdTNd>+!xn3
zl1N9J8Ayq<;W->zID9f$NF>Y{~zY~?r~U;QA71Xd;<
zhK^^r<)hCFl8BMaM}86TtdY-#Gm?mrcHK3+D0Hs|Bx0m}>0t+>%Zx;f#h{CwoM#0Q
zW6|$mCxg=)A|e)(6YQiv&MCCG7dFB15HIpRroF-)ZH3)nN7G(`SYbJKG&?I0vjRIC
e8x9T*p85-Tz+iTa)Z%9V0000
Date: Wed, 8 May 2024 22:19:09 -0700
Subject: [PATCH 18/45] Mirror: Prevent dead players from turning bar stools
(#213)
## Mirror of PR #24308: [Prevent dead players from turning bar
stools](https://github.com/space-wizards/space-station-14/pull/24308)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `15a7520df17a6fa95cbd8ce8914edab5b0d7ed50`
PR opened by Nopey at 2024-01-19 22:47:45 UTC
---
PR changed 3 files with 11 additions and 18 deletions.
The PR had the following labels:
---
Original Body
>
>
>
> ## About the PR
> Bugfix.
>
> ## Why / Balance
> Previously, players could always turn a bar stool (or office chair,
etc..) they were buckled into; even while stone cold dead.
>
> ## Technical details
> RotateToFaceSystem now only lets players rotate barstools (& similar)
when the actionBlockerSystem reports that they CanChangeDirection; this
also means players who are frozen by admins (see AdminFrozenSystem) can
no longer spin barstools.
>
> SharedBuckleSystem no longer tries to prevent buckled players from
being able to change direction, instead relying on RotateToFaceSystem to
ensure that players on beds and such don't rotate.
>
> ## Media
>
>
> - [X] I have added screenshots/videos to this PR showcasing its
changes ingame
>
> Video showcasing prior broken behavior:
>
>
https://github.com/space-wizards/space-station-14/assets/4543739/74be203a-0961-4850-842a-768d927f6691
>
>
>
>
> ## Breaking changes
>
>
> **Changelog**
> :cl:
> - fix: Dead players can no longer spin on a bar stool.
>
>
>
>
Co-authored-by: SimpleStation14
---
.../Tests/Buckle/BuckleTest.cs | 2 +-
.../Buckle/SharedBuckleSystem.Buckle.cs | 8 --------
.../Interaction/RotateToFaceSystem.cs | 19 ++++++++++---------
3 files changed, 11 insertions(+), 18 deletions(-)
diff --git a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs
index 739bd54906..6e2a080370 100644
--- a/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs
+++ b/Content.IntegrationTests/Tests/Buckle/BuckleTest.cs
@@ -101,7 +101,7 @@ await server.WaitAssertion(() =>
Assert.That(buckle.Buckled);
Assert.That(actionBlocker.CanMove(human), Is.False);
- Assert.That(actionBlocker.CanChangeDirection(human), Is.False);
+ Assert.That(actionBlocker.CanChangeDirection(human));
Assert.That(standingState.Down(human), Is.False);
Assert.That(
(xformSystem.GetWorldPosition(human) - xformSystem.GetWorldPosition(chair)).LengthSquared,
diff --git a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs
index 731b2892aa..b58bdf83e4 100644
--- a/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs
+++ b/Content.Shared/Buckle/SharedBuckleSystem.Buckle.cs
@@ -7,7 +7,6 @@
using Content.Shared.Hands.Components;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
-using Content.Shared.Interaction.Events;
using Content.Shared.Mobs.Components;
using Content.Shared.Movement.Events;
using Content.Shared.Popups;
@@ -39,7 +38,6 @@ private void InitializeBuckle()
SubscribeLocalEvent(OnBuckleStandAttempt);
SubscribeLocalEvent(OnBuckleThrowPushbackAttempt);
SubscribeLocalEvent(OnBuckleUpdateCanMove);
- SubscribeLocalEvent(OnBuckleChangeDirectionAttempt);
}
private void OnBuckleComponentStartup(EntityUid uid, BuckleComponent component, ComponentStartup args)
@@ -142,12 +140,6 @@ private void OnBuckleUpdateCanMove(EntityUid uid, BuckleComponent component, Upd
args.Cancel();
}
- private void OnBuckleChangeDirectionAttempt(EntityUid uid, BuckleComponent component, ChangeDirectionAttemptEvent args)
- {
- if (component.Buckled)
- args.Cancel();
- }
-
public bool IsBuckled(EntityUid uid, BuckleComponent? component = null)
{
return Resolve(uid, ref component, false) && component.Buckled;
diff --git a/Content.Shared/Interaction/RotateToFaceSystem.cs b/Content.Shared/Interaction/RotateToFaceSystem.cs
index 01dc572a73..ed950240af 100644
--- a/Content.Shared/Interaction/RotateToFaceSystem.cs
+++ b/Content.Shared/Interaction/RotateToFaceSystem.cs
@@ -80,14 +80,8 @@ public bool TryFaceCoordinates(EntityUid user, Vector2 coordinates, TransformCom
public bool TryFaceAngle(EntityUid user, Angle diffAngle, TransformComponent? xform = null)
{
- if (_actionBlockerSystem.CanChangeDirection(user))
- {
- if (!Resolve(user, ref xform))
- return false;
-
- _transform.SetWorldRotation(xform, diffAngle);
- return true;
- }
+ if (!_actionBlockerSystem.CanChangeDirection(user))
+ return false;
if (EntityManager.TryGetComponent(user, out BuckleComponent? buckle) && buckle.Buckled)
{
@@ -105,9 +99,16 @@ public bool TryFaceAngle(EntityUid user, Angle diffAngle, TransformComponent? xf
return true;
}
}
+
+ return false;
}
- return false;
+ // user is not buckled in; apply to their transform
+ if (!Resolve(user, ref xform))
+ return false;
+
+ _transform.SetWorldRotation(xform, diffAngle);
+ return true;
}
}
}
From b26a41d632c2566a25b002fc5f690599739bc296 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:30:47 -0700
Subject: [PATCH 19/45] Mirror: Store Refund Fix (#270)
## Mirror of PR #26251: [Store Refund
Fix](https://github.com/space-wizards/space-station-14/pull/26251) from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `9b8f7c06fac02c83a65234f39f0435d6ffa59112`
PR opened by keronshb at
2024-03-19 02:36:50 UTC
---
PR changed 1 files with 0 additions and 2 deletions.
The PR had the following labels:
---
Original Body
>
>
>
> ## About the PR
>
>
> There was a bug that enabled refunds on all stores.
>
> Fixes #26202
>
> ## Why / Balance
>
>
> Bugfix.
>
> ## Technical details
>
>
> Removes else that accidentally enables refunds
>
> ## Media
>
>
> - [x] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
>
>
> :cl:
> - fix: Fixed a bug where stores were enabling refunds after a purchase
>
Co-authored-by: SimpleStation14
---
Content.Server/Store/Systems/StoreSystem.Ui.cs | 2 --
1 file changed, 2 deletions(-)
diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs
index a7490fd27f..207f0c7373 100644
--- a/Content.Server/Store/Systems/StoreSystem.Ui.cs
+++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs
@@ -165,8 +165,6 @@ private void OnBuyRequest(EntityUid uid, StoreComponent component, StoreBuyListi
if (!IsOnStartingMap(uid, component))
component.RefundAllowed = false;
- else
- component.RefundAllowed = true;
//subtract the cash
foreach (var (currency, value) in listing.Cost)
From 6a2306dfa899180429cb9e19de4bf12c3d170498 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:31:09 -0700
Subject: [PATCH 20/45] Mirror: Include bans in adminremarks command (#259)
## Mirror of PR #26240: [Include bans in adminremarks
command](https://github.com/space-wizards/space-station-14/pull/26240)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `f55c98ce6d1dfdc14a293f2559647372203938af`
PR opened by PJB3005 at 2024-03-18 17:50:15
UTC
---
PR changed 1 files with 2 additions and 0 deletions.
The PR had the following labels:
---
Original Body
> Fixes #20645
>
> :cl:
> - add: Bans are now shown in the "adminremarks" command.
Co-authored-by: SimpleStation14
---
Content.Server/Database/ServerDbBase.cs | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs
index ed22c66360..c6d5311988 100644
--- a/Content.Server/Database/ServerDbBase.cs
+++ b/Content.Server/Database/ServerDbBase.cs
@@ -1368,6 +1368,8 @@ public async Task> GetVisibleAdminRemarks(Guid player)
.Include(note => note.Player)
.ToListAsync()).Select(MakeAdminNoteRecord));
notesCol.AddRange(await GetMessagesImpl(db, player));
+ notesCol.AddRange(await GetServerBansAsNotesForUser(db, player));
+ notesCol.AddRange(await GetGroupedServerRoleBansAsNotesForUser(db, player));
return notesCol;
}
From 9bf96fa02db10ef453c261b7a07aacdc7bfc0447 Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:31:25 -0700
Subject: [PATCH 21/45] Mirror: Changed current value to unextracted value in
artifact report guidebook (#271)
## Mirror of PR #26253: [Changed current value to unextracted value in
artifact report
guidebook](https://github.com/space-wizards/space-station-14/pull/26253)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `06b3f273ea8468eecea9c225cfbf54d17ea8c9c2`
PR opened by Vermidia at
2024-03-19 03:57:37 UTC
---
PR changed 1 files with 1 additions and 1 deletions.
The PR had the following labels:
- No C#
- Status: Needs Review
---
Original Body
>
>
>
> ## About the PR
>
> Forgot about this when making the last PR and didn't get to change it
to what it's supposed to be.
>
> ## Why / Balance
>
> Consistency with the reports.
>
> ## Technical details
>
>
> ## Media
>
>
> - [ ] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
>
>
Co-authored-by: SimpleStation14
---
Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml
index 3d7e5131ca..b7ba3d4c8b 100644
--- a/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml
+++ b/Resources/ServerInfo/Guidebook/Science/ArtifactReports.xml
@@ -14,7 +14,7 @@ A large portion of Xenoarchaeology gameplay revolves around the interpretation o
- [color=#a4885c]Edges:[/color] the amount of nodes that are connected to the current node. Using this, you can calculate the total number of nodes as well as organize a map of their connections.
-- [color=#a4885c]Current value:[/color] the amount of research points an artifact is currently worth. This is an important factor in choosing when to stop research and destroy the artifact in exchange for points.
+- [color=#a4885c]Unextracted value:[/color] the amount of research points an artifact will give when extracted. Extracting sets this to zero and traversing new nodes increases it.
Reports are a helpful tool in manipulating an artifact, especially in the later stages where you are traversing nodes that have already been activated.
From 3c6c69a6180cb947e6cf0136e581f571f7e34dda Mon Sep 17 00:00:00 2001
From: SimpleStation14 <130339894+SimpleStation14@users.noreply.github.com>
Date: Wed, 8 May 2024 22:32:08 -0700
Subject: [PATCH 22/45] Mirror: Added verb action to Glue/Lube system (#303)
## Mirror of PR #26002: [Added verb action to Glue/Lube
system](https://github.com/space-wizards/space-station-14/pull/26002)
from
[space-wizards](https://github.com/space-wizards)/[space-station-14](https://github.com/space-wizards/space-station-14)
###### `70c718f61cd952f49f6908107edfbeeb3b7e41e0`
PR opened by
SlamBamActionman at 2024-03-11 15:15:49 UTC
---
PR changed 4 files with 67 additions and 25 deletions.
The PR had the following labels:
---
Original Body
>
>
>
> ## About the PR
>
>
> Added right-click Glue/Lube verbs (used by Space glue / lube tubes).
This allows them to be used on containers and glasses.
>
> ## Why / Balance
>
>
> Attempting to glue/lube a container like a bag makes the insert verb
take priority. Same for trying to glue/lube something like a glass,
which empties the reagent into the container. That keeps those objects
from being glued/lubed, but with a right-click verb it is now possible.
>
> ## Technical details
>
>
> Added a verb in each system using the Forensic Scanner verb
implementation as a base. Had to move where the sound/pop-up message
appears to avoid duplicating too much code.
>
> ## Media
>
>
>
![image](https://github.com/space-wizards/space-station-14/assets/83650252/7560e99b-5167-497a-9f7c-e9db391e06eb)![image](https://github.com/space-wizards/space-station-14/assets/83650252/749c950e-c091-4e35-9813-6fa95eb7fd54)
>
> - [x] I have added screenshots/videos to this PR showcasing its
changes ingame, **or** this PR does not require an ingame showcase
>
> ## Breaking changes
>
>
> **Changelog**
>
>
> :cl:
> - tweak: Space glue/lube tubes can now be used through the right-click
menu.
>
Co-authored-by: SimpleStation14
---
Content.Server/Glue/GlueSystem.cs | 42 ++++++++++++++++++--------
Content.Server/Lube/LubeSystem.cs | 45 ++++++++++++++++++++--------
Resources/Locale/en-US/glue/glue.ftl | 3 ++
Resources/Locale/en-US/lube/lube.ftl | 2 ++
4 files changed, 67 insertions(+), 25 deletions(-)
diff --git a/Content.Server/Glue/GlueSystem.cs b/Content.Server/Glue/GlueSystem.cs
index 6bb6aca3ad..44ff4e5459 100644
--- a/Content.Server/Glue/GlueSystem.cs
+++ b/Content.Server/Glue/GlueSystem.cs
@@ -8,6 +8,7 @@
using Content.Shared.Interaction.Components;
using Content.Shared.Item;
using Content.Shared.Popups;
+using Content.Shared.Verbs;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Timing;
@@ -21,6 +22,7 @@ public sealed class GlueSystem : SharedGlueSystem
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly MetaDataSystem _metaData = default!;
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly OpenableSystem _openable = default!;
public override void Initialize()
{
@@ -28,6 +30,7 @@ public override void Initialize()
SubscribeLocalEvent(OnInteract, after: new[] { typeof(OpenableSystem) });
SubscribeLocalEvent(OnGluedInit);
+ SubscribeLocalEvent>(OnUtilityVerb);
SubscribeLocalEvent(OnHandPickUp);
}
@@ -41,35 +44,50 @@ private void OnInteract(Entity entity, ref AfterInteractEvent arg
return;
if (TryGlue(entity, target, args.User))
- {
args.Handled = true;
- _audio.PlayPvs(entity.Comp.Squeeze, entity);
- _popup.PopupEntity(Loc.GetString("glue-success", ("target", target)), args.User, args.User, PopupType.Medium);
- }
- else
+ }
+
+ private void OnUtilityVerb(Entity entity, ref GetVerbsEvent args)
+ {
+ if (!args.CanInteract || !args.CanAccess || args.Target is not { Valid: true } target ||
+ _openable.IsClosed(entity))
+ return;
+
+ var user = args.User;
+
+ var verb = new UtilityVerb()
{
- _popup.PopupEntity(Loc.GetString("glue-failure", ("target", target)), args.User, args.User, PopupType.Medium);
- }
+ Act = () => TryGlue(entity, target, user),
+ IconEntity = GetNetEntity(entity),
+ Text = Loc.GetString("glue-verb-text"),
+ Message = Loc.GetString("glue-verb-message")
+ };
+
+ args.Verbs.Add(verb);
}
- private bool TryGlue(Entity glue, EntityUid target, EntityUid actor)
+ private bool TryGlue(Entity entity, EntityUid target, EntityUid actor)
{
// if item is glued then don't apply glue again so it can be removed for reasonable time
if (HasComp